shell.c 9.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * File      : shell.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2006, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://openlab.rt-thread.com/license/LICENSE
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-04-30     Bernard      the first verion for FinSH
 * 2006-05-08     Bernard      change finsh thread stack to 2048
 * 2006-06-03     Bernard      add support for skyeye
 * 2006-09-24     Bernard      remove the code related with hardware
 */

#include <rtthread.h>
#include <rthw.h>

#include "finsh.h"

S
qemu  
ssslady 已提交
23 24 25 26 27 28 29 30 31
/*
 * Add by caoxl 2009-10-14
 * 
 */
#ifdef QEMU_CAOXL
#define  memcpy(a,b,c)	rt_memcpy(a,b,c)
extern char rt_serial_getc(void);
#endif

32 33
#define FINSH_USING_HISTORY

34 35 36 37 38 39 40
#if defined(__CC_ARM)					/* ARMCC compiler */
  #ifdef FINSH_USING_SYMTAB
    extern int FSymTab$$Base;
    extern int FSymTab$$Limit;
    extern int VSymTab$$Base;
    extern int VSymTab$$Limit;
  #endif
41
#elif defined(__ICCARM__)               /* for IAR compiler */
42 43
  #ifdef FINSH_USING_SYMTAB
    #pragma section="FSymTab"
44
    #pragma section="VSymTab"
45
  #endif
46
#elif defined(__GNUC__)
47 48 49 50 51 52
  #ifdef FINSH_USING_SYMTAB
  extern int __fsymtab_start;
  extern int __fsymtab_end;
  extern int __vsymtab_start;
  extern int __vsymtab_end;
  #endif
53
#endif
54 55 56 57 58 59 60 61

/* finsh thread */
struct rt_thread finsh_thread;
char finsh_thread_stack[2048];
struct rt_semaphore uart_sem;
#ifdef RT_USING_DEVICE
rt_device_t finsh_device;
#endif
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
#ifdef FINSH_USING_HISTORY
enum input_stat
{
	WAIT_NORMAL,
	WAIT_SPEC_KEY,
	WAIT_FUNC_KEY,
};
#ifndef FINSH_HISTORY_LINES
#define FINSH_HISTORY_LINES 5
#endif
#ifndef FINSH_CMD_SIZE
#define FINSH_CMD_SIZE		80
#endif
char finsh_cmd_history[FINSH_HISTORY_LINES][FINSH_CMD_SIZE];
rt_uint16_t finsh_history_count = 0;
#endif
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

