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
| #include<stdio.h> #include<sys/stat.h> #include<string.h> #include<dirent.h> #include<getopt.h> #include<ctype.h> #include<stdlib.h> #include<unistd.h> #include<sys/ioctl.h> #include<pwd.h> #include<grp.h> #include<time.h> #include<locale.h>
#define LIST_SIZE 20970 #define PATH_SIZE 4048 #define FILE_PATH_SIZE 2000 #define FILE_COUNT_MAX 25600 #define Rsize 40000000
#define OPT__A 'a' #define OPT__L 'l' #define OPT__T 't' #define OPT__R 'r' #define OPT_RR 'R' #define OPT__I 'i' #define OPT__S 's'
typedef int(*FP)(const void *, const void *);
struct ifm { struct dirent rdirent; struct stat buf__stat; };
int opt_count_sum = 0; int opt; char optTable[256] = {}; char **filepath; int FileNameCount = 1; int FileNameRead = 0;
int order = 1;
void R();
int sort_init(const void * ptr1, const void * ptr2); int sort_by_change_time(const void * ptr1, const void * ptr2); void PrintList(struct ifm * readifm); void PrintWithL(struct ifm *readifm);
int main(int argc,char **argv) { filepath = (char **)malloc(80); filepath[0] = (char *)malloc(64); strcpy(filepath[0],".");
while((opt = getopt(argc,argv,"alRtris"))!=-1) { optTable[opt] = 1; opt_count_sum += optTable[opt]; }
char ** arcu = argv+1;
while(*arcu!=NULL&&arcu<argv+argc) { if(**arcu != '-') { FileNameCount--; break; } arcu ++; }
arcu = argv+1;
while(*arcu!=NULL&&arcu<argv+argc) { if(**arcu != '-') { filepath[FileNameCount] = (char *)realloc(filepath[FileNameCount],(strlen(*arcu)+1)* sizeof(char)); strcpy(filepath[FileNameCount++],*arcu); } arcu++; }
order = optTable[OPT__R] ? -1 : 1 ;
if(optTable[OPT_RR]) { for(int i = 0;i<FileNameCount;i++) R(filepath[i]); for(int i = 0;i<FileNameCount;i++) free(filepath[i]); free(filepath); return 0; }
while (FileNameRead<FileNameCount) { DIR * dir = opendir(filepath[FileNameRead]); if(dir!=NULL&&FileNameCount>1||optTable[OPT_RR]) printf("%s:\n",filepath[FileNameRead]); struct dirent * rdirent; struct stat buf__stat; struct stat * statbuf = &buf__stat;
if(dir == NULL) { if(optTable[OPT_RR]) { FileNameRead ++; continue; } printf("ls: 无法访问 '%s': 没有那个文件或目录\n",filepath[FileNameRead]); return 1; } struct ifm * ifmlist = (struct ifm *)malloc(2048*sizeof(struct ifm)); struct ifm * cur = ifmlist; int all_name_count = 0; int total_name_len = 0; int temp_line_len = 0; int max_len = 0; int line_print_now = 0; int divide_count = 0; size_t blockSum = 0; int fileSizeLenMax = 0;
struct dirent * temp_dirent;
while((temp_dirent = readdir(dir))!=NULL) { cur->rdirent = * temp_dirent; if(strlen(cur->rdirent.d_name)>max_len) max_len = strlen(cur->rdirent.d_name)+1;
char path[PATH_SIZE]; sprintf(path,"%s/%s",filepath[FileNameRead],cur->rdirent.d_name); stat(path,&cur->buf__stat);
total_name_len += strlen(cur->rdirent.d_name) + 2; if(optTable[OPT__S]) total_name_len += 3; if(optTable[OPT__I]) total_name_len += 8;
if(optTable[OPT__A])blockSum += cur->buf__stat.st_blocks/2; else if((cur->rdirent.d_name)[0]!='.')blockSum += cur->buf__stat.st_blocks/2;
int temp = cur->buf__stat.st_size; int fileSizeLen = 0; while(temp) temp/=10,fileSizeLen ++; if(fileSizeLen>fileSizeLenMax) fileSizeLenMax = fileSizeLen; all_name_count++; cur++;
} closedir(dir);
FP sort_mode = sort_init; if(optTable[OPT__T])sort_mode = sort_by_change_time; qsort(ifmlist,all_name_count,sizeof(struct ifm),sort_mode);
static struct winsize win; ioctl(STDIN_FILENO,TIOCGWINSZ,&win); divide_count = total_name_len / win.ws_col + 1; if(optTable[OPT__L]||optTable[OPT__S])printf("总计 %zu\n",blockSum);
struct ifm * readifm = ifmlist; while(readifm!=cur) { if(!optTable[OPT__A]) if(!strcmp(readifm->rdirent.d_name,".")||!strcmp(readifm->rdirent.d_name,"..")||*readifm->rdirent.d_name=='.') { readifm++; continue; }
if(!optTable[OPT__L]&&line_print_now == ((all_name_count/divide_count-1))/(optTable[OPT_RR]?2:1)) { printf("\b\b"); printf("\n"); temp_line_len = 0; line_print_now = 0; }
if(optTable[OPT__I]) { printf("%lu ",readifm->rdirent.d_ino); }
if(optTable[OPT__S]) { printf("%2lu ",readifm->buf__stat.st_blocks/2); }
if(optTable[OPT__L]) { PrintWithL(readifm); PrintList(readifm); printf("\n"); }
else if(!optTable[OPT_RR]&&total_name_len<=win.ws_col) { PrintList(readifm); }
else { temp_line_len += strlen(readifm->rdirent.d_name)+2; temp_line_len += strlen(readifm->rdirent.d_name)+2;
if(S_ISREG(readifm->buf__stat.st_mode) &&!(readifm->buf__stat.st_mode & S_IXUSR)) printf("%-*s",max_len,readifm->rdirent.d_name); if(S_ISREG(readifm->buf__stat.st_mode) &&(readifm->buf__stat.st_mode & S_IXUSR)) printf("\033[1;32m%-*s\033[0m",max_len,readifm->rdirent.d_name); if(S_ISDIR(readifm->buf__stat.st_mode)) printf("\033[34m\033[1m""%-*s\033[0m",max_len,readifm->rdirent.d_name); printf(" "); } line_print_now ++; readifm ++; } if(!optTable[OPT__L])printf("\n"); FileNameRead ++; if(FileNameCount>1&&FileNameCount!=FileNameRead)printf("\n"); free(ifmlist); } for(int i = 0;i<FileNameCount;i++) free(filepath[i]); free(filepath); return 0; } void R(char * Rfile) { struct ifm * Rlist = (struct ifm *)malloc(sizeof(struct ifm) * Rsize);
DIR * rdir = opendir(Rfile); if(rdir == NULL) { fprintf(stderr,"\033[0m""ls: 无法打开目录 '%s': 权限不够\n",Rfile); return; } int count4q = 0; struct dirent * trdir; for(int i = 0;(trdir = readdir(rdir))!=NULL;i++,count4q++) { char temp[2000]; Rlist[i].rdirent = *trdir; sprintf(temp,"%s/%s",Rfile,Rlist[i].rdirent.d_name); stat(temp,&Rlist[i].buf__stat); } qsort(Rlist,count4q,sizeof(struct ifm),sort_init); printf("%s:\n\n",Rfile); for(int i = 0;i<count4q;i++) { if(!optTable[OPT__A]) { if(*Rlist[i].rdirent.d_name=='.') continue; } if(optTable[OPT__I]) { printf("%lu ",Rlist[i].rdirent.d_ino); } if(optTable[OPT__S]) { printf("%2lu ",Rlist[i].buf__stat.st_blocks/2); } if(optTable[OPT__L]) { PrintWithL(&Rlist[i]); } if(S_ISDIR(Rlist[i].buf__stat.st_mode)) { printf("\033[1;5;34m""%s\n\033[0m",Rlist[i].rdirent.d_name); } else if(strstr(Rlist[i].rdirent.d_name,".png")!=NULL) { printf("\033[1;5;35m""%s\n\033[0m",Rlist[i].rdirent.d_name); } else if(Rlist[i].buf__stat.st_mode&S_IXUSR) { printf("\033[1;5;32m""%s\n\033[0m",Rlist[i].rdirent.d_name); } else if(strstr(Rlist[i].rdirent.d_name,".tar")!=NULL||strstr(Rlist[i].rdirent.d_name,".gz")!=NULL||strstr(Rlist[i].rdirent.d_name,".zip")!=NULL) { printf("\033[1;5;31m""%s\n\033[0m",Rlist[i].rdirent.d_name); } else { printf("%s\n",Rlist[i].rdirent.d_name); } }
for(int i = 0;i<count4q;i++) { if(S_ISDIR(Rlist[i].buf__stat.st_mode)&&strcmp(Rlist[i].rdirent.d_name, ".") != 0 && strcmp(Rlist[i].rdirent.d_name, "..") != 0) { char go[1000]; sprintf(go,"%s/%s",Rfile,Rlist[i].rdirent.d_name); struct stat ng; lstat(go,&ng); if(ng.st_mode==-1) exit(1);
if(S_ISLNK(ng.st_mode)) { continue; }
if(!optTable[OPT__A]) { if(*Rlist[i].rdirent.d_name=='.') continue; }
R(go); } } closedir(rdir); free(Rlist); }
int sort_init(const void * ptr1, const void * ptr2) { struct ifm * pos = (struct ifm*)ptr1, * aftpos = (struct ifm*)ptr2; setlocale(LC_COLLATE,""); return strcoll(pos->rdirent.d_name,aftpos->rdirent.d_name) * order; }
int sort_by_change_time(const void * ptr1, const void * ptr2) { struct ifm * pos = (struct ifm*)ptr1, * aftpos = (struct ifm*)ptr2; if(pos->buf__stat.st_ctime<aftpos->buf__stat.st_ctime) return 1 * order; if(pos->buf__stat.st_ctime>aftpos->buf__stat.st_ctime) return -1 * order; return 0; }
void PrintList(struct ifm * readifm) {
if(S_ISREG(readifm->buf__stat.st_mode) &&!(readifm->buf__stat.st_mode & S_IXUSR)) printf("%s",readifm->rdirent.d_name); if(S_ISREG(readifm->buf__stat.st_mode) &&(readifm->buf__stat.st_mode & S_IXUSR)) printf("\033[1;32m%s\033[0m",readifm->rdirent.d_name); if(S_ISDIR(readifm->buf__stat.st_mode)) printf("\033[1;34m%s\033[0m",readifm->rdirent.d_name); printf(" "); }
void PrintWithL(struct ifm *readifm) { if(S_ISDIR(readifm->buf__stat.st_mode))printf("d"); else if(S_ISLNK(readifm->buf__stat.st_mode))printf("l"); else if(S_ISBLK(readifm->buf__stat.st_mode))printf("d"); else if(S_ISCHR(readifm->buf__stat.st_mode))printf("c"); else if(S_ISCHR(readifm->buf__stat.st_mode))printf("c"); else printf("-");
printf(readifm->buf__stat.st_mode & S_IRUSR?"r":"-"); printf(readifm->buf__stat.st_mode & S_IWUSR?"w":"-"); printf(readifm->buf__stat.st_mode & S_IXUSR?"x":"-"); printf(readifm->buf__stat.st_mode & S_IRGRP?"r":"-"); printf(readifm->buf__stat.st_mode & S_IWGRP?"w":"-"); printf(readifm->buf__stat.st_mode & S_IXGRP?"x":"-");
printf(readifm->buf__stat.st_mode & S_IROTH?"r":"-"); printf(readifm->buf__stat.st_mode & S_IWOTH?"w":"-"); printf(readifm->buf__stat.st_mode & S_IXOTH?"x":"-");
printf(" %lu",readifm->buf__stat.st_nlink); printf(" %s",getpwuid(readifm->buf__stat.st_uid)->pw_name); printf(" %s",getgrgid(readifm->buf__stat.st_gid)->gr_name); printf("%lu ",readifm->buf__stat.st_size); struct tm * time = localtime(&readifm->buf__stat.st_mtime); char time_buf[64]; strftime(time_buf, 64, "%m月 %d %H:%M",time); printf("%s ",time_buf); }
|