JunkBox_Lib++ (for Windows) 1.10.1
|
プロトコル解析ライブラリ ヘッダ More...
#include "xtools.h"
Go to the source code of this file.
Macros | |
#define | HDLIST_FIRST_LINE_KEY "FIRST_LINE" |
#define | HDLIST_CONTENTS_KEY "CONTENTS_DATA" |
#define | HDLIST_CONTINUE "HEADER_CONTINUE" |
#define | HDLIST_END_KEY "HEADER_END" |
#define | create_protocol_header(p, k, v) add_tList_node_bystr((p), 0, 0, (char*)(k), (char*)(v), NULL, 0) |
#define | add_protocol_header(p, k, v) add_tList_node_bystr((p), 0, 0, (char*)(k), (char*)(v), NULL, 0) |
#define | create_protocol_header_Buffer(p, k, v) add_tList_node_byBuffer((p), 0, 0, (k), (v), NULL, 0) |
#define | add_protocol_header_Buffer(p, k, v) add_tList_node_byBuffer((p), 0, 0, (k), (v), NULL, 0) |
#define | delete_protocol_header(p, k, n) del_tList_key((p), (k), (n)) |
#define | get_protocol_header(l, k, n) search_protocol_header((l), (k), (n)) |
#define | get_protocol_header_item(l, k, n, d, m) search_protocol_header_item((l), (k), (n), (d), (m)) |
#define | get_protocol_header_value(l, k, d, n) search_protocol_header_value((l), (k), (d), (n)) |
#define | get_protocol_header_partvalue(l, k, d, n) search_protocol_header_partvalue((l), (k), (d), (n)) |
#define | set_protocol_record_item(l, d, m, v) set_item_tList_node((l), (d), (m), (v)) |
#define | replace_protocol_record_item(l, d, m, s, v) replace_item_tList_node((l), (d), (m), (s), (v)) |
#define | replace_protocol_header(list, key, no, srcval, value) replace_value_tList((list), (key), (no), (srcval), (value)) |
#define | replace_protocol_header_item(list, key, no, deli, nm, srcval, value) replace_item_tList((list), (key), (no), (deli), (nm), (srcval), (value)) |
#define | set_protocol_header_item(list, key, no, deli, nm, value) set_item_tList((list), (key), (no), (deli), (nm), (value)) |
Functions | |
tList * | get_protocol_header_list (Buffer buf, char deli, int fstline, int rcntnt) |
Buffer | restore_protocol_header (tList *pp, char *deli, int mode, int *hdsz) |
Buffer | restore_protocol_contents (tList *pp) |
void | set_protocol_contents (tList *pp, Buffer cnt) |
tList * | get_protocol_header_list_seq (tList *list, Buffer buf, char deli, int fstline, int rcntnt) |
tList * | get_protocol_header_list_file (char *fname, char deli, int fstline, int rcntnt) |
Buffer | search_protocol_header (tList *list, char *key, int no) |
Buffer | search_protocol_header_item (tList *list, char *key, int no, char deli, int nm) |
Buffer | search_protocol_header_value (tList *list, char *key, char *data, int no) |
Buffer | search_protocol_header_partvalue (tList *list, char *key, char *data, int no) |
int | set_protocol_header (tList *list, char *key, char *value, int no, int mode) |
int | search_crlfcrlf (char *mesg) |
int | is_header_continue (tList *lp) |
void | print_protocol_header (tList *lp, int content) |
tList * | find_protocol_end (tList *lp) |
Example)
Definition in file protocol.h.
#define add_protocol_header | ( | p, | |
k, | |||
v ) add_tList_node_bystr((p), 0, 0, (char*)(k), (char*)(v), NULL, 0) |
Definition at line 51 of file protocol.h.
Referenced by recv_http_Buffer(), and recv_http_file().
#define add_protocol_header_Buffer | ( | p, | |
k, | |||
v ) add_tList_node_byBuffer((p), 0, 0, (k), (v), NULL, 0) |
Definition at line 53 of file protocol.h.
#define create_protocol_header | ( | p, | |
k, | |||
v ) add_tList_node_bystr((p), 0, 0, (char*)(k), (char*)(v), NULL, 0) |
Definition at line 50 of file protocol.h.
#define create_protocol_header_Buffer | ( | p, | |
k, | |||
v ) add_tList_node_byBuffer((p), 0, 0, (k), (v), NULL, 0) |
Definition at line 52 of file protocol.h.
#define delete_protocol_header | ( | p, | |
k, | |||
n ) del_tList_key((p), (k), (n)) |
Definition at line 54 of file protocol.h.
Referenced by recv_http_Buffer(), and recv_http_file().
#define get_protocol_header | ( | l, | |
k, | |||
n ) search_protocol_header((l), (k), (n)) |
Definition at line 62 of file protocol.h.
#define get_protocol_header_item | ( | l, | |
k, | |||
n, | |||
d, | |||
m ) search_protocol_header_item((l), (k), (n), (d), (m)) |
Definition at line 63 of file protocol.h.
#define get_protocol_header_partvalue | ( | l, | |
k, | |||
d, | |||
n ) search_protocol_header_partvalue((l), (k), (d), (n)) |
Definition at line 65 of file protocol.h.
#define get_protocol_header_value | ( | l, | |
k, | |||
d, | |||
n ) search_protocol_header_value((l), (k), (d), (n)) |
Definition at line 64 of file protocol.h.
#define HDLIST_CONTENTS_KEY "CONTENTS_DATA" |
Definition at line 32 of file protocol.h.
Referenced by dump_http_header(), find_protocol_end(), get_protocol_header_list_seq(), print_protocol_header(), recv_http_Buffer(), recv_http_file(), recv_http_header(), restore_protocol_contents(), restore_protocol_header(), and set_protocol_contents().
#define HDLIST_CONTINUE "HEADER_CONTINUE" |
Definition at line 33 of file protocol.h.
Referenced by get_protocol_header_list_seq(), is_header_continue(), and restore_protocol_header().
#define HDLIST_END_KEY "HEADER_END" |
Definition at line 34 of file protocol.h.
Referenced by find_protocol_end(), get_protocol_header_list_seq(), recv_http_header(), restore_protocol_header(), set_protocol_header(), and www2browser_relay().
#define HDLIST_FIRST_LINE_KEY "FIRST_LINE" |
Definition at line 31 of file protocol.h.
Referenced by get_http_header_method(), get_http_status_num(), get_http_version_num(), get_protocol_header_list_seq(), http_proxy_header_analyze(), and restore_protocol_header().
#define replace_protocol_header | ( | list, | |
key, | |||
no, | |||
srcval, | |||
value ) replace_value_tList((list), (key), (no), (srcval), (value)) |
int replace_protocol_header(tList* list, char* key, int no, char* srcval, char* value)
リスト(lt)中の no番目の keyノードの値の srcvalの部分を value に置き換える. no が 0以下の場合は,全ての keyノードの値に対して置き換えが行われる.
replace_valute_tList() と同じ関数 (in Lib/tlist.c)
list | 処理対象のリスト |
key | 置き換えを行うノードのキー部 |
no | 何個目の項目を置き換えるか.1から数える.0以下の場合はkeyが一致する全ての項目を置き換える |
srcval | 置き換え対象の文字列. |
value | 置き換えを行う文字列. |
0以上 | 変更されたノードの数.指定されたノードが存在しないは(追加された場合も)0 |
負数 | エラー. |
Definition at line 90 of file protocol.h.
#define replace_protocol_header_item | ( | list, | |
key, | |||
no, | |||
deli, | |||
nm, | |||
srcval, | |||
value ) replace_item_tList((list), (key), (no), (deli), (nm), (srcval), (value)) |
key をキーにした no番目のノードの値の中で,deliを区切りにした nm番目の項目(文字列)の srcval部分を valueで置き換える.
list | 検索対象のヘッダ方向を格納したリスト |
key | ヘッダ種別. |
no | 同じヘッダ種別が複数ある場合,何番目のノードかを指定する.1から数える. noが 0以下の場合は keyが一致する全てのノードに対して操作を行う. |
deli | ノード値(文字列)の区切り文字. |
nm | deli を区切り文字として何番目の項目か? 1から数える. |
srcval | 置き換え対象の文字列.NULLなら指定した項目の文字列全体 |
value | 置き換える文字列. |
Definition at line 107 of file protocol.h.
#define replace_protocol_record_item | ( | l, | |
d, | |||
m, | |||
s, | |||
v ) replace_item_tList_node((l), (d), (m), (s), (v)) |
Definition at line 72 of file protocol.h.
#define set_protocol_header_item | ( | list, | |
key, | |||
no, | |||
deli, | |||
nm, | |||
value ) set_item_tList((list), (key), (no), (deli), (nm), (value)) |
int set_protocol_header_item(tList* list, char* key, int no, char deli, int nm, char* value)
key をキーにした no番目のノードの値の中で,deliを区切りにした nm番目の項目(文字列)にvalue を設定する.
list | 検索対象のヘッダ方向を格納したリスト |
key | ヘッダ種別. |
no | 同じヘッダ種別が複数ある場合,何番目のノードかを指定する.1から数える. noが 0以下の場合は keyが一致する全てのノードに対して操作を行う. |
deli | ノード値(文字列)の区切り文字. |
nm | deli を区切り文字として何番目の項目か? 1から数える. |
value | 設定する文字列. |
Definition at line 123 of file protocol.h.
#define set_protocol_record_item | ( | l, | |
d, | |||
m, | |||
v ) set_item_tList_node((l), (d), (m), (v)) |
Definition at line 71 of file protocol.h.
HDLIST_END_KEY のひとつ前のリストへのリンクを返す. HDLIST_END_KEY が無ければ HDLIST_CONTENTS_KEY のひとつ前,HDLIST_CONTENTS_KEY もなければ最後のリストへのリンクを返す.
Definition at line 665 of file protocol.cpp.
References find_tList_end(), HDLIST_CONTENTS_KEY, HDLIST_END_KEY, and search_key_tList().
tList* get_protocol_header_list(Buffer buf, char deli, int fstline, int rcntnt)
buf内の プロトコルヘッダ(key'deli' data の形式)を分解してリストに格納する.'deli'は境界文字. fstlineが TRUEの場合,ヘッダの一行目は HDLIST_FIRST_LINE_KEY のキーをつけてリストに格納する.
また,この関数はバッファリングなどは行わないので,ヘッダにコンテンツの最初の部分が紛れ込む可能性がある. rcntntが TRUEの場合は,HDLIST_CONTENTS_KEY をキーにしてコンテンツをリストに格納する.FALSEの場合は無視. コンテンツのサイズが大きく,順次読み込まれる場合,HDLIST_CONTENTS_KEYノードは複数生成される.
ヘッダの値が複数行になる場合,ヘッダ種別 HDLIST_CONTINUE として,次のノードに格納される.
buf | ヘッダを格納した変数 |
deli | ヘッダの見出し(Key)との境界文字.HTTPや SMTPでは ':' |
fstline | 一行目を特別扱いにするか? 一行目が key'deli' data の形式でないプロトコル用, ex) HTTP, SIP |
rcntnt | コンテンツも読むか? |
Definition at line 34 of file protocol.cpp.
References Buffer::buf, find_tList_top(), and get_protocol_header_list_seq().
Referenced by get_protocol_header_list_file().
tList * get_protocol_header_list_file | ( | char * | fname, |
char | deli, | ||
int | fstline, | ||
int | rcntnt ) |
tList* get_protocol_header_list_file(char* fname, char deli, int fstline, int rcntnt)
ファイル fname からヘッダ情報を読み込んで分解し,リストに格納して返す.
fname | 読み込むファイル名 |
deli | ヘッダの見出し(Key)との境界文字.HTTPや SMTPでは ':' |
fstline | 一行目を特別扱いにするか? 一行目が key'境界文字' data の形式でないプロトコル用, ex) HTTP, SIP |
rcntnt | コンテンツも読むか? |
Definition at line 341 of file protocol.cpp.
References get_protocol_header_list(), and read_Buffer_file().
tList* get_protocol_header_list_seq(tList* lp, Buffer buf, char deli, int fstline, int rcntnt)
buf内の プロトコルヘッダ(key'deli' data の形式)を分解してリストに格納する.'deli'は境界文字. シーケンシャルに随時呼び出すことが可能.
lp==NULL で状態(静的変数)がリセットされので,最初は lpを NULLにすること.
fstlineが TRUEの場合,ヘッダの一行目は HDLIST_FIRST_LINE_KEY のキーをつけてリストに格納する.
また,この関数はバッファリングなどは行わないので,ヘッダにコンテンツの最初の部分が紛れ込む可能性がある. rcntntが TRUEの場合は,HDLIST_CONTENTS_KEY をキーにしてコンテンツをリストに格納する.FALSEの場合は無視. コンテンツのサイズが大きく,順次読み込まれる場合,HDLIST_CONTENTS_KEYノードは複数生成される.
ヘッダの値が複数行になる場合,ヘッダ種別 HDLIST_CONTINUE として,次のノードに格納される.
lp!=NULL または fstlineがFALSE の場合は一行目の処理は行わない.
lp | ヘッダ情報を格納するリストへのポインタ. NULLの場合はリストが新しく作成される.NULLでない場合はそのリストにヘッダ情報が追加される. |
buf | ヘッダを格納した変数 |
deli | ヘッダの見出し(Key)との境界文字.HTTPや SMTPでは ':' |
fstline | 一行目を特別扱いにするか? 一行目が key'deli' data の形式でないプロトコル用, ex) HTTP, SIP |
rcntnt | コンテンツも読むか? |
Definition at line 181 of file protocol.cpp.
References add_tList_node_Buffer, Buffer::buf, CHAR_TAB, clear_Buffer(), copy_s2Buffer, FALSE, free_Buffer(), HDLIST_CONTENTS_KEY, HDLIST_CONTINUE, HDLIST_END_KEY, HDLIST_FIRST_LINE_KEY, LBUF, make_Buffer(), TRUE, and Buffer::vldsz.
Referenced by get_protocol_header_list(), and recv_http_header().
int is_header_continue | ( | tList * | pp | ) |
int is_header_continue(tList* pp)
pp が指しているヘッダ値が次のリストへ続いているかどうか判定する. プロトコル上では,ヘッダ値が複数行に渡る場合に相当する.
Definition at line 631 of file protocol.cpp.
References FALSE, HDLIST_CONTINUE, and TRUE.
Referenced by search_protocol_header(), search_protocol_header_partvalue(), search_protocol_header_value(), and set_protocol_contents().
void print_protocol_header | ( | tList * | pp, |
int | content ) |
int print_protocol_header(tList* pp)
pp のヘッダ部分(以外)を stderr に出力する.
Definition at line 644 of file protocol.cpp.
References ex_strcmp, HDLIST_CONTENTS_KEY, ON, PRINT_MESG, and TLIST_ANCHOR_NODE.
Buffer restore_protocol_contents(tList* list)
リスト listに保存されたデータからコンテンツを復元する.
Definition at line 109 of file protocol.cpp.
References BUFSZ, cat_Buffer(), HDLIST_CONTENTS_KEY, make_Buffer(), and strncmp_tList().
Buffer restore_protocol_header(tList* list, char* deli, int mode, int* hdsz)
リスト listに保存されたデータからヘッダデータを復元する. mode==ON なら listに紛れ込んでいるコンテンツの内容も加えて返す.
get_protocol_header_list() の逆.
Definition at line 55 of file protocol.cpp.
References Buffer::buf, cat_Buffer(), cat_s2Buffer, CHAR_TAB, copy_Buffer(), HDLIST_CONTENTS_KEY, HDLIST_CONTINUE, HDLIST_END_KEY, HDLIST_FIRST_LINE_KEY, init_Buffer(), make_Buffer(), ON, RECVBUFSZ, strncmp_tList(), and Buffer::vldsz.
Referenced by rebuild_http_Buffer(), send_http_file(), and send_http_header().
int search_crlfcrlf | ( | char * | mesg | ) |
int search_crlfcrlf(char* mesg)
文字列中の空行を探す.改行コードは 0x0d, 0x0a または 0x0a
Definition at line 600 of file protocol.cpp.
References JBXL_ARGS_ERROR.
Buffer search_protocol_header(tList* list, char* key, int no)
ヘッダリストの中から no番目の keyノードを探し出し,値(ldat.val.buf)のコピーを返す. 値が複数行に渡る場合は,\r\n を挿入して行を結合する. 検索では keyの長さに合わせる.また, keyはケースインセンシティブ.
list | 検索対象のヘッダ方向を格納したリスト |
key | ヘッダ種別. |
no | 同じヘッダ種別のノードが複数ある場合,何番目のノードかを指定する.1から数える. |
Definition at line 372 of file protocol.cpp.
References cat_Buffer(), cat_s2Buffer, dup_Buffer(), init_Buffer(), is_header_continue(), and strncasecmp_tList().
Referenced by get_http_header_method(), get_http_status_num(), get_http_version_num(), is_http_header_field(), recv_http_Buffer(), recv_http_file(), recv_http_header(), save_http_xml(), search_protocol_header_item(), search_protocol_header_partvalue(), and search_protocol_header_value().
Buffer search_protocol_header_item(tList* list, char* key, int no, char deli, int nm)
key をキーにした no番目のノードの値の中で,deliを区切りにした nm番目の項目(文字列)を返す.
list | 検索対象のヘッダ方向を格納したリスト |
key | ヘッダ種別. |
no | 同じヘッダ種別が複数ある場合,何番目のノードかを指定する.1から数える. |
deli | ノード値(文字列)の区切り文字. |
nm | deli を区切り文字として何番目の項目か? 1から数える. |
Definition at line 408 of file protocol.cpp.
References Buffer::buf, cawk_Buffer(), free_Buffer(), and search_protocol_header().
Buffer search_protocol_header_partvalue(tList* list, char* key, char* data, int no)
ヘッダリストの中から no番目の keyノードを探し出し,dataの文字列を含むノードの値(ldat.val.buf)のコピーを返す.
key, dataはケースインセンシティブ.data が複数行に継続している場合は,継続している行も単独の行として検査される.
list | 検索対象のヘッダ方向を格納したリスト |
key | ヘッダ種別. |
data | 検索するヘッダ値の最初の文字.NULL なら全てと一致. |
no | 同じヘッダ種別のノードが複数ある場合,何番目のノードかを指定する.1から数える. |
Definition at line 500 of file protocol.cpp.
References init_Buffer(), is_header_continue(), make_Buffer_bystr, search_protocol_header(), strcasecmp, and strstrcase().
Buffer search_protocol_header_value(tList* list, char* key, char* data, int no)
ヘッダリストの中から no番目の keyノードを探し出し,dataで始まるノードの値(ldat.val.buf)のコピーを返す.
key, dataはケースインセンシティブ.data が複数行に継続している場合は,継続している行も単独の行として検査される.
list | 検索対象のヘッダ方向を格納したリスト |
key | ヘッダ種別. |
data | 検索するヘッダ値の最初の文字.NULL なら全てと一致. |
no | 同じヘッダ種別のノードが複数ある場合,何番目のノードかを指定する.1から数える. |
Definition at line 436 of file protocol.cpp.
References init_Buffer(), is_header_continue(), make_Buffer_bystr, search_protocol_header(), strcasecmp, and strncasecmp.
void set_protocol_contents(tList* list, Buffer contents)
Definition at line 132 of file protocol.cpp.
References del_tList_node(), dup_Buffer(), free_Buffer(), HDLIST_CONTENTS_KEY, and is_header_continue().
int set_protocol_header | ( | tList * | list, |
char * | key, | ||
char * | value, | ||
int | no, | ||
int | mode ) |
Definition at line 574 of file protocol.cpp.
References add_tList_node_str, HDLIST_END_KEY, OFF, ON, set_value_tList(), and strncmp_tList().
Referenced by set_http_host_header().