#if !defined (RT_USING_NEWLIB) && !defined (RT_USING_MINILIBC)
void *memccpy(void *dst, const void *src, int c, size_t count)
{
	char *a = dst;
	const char *b = src;
	while (count--)
	{
		*a++ = *b;
		if (*b==c)
		{
			return (void *)a;
		}

		b++;
	}
	return 0;
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

int strcmp (const char *s1, const char *s2)
{
	while (*s1 && *s1 == *s2) s1++, s2++;

	return (*s1 - *s2);
}

#ifdef RT_USING_HEAP
char *strdup(const char *s)
{
	size_t len = strlen(s) + 1;
	char *tmp = (char *)rt_malloc(len);

	if(!tmp) return NULL;

	rt_memcpy(tmp, s, len);
	return tmp;
}
#endif

int isalpha( int ch )
{
	return (unsigned int)((ch | 0x20) - 'a') < 26u;
}

int atoi(const char* s)
{
	long int v=0;
	int sign=1;
	while ( *s == ' '  ||  (unsigned int)(*s - 9) < 5u) s++;

	switch (*s)
	{
	case '-': sign=-1;
	case '+': ++s;
	}

	while ((unsigned int) (*s - '0') < 10u)
	{
		v=v*10+*s-'0'; ++s;
	}

	return sign==-1?-v:v;
}

int isprint(unsigned char ch)
{
    return (unsigned int)(ch - ' ') < 127u - ' ';
}
#endif

#ifdef RT_USING_DEVICE
static rt_err_t finsh_rx_ind(rt_device_t dev, rt_size_t size)
{
	/* release semaphore to let finsh thread rx data */
	rt_sem_release(&uart_sem);

	return RT_EOK;
}

void finsh_set_device(char* device_name)
{
	rt_device_t dev = RT_NULL;

	dev = rt_device_find(device_name);
	if (dev != RT_NULL && rt_device_open(dev, RT_DEVICE_OFLAG_RDWR) == RT_EOK)
	{
		if (finsh_device != RT_NULL)
		{
			/* close old finsh device */
			rt_device_close(finsh_device);
		}

170
		finsh_device = dev;
171 172 173 174 175 176 177 178 179 180 181 182 183 184
		rt_device_set_rx_indicate(dev, finsh_rx_ind);
	}
	else
	{
		rt_kprintf("finsh: can not find device:%s\n", device_name);
	}
}
#else
void finsh_notify()
{
	rt_sem_release(&uart_sem);
}
#endif

185 186 187 188 189 190 191 192 193
void finsh_auto_complete(char* prefix)
{
	extern void list_prefix(char* prefix);

	rt_kprintf("\n");
	list_prefix(prefix);
	rt_kprintf("finsh>>%s", prefix);
}

194 195 196 197 198
void finsh_thread_entry(void* parameter)
{
	struct finsh_parser parser;
    char line[256];
	int  pos ;
199 200 201 202 203 204
#ifdef FINSH_USING_HISTORY
	enum input_stat stat;
	unsigned short  current_history, use_history;
#endif

	stat = WAIT_NORMAL;
205
	current_history = 0;
206
	use_history = 0;
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223

    finsh_init(&parser);

	while (1)
	{
		rt_kprintf("finsh>>");

		memset(line, 0, sizeof(line));
		pos = 0;
		while (1)
		{
			if (rt_sem_take(&uart_sem, -1) == RT_EOK)
			{
				/* read one character from serial */
				char ch;

#ifndef RT_USING_DEVICE
224
				ch = rt_serial_getc();
225 226 227
				if (ch != 0)
#else
				rt_err_t rx_result;
228
				rx_result = rt_device_read(finsh_device, 0, &ch, 1);
229 230 231
				if (ch != 0 && rx_result == 1)
#endif
				{
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
#ifdef FINSH_USING_HISTORY
					/*
					 * handle up and down key 
					 * up key  : 0x1b 0x5b 0x41
					 * down key: 0x1b 0x5b 0x42
					 */
					if (ch == 0x1b)
					{
						stat = WAIT_SPEC_KEY;
						continue;
					}

					if ((stat == WAIT_SPEC_KEY) && (ch == 0x5b))
					{
						if (ch == 0x5b)
						{
							stat = WAIT_FUNC_KEY;
							continue;
						}
						stat = WAIT_NORMAL;
					}

					if (stat == WAIT_FUNC_KEY)
					{
256 257
						stat = WAIT_NORMAL;

258 259 260
						if (ch == 0x41) /* up key */
						{
							/* prev history */
261 262 263 264 265 266
							if (current_history > 0)current_history --;
							else
							{
								current_history = 0;
								continue;
							}
267 268 269 270

							/* copy the history command */
							memcpy(line, &finsh_cmd_history[current_history][0], 
								FINSH_CMD_SIZE);
271 272
							pos = strlen(line);
							use_history = 1;
273 274 275
						}
						else if (ch == 0x42) /* down key */
						{
276
							/* next history */
277
							if (current_history < finsh_history_count - 1)
278 279 280 281 282 283
								current_history ++;
							else
							{
								current_history = finsh_history_count - 1;
								continue;
							}
284 285

							memcpy(line, &finsh_cmd_history[current_history][0], 
286
								FINSH_CMD_SIZE);
287
							pos = strlen(line);
288 289 290 291 292 293
							use_history = 1;
						}
						
						if (use_history)
						{
							rt_kprintf("\033[2K\r");
294
							rt_kprintf("finsh>>%s", line);
295
							continue;
296
						}
297
					}
298 299 300 301 302 303 304
#endif
					/*
					 * handle tab key
					 */
					if (ch == '\t')
					{
						/* auto complete */
305 306
						finsh_auto_complete(&line[0]);
						/* re-calculate position */
307 308 309 310 311 312 313 314
						pos = strlen(line);
						continue;
					}

					/*
					 * handle backspace key
					 */
					if (ch == 0x7f)
315
					{
316 317 318 319 320 321
						if (pos != 0) rt_kprintf("%c", ch);
						line[pos--] = 0;
						if (pos < 0) pos = 0;
						continue;
					}

322
					line[pos] = ch;
323 324 325 326 327

					rt_kprintf("%c", line[pos]);

					/* if it's the end of line, break */
					if (line[pos] == 0xd || line[pos] == 0xa)
328
					{
329 330 331 332
						/* change to ';' and break */
						line[pos] = ';';
						break;
					}
333
					else use_history = 0; /* not "\n", it's a new command */
334 335 336
					pos ++;
				}
			}
337
		}
338

339 340 341 342 343
		if (pos == 0)
		{
			rt_kprintf("\n");
			continue;
		}
344

345 346
#ifdef FINSH_USING_HISTORY
		if (use_history == 0)
347
		{
348
			/* push history */
349 350 351 352 353 354 355 356
			if (finsh_history_count >= FINSH_HISTORY_LINES)
			{
				/* move history */
				int index;
				for (index = 0; index < FINSH_HISTORY_LINES - 1; index ++)
				{
					memcpy(&finsh_cmd_history[index][0], 
						&finsh_cmd_history[index + 1][0], FINSH_CMD_SIZE);
357
				}
358
				memset(&finsh_cmd_history[index][0], 0, FINSH_CMD_SIZE);
359 360 361
				memcpy(&finsh_cmd_history[index][0], line, pos);

				/* it's the maximum history */
362
				finsh_history_count = FINSH_HISTORY_LINES;
363 364
			}
			else
365 366
			{
				memset(&finsh_cmd_history[finsh_history_count][0], 0, FINSH_CMD_SIZE);
367 368 369 370
				memcpy(&finsh_cmd_history[finsh_history_count][0], line, pos);

				/* increase count and set current history position */
				finsh_history_count ++;
371
			}
372 373
		}
		current_history = finsh_history_count;
374
#endif
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

		rt_kprintf("\n");
		finsh_parser_run(&parser, (unsigned char*)&line[0]);

		/* compile node root */
		if (finsh_errno() == 0)
		{
			finsh_compiler_run(parser.root);
		}
		else
		{
			rt_kprintf("%s\n", finsh_error_string(finsh_errno()));
		}

		/* run virtual machine */
		if (finsh_errno() == 0)
		{
			finsh_vm_run();

			if (isprint((unsigned char)finsh_stack_bottom()))
			{
				rt_kprintf("\t'%c', %d, 0x%08x\n",
					(unsigned char)finsh_stack_bottom(),
					(unsigned int)finsh_stack_bottom(),
					(unsigned int)finsh_stack_bottom());
			}
			else
			{
				rt_kprintf("\t%d, 0x%04x\n",
					(unsigned int)finsh_stack_bottom(),
					(unsigned int)finsh_stack_bottom());
			}
		}

        finsh_flush(&parser);
	}
}

void finsh_system_function_init(void* begin, void* end)
{
	_syscall_table_begin = (struct finsh_syscall*) begin;
	_syscall_table_end = (struct finsh_syscall*) end;
}

void finsh_system_var_init(void* begin, void* end)
{
	_sysvar_table_begin = (struct finsh_sysvar*) begin;
	_sysvar_table_end = (struct finsh_sysvar*) end;
}

/* init finsh */
void finsh_system_init()
{
	rt_sem_init(&uart_sem, "uart", 0, 0);

#ifdef FINSH_USING_SYMTAB
#ifdef __CC_ARM                 /* ARM C Compiler */
	finsh_system_function_init(&FSymTab$$Base, &FSymTab$$Limit);
	finsh_system_var_init(&VSymTab$$Base, &VSymTab$$Limit);
#elif defined (__ICCARM__)      /* for IAR Compiler */
    finsh_system_function_init(__section_begin("FSymTab"),
                               __section_end("FSymTab"));
    finsh_system_var_init(__section_begin("VSymTab"),
                          __section_end("VSymTab"));
#elif defined (__GNUC__)        /* GNU GCC Compiler */
440 441
	finsh_system_function_init(&__fsymtab_start, &__fsymtab_end);
	finsh_system_var_init(&__vsymtab_start, &__vsymtab_start);
442 443 444 445 446 447 448 449 450 451
#endif
#endif

	rt_thread_init(&finsh_thread,
		"tshell",
		finsh_thread_entry, RT_NULL,
		&finsh_thread_stack[0], sizeof(finsh_thread_stack),
		20, 100);
	rt_thread_startup(&finsh_thread);
}