2011-09-01 17:09:49 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* apps/nshlib/dbg_timcmds.c
|
|
|
|
*
|
2019-03-18 15:04:40 +01:00
|
|
|
* Copyright (C) 2011-2012, 2014, 2019 Gregory Nutt. All rights reserved.
|
2012-02-02 17:04:09 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2011-09-01 17:09:49 +02:00
|
|
|
*
|
|
|
|
* 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 NuttX 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 <stdlib.h>
|
2017-02-16 22:58:15 +01:00
|
|
|
#include <strings.h>
|
2011-09-01 17:09:49 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "nsh.h"
|
2012-02-02 17:04:09 +01:00
|
|
|
#include "nsh_console.h"
|
2011-09-01 17:09:49 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-02 22:06:11 +02:00
|
|
|
* Pre-processor Definitions
|
2011-09-01 17:09:49 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define MAX_TIME_STRING 80
|
|
|
|
|
2015-12-31 16:16:38 +01:00
|
|
|
#ifdef CONFIG_CLOCK_MONOTONIC
|
|
|
|
# define TIME_CLOCK CLOCK_MONOTONIC
|
|
|
|
#else
|
|
|
|
# define TIME_CLOCK CLOCK_REALTIME
|
|
|
|
#endif
|
2011-09-01 17:09:49 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-01-31 16:18:05 +01:00
|
|
|
#ifndef CONFIG_NSH_DISABLE_DATE
|
2011-09-01 17:09:49 +02:00
|
|
|
static FAR const char * const g_datemontab[] =
|
|
|
|
{
|
|
|
|
"jan", "feb", "mar", "apr", "may", "jun",
|
|
|
|
"jul", "aug", "sep", "oct", "nov", "dec"
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: date_month
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-04-11 20:13:18 +02:00
|
|
|
#ifndef CONFIG_NSH_DISABLE_DATE
|
2011-09-01 17:09:49 +02:00
|
|
|
static inline int date_month(FAR const char *abbrev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 12; i++)
|
|
|
|
{
|
|
|
|
if (strncasecmp(g_datemontab[i], abbrev, 3) == 0)
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: date_gettime
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-04-11 20:13:18 +02:00
|
|
|
#ifndef CONFIG_NSH_DISABLE_DATE
|
2011-09-01 17:09:49 +02:00
|
|
|
static inline int date_showtime(FAR struct nsh_vtbl_s *vtbl, FAR const char *name)
|
|
|
|
{
|
2015-11-25 19:52:36 +01:00
|
|
|
static const char format[] = "%a, %b %d %H:%M:%S %Y";
|
2011-09-01 17:09:49 +02:00
|
|
|
struct timespec ts;
|
|
|
|
struct tm tm;
|
|
|
|
char timbuf[MAX_TIME_STRING];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Get the current time */
|
|
|
|
|
|
|
|
ret = clock_gettime(CLOCK_REALTIME, &ts);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, g_fmtcmdfailed, name, "clock_gettime", NSH_ERRNO);
|
2011-09-01 17:09:49 +02:00
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Break the current time up into the format needed by strftime */
|
|
|
|
|
2015-04-21 17:26:18 +02:00
|
|
|
if (gmtime_r((FAR const time_t*)&ts.tv_sec, &tm) == NULL)
|
2015-04-15 19:00:40 +02:00
|
|
|
{
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, g_fmtcmdfailed, name, "gmtime_r", NSH_ERRNO);
|
2015-04-15 19:00:40 +02:00
|
|
|
return ERROR;
|
|
|
|
}
|
2011-09-01 17:09:49 +02:00
|
|
|
|
|
|
|
/* Show the current time in the requested format */
|
|
|
|
|
2015-04-15 19:00:40 +02:00
|
|
|
ret = strftime(timbuf, MAX_TIME_STRING, format, &tm);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, g_fmtcmdfailed, name, "strftime", NSH_ERRNO);
|
2015-04-15 19:00:40 +02:00
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
nsh_output(vtbl, "%s\n", timbuf);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: date_settime
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-04-11 20:13:18 +02:00
|
|
|
#ifndef CONFIG_NSH_DISABLE_DATE
|
2011-09-01 17:09:49 +02:00
|
|
|
static inline int date_settime(FAR struct nsh_vtbl_s *vtbl, FAR const char *name,
|
|
|
|
FAR char *newtime)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
struct tm tm;
|
|
|
|
FAR char *token;
|
|
|
|
FAR char *saveptr;
|
|
|
|
long result;
|
|
|
|
int ret;
|
|
|
|
|
2019-03-18 15:04:40 +01:00
|
|
|
memset(&tm, 0, sizeof(tm));
|
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
/* Only this date format is supported: MMM DD HH:MM:SS YYYY */
|
|
|
|
/* Get the month abbreviation */
|
|
|
|
|
|
|
|
token = strtok_r(newtime, " \t",&saveptr);
|
|
|
|
if (token == NULL)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
|
|
|
|
|
|
|
tm.tm_mon = date_month(token);
|
|
|
|
if (tm.tm_mon < 0)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the day of the month. NOTE: Accepts day-of-month up to 31 for all months */
|
|
|
|
|
2011-09-01 19:56:03 +02:00
|
|
|
token = strtok_r(NULL, " \t",&saveptr);
|
2011-09-01 17:09:49 +02:00
|
|
|
if (token == NULL)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = strtol(token, NULL, 10);
|
|
|
|
if (result < 1 || result > 31)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
2015-04-11 20:13:18 +02:00
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
tm.tm_mday = (int)result;
|
|
|
|
|
|
|
|
/* Get the hours */
|
|
|
|
|
|
|
|
token = strtok_r(NULL, " \t:", &saveptr);
|
|
|
|
if (token == NULL)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = strtol(token, NULL, 10);
|
|
|
|
if (result < 0 || result > 23)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
2015-04-11 20:13:18 +02:00
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
tm.tm_hour = (int)result;
|
|
|
|
|
|
|
|
/* Get the minutes */
|
|
|
|
|
|
|
|
token = strtok_r(NULL, " \t:", &saveptr);
|
|
|
|
if (token == NULL)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = strtol(token, NULL, 10);
|
|
|
|
if (result < 0 || result > 59)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
2015-04-11 20:13:18 +02:00
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
tm.tm_min = (int)result;
|
|
|
|
|
|
|
|
/* Get the seconds */
|
|
|
|
|
|
|
|
token = strtok_r(NULL, " \t:", &saveptr);
|
|
|
|
if (token == NULL)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = strtol(token, NULL, 10);
|
|
|
|
if (result < 0 || result > 61)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
2015-04-11 20:13:18 +02:00
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
tm.tm_sec = (int)result;
|
|
|
|
|
|
|
|
/* And finally the year */
|
|
|
|
|
|
|
|
token = strtok_r(NULL, " \t", &saveptr);
|
|
|
|
if (token == NULL)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = strtol(token, NULL, 10);
|
|
|
|
if (result < 1900 || result > 2100)
|
|
|
|
{
|
|
|
|
goto errout_bad_parm;
|
|
|
|
}
|
2015-04-11 20:13:18 +02:00
|
|
|
|
2011-09-01 19:56:03 +02:00
|
|
|
tm.tm_year = (int)result - 1900;
|
2011-09-01 17:09:49 +02:00
|
|
|
|
|
|
|
/* Convert this to the right form, then set the timer */
|
|
|
|
|
|
|
|
ts.tv_sec = mktime(&tm);
|
|
|
|
ts.tv_nsec = 0;
|
|
|
|
|
|
|
|
ret = clock_settime(CLOCK_REALTIME, &ts);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, g_fmtcmdfailed, name, "clock_settime", NSH_ERRNO);
|
2011-09-01 17:09:49 +02:00
|
|
|
return ERROR;
|
|
|
|
}
|
2015-04-11 20:13:18 +02:00
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
return OK;
|
|
|
|
|
|
|
|
errout_bad_parm:
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, g_fmtarginvalid, name);
|
2011-09-01 17:09:49 +02:00
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-12-31 16:16:38 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: cmd_time
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_NSH_DISABLE_TIME
|
|
|
|
int cmd_time(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|
|
|
{
|
|
|
|
struct timespec start;
|
2016-01-08 18:23:45 +01:00
|
|
|
#ifndef CONFIG_NSH_DISABLEBG
|
2015-12-31 16:16:38 +01:00
|
|
|
bool bgsave;
|
2016-01-08 18:23:45 +01:00
|
|
|
#endif
|
|
|
|
#if CONFIG_NFILE_STREAMS > 0
|
2015-12-31 16:16:38 +01:00
|
|
|
bool redirsave;
|
2016-01-08 18:23:45 +01:00
|
|
|
#endif
|
2015-12-31 16:16:38 +01:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Get the current time */
|
|
|
|
|
|
|
|
ret = clock_gettime(TIME_CLOCK, &start);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, g_fmtcmdfailed, argv[0], "clock_gettime", NSH_ERRNO);
|
2015-12-31 16:16:38 +01:00
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save state */
|
|
|
|
|
2016-01-08 18:23:45 +01:00
|
|
|
#ifndef CONFIG_NSH_DISABLEBG
|
2015-12-31 16:16:38 +01:00
|
|
|
bgsave = vtbl->np.np_bg;
|
2016-01-08 18:23:45 +01:00
|
|
|
#endif
|
|
|
|
#if CONFIG_NFILE_STREAMS > 0
|
2015-12-31 16:16:38 +01:00
|
|
|
redirsave = vtbl->np.np_redirect;
|
2016-01-08 18:23:45 +01:00
|
|
|
#endif
|
2015-12-31 16:16:38 +01:00
|
|
|
|
|
|
|
/* Execute the command */
|
|
|
|
|
|
|
|
ret = nsh_parse(vtbl, argv[1]);
|
|
|
|
if (ret >= 0)
|
|
|
|
{
|
|
|
|
struct timespec end;
|
|
|
|
struct timespec diff;
|
|
|
|
|
2016-01-04 19:36:38 +01:00
|
|
|
/* Get and print the elapsed time */
|
|
|
|
|
2015-12-31 16:16:38 +01:00
|
|
|
ret = clock_gettime(TIME_CLOCK, &end);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, g_fmtcmdfailed, argv[0], "clock_gettime", NSH_ERRNO);
|
2015-12-31 16:16:38 +01:00
|
|
|
ret = ERROR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
diff.tv_sec = end.tv_sec - start.tv_sec;
|
|
|
|
if (start.tv_nsec > end.tv_nsec)
|
|
|
|
{
|
|
|
|
diff.tv_sec--;
|
|
|
|
end.tv_nsec += 1000000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff.tv_nsec = end.tv_nsec - start.tv_nsec;
|
|
|
|
nsh_output(vtbl, "\n%lu.%04lu sec\n", (unsigned long)diff.tv_sec,
|
2015-12-31 17:03:04 +01:00
|
|
|
(unsigned long)diff.tv_nsec / 100000);
|
2015-12-31 16:16:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-04 19:36:38 +01:00
|
|
|
/* Restore state */
|
|
|
|
|
2016-01-08 18:23:45 +01:00
|
|
|
#ifndef CONFIG_NSH_DISABLEBG
|
2015-12-31 16:16:38 +01:00
|
|
|
vtbl->np.np_bg = bgsave;
|
2016-01-08 18:23:45 +01:00
|
|
|
#endif
|
|
|
|
#if CONFIG_NFILE_STREAMS > 0
|
2015-12-31 16:16:38 +01:00
|
|
|
vtbl->np.np_redirect = redirsave;
|
2016-01-08 18:23:45 +01:00
|
|
|
#endif
|
|
|
|
|
2015-12-31 16:16:38 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-09-01 17:09:49 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: cmd_date
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-04-11 20:13:18 +02:00
|
|
|
#ifndef CONFIG_NSH_DISABLE_DATE
|
2011-09-01 17:09:49 +02:00
|
|
|
int cmd_date(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|
|
|
{
|
|
|
|
FAR char *newtime = NULL;
|
|
|
|
FAR const char *errfmt;
|
|
|
|
bool badarg = false;
|
|
|
|
int option;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Get the date options: date [-s time] [+FORMAT] */
|
|
|
|
|
|
|
|
while ((option = getopt(argc, argv, "s:")) != ERROR)
|
|
|
|
{
|
|
|
|
if (option == 's')
|
|
|
|
{
|
|
|
|
/* We will be setting the time */
|
|
|
|
|
|
|
|
newtime = optarg;
|
|
|
|
}
|
|
|
|
else /* option = '?' */
|
|
|
|
{
|
|
|
|
/* We need to parse to the end anyway so that getopt stays healthy */
|
|
|
|
|
|
|
|
badarg = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If a bad argument was encountered then exit with an error */
|
|
|
|
|
|
|
|
if (badarg)
|
|
|
|
{
|
|
|
|
errfmt = g_fmtarginvalid;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* optind < argc-1 means that there are additional, unexpected arguments on
|
|
|
|
* th command-line
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (optind < argc)
|
|
|
|
{
|
|
|
|
errfmt = g_fmttoomanyargs;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2015-10-03 19:03:42 +02:00
|
|
|
/* Display or set the time */
|
2011-09-01 17:09:49 +02:00
|
|
|
|
2015-10-03 19:03:42 +02:00
|
|
|
if (newtime)
|
|
|
|
{
|
|
|
|
ret = date_settime(vtbl, argv[0], newtime);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = date_showtime(vtbl, argv[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2011-09-01 17:09:49 +02:00
|
|
|
|
|
|
|
errout:
|
2018-12-09 01:53:54 +01:00
|
|
|
nsh_error(vtbl, errfmt, argv[0]);
|
2011-09-01 17:09:49 +02:00
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
#endif
|