Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

convert file to utf8 #344

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
44 changes: 44 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
root = true

[*]
charset = utf-8
end_of_line = crlf

[*.md]
insert_final_newline = true

[*.{c,c++,cc,cpp,cxx,h,h++,hh,hpp,hxx,idl,inl,ipp,tlh,tli}]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
vc_generate_documentation_comments = doxygen_slash_star

[*.{cs,csx,vb,vbx}]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
vc_generate_documentation_comments = xml

[*.{js,json,xml,toml,xaml}]
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.rc]
charset = utf-16le

[*.bat]
charset = utf-8
insert_final_newline = true

[*.sh]
charset = utf-8
end_of_line = lf
insert_final_newline = true

[*.asm]
charset = utf-8
end_of_line = crlf
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ elseif (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-rpath,./:./lib:../:../lib")
elseif (CMAKE_SYSTEM_NAME MATCHES "Windows")
message(STATUS "current platform: Windows")
add_compile_options("$<$<C_COMPILER_ID:MSVC>:/source-charset:utf-8>")
add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/source-charset:utf-8>")
else()
message(FATAL_ERROR "unknown CMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME}")
endif()
Expand Down
120 changes: 60 additions & 60 deletions app/gid/gid_client/c/include/lib_gid.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,113 +5,113 @@
extern "C" {
#endif

/* ͨѶЭ�鷽ʽ */
#define GID_PROTO_CMDLINE 0 /* �����з�ʽ */
#define GID_PROTO_JSON 1 /* http ��ʽ�����ݸ�ʽΪ json ��ʽ */
#define GID_PROTO_XML 2 /* http ��ʽ�����ݸ�ʽΪ xml ��ʽ */
/* 通讯协议方式 */
#define GID_PROTO_CMDLINE 0 /* 命令行方式 */
#define GID_PROTO_JSON 1 /* http 方式,数据格式为 json 格式 */
#define GID_PROTO_XML 2 /* http 方式,数据格式为 xml 格式 */

/* �������� */
#define GID_CMD_NEXT "new_gid" /* ��ȡ��һ��Ψһ gid */
/* 操作命令 */
#define GID_CMD_NEXT "new_gid" /* 获取下一个唯一 gid */

/* ������ */
/* 出错码 */

/* �ͻ�����صĴ����� */
#define GID_OK 200 /* ���� */
#define GID_ERR_INIT 400 /* ��δ��ʼ����Ӧ��Ӧ�ڳ����ʼ��ʱ���ó�ʼ������ gid_client_init */
#define GID_ERR_CONN 401 /* ���ӷ�����ʧ�� */
#define GID_ERR_IO 402 /* �������ͨ��ʧ�� */
#define GID_ERR_PROTO 403 /* Э���ʽ���� */
#define GID_ERR_SERVER 404 /* �������ڲ����� */
/* 客户端相关的错误码 */
#define GID_OK 200 /* 正常 */
#define GID_ERR_INIT 400 /* 库未初始化,应用应在程序初始化时调用初始化函数 gid_client_init */
#define GID_ERR_CONN 401 /* 连接服务器失败 */
#define GID_ERR_IO 402 /* 与服务器通信失败 */
#define GID_ERR_PROTO 403 /* 协议格式错误 */
#define GID_ERR_SERVER 404 /* 服务器内部出错 */

/* �������صĴ����� */
#define GID_ERR_SID 500 /* �Ự ID �Ų��� */
#define GID_ERR_OVERRIDE 501 /* �ﵽ������ֵ */
#define GID_ERR_SAVE 502 /* �洢������ʱ���� */
/* 服务端相关的错误码 */
#define GID_ERR_SID 500 /* 会话 ID 号不对 */
#define GID_ERR_OVERRIDE 501 /* 达到最大分配值 */
#define GID_ERR_SAVE 502 /* 存储至磁盘时出错 */

/**
* ���ʼ��������ʹ�����ڳ���������Ӧ�õ��øú�����ʼ����
* @param proto {int} ͨ��Э���ʽ���μ����棺GID_PROTO_XXX
* @param server_addr {const char*} gid ��������ַ����ʽ��ip:port ��
* domain:port �� unix �� /xxx/xxx/xxx
* 库初始化函数,使用者在程序启动后应该调用该函数初始化库
* @param proto {int} 通信协议格式,参见上面:GID_PROTO_XXX
* @param server_addr {const char*} gid 服务器地址,格式:ip:port
* domain:port unix /xxx/xxx/xxx
*/
void gid_client_init(int proto, const char *server_addr);

/**
* ���ݴ���Ż�ô�������
* @param errnum {int} ����ţ��μ����棺GID_ERR_XXX
* @return {const char*} ����������Ϣ
* 根据错误号获得错误描述
* @param errnum {int} 错误号,参见上面:GID_ERR_XXX
* @return {const char*} 错误描述信息
*/
const char *gid_client_serror(int errnum);

/**
* ���� HTTP �����е� URL���ڲ���ȱʡֵ���ɲ�ֱ�ӵ��ô˺���
* @param url {const char*} URL �ַ���
* 设置 HTTP 请求中的 URL,内部有缺省值,可不直接调用此函数
* @param url {const char*} URL 字符串
*/
void gid_client_set_url(const char *url);

/**
* ���� HTTP �����Ƿ񱣳ֳ����ӣ�ȱʡ����±��ֳ�����
* @param keepalive {int} �Ƿ񱣳ֳ�����
* 设置 HTTP 请求是否保持长连接,缺省情况下保持长连接
* @param keepalive {int} 是否保持长连接
*/
void gid_client_set_keepalive(int keepalive);

/**
* �ڳ���������£���������м������жϣ��������Դ�����ȱʡֵΪ 1
* @param nretry {int} ������Դ���
* 在长连接情况下,如果连接中间意外中断,设置重试次数,缺省值为 1
* @param nretry {int} 最大重试次数
*/
void gid_client_set_retry_limit(int nretry);

/**
* �������� gid �����������ӳ�ʱʱ�䣨�룩��ȱʡֵΪ 20 ��
* @param timeout {int} ��ʱʱ�䣨�룩
* 设置连接 gid 服务器的连接超时时间(秒),缺省值为 20
* @param timeout {int} 超时时间(秒)
*/
void gid_client_set_conn_timeout(int timeout);

/**
* ��������ͨ�ŵĶ�д��ʱʱ�䣨�룩��ȱʡֵΪ 20 ��
* @param timeout {int} ��ʱʱ�䣨�룩
* 设置网络通信的读写超时时间(秒),缺省值为 20
* @param timeout {int} 超时时间(秒)
*/
void gid_client_set_rw_timeout(int timeout);

/**
* �����һ�� gid ��
* @param tag {const char*} ��ʶ���ƣ����Ϊ�գ����ڲ�ȱʡʹ�� default ��ǩ��
* ��ֵ�ĸ�ʽΪ��tag_name[:sid]�����е� tag_name Ϊ�����ı�ʶ����sid Ϊ����
* �ñ�ʶ�������ȨID�ţ������ֵ�����˵� sid ��ƥ�䣬���ֹ���ʲ����ش���
* ������һ���µı�ʶ���󲢲�����һ�� gid ֵʱ��������������� sid ��� sid
* �Զ���Ϊ�ñ�ʶ�������ȨID�ţ���������������ʸñ�ʶ����� gid ������ṩ
* ����Ȩ ID ��
* @param errnum {int*} ��ָ��ǿ�ʱ������¼����ʱ�Ĵ����
* @return {long long int} ��õ���һ��Ψһ gid �ţ������ֵ < 0 ���ʾ����
* 获得下一个 gid
* @param tag {const char*} 标识名称,如果为空,则内部缺省使用 default 标签,
* 该值的格式为:tag_name[:sid],其中的 tag_name 为真正的标识名,sid 为访问
* 该标识对象的授权ID号,如果该值与服务端的 sid 不匹配,则禁止访问并返回错误,
* 当访问一个新的标识对象并产生第一个 gid 值时,其中如果设置了 sid 则该 sid
* 自动做为该标识对象的授权ID号,其它程序若想访问该标识对象的 gid 则必须提供
* 该授权 ID
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
*/
long long int gid_next(const char *tag, int *errnum);

/* �����ȡ gid �ĺ���ʹ���û��ṩ������������ */
/* 如果获取 gid 的函数使用用户提供的连接描述符 */

/**
* ���������з�ʽ�ӷ���˻�ȡ gid ��
* @param fd {int} ����������ӵ��׽���
* @param tag {const char*} ��ʶ���ƣ���Ϊ�����ڲ�ȱʡʹ��default
* @param errnum {int*} ��ָ��ǿ�ʱ������¼����ʱ�Ĵ����
* @return {long long int} ��õ���һ��Ψһ gid �ţ� * �����ֵΪ < 0 ���ʾ����
* 采用命令行方式从服务端获取 gid
* @param fd {int} 与服务器连接的套接字
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
* @return {long long int} 获得的下一个唯一 gid 号, * 如果该值为 < 0 则表示出错
*/
long long int gid_cmdline_get(int fd, const char *tag, int *errnum);

/**
* ���� http Э�������ݸ�ʽΪ json ��ʽ���ӷ���˻�ȡ gid ��
* @param fd {int} ����������ӵ��׽���
* @param tag {const char*} ��ʶ���ƣ���Ϊ�����ڲ�ȱʡʹ��default
* @param errnum {int*} ��ָ��ǿ�ʱ������¼����ʱ�Ĵ����
* @return {long long int} ��õ���һ��Ψһ gid �ţ������ֵ < 0 ���ʾ����
* 采用 http 协议且数据格式为 json 格式,从服务端获取 gid
* @param fd {int} 与服务器连接的套接字
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
*/
long long int gid_json_get(int fd, const char *tag, int *errnum);

/**
* ���� http Э�������ݸ�ʽΪ xml ��ʽ���ӷ���˻�ȡ gid ��
* @param fd {int} ����������ӵ��׽���
* @param tag {const char*} ��ʶ���ƣ���Ϊ�����ڲ�ȱʡʹ��default
* @param errnum {int*} ��ָ��ǿ�ʱ������¼����ʱ�Ĵ����
* @return {long long int} ��õ���һ��Ψһ gid �ţ������ֵ < 0 ���ʾ����
* 采用 http 协议且数据格式为 xml 格式,从服务端获取 gid
* @param fd {int} 与服务器连接的套接字
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
*/
long long int gid_xml_get(int fd, const char *tag, int *errnum);

Expand Down
8 changes: 4 additions & 4 deletions app/gid/gid_client/c/src/gid_json.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ acl_int64 gid_json_next(ACL_VSTREAM *client, const char *tag, int *errnum)
else
snprintf(buf, sizeof(buf), "{ cmd: '%s' }\r\n", GID_CMD_NEXT);

/* ���� HTTP JSON ���� */
/* 发送 HTTP JSON 请求 */
if (http_client_post_request(client, var_gid_url, 1,
"json", buf, (int) strlen(buf), errnum) < 0)
{
Expand All @@ -38,9 +38,9 @@ acl_int64 gid_json_next(ACL_VSTREAM *client, const char *tag, int *errnum)
return (-1);
}

json = acl_json_alloc(); /* ���� JSON ���� */
json = acl_json_alloc(); /* 分配 JSON 对象 */

/* ���� HTTP JSON ��Ӧ */
/* 接收 HTTP JSON 响应 */
if (http_client_get_respond(client, json, NULL, errnum, NULL) < 0)
{
if (errnum)
Expand All @@ -51,7 +51,7 @@ acl_int64 gid_json_next(ACL_VSTREAM *client, const char *tag, int *errnum)

#define STR acl_vstring_str

/* ���ݸ�ʽ: { status: 'ok|error', gid: xxx, tag: 'xxx', msg: 'xxx', err: 'xxx' } */
/* 数据格式: { status: 'ok|error', gid: xxx, tag: 'xxx', msg: 'xxx', err: 'xxx' } */

acl_foreach(iter, json) {
ACL_JSON_NODE *node = (ACL_JSON_NODE*) iter.data;
Expand Down
12 changes: 6 additions & 6 deletions app/gid/gid_client/c/src/gid_xml.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ acl_int64 gid_xml_next(ACL_VSTREAM *client, const char *tag, int *errnum)
else
snprintf(buf, sizeof(buf), "<request cmd='%s' />\r\n", GID_CMD_NEXT);

/* ���� HTTP JSON ���� */
/* 发送 HTTP JSON 请求 */
if (http_client_post_request(client, var_gid_url, 1,
"xml", buf, (int) strlen(buf), errnum) < 0)
{
Expand All @@ -39,14 +39,14 @@ acl_int64 gid_xml_next(ACL_VSTREAM *client, const char *tag, int *errnum)
return (-1);
}

xml = acl_xml_alloc(); /* ���� JSON ���� */
xml = acl_xml_alloc(); /* 分配 JSON 对象 */

if (tt == NULL)
tt = acl_vstring_alloc(100);
else
ACL_VSTRING_RESET(tt);

/* ���� HTTP JSON ��Ӧ */
/* 接收 HTTP JSON 响应 */
if (http_client_get_respond(client, NULL, xml, errnum, tt) < 0)
{
if (errnum)
Expand All @@ -66,18 +66,18 @@ acl_int64 gid_xml_next(ACL_VSTREAM *client, const char *tag, int *errnum)
}
*/

/* ���ݸ�ʽ: <respond status='ok|error' gid=xxx tag='xxx' msg='xxx' err='xxx' /> */
/* 数据格式: <respond status='ok|error' gid=xxx tag='xxx' msg='xxx' err='xxx' /> */

acl_foreach(iter, xml) {
ACL_XML_NODE *node = (ACL_XML_NODE*) iter.data;

/* �ҵ� respond ��� */
/* 找到 respond 结点 */
if (strcasecmp(STR(node->ltag), "respond") == 0
&& node->attr_list != NULL)
{
ACL_ITER attr_iter;

/* ����������� */
/* 遍历结点属性 */
acl_foreach(attr_iter, node->attr_list) {
ACL_XML_ATTR *attr = (ACL_XML_ATTR*) attr_iter.data;

Expand Down
Loading