forked from cuncinc/FileManageSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NodeOpe.c
519 lines (454 loc) · 9.47 KB
/
NodeOpe.c
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/*
* time:2019年12月7日 11点41分
* author:宋淳
* 描述:要封装的操作,不对外暴露的细节
*/
#include "NodeInfo.h"
#include "NodeOpe.h"
#include "State.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//获取文件状态所需的头文件
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
/*
* Author: 谢文韬
* 作用:判断路径终点是否为文件
* 用法:参数path是文件的路径,如果是文件则返回true,否则返回false
*/
boolean file_exsists(char *path)
{
struct _stat buf;
//获得文件状态信息
_stat(path, &buf);
if(_S_IFREG & buf.st_mode) //如果是文件,返回true
{
return true;
}
else //如果不是文件或其他情况,返回false
{
return false;
}
}
/*
* Author: 谢文韬
* 作用:判断路径终点是否为文件夹
* 用法:参数path是文件夹的路径,如果是文件夹则返回true,否则返回false
*/
boolean folder_exsists(char *path)
{
struct _stat buf;
//获得文件状态信息
_stat(path, &buf);
if(_S_IFDIR & buf.st_mode) //如果是文件夹,返回true
{
return true;
}
else //如果不是文件夹或其他情况,返回false
{
return false;
}
}
/*
* Author: 谢文韬
* 作用:返回文件(夹)名,从最后一个'\'开始到末尾
* 用法:参数path是文件的绝对路径,文件不存在返回NULL
*/
// char * get_name(char * p)
// {
// if(p == NULL || 0==strlen(p)) //若路径不存在返回NULL
// {
// return NULL;
// }
// char *path = (char *)malloc(sizeof(char) * (strlen(p)+1));
// char *name = (char *)malloc(sizeof(char) * (strlen(p)+1));
// strcpy(path, p);
// int idx; //位置标记
// int i, j;
// //提取出路径尾的文件名
// for(i = strlen(path); path[i] != '\\'; i--)
// {
// idx = i;
// }
// for(i = idx, j=0; path[i] != '\0'; i++, j++)
// {
// name[j] = path[i];
// }
// name[j] = '\0';
// // 以下是去掉后缀名的代码,不需要使用
// // if(file_exsists(path)) //如果是文件则祛除后缀名
// // {
// // for(i=strlen(name); i>=0 && name[i]!='.'; i--)
// // {
// // ; //空语句
// // }
// // if ( -1!=i || 0!=i ) //排除文件名没有'.'的文件以及如".gitignore"的隐藏文件
// // {
// // name[i] = '\0';
// // }
// // }
// char *name1 = (char *)malloc(sizeof(char) * (strlen(name)+1));
// strcpy(name1, name);
// free(name);
// free(path);
// return name1;
// }
char * get_name(char * path)
{
if(path == NULL || 0==strlen(path)) //若路径不存在返回NULL
{
return NULL;
}
char *name = (char *)malloc(sizeof(char) * (strlen(path)+1));
char *ch = name;
int length = strlen(path);
int i = length;
while (*path) //移到最后
{
++path;
}
while (i>=0 && *(path-1) != '\\') //找到最右的'\'
{
--i;
--path;
}
while (*path!='\0') //复制
{
*ch++ = *path++;
}
*ch = '\0';
char * name1 = (char *)malloc(sizeof(char) * (strlen(name)+1));
strcpy(name1, name);
free(name);
return name1;
}
/*
* Author: 谢文韬
* 作用:返回文件拓展名的指针
* 用法:参数path是文件的绝对路径,拓展名不存在返回NULL
*/
char *get_extension(char *path)
{
if(path == NULL || 0==strlen(path) ||strchr(path, '.') == NULL) //若路径不存在或后缀名不存在则返回NULL
{
return NULL;
}
char *name = (char *)malloc(sizeof(char) * (strlen(path)+1));
char *ch = name;
int length = strlen(path);
int i = length;
while (*path) //移到最后
{
++path;
}
while (i>=0 && *(path-1) != '.') //找到最右的'.'
{
--i;
--path;
}
while (*path!='\0') //复制
{
*ch++ = *path++;
}
*ch = '\0';
char * name1 = (char *)malloc(sizeof(char) * (strlen(name)+1));
strcpy(name1, name);
free(name);
return name1;
}
/*
* Author: 宋淳 Modify:谢文韬
* 作用:返回文件的大小,单位为Byte(字节)
* 用法:参数path是文件的路径,文件不存在返回-1
*/
long get_file_size(char *path)
{
long size;
FILE* f = fopen(path, "rb");
fseek(f, 0L, SEEK_END);
size = ftell(f);
fclose(f);
return size;
}
/*
* Author: 谢文韬
* 作用:获取文件绝对路径
* 用法:参数path是文件的路径,路径不存在时返回NULL
* 备注:此函数可能有bug
*/
char * get_dir(char * path)
{
if(path == NULL)
{
return NULL;
}
char *absolut_path = (char *)malloc(sizeof(char) * (strlen(path)+1));
int i, j ;
for(i = 0, j=0; i<strlen(path); i++, j++)
{
absolut_path[i] = path[i];
if(path[i] == '\\')
{
absolut_path[j+1] = '\\';
j++;
}
}
absolut_path[j-2] = '\0';
printf("%s", absolut_path);
char *absolut_path1 = (char *) malloc(sizeof(char) * (strlen(absolut_path)+1));
strcpy(absolut_path1, absolut_path);
// free(absolut_path);
return absolut_path1;
}
/*
* Author: 谢文韬
* 作用:获取路径文件相关信息
* 用法:参数path是文件的路径,路径不存在时返回NULL
*/
FileInfo * create_info_node(char * path)
{
// printf("@@%s@@\n", path);
if (NULL==path || 0==strlen(path))
{
return NULL;
}
FileInfo * infoNode = (FileInfo *)malloc(sizeof(FileNode));
struct _stat buf;
int result;
int filenum = 0;
result = _stat(path, &buf); //获得文件状态信息
if(infoNode == NULL || path == NULL || result != 0)// 若内存分配失败,路径不存在或文件不存在,返回NULL
{
return NULL;
}
char *modify = (char *)malloc(sizeof(char) * strlen(ctime(&buf.st_mtime)));
strcpy(modify, ctime(&buf.st_mtime));
int i;
for(i = 0; modify[i] != '\n'; i++ );
modify[i] = '\0';
infoNode->modifyTime = modify; //获得修改时间
infoNode->modifyTimeNum = buf.st_mtime; //获得修改时间
strcpy(infoNode->modifyTime, modify);
infoNode->path = path;
// printf("%s.i\n", __func__);
// 在i和j之间似乎有bug
infoNode->name = get_name(path);
// printf("%s.j\n", __func__);
if(file_exsists(path)) //如果是文件
{
// printf("%s:file_start\n", __func__);
infoNode->type = file;
infoNode->size = buf.st_size;
infoNode->extension = get_extension(path);
infoNode->innerFileNum = -1;
// printf("%s:file_end\n", __func__);
}
else if(folder_exsists(path)) //如果是文件夹
{
// printf("%s:folder_start\n", __func__);
infoNode->type = folder;
infoNode->size = -1;
infoNode->extension = NULL;
struct dirent *entry;
// printf("%s:folder_1\n", __func__);
DIR * dir = NULL;
dir = opendir(path);
// printf("%s:folder_2\n", __func__);
//去掉小圆点
readdir(dir);
readdir(dir);
while((entry = readdir(dir)) != 0)
{
++filenum; //文件数目加加
}
// printf("filenum = %d\n", filenum);
// printf("%s:folder_3\n", __func__);
closedir(dir);
infoNode->innerFileNum = filenum;
// printf("%s:folder_end\n", __func__);
}
// printf("%s:end\n", __func__);
return infoNode;
}
/*
* Author:宋淳
* 作用:在spacing个宽度下输出name,超过spacing的字符回被截断
*/
void print_name(char *name, int spacing)
{
if (strlen(name) > spacing)
{
char *p = name;
int i;
for (i=0; i<spacing-1; ++i)
{
printf("%c", *p++);
}
printf("..");
}
else
{
printf("%s", name);
int i;
for (i=strlen(name); i<=spacing; ++i)
{
printf(" ");
}
}
printf(" ");
return;
}
/*
* Author:谢文韬
* 作用:前序遍历输出文件二叉树节点的name
*/
void pre_order_in_name(FilesBiTree root)
{
if(root == NULL)
{
return;
}
printf("%s\n", root->info->name);
pre_order_in_name(root->lch);
pre_order_in_name(root->rch);
}
/*
* 作用:前序遍历输出文件二叉树节点的path
*/
void pre_order_in_path(FilesBiTree root)
{
if(root == NULL)
{
return;
}
printf("%s\n", root->info->path);
pre_order_in_path(root->lch);
pre_order_in_path(root->rch);
}
/*
* Author:宋淳
* 作用:释放一颗树的内存
* 调用须知:调用这个函数后,要把FilesBiTree置NULL
*/
void free_tree(FilesBiTree tree)
{
if (NULL == tree)
return;
free(tree->lch);
free(tree->rch);
free(tree->info->extension);
// free(tree->info->modifyTime);
free(tree->info->name);
free(tree->info->path);
// free(tree->info); //free不了?
free(tree);
return;
}
/*
* Author:宋淳
* 描述:传入Byte大小,获取合适单位的大小
* 如果不保存,只输出,调用一个就free一个
*/
char *get_size_string(long size)
{
int unit; //标记单位
long dSize;
long long gb = 1024 *1024 *1024 * 1024; //直接使用会溢出
if (size<=0)
{
char *string = (char *)malloc(sizeof(char) *2);
string[0] = '0';
string[1] = '\0';
return string;
}
if (size < 1024)
{
dSize = size * 100;
unit = 1;
}
else if (size < 1024 *1024)
{
dSize = size / 1024.0 * 100;
unit = 2;
}
else if (size < 1024 * 1024 *1024)
{
dSize = size / 1024.0 / 1024.0 * 100;
unit = 3;
}
else if (size < gb)
{
dSize = size / 1024.0 / 1024.0 / 1024.0 * 100;
unit = 4;
}
int cnt = 0; //标记size的位数
long num = dSize;
char str[20] = {'\0'}; //把long转为char的中转
while (num!=0)
{
str[cnt++] = (int)(num%10) + '0';
num /= 10;
}
char *string = (char *)malloc(sizeof(char) * (cnt+5));
char *p = string;
while (cnt>=0)
{
if (2 == cnt)
{
*p++ = '.';
*p++ = str[--cnt];
continue;
}
*p++ = str[--cnt];
}
*(p-1) = ' ';
if (1 == unit)
{
strcpy(p, "Byte");
p[4] = '\0';
}
else if (2 == unit)
{
strcpy(p, "KB");
p[2] = '\0';
}
else if (3 == unit)
{
strcpy(p, "MB");
p[2] = '\0';
}
else if (4 == unit)
{
strcpy(p, "GB");
p[2] = '\0';
}
return string;
}
#if 0
/*
* Author: 宋淳 Modify:谢文韬
* 作用:获取文件当前状态
* 用法:参数path是文件的路径,打印出文件的相关信息
*/
void get_file_status(char *path)
{
struct _stat buf;
int result;
//获得文件状态信息
result = _stat(path , &buf );
//显示文件状态信息
if( result != 0 )
printf( "显示文件状态信息出错" );//并提示出错的原因,如No such file or directory(无此文件或索引)
else
{
printf("文件大小: %ld", buf.st_size);
printf("\n文件创建时间: %s", ctime(&buf.st_ctime));
printf("访问日期: %s", ctime(&buf.st_atime));
printf("最后修改日期: %s", ctime(&buf.st_mtime));
}
return;
}
#endif