octstr.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:17k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * octstr.h - Octet strings
  3.  *
  4.  * This header file declares an abstract data type, Octstr, for storing
  5.  * and manipulating octet strings: strings of arbitrary binary data in
  6.  * 8-bit bytes. Unlike C strings, they can contain the NUL byte ('').
  7.  * Conceptually, they consist of a sequence of octets (bytes) and the
  8.  * length of the sequence. There are various basic operations on octet
  9.  * strings: concatenating, comparing, printing, etc.
  10.  *
  11.  * Octet strings come in two flavors: mutable and immutable. Mutable
  12.  * octet strings are the normal kind and they can be modified and
  13.  * otherwise manipulated at will. Immutable octet strings are meant to
  14.  * be wrappers around a C string literal. They may not be modified, though
  15.  * they may be destroyed.
  16.  *
  17.  * Immutable octet strings are meant to simplify usage of octet strings
  18.  * together with C strings by reducing the number of octstr_* functions.
  19.  * For example, we need a function for searching one string within another.
  20.  * There needs to be different flavors of this: exact search, case-insensitive
  21.  * search, and a search limited to the first N octets of the strings.
  22.  * If in each of these one of the arguments may be either an octet string
  23.  * or a C string, the number of functions doubles. Thus, we use immutable
  24.  * strings instead:
  25.  *
  26.  * octstr_search(os, octstr_imm("foo"), 0)
  27.  *
  28.  * The above looks like a memory leak, but it is not. Each immutable
  29.  * octet string (i.e., with the same C string literal pointer) is really 
  30.  * created only the first time, and octstr_destroy won't destroy it,
  31.  * either. The immutable octet strings are destroyed automatically when
  32.  * the process ends.
  33.  *
  34.  * See comments below for explanations on individual functions. Note that
  35.  * all functions use gw_malloc and friends, so they won't return if the
  36.  * memory allocations fail. Octet string functions are thread safe, as
  37.  * long as they only one thread at a time operates on each octet string.
  38.  */
  39. #ifndef OCTSTR_H
  40. #define OCTSTR_H
  41. #include <stdio.h>
  42. #include <stdarg.h>
  43. #include "list.h"
  44. typedef struct Octstr Octstr;
  45. /*
  46.  * Initialize the Octstr subsystem.
  47.  */
  48. void octstr_init(void);
  49. /*
  50.  * Shut down the Octstr subsystem.
  51.  */
  52. void octstr_shutdown(void);
  53. /*
  54.  * Create an octet string from a NUL-terminated C string. Return pointer to
  55.  * the new object.
  56.  */
  57. Octstr *octstr_create_real(const char *cstr);
  58. #define octstr_create(cstr) gw_claim_area(octstr_create_real((cstr)))
  59. /*
  60.  * Create an octet string from arbitrary binary data. The length of the
  61.  * data is given, so it can contain NUL characters.
  62.  */
  63. Octstr *octstr_create_from_data_real(const char *data, long len);
  64. #define octstr_create_from_data(data, len)
  65.     gw_claim_area(octstr_create_from_data_real((data), (len)))
  66. /*
  67.  * Create an immutable octet string from a C string literal. The
  68.  * C string literal MUST NOT be modified and it MUST exist until the
  69.  * octet string is destroyed. The immutable octet string need not be
  70.  * destroyed - it is destroyed automatically when octstr_shutdown is
  71.  * called. In fact, octstr_destroy is a no-op for immutables.
  72.  */
  73. Octstr *octstr_imm(const char *cstr);
  74. /*
  75.  * Destroy an octet string, freeing all memory it uses. A NULL argument
  76.  * is ignored.
  77.  */
  78. void octstr_destroy(Octstr *ostr);
  79. /*
  80.  * Destroy an octet string. Wrapper around octstr_destroy that is callable
  81.  * via list_destroy.
  82.  */
  83. void octstr_destroy_item(void *os);
  84. /*
  85.  * Return the length of (number of octets in) an object string.
  86.  */
  87. long octstr_len(Octstr *ostr);
  88. /*
  89.  * Create a new octet string by copying part of an existing one. Return 
  90.  * pointer to the new object. If `from' is after end of `ostr', an empty
  91.  * octet string is created. If `from+len' is after the end of `ostr', 
  92.  * `len' is reduced appropriately.
  93.  */
  94. Octstr *octstr_copy_real(Octstr *ostr, long from, long len);
  95. #define octstr_copy(ostr, from, len) 
  96.     gw_claim_area(octstr_copy_real((ostr), (from), (len)))
  97. /*
  98.  * Copy all of an octet string.
  99.  */
  100. Octstr *octstr_duplicate_real(Octstr *ostr);
  101. #define octstr_duplicate(ostr) gw_claim_area(octstr_duplicate_real((ostr)))
  102. /*
  103.  * Create a new octet string by catenating two existing ones. Return 
  104.  * pointer to the new object.
  105.  */
  106. Octstr *octstr_cat(Octstr *ostr1, Octstr *ostr2);
  107. /*
  108.  * Return value of octet at a given position in an octet string. The returned
  109.  * value has a range of 0..255 for valid positions, and -1 if `pos' is
  110.  * after the end of the octet string.
  111.  */
  112. int octstr_get_char(Octstr *ostr, long pos);
  113. /*
  114.  * Replace a single, existing character in an octet string. Operation cannot
  115.  * fail: if pos is not inside the string, the operation will silently be
  116.  * ignored.
  117.  */
  118. void octstr_set_char(Octstr *ostr, long pos, int ch);
  119. /*
  120.  * Copy bytes from octet string into array.
  121.  */
  122. void octstr_get_many_chars(char *buf, Octstr *ostr, long pos, long len);
  123. /*
  124.  * Return pointer to contents of octet string as a NUL-terminated C string.
  125.  * This is guaranteed to have a NUL character at the end, but it is not
  126.  * guaranteed (how could it?) to not contain NUL characters elsewhere.
  127.  * The pointer points directly into the internal buffer of the octet
  128.  * string, and must not be modified, and must not be used after any
  129.  * octstr_* function that modifies the octet string is called after this
  130.  * one. It is meant for printing debug messages easily.
  131.  *
  132.  * If the octet string is empty, an empty C string is returned, not NULL.
  133.  */
  134. char *octstr_get_cstr_real(Octstr *ostr, const char *file, long line,
  135.                   const char *func);
  136. #define octstr_get_cstr(ostr) 
  137.     (octstr_get_cstr_real(ostr, __FILE__, __LINE__, __func__))
  138. /*
  139.  * Append characters from printable hexadecimal format at the tail of 
  140.  * an octet string. "78797a" or "78797A" would be converted to "xyz"
  141.  * and then appended.
  142.  */
  143. void octstr_append_from_hex(Octstr *ostr, char *hex);
  144. /* Convert the octet string in-place to printable hexadecimal format.
  145.  * "xyz" would be converted to "78797a".  If the uppercase
  146.  * flag is set, 'A' through 'F' are used instead of 'a' through 'f'.
  147.  */
  148. void octstr_binary_to_hex(Octstr *ostr, int uppercase);
  149. /* Convert the octet string in-place from printable hexadecimal
  150.  * format to binary.  "78797a" or "78797A" would be converted to "xyz".
  151.  * If the string is not in the expected format, return -1 and leave
  152.  * the string unchanged.  If all was fine, return 0. */
  153. int octstr_hex_to_binary(Octstr *ostr);
  154. /* Base64-encode the octet string in-place, using the MIME base64
  155.  * encoding defined in RFC 2045.  Note that the result may be
  156.  * multi-line and is always terminated with a CR LF sequence.  */
  157. void octstr_binary_to_base64(Octstr *ostr);
  158. /* Base64-decode the octet string in-place, using the MIME base64
  159.  * encoding defined in RFC 2045. */
  160. void octstr_base64_to_binary(Octstr *ostr);
  161. /* Parse a number at position 'pos' in 'ostr', using the same rules as
  162.  * strtol uses regarding 'base'.  Skip leading whitespace.
  163.  * 
  164.  * Return the position of the first character after the number,
  165.  * or -1 if there was an error.  Return the length of the octet string
  166.  * if the number ran to the end of the string.
  167.  * 
  168.  * Assign the number itself to the location pointed to by 'number', if
  169.  * there was no error.
  170.  * 
  171.  * Possible errno values in case of an error:
  172.  *    ERANGE    The number did not fit in a long.
  173.  *    EINVAL    No digits of the appropriate base were found.
  174.  */
  175. long octstr_parse_long(long *number, Octstr *ostr, long pos, int base);
  176. /* Run the 'filter' function over each character in the specified range.
  177.  * Return 1 if the filter returned true for all characters, otherwise 0.
  178.  * The octet string is not changed.
  179.  * For example: ok = octstr_check_range(o, 1, 10, gw_isdigit);
  180.  */
  181. typedef int (*octstr_func_t)(int);
  182. int octstr_check_range(Octstr *ostr, long pos, long len, 
  183.                  octstr_func_t filter);
  184. /* Run the 'map' function over each character in the specified range,
  185.  * replacing each character with the return value of that function.
  186.  * For example: octstr_convert_range(o, 1, 10, tolower);
  187.  */
  188. void octstr_convert_range(Octstr *ostr, long pos, long len, 
  189.                  octstr_func_t map);
  190. /*
  191.  * Compare two octet strings, returning 0 if they are equal, negative if
  192.  * `ostr1' is less than `ostr2' (when compared octet-value by octet-value),
  193.  * and positive if greater.
  194.  */
  195. int octstr_compare(Octstr *ostr1, Octstr *ostr2);
  196. /*
  197.  * Like octstr_compare, except compares bytes without case sensitivity.
  198.  * Note that this probably doesn't work for Unicode, but should work
  199.  * for such 8-bit character sets as are supported by libc.
  200.  */
  201. int octstr_case_compare(Octstr *ostr1, Octstr *ostr2);
  202. /*
  203.  * as above, but comparing is done only up to n bytes
  204.  */
  205. int octstr_ncompare(Octstr *ostr1, Octstr *ostr2, long n);
  206. /*
  207.  * Same as octstr_compare, but compares the content of the octet string to 
  208.  * a C string.
  209.  */
  210. int octstr_str_compare(Octstr *ostr1, const char *str);
  211. /*
  212.  * Write contents of octet string to a file. Return -1 for error, 0 for OK.
  213.  */
  214. int octstr_print(FILE *f, Octstr *ostr);
  215. /*
  216.  * Search the character from octet string starting from position pos. Returns 
  217.  * the position (index) of the char in string, -1 if not found.
  218.  */
  219. int octstr_search_char(Octstr *ostr, int ch, long pos);
  220. /*
  221.  * Search for the octet string 'needle' in the octet string 'haystack'.
  222.  * Return the start position (index) of 'needle' in 'haystack'.
  223.  * Return -1 if not found.
  224.  */
  225. int octstr_search(Octstr *haystack, Octstr *needle, long pos);
  226. /*
  227.  * Like octstr_search, but ignores 8-bit byte case.
  228.  */
  229. int octstr_case_search(Octstr *haystack, Octstr *needle, long pos);
  230. /*
  231.  * Write contents of octet string to a file, in human readable form. 
  232.  * Return -1 for error, 0 for OK. Octets that are not printable characters
  233.  * are printed using C-style escape notation.
  234.  */
  235. int octstr_pretty_print(FILE *f, Octstr *ostr);
  236. /*
  237.  * Write contents of octet string to a socket. Return -1 for error, 0 for OK.
  238.  */
  239. int octstr_write_to_socket(int socket, Octstr *ostr);
  240. /*
  241.  * Write contents of octet string starting at 'from' to a
  242.  * non-blocking file descriptor.
  243.  * Return the number of octets written.  Return -1 for error.
  244.  * It is possible for this function to write only part of the octstr.
  245.  */
  246. long octstr_write_data(Octstr *ostr, int fd, long from);
  247. /*
  248.  * Read available data from socket and return it as an octstr.
  249.  * Block if no data is available.  If a lot of data is available,
  250.  * read only up to an internal limit.
  251.  * Return -1 for error.
  252.  */
  253. int octstr_append_from_socket(Octstr *ostr, int socket);
  254. /*
  255.  * Insert one octet string into another. `pos' gives the position
  256.  * in `ostr1' where `ostr2' should be inserted.
  257.  */
  258. void octstr_insert(Octstr *ostr1, Octstr *ostr2, long pos);
  259. /*
  260.  * Insert characters from C array into an octet string. `pos' 
  261.  * gives the position in `ostr' where `data' should be inserted. `len'
  262.  * gives the number of characters in `data'.
  263.  * If the given `pos' is greater than the length of the input octet string,
  264.  * it is set to that length, resulting in an append.
  265.  */
  266. void octstr_insert_data(Octstr *ostr, long pos, const char *data, long len);
  267. /*
  268.  * Similar as previous, expect that now a single character is inserted.
  269.  */
  270. void octstr_insert_char(Octstr *ostr, long pos, const char c);
  271. /*
  272.  * Append characters from C array at the tail of an octet string.
  273.  */
  274. void octstr_append_data(Octstr *ostr, const char *data, long len);
  275. /*
  276.  * Append a second octstr to the first.
  277.  */
  278. void octstr_append(Octstr *ostr1, Octstr *ostr2);
  279. /*
  280.  * Append a normal C string at the tail of an octet string.
  281.  */
  282. void octstr_append_cstr(Octstr *ostr, const char *cstr);
  283. /*
  284.  * Append a single character at the tail of an octet string.
  285.  */
  286. void octstr_append_char(Octstr *ostr, int ch);
  287. /*
  288.  * Truncate octet string at `new_len'. If new_len is same or more
  289.  * than current, do nothing.
  290.  */
  291. void octstr_truncate(Octstr *ostr, int new_len);
  292. /*
  293.  * Strip white space from start and end of a octet string.
  294.  */
  295. void octstr_strip_blanks(Octstr *ostr);
  296. /*
  297.  * Strip CR and LF from start and end of a octet string.
  298.  */
  299. void octstr_strip_crlfs(Octstr *ostr);
  300. /*
  301.  * Strip non-alphanums from start and end of a octet string.
  302.  */
  303. void octstr_strip_nonalphanums(Octstr *ostr);
  304. /*
  305.  * Shrink consecutive white space characters into one space.
  306.  */
  307. void octstr_shrink_blanks(Octstr *ostr);
  308. /*
  309.  * Delete part of an octet string.
  310.  */
  311. void octstr_delete(Octstr *ostr1, long pos, long len);
  312. /*
  313.  * Read the contents of a named file to an octet string. Return pointer to
  314.  * octet string.
  315.  */
  316. Octstr *octstr_read_file(const char *filename);
  317. /*
  318.  * Read the contents of a file descriptor pipe to an octet string. 
  319.  * Return pointer to octet string.
  320.  */
  321. Octstr *octstr_read_pipe(FILE *f);
  322. /*
  323.  * Split an octet string into words at whitespace, and return a list
  324.  * containing the new octet strings.
  325.  */
  326. List *octstr_split_words(Octstr *ostr);
  327. /*
  328.  * Split an octet string into substrings at every occurence of `sep'.
  329.  * Return List with the substrings.
  330.  */
  331. List *octstr_split(Octstr *os, Octstr *sep);
  332. /*
  333.  * Compare two octet strings in a manner suitable for list_search.
  334.  */
  335. int octstr_item_match(void *item, void *pattern);
  336. /*
  337.  * Print debugging information about octet string.
  338.  */
  339. void octstr_dump(Octstr *ostr, int level);
  340. /*
  341.  * Write the contents of an octet string to the debug log.
  342.  * Keep it on one line if the octet string is short and printable,
  343.  * otherwise use a hex dump.
  344.  */
  345. void octstr_dump_short(Octstr *ostr, int level, const char *name);
  346. /*
  347.  * decode url-encoded octstr in-place.
  348.  * Return 0 if all went fine, or -1 if there was some garbage
  349.  */
  350. int octstr_url_decode(Octstr *ostr);
  351. /*
  352.  * URL encode the argument string in place.
  353.  */
  354. void octstr_url_encode(Octstr *ostr);
  355. /*
  356.  * Treat the octstr as an unsigned array of bits, most significant bit
  357.  * first, and return the indicated bit range as an integer.  numbits
  358.  * must not be larger than 32.  Bits beyond the end of the string will
  359.  * be read as 0.
  360.  */
  361. long octstr_get_bits(Octstr *ostr, long bitpos, int numbits);
  362. /*
  363.  * Treat the octstr as an unsigned array of bits, most significant bit
  364.  * first, and set the indicated bit range to the given value.  numbits
  365.  * must not be larger than 32.  The value must fit in that number of bits.
  366.  * The string will be extended with 0-valued octets as necessary to hold
  367.  * the indicated bit range.
  368.  */
  369. void octstr_set_bits(Octstr *ostr, long bitpos, int numbits, 
  370.                unsigned long value);
  371. /* 
  372.  * Encode value in WSP's uintvar format, and append it to the octstr
  373.  */
  374. void octstr_append_uintvar(Octstr *ostr, unsigned long value);
  375. /* 
  376.  * Decode a value in WSP's uintvar format at position pos of the octstr,
  377.  * and put the result in *value.  Return the position after the uintvar.
  378.  * Return -1 if there is not a valid uintvar at pos.
  379.  */
  380. long octstr_extract_uintvar(Octstr *ostr, unsigned long *value, long pos);
  381. /*
  382.  * Append the decimal representation of the given value to ostr 
  383.  */
  384. void octstr_append_decimal(Octstr *ostr, long value);
  385. /*
  386.  * Create a new octet string based on a printf-like (but not identical)
  387.  * format string, and a list of other arguments. The format string is
  388.  * a C string for convenience, but this may change later.
  389.  *
  390.  * The syntax for the format string is as follows:
  391.  *
  392.  * % [-] [0] [width] [. prec] [type] conversion
  393.  *
  394.  * where [] denotes optional parts and the various parts have the
  395.  * following meanings:
  396.  *
  397.  * - add padding to the right, instead of the left of the field
  398.  *
  399.  * 0 pad with zeroes, not spaces
  400.  *
  401.  * width minimum output width; non-negative integer or '*', indicating
  402.  * that the next argument is an int and gives the width
  403.  *
  404.  * . a dot to indicate that precision follows
  405.  *
  406.  * prec precision: maximum length of strings, maximum number of
  407.  * decimals for floating point numbers; non-negative integer
  408.  * or '*' indicating that the next argument is an int and
  409.  * gives the precision
  410.  *
  411.  * type type of integer argument: either h (for short int) or 
  412.  * l (for long int); may only be used with conversion 'd'
  413.  *
  414.  * conversion
  415.  * how the field is to be converted, also implicitly defines
  416.  * the type of the next argument; one of
  417.  *
  418.  * d int (unless type says otherwise)
  419.  * output as a decimal integer
  420.  *
  421.  * e, f, g double
  422.  * output in various formats of floating
  423.  * point, see printf(3) for details
  424.  *
  425.  * s char *
  426.  * output as character string
  427.  *
  428.  * S Octstr *
  429.  * output as character string, except ''
  430.  * inside the string is included in the
  431.  * output
  432.  *
  433.  *          E   Octstr *
  434.  *              output as character string, except that
  435.  *              contents are URL-encoded when need to. Note
  436.  *              that trunctae is done afterwards and can
  437.  *              cut escape '%EE' in half
  438.  */
  439. Octstr *octstr_format(const char *fmt, ...);
  440. /*
  441.  * Like octstr_format, but takes the argument list as a va_list.
  442.  */
  443. Octstr *octstr_format_valist_real(const char *fmt, va_list args);
  444. #define octstr_format_valist(fmt, args) gw_claim_area(octstr_format_valist_real(fmt, args))
  445. /*
  446.  * Like octstr_format, but appends output to an existing octet
  447.  * string, instead of creating a new one.
  448.  */
  449. void octstr_format_append(Octstr *os, const char *fmt, ...);
  450. /*
  451.  * Compute a hash key value for an octet string by adding all the 
  452.  * octets together.
  453.  */
  454. unsigned long octstr_hash_key(Octstr *ostr);
  455. /*
  456.  * return an Octstr encoded in chrset named tocode created from the data
  457.  * in the Octstr orig that is encoded in the charset fromcode.
  458.  */
  459. int octstr_recode (Octstr *tocode, Octstr *fromcode, Octstr *orig);
  460. #endif