[转]URL的解析,C语言实现

http://blog.csdn.net/cuishumao/article/details/10284463

一 说明
(1)应用情况:比如基于socket来实现http协议等,这时候就需要解析URL。
(2)为了移植性,没有用非标准C库windows下的StrDup(linux下为strdup),用自己编写的dup_str。
(3)编译环境:windows ,visual studio2010
二 URL的格式:
(协议)://(主机名):(端口号) / (文件路径)/(文件名) 
  例如:http://zj.qq.com/a/20130824/002507.htm#p=8
      http://www.itpub.net/kwrss/201211/wangzhiduankou.shtml
三 实现

  1. #include <stdio.h>     //printf
  2. #include <string.h>    //strchr strncmp ,memcpy
  3. #include <malloc.h>    //malloc free
  4. #include <stdlib.h>    //atoi
  5. //将source开始空间的以NULL结尾的字符拷贝到dest中
  6. //返回的指针需要free
  7. char*dup_str(const char*source)
  8. {
  9. if(source==NULL)
  10. return  NULL;
  11. int len = strlen(source);
  12. char *dest = (char*)malloc(len+1);
  13. memcpy(dest,source,len+1);
  14. return dest;
  15. }
  16. //函数功能:解析URL
  17. //参数:host带回主机字符串,protocl协议,port端口,abs_path带回绝对路径
  18. //使用完注意释放host和abs_path在堆上分配的内存
  19. //备注:(1)先取到URL的一份拷贝,方面将该字符串截成几段,分别处理;
  20. //      (2)用了指针引用,也可以使用二重指针来解决参数带回值的问题
  21. void parse_URL(const char*URL,const char*protocl,char*&host,unsigned int &port,char*&abs_path)
  22. {
  23. if(URL == NULL)
  24. return ;
  25. char *url_dup = dup_str(URL);
  26. char *p_slash = NULL;//主机后第一个斜杠的位置
  27. char *p_colon = NULL;//主机后第一个冒号的位置
  28. char *start = 0;    //记录www开始的位置
  29. if(strncmp(url_dup,protocl,strlen(protocl))==0)
  30. {
  31. start = url_dup+strlen(protocl)+3;
  32. p_slash = strchr(start,'/');
  33. if(p_slash != NULL)
  34. {
  35. abs_path= dup_str(p_slash);
  36. *p_slash = '\0';
  37. }
  38. else
  39. {
  40. abs_path= dup_str("/");
  41. }
  42. p_colon = strchr(start,':');
  43. if(p_colon != NULL)
  44. {
  45. port = atoi(p_colon+1);
  46. *p_colon = '\0';
  47. }
  48. else
  49. port = 8080;//没有的话取默认的8080端口
  50. }
  51. host = dup_str(start);
  52. }
  53. if(url_dup != NULL)
  54. {
  55. free(url_dup);
  56. url_dup = NULL;
  57. }
  58. }
  59. int main()
  60. {
  61. //这是一个伪造的地址,用于测试
  62. //char *URL = "http://www.xyz2013.com";
  63. //char *URL = "ftp://www.xyz2013.com:8080";
  64. char *URL = "https://www.xyz2013.com:1324/My/5201449.shtml";
  65. char*abs_path = NULL;
  66. char*host = NULL;
  67. unsigned int port;
  68. parse_URL(URL,"https",host,port,abs_path);
  69. printf("主机地址:%s\n",host);
  70. printf("端口号:%d\n",port);
  71. printf("绝对路径:%s\n",abs_path);
  72. //需要释放host,abs_path
  73. if(host!=NULL)
  74. {
  75. free(host);
  76. host = NULL;
  77. }
  78. if(abs_path!=NULL)
  79. {
  80. free(abs_path);
  81. abs_path=NULL;
  82. }
  83. getchar();
  84. }

结果:

[转]URL的解析,C语言实现

上一篇:怎样学习使用libiconv库


下一篇:SignalR学习笔记(四) 性能优化