在学习linux系统编程的时候,实现了ls命令的简化版本。

实现的功能

  1. 每种文件类型有自己的颜色 (- 普通文件, d 目录文件, l 链接文件, c 字符设备文件, b 快设备文件, p 管道文件, s socket文件。共7种)

  2. 支持的参数有 -hali (a: 显示隐藏文件, i: 显示inode节点号,l: 以列表形式显示文件的详细信息,h: 人类可读的文件大小显示)

  3. 对于符号链接,显示出其指向的文件。

  4. 设备文件,显示主设备号和次设备号,不显示文件大小(设备文件没有大小属性,对于设备号,不同的 *nix 存储方式可能不同)

  5. 文件按照字典序排序显示。

程序说明

  1. 程序中大部分使用的都是linux系统调用和c标准库函数,只有文件排序用到了c++ stl 的vector和sort算法(好吧,我又偷懒了!)

  2. lstat(): 获取文件的详细信息,inode, 权限, 连接数, uid, gid, size, time 等(对于符号链接文件,返回自身的信息,而不是目标文件的)

        opendir(), readdir(), closedir(): 读取目录信息。

        getpwuid(), getgrgid(): 通过uid, gid 获取用户和组的详细信息。

  1. 对于不同文件类型的颜色,在Linux下可以使用env命令获取,也可以在程序中使用 extern char **environ 或 getenv() 获取。

程序编译运行

程序编译运行

程序源码

  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
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <dirent.h>
#include <grp.h>
#include <pwd.h>
 
// c++
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
 
#define BUF_SIZE 1024
 
#define COLOR_R	(char*)"\33[0m"
#define COLOR_D	(char*)"\33[01m\33[34m"
#define COLOR_L	(char*)"\33[01m\33[36m"
#define COLOR_P	(char*)"\33[40m\33[33m"
#define COLOR_B	(char*)"\33[40m\33[33m"
#define COLOR_C	(char*)"\33[40m\33[33m"
#define COLOR_S	(char*)"\33[02m\33[35m"
#define RESET_CLOLR	(char*)"\33[0m"
 
int get_option(const char *opt);
int show_ls();
int show_ls_one_path(const char *path);
int show_ls_file(const char *path, const char *name);
int show_ll_part(struct stat *p_stat, int bHuman);
void to_humen_size(char *buf, off_t size);
char get_file_type(mode_t st_mode);
void get_mode(char *buf, mode_t st_mode);
 
// global var
enum EOPT
{
	E_a, E_i, E_l, E_h, E_num
};
int g_opt[E_num] = {0}; // order: -ailh
char *g_scolor;
vector<string> gv_path;
 
/* ls: ./a.out argv... */
int main(int argc, char const *argv[])
{
	int i;
	for (i = 1; i < argc; ++i)
	{
		if ('-' == argv[i][0])
		{
			if (-1 == get_option(argv[i]+1))
			{
				fprintf(stderr, "bad option!\n");
				return 1;
			}
		}
		else
		{
			gv_path.push_back(argv[i]);
		}
	}
 
	if (0 == gv_path.size())
	{
		gv_path.push_back(".");
	}
 
	show_ls();
 
	return 0;
}
 
/* -ailh */
int get_option(const char *opt)
{
	while (*opt != '\0')
	{
		switch (*opt)
		{
			case 'a':
				g_opt[E_a] = 1;
				break;
			case 'i':
				g_opt[E_i] = 1;
				break;
			case 'l':
				g_opt[E_l] = 1;
				break;
			case 'h':
				g_opt[E_h] = 1;
				break;
			default:
				return -1;
		}
		opt++;
	}
	return 0;
}
 
int show_ls()
{
	for (vector<string>::iterator it = gv_path.begin();
		 it != gv_path.end(); ++it)
	{
		show_ls_one_path(it->c_str());
	}
	return 0;
}
 
int show_ls_one_path(const char *path)
{
	DIR *dir;
	dir = opendir(path);
	if (NULL == dir)
	{
		// not a dir
		if (ENOTDIR == errno)
		{
			char *p = rindex((char *)path, '/');
			if (NULL == p)
			{
				show_ls_file("./", path);
			}
			else
			{
				char sdir[BUF_SIZE] = {'\0'};
				strncpy(sdir, path, p-path);
				show_ls_file(sdir, p+1);
			}
			printf("\n");
			return 0;
		}
		perror(path);
		return -1;
	}
 
	if (gv_path.size() > 1)
	{
		fprintf(stdout, "%s:\n", path);
	}
 
	struct dirent *entry;
	vector<string> v_name;
	while (1)
	{
		entry = readdir(dir);
		if (NULL == entry)
		{
			break;
		}
		// show conten depends on option(g_opt)
		if (g_opt[E_a] != 1)
		{
			if ('.' == entry->d_name[0])
			{
				continue;
			}
		}
		v_name.push_back(entry->d_name);
	}
 
	// sort filename
	sort(v_name.begin(), v_name.end());
	for (vector<string>::iterator it = v_name.begin();
		 it != v_name.end(); ++it)
	{
		show_ls_file(path, it->c_str());		
	}
	fprintf(stdout, "\n");
 
	closedir(dir);
}
 
