#include #include #include #include #include #include #include #include #include #include #include #include #include #include "make_path.h" #include "get_stat.h" unsigned int a_flag; unsigned int l_flag; unsigned int F_flag; unsigned int p_flag; struct d_node { char *name; struct d_node *next; struct stat stats; }; /* Work with dir */ struct d_node *stat_file(char *filename) { struct d_node *file = malloc(sizeof(struct d_node)); if (file == NULL) return NULL; if (mu_get_lstat("ls", filename, &file->stats)) return NULL; return file; } struct d_node **list(const char *path, size_t *nfiles) { DIR *dp = opendir(path); if (dp == NULL) { fprintf(stderr, "ls: %s: %s\n", path, strerror(errno)); return NULL; } struct d_node **dir, *cur, *dr = NULL; size_t files = 0; struct dirent *ep; while ((ep = readdir(dp)) != NULL) { if (ep->d_name[0] == '.' && !a_flag) continue; char *full_path = mu_make_path("ls", path, ep->d_name); if (full_path == NULL) continue; cur = stat_file(full_path); if (cur == NULL) { free(full_path); continue; } free(full_path); cur->name = ep->d_name; cur->next = dr; dr = cur; files++; } if (dr == NULL) return NULL; *nfiles = files; dir = malloc((files + 1) * sizeof(struct d_node *)); if (dir == NULL) { fprintf(stderr, "ls: malloc failed\n"); exit(1); } for (size_t i = 0; ; i++) { dir[i] = dr; dr = dr->next; if (dr == NULL) break; } closedir(dp); return dir; } void dfree(struct d_node **dir) { struct d_node *cur = dir[0], *next; while (cur != NULL) { next = cur->next; free(cur); cur = next; } free(dir); } /* Print */ void print(const struct d_node *node) { char suf = 0; if (F_flag) { if (S_ISDIR(node->stats.st_mode)) suf = '/'; else if ((node->stats.st_mode & S_IXUSR) || (node->stats.st_mode & S_IXGRP) || (node->stats.st_mode & S_IXOTH)) suf = '*'; } printf("%s%c", node->name, suf); } int ls(const char *dir_name, int label, struct winsize w) { /* Unused, tmp */ (void)w; size_t files = 0; struct d_node **dir = list(dir_name, &files); if (dir == NULL) return 1; if (label) printf("\n%s:\n", dir_name); if (!p_flag) for (size_t i = 0; i < files; i++) { print(dir[i]); putchar('\n'); } /* Todo: sort and print */ else {} dfree(dir); return 0; } int main(int argc, char **argv) { int opt; while ((opt = getopt(argc, argv, "alF")) != -1) { switch (opt) { case 'a': a_flag = 1; break; case 'l': l_flag = 1; break; case 'F': F_flag = 1; break; default: printf("ls [path]\n\t[-a Show hidden files] [-l Use a long listing format]\n\t[-F Append indicator to names]\n"); return 0; } } argv += optind; argc -= optind; struct winsize w; ioctl(STDOUT_FILENO, TIOCGWINSZ, &w); /* Check if programm piped, 1 - flase, 0 - true */ p_flag = isatty(STDOUT_FILENO); if (argc < 1) ls(".", 0, w); if (argc == 1) ls(argv[0], 0, w); else for (int i = 0; i < argc; i++) ls(argv[i], 1, w); return 0; }