2007-12-02 19:18:59 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* examples/nsh/nsh_serial.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name Gregory Nutt nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2008-08-16 20:39:46 +02:00
|
|
|
#include <unistd.h>
|
2007-12-02 19:18:59 +01:00
|
|
|
#include <string.h>
|
2008-08-15 01:37:12 +02:00
|
|
|
#include <stdarg.h>
|
2007-12-02 19:18:59 +01:00
|
|
|
|
|
|
|
#include "nsh.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-15 01:37:12 +02:00
|
|
|
struct serial_s
|
2007-12-02 19:18:59 +01:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
struct nsh_vtbl_s vtbl;
|
|
|
|
int ss_refs; /* Reference counts on the instance */
|
|
|
|
int ss_fd; /* Re-direct file descriptor */
|
|
|
|
FILE *ss_stream; /* Redirect file descriptor */
|
|
|
|
char ss_line[CONFIG_EXAMPLES_NSH_LINELEN];
|
2007-12-02 19:18:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static FAR struct nsh_vtbl_s *nsh_consoleclone(FAR struct nsh_vtbl_s *vtbl);
|
|
|
|
static void nsh_consoleaddref(FAR struct nsh_vtbl_s *vtbl);
|
|
|
|
static void nsh_consolerelease(FAR struct nsh_vtbl_s *vtbl);
|
|
|
|
static int nsh_consoleoutput(FAR struct nsh_vtbl_s *vtbl, const char *fmt, ...);
|
|
|
|
static FAR char *nsh_consolelinebuffer(FAR struct nsh_vtbl_s *vtbl);
|
|
|
|
static FAR void *nsh_consoleredirect(FAR struct nsh_vtbl_s *vtbl, int fd);
|
|
|
|
static void nsh_consoleundirect(FAR struct nsh_vtbl_s *vtbl, FAR void *direct);
|
|
|
|
|
2007-12-02 19:18:59 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-15 01:37:12 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: nsh_allocstruct
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static inline FAR struct serial_s *nsh_allocstruct(void)
|
|
|
|
{
|
|
|
|
struct serial_s *pstate = (struct serial_s *)malloc(sizeof(struct serial_s));
|
|
|
|
if (pstate)
|
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
pstate->vtbl.clone = nsh_consoleclone;
|
|
|
|
pstate->vtbl.addref = nsh_consoleaddref;
|
|
|
|
pstate->vtbl.release = nsh_consolerelease;
|
|
|
|
pstate->vtbl.output = nsh_consoleoutput;
|
|
|
|
pstate->vtbl.linebuffer = nsh_consolelinebuffer;
|
|
|
|
pstate->vtbl.redirect = nsh_consoleredirect;
|
|
|
|
pstate->vtbl.undirect = nsh_consoleundirect;
|
|
|
|
|
|
|
|
pstate->ss_refs = 1;
|
|
|
|
pstate->ss_fd = 1;
|
|
|
|
pstate->ss_stream = stdout;
|
2008-08-15 01:37:12 +02:00
|
|
|
}
|
|
|
|
return pstate;
|
|
|
|
}
|
|
|
|
|
2007-12-02 19:18:59 +01:00
|
|
|
/****************************************************************************
|
2008-08-16 20:39:46 +02:00
|
|
|
* Name: nsh_openifnotopen
|
2007-12-02 19:18:59 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static int nsh_openifnotopen(struct serial_s *pstate)
|
|
|
|
{
|
|
|
|
/* The stream is open in a lazy fashion. This is done because the file
|
|
|
|
* descriptor may be opened on a different task than the stream.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!pstate->ss_stream)
|
|
|
|
{
|
|
|
|
pstate->ss_stream = fdopen(pstate->ss_fd, "w");
|
|
|
|
if (!pstate->ss_stream)
|
|
|
|
{
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-02 19:18:59 +01:00
|
|
|
/****************************************************************************
|
2008-08-16 20:39:46 +02:00
|
|
|
* Name: nsh_closeifnotclosed
|
2007-12-02 19:18:59 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static void nsh_closeifnotclosed(struct serial_s *pstate)
|
2007-12-02 19:18:59 +01:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
if (pstate->ss_stream == stdout)
|
2007-12-02 19:18:59 +01:00
|
|
|
{
|
|
|
|
fflush(stdout);
|
2008-08-16 20:39:46 +02:00
|
|
|
pstate->ss_fd = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (pstate->ss_stream)
|
2008-08-13 01:59:32 +02:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
fflush(pstate->ss_stream);
|
|
|
|
fclose(pstate->ss_stream);
|
|
|
|
}
|
|
|
|
else if (pstate->ss_fd >= 0 && pstate->ss_fd != 1)
|
|
|
|
{
|
|
|
|
close(pstate->ss_fd);
|
2008-08-13 01:59:32 +02:00
|
|
|
}
|
2008-08-16 20:39:46 +02:00
|
|
|
|
|
|
|
pstate->ss_fd = -1;
|
|
|
|
pstate->ss_stream = NULL;
|
2007-12-02 19:18:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-15 01:37:12 +02:00
|
|
|
/****************************************************************************
|
2008-08-16 20:39:46 +02:00
|
|
|
* Name: nsh_consoleoutput
|
2008-08-15 01:37:12 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2008-08-16 20:39:46 +02:00
|
|
|
* Print a string to the currently selected stream.
|
2008-08-15 01:37:12 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static int nsh_consoleoutput(FAR struct nsh_vtbl_s *vtbl, const char *fmt, ...)
|
2008-08-15 01:37:12 +02:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
FAR struct serial_s *pstate = (FAR struct serial_s *)vtbl;
|
2008-08-15 01:37:12 +02:00
|
|
|
va_list ap;
|
|
|
|
int ret;
|
2008-08-16 20:39:46 +02:00
|
|
|
|
|
|
|
/* The stream is open in a lazy fashion. This is done because the file
|
|
|
|
* descriptor may be opened on a different task than the stream. The
|
|
|
|
* actual open will then occur with the first output from the new task.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (nsh_openifnotopen(pstate) != 0)
|
|
|
|
{
|
|
|
|
return ERROR;
|
|
|
|
}
|
2008-08-15 01:37:12 +02:00
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2008-08-16 20:39:46 +02:00
|
|
|
ret = vfprintf(pstate->ss_stream, fmt, ap);
|
2008-08-15 01:37:12 +02:00
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-08-13 01:59:32 +02:00
|
|
|
/****************************************************************************
|
2008-08-16 20:39:46 +02:00
|
|
|
* Name: nsh_consolelinebuffer
|
2008-08-13 01:59:32 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return a reference to the current line buffer
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static FAR char *nsh_consolelinebuffer(FAR struct nsh_vtbl_s *vtbl)
|
2008-08-15 01:37:12 +02:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
FAR struct serial_s *pstate = (FAR struct serial_s *)vtbl;
|
2008-08-15 01:37:12 +02:00
|
|
|
return pstate->ss_line;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2008-08-16 20:39:46 +02:00
|
|
|
* Name: nsh_consoleclone
|
2008-08-15 01:37:12 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2008-08-16 20:39:46 +02:00
|
|
|
* Make an independent copy of the vtbl
|
2008-08-15 01:37:12 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static FAR struct nsh_vtbl_s *nsh_consoleclone(FAR struct nsh_vtbl_s *vtbl)
|
2008-08-13 01:59:32 +02:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
FAR struct serial_s *pstate = (FAR struct serial_s *)vtbl;
|
|
|
|
FAR struct serial_s *pclone = nsh_allocstruct();
|
|
|
|
pclone->ss_fd = pstate->ss_fd;
|
|
|
|
pclone->ss_stream = NULL;
|
|
|
|
return &pclone->vtbl;
|
2008-08-15 01:37:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2008-08-16 20:39:46 +02:00
|
|
|
* Name: nsh_consoleaddref
|
2008-08-15 01:37:12 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2008-08-16 20:39:46 +02:00
|
|
|
* Increment the reference count on the vtbl.
|
2008-08-15 01:37:12 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static void nsh_consoleaddref(FAR struct nsh_vtbl_s *vtbl)
|
2008-08-15 01:37:12 +02:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
FAR struct serial_s *pstate = (FAR struct serial_s *)vtbl;
|
2008-08-15 01:37:12 +02:00
|
|
|
pstate->ss_refs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2008-08-16 20:39:46 +02:00
|
|
|
* Name: nsh_consolerelease
|
2008-08-15 01:37:12 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2008-08-16 20:39:46 +02:00
|
|
|
* Decrement the reference count on the vtbl, releasing it when the count
|
2008-08-15 01:37:12 +02:00
|
|
|
* decrements to zero.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
static void nsh_consolerelease(FAR struct nsh_vtbl_s *vtbl)
|
2008-08-15 01:37:12 +02:00
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
FAR struct serial_s *pstate = (FAR struct serial_s *)vtbl;
|
2008-08-15 01:37:12 +02:00
|
|
|
if (pstate->ss_refs > 1)
|
|
|
|
{
|
|
|
|
pstate->ss_refs--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-08-16 20:39:46 +02:00
|
|
|
nsh_closeifnotclosed(pstate);
|
|
|
|
free(vtbl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nsh_consoleredirect
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set up for redirected output
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static FAR void *nsh_consoleredirect(FAR struct nsh_vtbl_s *vtbl, int fd)
|
|
|
|
{
|
|
|
|
FAR struct serial_s *pstate = (FAR struct serial_s *)vtbl;
|
|
|
|
void *ret;
|
|
|
|
|
|
|
|
(void)nsh_openifnotopen(pstate);
|
|
|
|
ret = pstate->ss_stream;
|
|
|
|
fflush(pstate->ss_stream);
|
|
|
|
|
|
|
|
pstate->ss_fd = fd;
|
|
|
|
pstate->ss_stream = NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nsh_consoleredirect
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set up for redirected output
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void nsh_consoleundirect(FAR struct nsh_vtbl_s *vtbl, FAR void *direct)
|
|
|
|
{
|
|
|
|
FAR struct serial_s *pstate = (FAR struct serial_s *)vtbl;
|
|
|
|
nsh_closeifnotclosed(pstate);
|
|
|
|
pstate->ss_fd = -1;
|
|
|
|
pstate->ss_stream = (FILE*)direct;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nsh_main
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int nsh_consolemain(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
FAR struct serial_s *pstate = nsh_allocstruct();
|
|
|
|
|
|
|
|
printf("NuttShell (NSH)\n");
|
|
|
|
fflush(pstate->ss_stream);
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
/* Display the prompt string */
|
|
|
|
|
|
|
|
fputs(g_nshprompt, pstate->ss_stream);
|
|
|
|
fflush(pstate->ss_stream);
|
|
|
|
|
|
|
|
/* Get the next line of input */
|
|
|
|
|
|
|
|
if (fgets(pstate->ss_line, CONFIG_EXAMPLES_NSH_LINELEN, stdin))
|
|
|
|
{
|
|
|
|
/* Parse process the command */
|
|
|
|
|
|
|
|
(void)nsh_parse(&pstate->vtbl, pstate->ss_line);
|
|
|
|
fflush(pstate->ss_stream);
|
|
|
|
}
|
2008-08-15 01:37:12 +02:00
|
|
|
}
|
2008-08-13 01:59:32 +02:00
|
|
|
}
|
|
|
|
|
2007-12-02 19:18:59 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: cmd_exit
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Exit the shell task
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-16 20:39:46 +02:00
|
|
|
void cmd_exit(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
2007-12-02 19:18:59 +01:00
|
|
|
{
|
|
|
|
exit(0);
|
|
|
|
}
|