-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmycat
390 lines (328 loc) · 9.4 KB
/
mycat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
/***********************************************************************
mycat:命令用于连接文件并打印到标准输出设备上。
# 功能:
* 能显示一个或多个文件内容
* 能根据shell的传入参数的不同参数实现不同功能:
* -n 或 --number:由 1 开始对所有输出的行数编号。
* -b 或 --number-nonblank:和 -n 相似,只不过对于空白行不编号。
* -s 或 --squeeze-blank:当遇到有连续两行以上的空白行,就代换为一行的空白行。
* -v 或 --show-nonprinting:使用 ^ 和 M- 符号,除了 LFD 和 TAB 之外。
* -E 或 --show-ends : 在每行结束处显示 $。
* -T 或 --show-tabs: 将 TAB 字符显示为 ^I。
* -A, --show-all:等价于 -vET。
* -e:等价于"-vE"选项;
* -t:等价于"-vT"选项;
# mycat语法格式
mycat [-AbeEnstTuv] [--help] [--version] fileName
# 范例:
把 textfile1 的档案内容加上行号后输入 textfile2 这个档案里:
mycat -n textfile1 > textfile2
# 版本:1.0
* 如果程序后直接带文件则会将文件内容输入到标准输出
* 如果参数不对则会报错
***********************************************************************/
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <unistd.h>
#include <wchar.h>
#include <wctype.h>
#include <dirent.h>
#include <sys/stat.h>
/*各个参数的标志变量*/
static int nflag,bflag,sflag,vflag,Eflag,Tflag,Aflag,hflag,Vflag;
static void show_help(char *argv);
static char get_option_flag(int argc, char *argv);
static void file_copy(FILE* file1,FILE* file2);
static int line_number_add(FILE* input_file, FILE* output_file, char* argv);
int g_option_flag = 0;
char g_option = '/0';
/***********************************************************************
Function : show_help
Description: 打印帮助
Ca11s:
printf()
Called By:
main()
Input:
argv:控制台参数的字符串指针首地址
Output:
无
Return:
无
Others:
无
***********************************************************************/
void show_help(char *argv)
{
printf("%s:please input your option:\n",argv);
printf("mycat [-AbEnsTv] fileName.\n");
printf(" -n :由 第1行 开始对所有输出的行数编号。\n");
printf(" -b :与 -n 相似,只不过对于空白行不编号。\n");
printf(" -s :当遇到有连续两行以上的空白行,就代换为一行的空白行。\n");
printf(" -v :使用 ^ 和 M- 符号,除了 LFD 和 TAB 之外。\n");
printf(" -E :在每行结束处显示 $。\n");
printf(" -T : 将 TAB 字符显示为 ^I。\n");
printf(" -A :等价于 -vET。\n");
printf(" -h :显示帮助。\n");
printf(" -V :显示版本。\n");
}
/***********************************************************************
Function : get_option_flag
Description: 判断是否是带參命令行
Ca11s:
int getopt(int argc,char * const argv[ ],const char * optstring);
while()
switch()
Called By:
main()
Input:
argc:控制台输入的参数的个数
argv:控制台参数的字符串指针首地址
Output:
无
Return:
flag:用于判断控制台输入是否含有需求参数
Others:
无
***********************************************************************/
char get_option_flag(int argc, char *argv)
{
/*获取控制台参数中间变量*/
char ch_option = 0;
while((ch_option = getopt(argc, argv,"nbsvETAhV::"))!= -1)
{
/*获取控制台传入的参数对各个标志位进行置 1*/
switch(ch_option)
{
/*如果获得的参数为 -n 则将由 1 开始对所有输出的行数编号。*/
case 'n':
{
nflag = 1;
break;
}
/*与 -n 类似,下同*/
case 'b':
{
bflag = 1;
break;
}
case 's':
{
sflag = 1;
break;
}
case 'v':
{
vflag = 1;
break;
}
case 'E':
{
Eflag = 1;
break;
}
case 'T':
{
Tflag = 1;
break;
}
case 'A':
{
Aflag = 1;
break;
}
case 'h':
{
hflag = 1;
break;
}
case 'V':
{
Vflag = 1;
break;
}
default :
{
g_option_flag = 0;
break;
}
}
}
/*进行标志的判断*/
g_option_flag = (nflag||
bflag||
sflag||
vflag||
Eflag||
Tflag||
Aflag||
hflag||
Vflag);
return ch_option;
}
/***********************************************************************
Function : file_copy
Description: 用于将指定文件输出到另一文件中
Ca11s:
int getc(FILE *stream);
int putc(int ch,FILE*fp);
Called By:
main()
Input:
input_file:需要进行操作的目标文件
output_file:接受file1输出的目标文件
Output:
无
Return:
无
Others:
无
***********************************************************************/
void file_copy(FILE* input_file, FILE* output_file)
{
/*用于输出文件内容的中间变量*/
char temp = 0;
while((temp = getc(input_file)) != EOF)
{
putc(temp,output_file);
}
}
int line_number_add(FILE* input_file, FILE* output_file, char* argv)
{
input_file = fopen(argv, "rb");
if(input_file == NULL)
{
printf("No such file:%s",argv);
return 0;
}
int int_line_num = 1;
char ch_buffer[256] = {0};
while(fgets(ch_buffer, 256, input_file) != NULL)
{
fprintf(output_file, "%4d:%s", int_line_num++, ch_buffer);
}
fclose(input_file);
return 0;
}
int main(int argc,char *argv[])
{
/*通过判断命令行参数的个数来进行下一步编程*/
/*只有一个参数时显示帮助*/
if(argc == 1)
{
show_help(argv[0]);
return 0;
}
/*有两个参数时*/
else if(argc == 2)
{
char ch_option = '0';
printf("Now you are already in argc==2\n");
/*获取控制台选项参数内容并进行标志位判断*/
ch_option = get_option_flag(argc, argv);
/*带参数且是[-AbEnsTv]则显示提示*/
if(g_option_flag == 1)
{
printf("Your format is not right,follow this message:\n");
printf("mycat [-AbEnsTv] fileName.\n");
}
/*未带参数则默认直接带文件,直接将文件内容输出到标准输出*/
else
{
FILE *fp = NULL;
/*创建文件句柄,访问文件,若文件无法找到则报错,关闭文件*/
if((fp = fopen(argv[1], "r")) == NULL)
{
printf("no such file:%s",argv[1]);
fclose(fp);
return 0;
}
/*访问成功则将文件内容拷贝至标准输出*/
else
{
file_copy(fp, stdout);
fclose(fp);
}
}
}
/*输入三个参数且含有指定参数&&(g_option_flag == 1)*/
else if((argc == 3))
{
printf("Now your input have 3 argc\n");
FILE *fp = NULL;
/*获取控制台参数中间变量*/
char ch_option = 0;
ch_option = getopt(argc, argv,"nbsvETAhV::");
/*获取控制台传入的参数对各个标志位进行置 1*/
switch(ch_option)
{
/*如果获得的参数为 -n 则将由 1 开始对所有输出的行数编号。*/
case 'n':
{
line_number_add(fp, stdout, argv[2]);
nflag = 1;
break;
}
/*与 -n 类似,下同*/
case 'b':
{
bflag = 1;
break;
}
case 's':
{
sflag = 1;
break;
}
case 'v':
{
vflag = 1;
break;
}
case 'E':
{
Eflag = 1;
break;
}
case 'T':
{
Tflag = 1;
break;
}
case 'A':
{
Aflag = 1;
break;
}
case 'h':
{
hflag = 1;
break;
}
case 'V':
{
Vflag = 1;
break;
}
default :
{
printf("no such option");
break;
}
}
if((fp = fopen(argv[2], "r")) == NULL)
{
printf("no such file:%s",argv[1]);
fclose(fp);
return 0;
}
}
return 0;
}