1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
|
########################################################################
##
## Copyright (C) 2000-2024 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING. If not, see
## <https://www.gnu.org/licenses/>.
##
########################################################################
## -*- texinfo -*-
## @deftypefn {} {@var{str} =} datestr (@var{date})
## @deftypefnx {} {@var{str} =} datestr (@var{date}, @var{f})
## @deftypefnx {} {@var{str} =} datestr (@var{date}, @var{f}, @var{p})
## Format the given date/time according to the format @var{f} and return
## the result in @var{str}.
##
## @var{date} is a serial date number (@pxref{XREFdatenum,,@code{datenum}}), a
## date vector (@pxref{XREFdatevec,,@code{datevec}}), or a string or cell array
## of strings. In the latter case, it is passed to @code{datevec} to guess the
## input date format.
##
## @var{f} can be an integer which corresponds to one of the codes in the table
## below, or a date format string.
##
## @var{p} is the year at the start of the century in which two-digit years are
## to be interpreted in. If not specified, it defaults to the current year
## minus 50.
##
## For example, the date 730736.65149 (2000-09-07 15:38:09.0934) would be
## formatted as follows:
##
## @multitable @columnfractions 0.1 0.45 0.35
## @headitem Code @tab Format @tab Example
## @item 0 @tab dd-mmm-yyyy HH:MM:SS @tab 07-Sep-2000 15:38:09
## @item 1 @tab dd-mmm-yyyy @tab 07-Sep-2000
## @item 2 @tab mm/dd/yy @tab 09/07/00
## @item 3 @tab mmm @tab Sep
## @item 4 @tab m @tab S
## @item 5 @tab mm @tab 09
## @item 6 @tab mm/dd @tab 09/07
## @item 7 @tab dd @tab 07
## @item 8 @tab ddd @tab Thu
## @item 9 @tab d @tab T
## @item 10 @tab yyyy @tab 2000
## @item 11 @tab yy @tab 00
## @item 12 @tab mmmyy @tab Sep00
## @item 13 @tab HH:MM:SS @tab 15:38:09
## @item 14 @tab HH:MM:SS PM @tab 3:38:09 PM
## @item 15 @tab HH:MM @tab 15:38
## @item 16 @tab HH:MM PM @tab 3:38 PM
## @item 17 @tab QQ-YY @tab Q3-00
## @item 18 @tab QQ @tab Q3
## @item 19 @tab dd/mm @tab 07/09
## @item 20 @tab dd/mm/yy @tab 07/09/00
## @item 21 @tab mmm.dd,yyyy HH:MM:SS @tab Sep.07,2000 15:38:08
## @item 22 @tab mmm.dd,yyyy @tab Sep.07,2000
## @item 23 @tab mm/dd/yyyy @tab 09/07/2000
## @item 24 @tab dd/mm/yyyy @tab 07/09/2000
## @item 25 @tab yy/mm/dd @tab 00/09/07
## @item 26 @tab yyyy/mm/dd @tab 2000/09/07
## @item 27 @tab QQ-YYYY @tab Q3-2000
## @item 28 @tab mmmyyyy @tab Sep2000
## @item 29 @tab yyyy-mm-dd @tab 2000-09-07
## @item 30 @tab yyyymmddTHHMMSS @tab 20000907T153808
## @item 31 @tab yyyy-mm-dd HH:MM:SS @tab 2000-09-07 15:38:08
## @end multitable
##
## If @var{f} is a format string, the following symbols are recognized:
##
## @multitable @columnfractions 0.1 0.7 0.2
## @headitem Symbol @tab Meaning @tab Example
## @item yyyy @tab Full year @tab 2005
## @item yy @tab Two-digit year @tab 05
## @item mmmm @tab Full month name @tab December
## @item mmm @tab Abbreviated month name @tab Dec
## @item mm @tab Numeric month number (padded with zeros) @tab 01, 08, 12
## @item m @tab First letter of month name (capitalized) @tab D
## @item dddd @tab Full weekday name @tab Sunday
## @item ddd @tab Abbreviated weekday name @tab Sun
## @item dd @tab Numeric day of month (padded with zeros) @tab 11
## @item d @tab First letter of weekday name (capitalized) @tab S
## @item HH @tab Hour of day, padded with zeros, @tab 09:00
## @item @tab or padded with spaces if PM is set @tab 9:00 AM
## @item MM @tab Minute of hour (padded with zeros) @tab 10:05
## @item SS @tab Second of minute (padded with zeros) @tab 10:05:03
## @item FFF @tab Milliseconds of second (padded with zeros) @tab 10:05:03.012
## @item AM @tab Use 12-hour time format @tab 11:30 AM
## @item PM @tab Use 12-hour time format @tab 11:30 PM
## @end multitable
##
## If @var{f} is not specified or is @code{-1}, then use 0, 1 or 16, depending
## on whether the date portion or the time portion of @var{date} is empty.
##
## If @var{p} is not specified, it defaults to the current year minus 50.
##
## If a matrix or cell array of dates is given, a column vector of date strings
## is returned.
##
## @seealso{datenum, datevec, date, now, clock}
## @end deftypefn
## FIXME: parse arbitrary code strings.
## e.g., for Wednesday 2001-03-05 09:04:06 AM, use
## yy 01
## yyyy 2001
## m M
## mm 03
## mmm Mar
## d W
## dd 05
## ddd Wed
## HH 09
## MM 04
## SS 06
## PM AM
## FIXME: Vectorize. It is particularly easy since all the codes are
## fixed width. Just generate the parts in separate arrays and
## concatenate.
function retval = datestr (date, f = [], p = [])
persistent dateform names_mmmm names_m names_d;
if (isempty (dateform))
dateform = cell (32, 1);
dateform{1} = "dd-mmm-yyyy HH:MM:SS";
dateform{2} = "dd-mmm-yyyy";
dateform{3} = "mm/dd/yy";
dateform{4} = "mmm";
dateform{5} = "m";
dateform{6} = "mm";
dateform{7} = "mm/dd";
dateform{8} = "dd";
dateform{9} = "ddd";
dateform{10} = "d";
dateform{11} = "yyyy";
dateform{12} = "yy";
dateform{13} = "mmmyy";
dateform{14} = "HH:MM:SS";
dateform{15} = "HH:MM:SS PM";
dateform{16} = "HH:MM";
dateform{17} = "HH:MM PM";
dateform{18} = "QQ-YY";
dateform{19} = "QQ";
dateform{20} = "dd/mm";
dateform{21} = "dd/mm/yy";
dateform{22} = "mmm.dd,yyyy HH:MM:SS";
dateform{23} = "mmm.dd,yyyy";
dateform{24} = "mm/dd/yyyy";
dateform{25} = "dd/mm/yyyy";
dateform{26} = "yy/mm/dd";
dateform{27} = "yyyy/mm/dd";
dateform{28} = "QQ-YYYY";
dateform{29} = "mmmyyyy";
dateform{30} = "yyyy-mm-dd";
dateform{31} = "yyyymmddTHHMMSS";
dateform{32} = "yyyy-mm-dd HH:MM:SS";
names_m = {"J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"};
names_d = {"S", "M", "T", "W", "T", "F", "S"};
endif
if (nargin < 1)
print_usage ();
endif
## Guess input type. We might be wrong.
if (ischar (date) || iscellstr (date) || columns (date) != 6)
v = datevec (date, p);
else
v = [];
if (columns (date) == 6)
## Make sure that the input really is a datevec.
maxdatevec = [Inf, 12, 31, 23, 59, 60];
if (any (max (date, 1) > maxdatevec)
|| any (date(:,1:5) != floor (date(:,1:5))))
v = datevec (date, p);
endif
endif
if (isempty (v))
v = date;
endif
endif
## Round fractional seconds >= 0.9995 s to next full second.
idx = v(:,6) - fix (v(:,6)) >= 0.9995;
if (any (idx))
v(idx,6) = fix (v(idx,6)) + 1;
v(idx,:) = datevec (datenum (v(idx,:)));
endif
## Automatic format selection
if (isempty (f))
if (v(:,4:6) == 0)
f = 1;
elseif (v(:,1:3) == [-1, 12, 31])
f = 16;
else
f = 0;
endif
endif
retval = "";
for i = 1 : rows (v)
if (isnumeric (f))
df = dateform{f + 1};
else
df = f;
endif
df_orig = df;
df = strrep (df, "AM", "%p");
df = strrep (df, "PM", "%p");
if (strcmp (df, df_orig))
## PM not set.
df = strrep (df, "HH", "%H");
else
hr = mod (v(i,4), 12);
if (hr == 0)
hr = 12;
endif
df = strrep (df, "HH", sprintf ("%2d", hr));
endif
df = regexprep (df, "[Yy][Yy][Yy][Yy]", "%Y");
df = regexprep (df, "[Yy][Yy]", "%y");
df = regexprep (df, "[Dd][Dd][Dd][Dd]", "%A");
df = regexprep (df, "[Dd][Dd][Dd]", "%a");
df = regexprep (df, "[Dd][Dd]", "%d");
wday = weekday (datenum (v(i,1), v(i,2), v(i,3)));
tmp = names_d{wday};
df = regexprep (df, "([^%])[Dd]", sprintf ("$1%s", tmp));
df = regexprep (df, "^[Dd]", sprintf ("%s", tmp));
df = strrep (df, "mmmm", "%B");
df = strrep (df, "mmm", "%b");
df = strrep (df, "mm", "%m");
tmp = names_m{v(i,2)};
pos = regexp (df, "[^%]m") + 1;
df(pos) = tmp;
df = regexprep (df, "^m", tmp);
df = strrep (df, "MM", "%M");
df = regexprep (df, "[Ss][Ss]", "%S");
df = strrep (df, "FFF", sprintf ("%03d",
round (1000 * (v(i,6) - fix (v(i,6))))));
df = strrep (df, "QQ", sprintf ("Q%d", fix ((v(i,2) + 2) / 3)));
vi = v(i,:);
tm.year = vi(1) - 1900;
tm.mon = vi(2) - 1;
tm.mday = vi(3);
tm.hour = vi(4);
tm.min = vi(5);
sec = vi(6);
tm.sec = fix (sec);
tm.usec = fix ((sec - tm.sec) * 1e6);
tm.wday = wday - 1;
## FIXME: Do we need YDAY and DST? How should they be computed?
## We don't want to use "localtime (mktime (tm))" because that
## doesn't correctly handle dates before 1970-01-01 on some systems.
## tm.yday = ?;
## tm.isdst = ?;
str = strftime (df, tm);
retval = [retval; str];
endfor
endfunction
%!demo
%! ## Current date and time in default format
%! datestr (now ())
%!demo
%! ## Current date (integer portion of datenum)
%! datestr (fix (now ()))
%!demo
%! ## Current time (fractional portion of datenum)
%! datestr (rem (now (), 1))
%!shared testtime
%! testtime = [2005.0000, 12.0000, 18.0000, 2.0000, 33.0000, 17.3822];
%!assert (datestr (testtime,0), "18-Dec-2005 02:33:17")
%!assert (datestr (testtime,1), "18-Dec-2005")
%!assert (datestr (testtime,2), "12/18/05")
%!assert (datestr (testtime,3), "Dec")
%!assert (datestr (testtime,4), "D")
%!assert (datestr (testtime,5), "12")
%!assert (datestr (testtime,6), "12/18")
%!assert (datestr (testtime,7), "18")
%!assert (datestr (testtime,8), "Sun")
%!assert (datestr (testtime,9), "S")
%!assert (datestr (testtime,10), "2005")
%!assert (datestr (testtime,11), "05")
%!assert (datestr (testtime,12), "Dec05")
%!assert (datestr (testtime,13), "02:33:17")
## Mac OS X interprets %p parameter to strftime as lower case am/pm indicator.
## Accommodate this, although no other UNIX-based OS does this.
%!test
%! obs = upper (datestr (testtime,14));
%! assert (obs, " 2:33:17 AM");
%!assert (datestr (testtime,15), "02:33")
%!test
%! obs = upper (datestr (testtime,16));
%! assert (obs, " 2:33 AM");
%!test <*48071>
%! testtime2 = testtime;
%! testtime2(4) = 15;
%! obs = upper (datestr (testtime2,16));
%! assert (obs, " 3:33 PM");
%!assert (datestr (testtime,17), "Q4-05")
%!assert (datestr (testtime,18), "Q4")
%!assert (datestr (testtime,19), "18/12")
%!assert (datestr (testtime,20), "18/12/05")
%!assert (datestr (testtime,21), "Dec.18,2005 02:33:17")
%!assert (datestr (testtime,22), "Dec.18,2005")
%!assert (datestr (testtime,23), "12/18/2005")
%!assert (datestr (testtime,24), "18/12/2005")
%!assert (datestr (testtime,25), "05/12/18")
%!assert (datestr (testtime,26), "2005/12/18")
%!assert (datestr (testtime,27), "Q4-2005")
%!assert (datestr (testtime,28), "Dec2005")
%!assert (datestr (testtime,29), "2005-12-18")
%!assert (datestr (testtime,30), "20051218T023317")
%!assert (datestr (testtime,31), "2005-12-18 02:33:17")
%!assert (datestr (testtime+[0 0 3 0 0 0], "dddd"), "Wednesday")
## Test possible bug where input is a vector of datenums that is exactly 6 wide
%!assert (datestr ([1944, 6, 6, 6, 30, 0], 0), "06-Jun-1944 06:30:00")
## Test fractional millisecond time extension
%!assert (datestr (testtime, "HH:MM:SS:FFF"), "02:33:17:382")
## Test automatic format detection over vectors
%!assert (datestr ([2017 03 16 0 0 0; 2017 03 16 0 0 1]),
%! char ("16-Mar-2017 00:00:00", "16-Mar-2017 00:00:01"))
## Test for correct millisecond rounding
%!assert (datestr (datenum ("1:00") - datenum ("0:55"), "HH:MM:SS.FFF"),
%! "00:05:00.000")
## Test input validation
%!error <Invalid call> datestr ()
|