int nsh_consolemain(int argc, char *argv[]) { FAR struct console_stdio_s *pstate = nsh_newconsole(); int ret; DEBUGASSERT(pstate); /* Initialize any USB tracing options that were requested */ #ifdef CONFIG_NSH_USBDEV_TRACE usbtrace_enable(TRACE_BITSET); #endif /* Initialize the USB serial driver */ #if defined(CONFIG_PL2303) || defined(CONFIG_CDCACM) #ifdef CONFIG_CDCACM ret = cdcacm_initialize(CONFIG_NSH_USBDEV_MINOR, NULL); #else ret = usbdev_serialinitialize(CONFIG_NSH_USBDEV_MINOR); #endif DEBUGASSERT(ret == OK); #endif /* Configure to use /dev/null if we do not have a valid console. */ #ifndef CONFIG_DEV_CONSOLE (void)nsh_nullstdio(); #endif /* Execute the one-time start-up script (output may go to /dev/null) */ #ifdef CONFIG_NSH_ROMFSETC (void)nsh_initscript(&pstate->cn_vtbl); #endif /* Now loop, executing creating a session for each USB connection */ for (;;) { /* Wait for the USB to be connected to the host and switch * standard I/O to the USB serial device. */ ret = nsh_waitusbready(); DEBUGASSERT(ret == OK); /* Execute the session */ (void)nsh_session(pstate); /* Switch to /dev/null because we probably no longer have a * valid console device. */ (void)nsh_nullstdio(); } }
int nsh_consolemain(int argc, char *argv[]) { FAR struct console_stdio_s *pstate = nsh_newconsole(); int ret; DEBUGASSERT(pstate); /* If we are using a USB serial console, then we will have to wait for the * USB to be connected to the host. */ #ifdef HAVE_USB_CONSOLE ret = nsh_usbconsole(); DEBUGASSERT(ret == OK); #endif /* Present a greeting */ fputs(g_nshgreeting, pstate->cn_outstream); fflush(pstate->cn_outstream); /* Execute the startup script */ #ifdef CONFIG_NSH_ROMFSETC (void)nsh_script(&pstate->cn_vtbl, "init", NSH_INITPATH); #endif /* Then enter the command line parsing loop */ for (;;) { /* For the case of debugging the USB console... dump collected USB trace data */ nsh_usbtrace(); /* Display the prompt string */ fputs(g_nshprompt, pstate->cn_outstream); fflush(pstate->cn_outstream); /* Get the next line of input */ ret = readline(pstate->cn_line, CONFIG_NSH_LINELEN, INSTREAM(pstate), OUTSTREAM(pstate)); if (ret > 0) { /* Parse process the command */ (void)nsh_parse(&pstate->cn_vtbl, pstate->cn_line); fflush(pstate->cn_outstream); } /* Readline normally returns the number of characters read, * but will return 0 on end of file or a negative value * if an error occurs. Either will cause the session to * terminate. */ else { fprintf(pstate->cn_outstream, g_fmtcmdfailed, "nsh_consolemain", "readline", NSH_ERRNO_OF(-ret)); nsh_exit(&pstate->cn_vtbl, 1); } } /* Clean up. We do not get here, but this is necessary to keep some * compilers happy. But others will complain that this code is not * reachable. */ nsh_exit(&pstate->cn_vtbl, 0); return OK; }
static int nsh_telnetmain(int argc, char *argv[]) { FAR struct console_stdio_s *pstate = nsh_newconsole(); FAR struct nsh_vtbl_s *vtbl; DEBUGASSERT(pstate != NULL); vtbl = &pstate->cn_vtbl; _info("Session [%d] Started\n", getpid()); #ifdef CONFIG_NSH_TELNET_LOGIN /* Login User and Password Check */ if (nsh_telnetlogin(pstate) != OK) { nsh_exit(vtbl, 1); return -1; /* nsh_exit does not return */ } #endif /* CONFIG_NSH_TELNET_LOGIN */ /* The following logic mostly the same as the login in nsh_session.c. It * differs only in that gets() is called to get the command instead of * readline(). */ /* Present a greeting and possibly a Message of the Day (MOTD) */ fputs(g_nshgreeting, pstate->cn_outstream); #ifdef CONFIG_NSH_MOTD # ifdef CONFIG_NSH_PLATFORM_MOTD /* Output the platform message of the day */ platform_motd(vtbl->iobuffer, IOBUFFERSIZE); fprintf(pstate->cn_outstream, "%s/n", vtbl->iobuffer); # else /* Output the fixed message of the day */ fprintf(pstate->cn_outstream, "%s/n", g_nshmotd); # endif #endif fflush(pstate->cn_outstream); /* Execute the startup script. If standard console is also defined, then * we will not bother with the initscript here (although it is safe to * call nshinitscript multiple times). */ #if defined(CONFIG_NSH_ROMFSETC) && !defined(CONFIG_NSH_CONSOLE) (void)nsh_initscript(vtbl); #endif /* Execute the login script */ #ifdef CONFIG_NSH_ROMFSRC (void)nsh_loginscript(vtbl); #endif /* Then enter the command line parsing loop */ for (;;) { /* Display the prompt string */ fputs(g_nshprompt, pstate->cn_outstream); fflush(pstate->cn_outstream); /* Get the next line of input from the Telnet client */ if (fgets(pstate->cn_line, CONFIG_NSH_LINELEN, INSTREAM(pstate)) != NULL) { /* Parse process the received Telnet command */ (void)nsh_parse(vtbl, pstate->cn_line); fflush(pstate->cn_outstream); } else { fprintf(pstate->cn_outstream, g_fmtcmdfailed, "nsh_telnetmain", "fgets", NSH_ERRNO); nsh_exit(vtbl, 1); } } /* Clean up */ nsh_exit(vtbl, 0); /* We do not get here, but this is necessary to keep some compilers happy */ return OK; }