学习内容
一共五百多行代码,其中包含了linux编程常用的API。可以通过学习源码,把不熟悉的API练习练习。
1 如何使用webbench
(1)查看参数帮助
(2)运行方法
即以上模拟30个客户端在30秒期间并发请求百度,结果如下:
每分钟平均有1532次请求连接,服务器每秒传输字节为4039230,在30秒期间请求连接成功为766次,失败0次。
2 源码常用函数练习
(1) 选项参数
int getopt_long(int argc, char * const argv[],const char *optstring, const struct option *longopts,int *longindex);
函数中的argc和argv通常直接从main()的两个参数传递而来。optsting是选项参数组成的字符串:
option结构数组,option结构称为长选项表,其声明如下:
struct option
{
const char *name;
int has_arg;
int *flag;
int val;
};
结构中的元素解释如下:
const char *name:选项名,前面没有短横线。譬如"help"、"verbose"之类。
int has_arg:描述长选项是否有选项参数,如果有,是哪种类型的参数,其值见下表: 符号常量 数值
含义
no_argument 0 选项没有参数
required_argument 1 选项需要参数
optional_argument 2 选项参数是可选的
int *flag:
如果该指针为NULL,那么getopt_long返回val字段的值;
如果该指针不为NULL,那么会使得它所指向的结构填入val字段的值,同时getopt_long返回0 int val:
如果flag是NULL,那么val通常是个字符常量,如果短选项和长选项一致,那么该字符就应该与optstring中
字符串optstring可以下列元素:
1.单个字符,表示选项,
2.单个字符后接一个冒号:表示该选项后必须跟一个参数。参数紧跟在选项后或者以空格隔开。该参数的指针赋给optarg。
3 单个字符后跟两个冒号,表示该选项后可以有参数也可以没有参数。如果有参数,参数必须紧跟在选项后不能以空格隔开。该参数的指针赋给optarg。(这个特性是GNU的扩张)。
optstring是一个字符串,表示可以接受的参数。例如,"a:b:cd",表示可以接受的参数是a,b,c,d,其中,a和b参数后面跟有更多的参数值。(例如:-a host --b name)
最后一个参数:longindex参数一般赋为NULL即可;如果没有设置为NULL,那么它就指向一个变量,这个变量会被赋值为寻找到的长选项在longopts中的索引值,这可以用于错误诊断。
函数使用方法:
1 1 #include <getopt.h> 2 2 3 3 #include <stdio.h> 4 4 5 5 #include <stdlib.h> 6 6 7 7 8 8 9 9 static const char *program =NULL; 10 10 11 11 12 12 13 13 static const struct option long_opts[] = { 14 14 15 15 {"help", no_argument, NULL, 'h'}, 16 16 17 17 {"version", no_argument, NULL, 'v'}, 18 18 19 19 {"author", required_argument, NULL, 'a'}, 20 20 21 21 {"date", no_argument, NULL, 'd'}, 22 22 23 23 {"time", no_argument, NULL, 't'}, 24 24 25 25 {0, 0, 0} 26 26 27 27 }; 28 28 29 29 void usage() 30 30 31 31 { 32 32 33 33 printf("argument: "); 34 34 35 35 printf(" --version,-v " 36 36 37 37 " --author, -a " 38 38 39 39 " --date, -d " 40 40 41 41 " --time, -t " 42 42 43 43 " --help, -h " 44 44 45 45 ); 46 46 47 47 } 48 48 49 49 50 50 51 51 int main(int argc,char* argv[]) 52 52 53 53 { 54 54 55 55 char *str; 56 56 57 57 int long_index,c,ret; 58 58 59 59 program = argv[0]; 60 60 61 61 while((c=getopt_long(argc, argv, "hva:dt", long_opts, &long_index))!=EOF){ 62 62 63 63 switch(c){ 64 64 65 65 case 'h': 66 66 67 67 usage(); 68 68 69 69 exit(0); 70 70 71 71 case 'v': 72 72 73 73 printf("version 1.2.0 "); 74 74 75 75 break; 76 76 77 77 case 'a': 78 78 79 79 str=optarg; 80 80 81 81 printf("author is %s ",str); 82 82 83 83 break; 84 84 85 85 case 'd': 86 86 87 87 printf("date is 2016.10.20 "); 88 88 89 89 break; 90 90 91 91 case 't': 92 92 93 93 printf("time is 12:30:45 "); 94 94 95 95 break; 96 96 97 97 default: 98 98 99 99 printf("ERR: please try: %s -h ", program); 100 100 101 101 exit(0); 102 102 103 103 } 104 104 105 105 } 106 106 107 107 return 0; 108 108 109 109 } 110 (2)字符串相关API 111 112 strlen()//字符串长度 113 114 bzero()//清空 115 116 strstr()//子串查找 117 118 strncpy()//复制 119 120 strcat()//拼接 121 122 1 #include <stdio.h> 123 2 #include <string.h> 124 3 #include <errno.h> 125 4 126 5 int main(void) 127 6 { 128 7 char string[20]; 129 8 char *str1="nihao"; 130 9 strncpy(string,str1,3); 131 10 string[3]='