forked from Imagelibrary/rtems
rtems_shell_help static. * libmisc/shell/main_hexdump.c: Make main_hexdump static. * libmisc/shell/main_id.c: Make rtems_shell_main_id static. * libmisc/shell/main_ifconfig.c: Make rtems_shell_main_ifconfig static. * libmisc/shell/main_ln.c: Make rtems_shell_main_ln static. * libmisc/shell/main_logoff.c: Make rtems_shell_main_logoff static. * libmisc/shell/main_ls.c: Make rtems_shell_main_ls static. * libmisc/shell/main_mallocinfo.c: Include <rtems/libcsupport.h>. Remove private decls of malloc_info, rtems_shell_print_unified_work_area_message. Make rtems_shell_main_malloc_info static. * libmisc/shell/main_medit.c: Remove private decl of rtems_shell_main_mdump. Make rtems_shell_main_medit static. * libmisc/shell/main_mfill.c: Make rtems_shell_main_mfill static. * libmisc/shell/main_mkdir.c: Make rtems_shell_main_mkdir static. * libmisc/shell/main_mknod.c: Make rtems_shell_main_mknod static. * libmisc/shell/main_mmove.c: Remove private decl of rtems_shell_main_mdump. Make rtems_shell_main_mmove static. * libmisc/shell/main_mount.c: Make rtems_shell_main_mount static. * libmisc/shell/main_msdosfmt.c: Make rtems_shell_main_msdos_format static. * libmisc/shell/main_mv.c: Include "internal.h". Make rtems_shell_mv_exit, rtems_shell_main_mv static. Remove private decls of strmode rtems_shell_main_cp, rtems_shell_main_rm. * libmisc/shell/main_mwdump.c: Make rtems_shell_main_mwdump static. * libmisc/shell/main_netstats.c: Make rtems_shell_main_netstats static. * libmisc/shell/main_perioduse.c: Make rtems_shell_main_perioduse static. * libmisc/shell/main_pwd.c: Make rtems_shell_main_pwd static. * libmisc/shell/main_rm.c: Include "internal.h". Make rtems_shell_rm_exit static. Remove private decl of strmode. * libmisc/shell/main_rmdir.c: Make rtems_shell_main_rmdir static. libmisc/shell/main_route.c: Make rtems_shell_main_route static. * libmisc/shell/main_setenv.c: Make rtems_shell_main_setenv static. * libmisc/shell/main_sleep.c: Make rtems_shell_main_sleep static. * libmisc/shell/main_stackuse.c: Make rtems_shell_main_stackuse static. * libmisc/shell/main_time.c: Make rtems_shell_main_time static. * libmisc/shell/main_tty.c: Make rtems_shell_main_tty static. * libmisc/shell/main_umask.c: Make rtems_shell_main_umask static. * libmisc/shell/main_unmount.c: Make rtems_shell_main_unmount static. * libmisc/shell/main_unsetenv.c: Make rtems_shell_main_unsetenv static. * libmisc/shell/main_whoami.c: Make rtems_shell_main_whoami static. * libmisc/shell/main_wkspaceinfo.c: Make rtems_shell_main_wkspace_info static.
95 lines
2.2 KiB
C
95 lines
2.2 KiB
C
/*
|
|
* Time Shell Command Implmentation
|
|
*
|
|
* Author: Chris Johns <chrisj@rtems.org>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <inttypes.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <rtems.h>
|
|
#include <rtems/shell.h>
|
|
#include "internal.h"
|
|
|
|
/* Helper macro to print "time_t" */
|
|
#if SIZEOF_TIME_T == 8
|
|
#define PRIdtime_t PRId64
|
|
#elif SIZEOF_TIME_T == 4
|
|
#define PRIdtime_t PRId32
|
|
#else
|
|
#error "PRIdtime_t: unsupported size of time_t"
|
|
#endif
|
|
|
|
static int rtems_shell_main_time(
|
|
int argc,
|
|
char *argv[]
|
|
)
|
|
{
|
|
rtems_shell_cmd_t* shell_cmd;
|
|
int errorlevel = 0;
|
|
struct timespec start;
|
|
struct timespec end;
|
|
struct timespec period;
|
|
rtems_status_code sc;
|
|
|
|
argc--;
|
|
|
|
sc = rtems_clock_get_uptime(&start);
|
|
if (sc != RTEMS_SUCCESSFUL)
|
|
printf("error: cannot read time\n");
|
|
|
|
if (argc) {
|
|
shell_cmd = rtems_shell_lookup_cmd(argv[1]);
|
|
if ( argv[1] == NULL ) {
|
|
errorlevel = -1;
|
|
} else if ( shell_cmd == NULL ) {
|
|
errorlevel = rtems_shell_script_file(argc, &argv[1]);
|
|
} else {
|
|
errorlevel = shell_cmd->command(argc, &argv[1]);
|
|
}
|
|
}
|
|
|
|
sc = rtems_clock_get_uptime(&end);
|
|
if (sc != RTEMS_SUCCESSFUL)
|
|
printf("error: cannot read time\n");
|
|
|
|
period.tv_sec = end.tv_sec - start.tv_sec;
|
|
period.tv_nsec = end.tv_nsec - start.tv_nsec;
|
|
if (period.tv_nsec < 0)
|
|
{
|
|
--period.tv_sec;
|
|
period.tv_nsec += 1000000000UL;
|
|
}
|
|
|
|
printf("time: %" PRIdtime_t ":%02" PRIdtime_t ":%02" PRIdtime_t ".%03li\n",
|
|
period.tv_sec / 3600,
|
|
period.tv_sec / 60, period.tv_sec % 60,
|
|
period.tv_nsec / 1000000);
|
|
|
|
return errorlevel;
|
|
}
|
|
|
|
rtems_shell_cmd_t rtems_shell_TIME_Command = {
|
|
"time", /* name */
|
|
"time command [arguments...]", /* usage */
|
|
"misc", /* topic */
|
|
rtems_shell_main_time, /* command */
|
|
NULL, /* alias */
|
|
NULL /* next */
|
|
};
|