1 |
786 |
skrzyp |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// time_date.cxx
|
4 |
|
|
//
|
5 |
|
|
// RedBoot time/date commands
|
6 |
|
|
//
|
7 |
|
|
//==========================================================================
|
8 |
|
|
// ####ECOSGPLCOPYRIGHTBEGIN####
|
9 |
|
|
// -------------------------------------------
|
10 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
11 |
|
|
// Copyright (C) 2003 Free Software Foundation, Inc.
|
12 |
|
|
//
|
13 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
14 |
|
|
// the terms of the GNU General Public License as published by the Free
|
15 |
|
|
// Software Foundation; either version 2 or (at your option) any later
|
16 |
|
|
// version.
|
17 |
|
|
//
|
18 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT
|
19 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
20 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
21 |
|
|
// for more details.
|
22 |
|
|
//
|
23 |
|
|
// You should have received a copy of the GNU General Public License
|
24 |
|
|
// along with eCos; if not, write to the Free Software Foundation, Inc.,
|
25 |
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
26 |
|
|
//
|
27 |
|
|
// As a special exception, if other files instantiate templates or use
|
28 |
|
|
// macros or inline functions from this file, or you compile this file
|
29 |
|
|
// and link it with other works to produce a work based on this file,
|
30 |
|
|
// this file does not by itself cause the resulting work to be covered by
|
31 |
|
|
// the GNU General Public License. However the source code for this file
|
32 |
|
|
// must still be made available in accordance with section (3) of the GNU
|
33 |
|
|
// General Public License v2.
|
34 |
|
|
//
|
35 |
|
|
// This exception does not invalidate any other reasons why a work based
|
36 |
|
|
// on this file might be covered by the GNU General Public License.
|
37 |
|
|
// -------------------------------------------
|
38 |
|
|
// ####ECOSGPLCOPYRIGHTEND####
|
39 |
|
|
//==========================================================================
|
40 |
|
|
//#####DESCRIPTIONBEGIN####
|
41 |
|
|
//
|
42 |
|
|
// Author(s): gthomas
|
43 |
|
|
// Contributors:
|
44 |
|
|
// Date: 2003-09-10
|
45 |
|
|
// Description:
|
46 |
|
|
//####DESCRIPTIONEND####
|
47 |
|
|
// -------------------------------------------------------------------------
|
48 |
|
|
|
49 |
|
|
#include <redboot.h>
|
50 |
|
|
#include <pkgconf/hal.h>
|
51 |
|
|
#include <pkgconf/wallclock.h>
|
52 |
|
|
|
53 |
|
|
#include <cyg/infra/diag.h>
|
54 |
|
|
#include <cyg/io/wallclock.hxx> // The WallClock API
|
55 |
|
|
#include <cyg/io/wallclock/wallclock.inl> // Helper functions (avoids LIBC)
|
56 |
|
|
|
57 |
|
|
RedBoot_cmd("date",
|
58 |
|
|
"Show/Set the time of day",
|
59 |
|
|
"[YYYY/MM/DD HH:MM:SS]",
|
60 |
|
|
do_time_date
|
61 |
|
|
);
|
62 |
|
|
|
63 |
|
|
static bool
|
64 |
|
|
verify(cyg_uint32 val, int min, int max, char *id)
|
65 |
|
|
{
|
66 |
|
|
if (((int)val < min) || ((int)val > max)) {
|
67 |
|
|
diag_printf("%s is out of range - must be [%d..%d]\n", id, min, max);
|
68 |
|
|
return false;
|
69 |
|
|
}
|
70 |
|
|
return true;
|
71 |
|
|
}
|
72 |
|
|
|
73 |
|
|
void
|
74 |
|
|
do_time_date(int argc, char *argv[])
|
75 |
|
|
{
|
76 |
|
|
cyg_uint32 now = Cyg_WallClock::wallclock->get_current_time();
|
77 |
|
|
cyg_uint32 year, month, mday, hour, minute, second;
|
78 |
|
|
char *sp;
|
79 |
|
|
bool ok = true;
|
80 |
|
|
|
81 |
|
|
if (argc == 1) {
|
82 |
|
|
// Just show the current time/date
|
83 |
|
|
_simple_mkdate(now, &year, &month, &mday, &hour, &minute, &second);
|
84 |
|
|
diag_printf("%04d/%02d/%02d %02d:%02d:%02d\n",
|
85 |
|
|
year, month, mday, hour, minute, second);
|
86 |
|
|
} else if (argc == 3) {
|
87 |
|
|
sp = argv[1];
|
88 |
|
|
if (!parse_num(sp, (unsigned long *)&year, &sp, "/") ||
|
89 |
|
|
!parse_num(sp, (unsigned long *)&month, &sp, "/") ||
|
90 |
|
|
!parse_num(sp, (unsigned long *)&mday, &sp, "/")) {
|
91 |
|
|
ok = false;
|
92 |
|
|
}
|
93 |
|
|
sp = argv[2];
|
94 |
|
|
if (!parse_num(sp, (unsigned long *)&hour, &sp, ":") ||
|
95 |
|
|
!parse_num(sp, (unsigned long *)&minute, &sp, ":") ||
|
96 |
|
|
!parse_num(sp, (unsigned long *)&second, &sp, ":")) {
|
97 |
|
|
ok = false;
|
98 |
|
|
}
|
99 |
|
|
if (ok) {
|
100 |
|
|
// Verify values make some sense, then set the hardware
|
101 |
|
|
if (year < 100) year += 2000;
|
102 |
|
|
ok = ok && verify(year, 1970, 2034, "year");
|
103 |
|
|
ok = ok && verify(month, 1, 12, "month");
|
104 |
|
|
ok = ok && verify(mday, 1, 31, "day");
|
105 |
|
|
ok = ok && verify(hour, 0, 23, "hour");
|
106 |
|
|
ok = ok && verify(minute, 0, 59, "minute");
|
107 |
|
|
ok = ok && verify(second, 0, 59, "second");
|
108 |
|
|
if (ok) {
|
109 |
|
|
now = _simple_mktime(year, month, mday, hour, minute, second);
|
110 |
|
|
Cyg_WallClock::wallclock->set_current_time(now);
|
111 |
|
|
}
|
112 |
|
|
}
|
113 |
|
|
} else {
|
114 |
|
|
ok = false;
|
115 |
|
|
}
|
116 |
|
|
if (!ok) {
|
117 |
|
|
diag_printf("usage: date [YYYY/MM/DD HH:MM:SS]\n");
|
118 |
|
|
}
|
119 |
|
|
|
120 |
|
|
}
|
121 |
|
|
|
122 |
|
|
// -------------------------------------------------------------------------
|
123 |
|
|
// EOF time_date.cxx
|