int show_ls_file(const char *path, const char *name)
{
	// stat
	char full_path[BUF_SIZE];
	int ret;
	struct stat st_stat;
	snprintf(full_path, BUF_SIZE, "%s/%s", path, name);
	
	ret = lstat(full_path, &st_stat);
	if (-1 == ret)
	{
		perror(full_path);
		return -1;
	}
 
	if (1 == g_opt[E_i])
	{
		fprintf(stdout, "%7d ", (int)st_stat.st_ino);
	}
 
	if (1 == g_opt[E_l])
	{
		show_ll_part(&st_stat, g_opt[E_h]);
	}
	else
	{
		get_file_type(st_stat.st_mode);//get file color actually
	}
 
	// show filename with color
	fprintf(stdout, "%s", g_scolor);
	fprintf(stdout, "%s  ", name);
	fprintf(stdout, RESET_CLOLR);
	if (1 == g_opt[E_l] && 'l' == get_file_type(st_stat.st_mode))
	{
		// -> real file
		char real_file[BUF_SIZE];
		int path_size = readlink(full_path, real_file, BUF_SIZE);
		real_file[path_size] = '\0';
		fprintf(stdout, "->  %s", real_file);
	}
 
	if (1 == g_opt[E_l])
	{
		fprintf(stdout, "\n");
	}
	return 0;
}
 
/* show ll: mode, link num, user, group, size, time */
int show_ll_part(struct stat *p_stat, int bHuman)
{
	// mode
	char buf[BUF_SIZE];
	get_mode(buf, p_stat->st_mode);
	char file_type = buf[0];
	fprintf(stdout, "%s", buf);
 
	// link num
	fprintf(stdout, "  %d", p_stat->st_nlink);
 
	// uid gid
	// get_id_name(buf, p_stat->st_uid, "/etc/passwd");
	// fprintf(stdout, "  %s", buf);
	// get_id_name(buf, p_stat->st_gid, "/etc/group");
	// fprintf(stdout, "  %s", buf);
	struct passwd * st_user = getpwuid(p_stat->st_uid);
	fprintf(stdout, "  %s", st_user->pw_name);
	struct group * st_group = getgrgid(p_stat->st_gid);
	fprintf(stdout, "  %s", st_group->gr_name);
 
	// show dev id
	if ('c' == file_type || 'b' == file_type/* || 'p' == file_type*/)
	{
		// dev_id
		int major = 0xFF00 & p_stat->st_rdev;
		major >>= 8;
		int sub	= 0x00FF & p_stat->st_rdev;
		fprintf(stdout, "\t%4d,%4d", major, sub);
	}
	else // show file size
	{
		// -h bHuman size
		off_t size = p_stat->st_size;
		if (bHuman)
		{
			char buf[BUF_SIZE];
			to_humen_size(buf, size);
			fprintf(stdout, "  %s", buf);
		}
		else
		{
			fprintf(stdout, " %9ld", size);
		}
	}
	
	// time
	char stime[BUF_SIZE] = {'\0'};
	snprintf(stime, 13, "%s", 4+ctime(&p_stat->st_ctime));
	fprintf(stdout, "  %s  ", stime);
 
	return 0;
}
 
// -h option
void to_humen_size(char *buf, off_t size)
{
	double tmp = size;
	if (size >= 1024*1024*1024)
	{
		tmp /= 1024*1024*1024;
		snprintf(buf, BUF_SIZE, "%5.1fG", tmp);
	}
	else if (size >= 1024*1024)
	{
		tmp /= 1024*1024;
		snprintf(buf, BUF_SIZE, "%5.1fM", tmp);
	}
	else if (size >= 1024)
	{
		tmp /= 1024;
		snprintf(buf, BUF_SIZE, "%5.1fK", tmp);
	}
	else
	{
		snprintf(buf, BUF_SIZE, "%6ld", size);
	}
}
 
char get_file_type(mode_t st_mode)
{
	if (S_ISREG(st_mode))
	{
		g_scolor = COLOR_R;
		return '-';
	}
	if (S_ISDIR(st_mode))
	{
		g_scolor = COLOR_D;
		return 'd';
	}
	if (S_ISCHR(st_mode))
	{
		g_scolor = COLOR_C;
		return 'c';
	}
	if (S_ISBLK(st_mode))
	{
		g_scolor = COLOR_B;
		return 'b';
	}
	if (S_ISFIFO(st_mode))
	{
		g_scolor = COLOR_P;
		return 'p';
	}
	if (S_ISLNK(st_mode))
	{
		g_scolor = COLOR_L;
		return 'l';
	}
	if (S_ISSOCK(st_mode))
	{
		g_scolor = COLOR_S;
		return 's';
	}
	g_scolor = COLOR_R;
	return '-';
}
 
// -rwx---...
void get_mode(char *buf, mode_t st_mode)
{
	buf[0] = get_file_type(st_mode);
 
	int i;
	mode_t bit;
	for (i = 3; i > 0; --i)
	{
		bit = st_mode & 0x01;
		buf[i*3] = (1 == bit ? 'x' : '-');
		st_mode >>= 1;
 
		bit = st_mode & 0x01;
		buf[i*3-1] = (1 == bit ? 'w' : '-');
		st_mode >>= 1;
 
		bit = st_mode & 0x01;
		buf[i*3-2] = (1 == bit ? 'r' : '-');
		st_mode >>= 1;
	}
	buf[10] = '\0';
}