AbstractTime.st
author Patrik Svestka <patrik.svestka@gmail.com>
Tue, 09 Apr 2019 11:34:04 +0200
branchjv
changeset 24093 0f94f6c8c9d4
parent 23107 40173e082cbc
child 25423 bcfde4da086a
permissions -rw-r--r--
Issue #269: Renaming a registry subKey via RegRenameKey() or if it fails via NtRenameKey()
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
     1
"
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 21387
diff changeset
     3
 COPYRIGHT (c) 2009 Jan Vrany
7010
13fcdfdc95b1 add methods for squeak compatibility
penk
parents: 7007
diff changeset
     4
              All Rights Reserved
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
     5
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
     6
 This software is furnished under a license and may be used
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
     7
 only in accordance with the terms of that license and with the
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
     8
 inclusion of the above copyright notice.   This software may not
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
     9
 be provided or otherwise made available to, or used by, any
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    10
 other person.  No title to or ownership of the software is
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    11
 hereby transferred.
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    12
"
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
    13
"{ Package: 'stx:libbasic' }"
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
    14
17400
2aad82c1d66c class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17195
diff changeset
    15
"{ NameSpace: Smalltalk }"
2aad82c1d66c class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17195
diff changeset
    16
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    17
Magnitude subclass:#AbstractTime
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7010
diff changeset
    18
	instanceVariableNames:''
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7010
diff changeset
    19
	classVariableNames:''
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7010
diff changeset
    20
	poolDictionaries:''
7672
46f206594db3 Category change
Stefan Vogel <sv@exept.de>
parents: 7327
diff changeset
    21
	category:'Magnitude-Time'
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    22
!
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    23
2310
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
    24
!AbstractTime class methodsFor:'documentation'!
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    25
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    26
copyright
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    27
"
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    28
 COPYRIGHT (c) 1995 by Claus Gittinger
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 21387
diff changeset
    29
 COPYRIGHT (c) 2009 Jan Vrany
7010
13fcdfdc95b1 add methods for squeak compatibility
penk
parents: 7007
diff changeset
    30
              All Rights Reserved
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    31
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    32
 This software is furnished under a license and may be used
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    33
 only in accordance with the terms of that license and with the
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    35
 be provided or otherwise made available to, or used by, any
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    36
 other person.  No title to or ownership of the software is
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    37
 hereby transferred.
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    38
"
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    39
!
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    40
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    41
documentation
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    42
"
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
    43
    This is an abstract class providing common protocol for Time (time in day)
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
    44
    and Timestamp (time plus day).
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
    45
    There are no instances of this class in the system.
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
    46
    It is meant as a home for methods common to time handling classes.
1282
3f5eda57c516 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    47
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    48
    [author:]
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    49
        Claus Gittinger
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    50
1282
3f5eda57c516 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    51
    [See also:]
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
    52
        Time Date Timestamp
1282
3f5eda57c516 commentary
Claus Gittinger <cg@exept.de>
parents: 1227
diff changeset
    53
        Delay ProcessorScheduler
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
    54
"
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    55
!
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    56
21325
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
    57
iso8601FormatDocumentation
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    58
"
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    59
  Abstract
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    60
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    61
    This document defines a profile of ISO 8601, the International Standard for the representation of dates and times. ISO
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    62
    8601 describes a large number of date/time formats. To reduce the scope for error and the complexity of software, it is
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    63
    useful to restrict the supported formats to a small number. This profile defines a few date/time formats, likely to satisfy
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    64
    most requirements. 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    65
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    66
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    67
  Formats
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    68
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    69
    Different standards may need different levels of granularity in the date and time, so this profile defines six levels.
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    70
    Standards that reference this profile should specify one or more of these granularities. If a given standard allows more
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    71
    than one granularity, it should specify the meaning of the dates and times with reduced precision, for example, the result
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    72
    of comparing two dates with different precisions.
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    73
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    74
    The formats are as follows. Exactly the components shown here must be present, with exactly this punctuation. Note
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    75
    that the 'T' appears literally in the string, to indicate the beginning of the time element, as specified in ISO 8601. 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    76
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    77
       Year:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    78
          YYYY (eg 1997)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    79
       Year and month:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    80
          YYYY-MM (eg 1997-07)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    81
       Complete date:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    82
          YYYY-MM-DD (eg 1997-07-16)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    83
       Complete date plus hours and minutes:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    84
          YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    85
       Complete date plus hours, minutes and seconds:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    86
          YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    87
       Complete date plus hours, minutes, seconds and a decimal fraction of a
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    88
    second
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    89
          YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    90
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    91
    where:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    92
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    93
         YYYY = four-digit year
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    94
         MM   = two-digit month (01=January, etc.)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    95
         DD   = two-digit day of month (01 through 31)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    96
         hh   = two digits of hour (00 through 23) (am/pm NOT allowed)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    97
         mm   = two digits of minute (00 through 59)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    98
         ss   = two digits of second (00 through 59)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
    99
         s    = one or more digits representing a decimal fraction of a second
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   100
         TZD  = time zone designator (Z or +hh:mm or -hh:mm)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   101
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   102
    This profile does not specify how many digits may be used to represent the decimal fraction of a second. An adopting
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   103
    standard that permits fractions of a second must specify both the minimum number of digits (a number greater than or
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   104
    equal to one) and the maximum number of digits (the maximum may be stated to be 'unlimited').
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   105
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   106
    This profile defines two ways of handling time zone offsets:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   107
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   108
       1.Times are expressed in UTC (Coordinated Universal Time), with a special UTC designator ('Z'). 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   109
       2.Times are expressed in local time, together with a time zone offset in hours and minutes. A time zone offset of
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   110
         '+hh:mm' indicates that the date/time uses a local time zone which is 'hh' hours and 'mm' minutes ahead of
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   111
         UTC. A time zone offset of '-hh:mm' indicates that the date/time uses a local time zone which is 'hh' hours and
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   112
         'mm' minutes behind UTC. 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   113
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   114
    A standard referencing this profile should permit one or both of these ways of handling time zone offsets.
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   115
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   116
  The ISO8601 printString are generated with:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   117
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   118
       Year:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   119
          YYYY (eg 1997)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   120
                Date today printStringFormat:'%(year)'
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   121
                Timestamp now printStringFormat:'%(year)'  
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   122
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   123
       Year and month:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   124
          YYYY-MM (eg 1997-07)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   125
                Date today printStringFormat:'%(year)-%(month)'  
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   126
                Timestamp now printStringFormat:'%(year)-%(month)'  
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   127
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   128
       Complete date:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   129
          YYYY-MM-DD (eg 1997-07-16)
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   130
                Date today printStringFormat:'%(year)-%(month)-%(day)'    
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   131
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)'  
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   132
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   133
       Complete date plus hours and minutes:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   134
          YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   135
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m%(TZD)'  
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   136
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   137
       Complete date plus hours, minutes and seconds:
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   138
          YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   139
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m:%s%(TZD)'  
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   140
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   141
       Complete date plus hours, minutes, seconds and a decimal fraction of a second
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   142
          YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   143
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m:%s.%(milli2)%(TZD)'  
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   144
"
21325
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   145
!
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   146
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   147
printFormatDocumentation
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   148
"
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   149
     bindings:
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   150
        %h      hours, 00..23 (i.e. european)  0-padded to length 2
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   151
        %u      hours, 00..12 (i.e. us)        0-padded to length 2
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   152
        %m      minutes, 00..59                0-padded to length 2
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   153
        %s      seconds, 00..59                0-padded to length 2
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   154
        %i      milliseconds, 000..999         0-padded to length 3
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   155
        %a      am/pm
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   156
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   157
     Timestamp only:
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   158
        %(day)   day, 00..31                    0-padded to length 2
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   159
        %(month) month, 00..12                  0-padded to length 2
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   160
        %(year)  year, 4 digits                 0-padded to length 4
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   161
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   162
     special:
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   163
        %H      24-hours - unpadded
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   164
        %U      12-hours - unpadded
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   165
        %M      minutes - unpadded
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   166
        %S      seconds - unpadded
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   167
        %I      milliseconds, unpadded
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   168
        %A      AM/PM   - uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   169
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   170
        %t      seconds within hour  (unpadded)
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   171
        %T      seconds from midNight  (unpadded)
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   172
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   173
        %(TZD)  timeZone delta of the receiver from UTC in the format +/-hh:mm
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   174
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   175
        %(milli1) milliseconds, truncated to 1/10th of a second 0..9
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   176
        %(milli2) milliseconds, truncated to 1/100th of a second 00..99 0-padded to length 2
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   177
        %(milli3) milliseconds, same as %i for convenience
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   178
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   179
     Timestamp only:
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   180
        %(Day)         - day - unpadded
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   181
        %(Month)       - month - unpadded
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   182
        %(yearOrTime)  - year or time 5 digits    as in unix-ls:
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   183
                                                  year if it is not the current year;
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   184
                                                  time otherwise
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   185
        %(weekDay)      - day in week (1->monday, 2->tuesday, ... ,7->sunday)
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   186
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   187
        %(dayName)      - full day name
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   188
        %(DayName)      - full day name, first character uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   189
        %(DAYNAME)      - full day name, all uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   190
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   191
        %(monthName)    - full month name
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   192
        %(MonthName)    - full month name, first character uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   193
        %(MONTHNAME)    - full month name, all uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   194
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   195
        %(shortDayName) - short (abbreviated) day name
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   196
        %(ShortDayName) - short (abbreviated) day name, first character uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   197
        %(SHORTDAYNAME) - short (abbreviated) day name, all uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   198
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   199
        %(shortMonthName) - short (abbreviated) month name
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   200
        %(ShortMonthName) - short (abbreviated) month name, first character uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   201
        %(SHORTMONTHNAME) - short (abbreviated) month name, all uppercase
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   202
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   203
        %(nth)          - counting day-in-month (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   204
        %(weekDayNth)   - counting day-in-week (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   205
        %(weekNth)      - counting week-in-year (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   206
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   207
        %(yearRoman)    - year, in roman letters
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   208
        %(monthRoman)   - month, in roman letters
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   209
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   210
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   211
     The ISO8601 printString are documented in iso8601FormatDocumentation:
d722454f36b8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20789
diff changeset
   212
"
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   213
! !
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   214
2310
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
   215
!AbstractTime class methodsFor:'instance creation'!
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   216
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   217
dateAndTimeNow
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   218
    "return an array filled with the current date and time.
16982
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   219
     As these provide no timezone info, this should be only used for user interface purposes.
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   220
     See also: Date today / Time now / Timestamp now."
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   221
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   222
    ^ Array with:(Date today) with:(Time now)
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   223
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   224
    "
16982
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   225
     Time dateAndTimeNow       
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   226
     Date dateAndTimeNow       
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   227
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   228
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   229
    "Modified: 19.4.1996 / 15:23:37 / cg"
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   230
!
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   231
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   232
epoch
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   233
    "answer the time when we start counting"
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   234
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   235
    ^ self new setSeconds:0
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   236
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   237
    "
16982
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   238
     Timestamp epoch
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   239
     Time epoch     
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   240
    "
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   241
!
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   242
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   243
now
19654
f07bf67efc5c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19398
diff changeset
   244
    "return an instance of myself representing this moment with at least second precision.
16982
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   245
     Timestamps will redefine this to always return millisecond precision."
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   246
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   247
    ^ self basicNew fromOSTime:(OperatingSystem getOSTime)
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   248
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   249
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   250
     Timestamp now   
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   251
     Time now   
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   252
    "
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   253
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   254
    "Modified: 1.7.1996 / 15:20:10 / cg"
13233
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   255
!
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   256
16941
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   257
nowWithMilliseconds
16982
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   258
    "return an instance of myself representing this moment with millisecond precision."
16941
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   259
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   260
    ^ self basicNew fromOSTimeWithMilliseconds:(OperatingSystem getOSTime)
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   261
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   262
    "
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   263
     Timestamp now   
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   264
     Time now
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   265
     Time nowWithMilliseconds
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   266
    "
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   267
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   268
    "Modified: 1.7.1996 / 15:20:10 / cg"
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   269
!
78358165ed6b class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16934
diff changeset
   270
13233
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   271
utcNow
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   272
    "return an instance of myself representing this momentin the UTC timezone."
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   273
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   274
    ^ self subclassResponsibility
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   275
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   276
    "
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   277
     Timestamp utcNow   
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   278
     Timestamp utcNow
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   279
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   280
     Time now   
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   281
     Time utcNow   
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   282
    "
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   283
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
   284
    "Modified: 1.7.1996 / 15:20:10 / cg"
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   285
! !
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   286
7294
c4e6d095a150 category changes
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   287
!AbstractTime class methodsFor:'Compatibility-Squeak'!
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   288
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   289
dateAndTimeFromSeconds:secondCount
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   290
    "set date and time from seconds since 1901-01-01 00:00 UTC"
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   291
9429
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   292
    |timestamp|
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   293
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   294
"   
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   295
    secondsBetween1901and1970 := 
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   296
        (Timestamp epoch asDate subtractDate:(Date day:1 month:1 year:1901))
9429
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   297
        *  (24 * 60 * 60)
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   298
"
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   299
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   300
    "stc cannot make large integers"
9449
6ba774be6aa1 stc can compile large integers!
Stefan Vogel <sv@exept.de>
parents: 9432
diff changeset
   301
    timestamp := Timestamp fromSeconds:secondCount - 2177452800.
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   302
    ^ Array
9429
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   303
        with: (timestamp asDate)
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   304
        with: (timestamp asTime)
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   305
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   306
    "
9429
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   307
     Timestamp dateAndTimeFromSeconds: (Time primSecondsClock) 
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   308
     Time dateAndTimeFromSeconds: (Time totalSeconds) 
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   309
     Date dateAndTimeFromSeconds: (Time totalSeconds)
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   310
    "
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   311
!
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   312
11528
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   313
milliseconds:msTime1 since:msTime2
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   314
    "return the number of milliseconds between two
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   315
     millisecond time values, compensating for roll-over.
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   316
     The same as millisecondsBetween:and: for Squeak compatibility."
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   317
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   318
    ^ OperatingSystem millisecondTimeDeltaBetween:msTime1 and:msTime2
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   319
!
a617f1faef7f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11518
diff changeset
   320
9926
5bfe280953b9 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9449
diff changeset
   321
millisecondsSince: lastTime
5bfe280953b9 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9449
diff changeset
   322
        "Answer the elapsed time since last recorded in milliseconds.
5bfe280953b9 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9449
diff changeset
   323
        Compensate for rollover."
5bfe280953b9 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9449
diff changeset
   324
5bfe280953b9 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9449
diff changeset
   325
        ^self milliseconds: self millisecondClockValue since: lastTime
5bfe280953b9 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9449
diff changeset
   326
!
5bfe280953b9 *** empty log message ***
Michael Beyl <mb@exept.de>
parents: 9449
diff changeset
   327
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   328
primSecondsClock
9429
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   329
    "returns the number of seconds since 1.1.1901 UTC"
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   330
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   331
    ^ Timestamp now utcSecondsSince1901
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   332
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
   333
    "
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
   334
     Timestamp primSecondsClock
9429
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   335
    "
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   336
! !
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   337
7294
c4e6d095a150 category changes
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
   338
!AbstractTime class methodsFor:'Compatibility-VW'!
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   339
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   340
totalSeconds
9429
173bcd493d7c Fix for utc botch when retrieving seconds since 1901
Stefan Vogel <sv@exept.de>
parents: 8586
diff changeset
   341
    "returns the number of seconds since 1.1.1901 UTC"
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   342
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   343
    ^ Timestamp now utcSecondsSince1901
7007
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   344
! !
9af8cc2f82a4 totalSeconds returns the number of seconds since 1.1.1901 now
penk
parents: 6888
diff changeset
   345
11130
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   346
!AbstractTime class methodsFor:'error handling'!
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   347
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   348
conversionErrorSignal
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   349
    "return the signal used for conversion error handling"
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   350
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   351
    ^ TimeConversionError
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   352
! !
fb6ebdb8c2a1 conversion errors
Claus Gittinger <cg@exept.de>
parents: 10907
diff changeset
   353
13701
46009307d8e3 added: defaultFormatString
ca
parents: 13233
diff changeset
   354
!AbstractTime class methodsFor:'format strings'!
46009307d8e3 added: defaultFormatString
ca
parents: 13233
diff changeset
   355
46009307d8e3 added: defaultFormatString
ca
parents: 13233
diff changeset
   356
defaultFormatString
46009307d8e3 added: defaultFormatString
ca
parents: 13233
diff changeset
   357
    ^ '%h:%m:%s'
46009307d8e3 added: defaultFormatString
ca
parents: 13233
diff changeset
   358
! !
46009307d8e3 added: defaultFormatString
ca
parents: 13233
diff changeset
   359
18454
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   360
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7010
diff changeset
   361
!AbstractTime class methodsFor:'private-instance creation'!
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   362
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   363
fromOSTime:osTime
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   364
    "return a time, representing the time given by the operatingSystem time.
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   365
     Not meant for public use."
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   366
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   367
    ^ self basicNew fromOSTime:osTime.
418
claus
parents: 384
diff changeset
   368
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   369
    "Modified: 1.7.1996 / 15:09:54 / cg"
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   370
!
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   371
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   372
fromSeconds:seconds
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   373
    "return an instance that is constructed from seconds.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   374
     This method is only allowed for second values as returned by
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
   375
     getSeconds, possibly adding/subtracting to that.
1227
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   376
     Never depend on any specific interpretation of the seconds,
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   377
     since it depends on how the OperatingSystem counts time
e89b39909085 commentary & category changes
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   378
     (some start at 1900, others with 1970 ...)"
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   379
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   380
   ^ self basicNew setSeconds:seconds
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   381
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   382
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   383
     Time fromSeconds:0             should return midnight
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   384
     Timestamp fromSeconds:0     on UNIX: returns 1st. Jan 1970
20789
4a410e6b1dff #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20200
diff changeset
   385
                                    on others: don't know
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   386
     (Timestamp day:1 month:1 year:1970 hour:1 minutes:0 seconds:0)
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   387
        getSeconds                  on UNIX: returns 0
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
   388
                                    on others: don't know
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   389
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   390
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   391
    "Modified: 1.7.1996 / 13:39:30 / cg"
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   392
! !
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
   393
2310
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
   394
!AbstractTime class methodsFor:'queries'!
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   395
18918
ea95a7e73213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18454
diff changeset
   396
isAbstract
ea95a7e73213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18454
diff changeset
   397
    ^ self == AbstractTime
ea95a7e73213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18454
diff changeset
   398
!
ea95a7e73213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18454
diff changeset
   399
15684
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   400
microsecondClockValue
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   401
    "return microseconds seconds of now"
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   402
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   403
    ^ OperatingSystem getMicrosecondTime
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   404
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   405
    "
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   406
     Time microsecondClockValue
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   407
    "
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   408
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   409
    "
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   410
     |t1 t2 overhead|
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   411
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   412
     t1 := Time microsecondClockValue.
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   413
     t2 := Time microsecondClockValue.
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   414
     overhead := t2 - t1.  
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   415
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   416
     t1 := Time microsecondClockValue.
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   417
     100 factorial.
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   418
     t2 := Time microsecondClockValue.
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   419
     t2 - t1 - overhead        
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   420
    "
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   421
!
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
   422
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   423
millisecondClockValue
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   424
    "return the millisecond clock - since this one overruns
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   425
     regularly, use the value only for short timing deltas.
5730
b377ec6357e7 comment
Claus Gittinger <cg@exept.de>
parents: 5573
diff changeset
   426
     Also remember that it wraps when comparing these values."
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   427
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   428
    ^ OperatingSystem getMillisecondTime.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   429
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   430
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   431
     Time millisecondClockValue 
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   432
    "
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   433
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   434
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   435
secondClock
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   436
    "return seconds of now - for GNU-ST compatibility"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   437
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   438
    ^ OperatingSystem getOSTime // 1000
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   439
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   440
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   441
     AbstractTime secondClock    
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   442
    "
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   443
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   444
    "Modified: 1.7.1996 / 15:20:14 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   445
! !
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   446
18454
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   447
!AbstractTime class methodsFor:'reading'!
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   448
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   449
readFrom:aStringOrStream format:formatString
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   450
    "see format description in readFrom:format:language:onError:"
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   451
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   452
    ^ self 
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   453
        readFrom:aStringOrStream format:formatString language:nil 
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   454
        onError:[
19894
c03dc72fc13b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19654
diff changeset
   455
            self conversionErrorSignal raiseErrorString:' - Timestamp format error'
18454
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   456
        ].
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   457
!
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   458
19894
c03dc72fc13b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19654
diff changeset
   459
readFrom:aStringOrStream format:formatString language:languageString onError:exceptionalValue
c03dc72fc13b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19654
diff changeset
   460
    ^ self subclassResponsibility
c03dc72fc13b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19654
diff changeset
   461
!
c03dc72fc13b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19654
diff changeset
   462
18454
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   463
readFrom:aStringOrStream format:formatString onError:exceptionalValue
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   464
    "see format description in readFrom:format:language:onError:"
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   465
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   466
    ^ self readFrom:aStringOrStream format:formatString language:nil onError:exceptionalValue
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   467
! !
79aa7d84d07f class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17400
diff changeset
   468
2310
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
   469
!AbstractTime class methodsFor:'timing evaluations'!
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   470
12831
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   471
microsecondsToRun:aBlock
16673
38e6f4c80e3a fixed buggy copy pasta comment
az
parents: 16505
diff changeset
   472
    "evaluate the argument, aBlock; return the number of microseconds it took"
12831
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   473
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   474
    |startTime endTime|
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   475
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   476
    startTime := OperatingSystem getMicrosecondTime.
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   477
    aBlock value.
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   478
    endTime := OperatingSystem getMicrosecondTime.
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   479
    ^ endTime - startTime
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   480
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   481
    "
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   482
     Time microsecondsToRun:[1000 factorial]  
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   483
    "
16673
38e6f4c80e3a fixed buggy copy pasta comment
az
parents: 16505
diff changeset
   484
38e6f4c80e3a fixed buggy copy pasta comment
az
parents: 16505
diff changeset
   485
    "Modified (comment): / 01-07-2014 / 15:57:13 / az"
12831
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   486
!
97be4636cf07 added: #microsecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 12662
diff changeset
   487
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   488
millisecondsToRun:aBlock
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   489
    "evaluate the argument, aBlock; return the number of milliseconds it took"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   490
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   491
    |startTime endTime|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   492
1476
02f69251f5bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   493
    startTime := OperatingSystem getMillisecondTime.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   494
    aBlock value.
1476
02f69251f5bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   495
    endTime := OperatingSystem getMillisecondTime.
8586
a38e882affa5 take care of time-wrap in #millisecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 8450
diff changeset
   496
    ^ self milliseconds:endTime since:startTime
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   497
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   498
    "
8586
a38e882affa5 take care of time-wrap in #millisecondsToRun:
Stefan Vogel <sv@exept.de>
parents: 8450
diff changeset
   499
     Time millisecondsToRun:[1000 factorial]  
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   500
    "
1476
02f69251f5bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   501
02f69251f5bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   502
    "Modified: 17.6.1996 / 16:57:37 / cg"
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   503
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   504
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   505
secondsToRun:aBlock
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   506
    "evaluate the argument, aBlock; return the number of seconds it took"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   507
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   508
    |startTime endTime|
360
claus
parents: 275
diff changeset
   509
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   510
    startTime := self secondClock.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   511
    aBlock value.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   512
    endTime := self secondClock.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   513
    ^ endTime - startTime
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   514
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   515
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   516
     Time secondsToRun:[1000 factorial]  
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   517
    "
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   518
! !
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   519
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   520
!AbstractTime methodsFor:'Compatibility-ANSI'!
6419
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   521
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   522
hour12
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   523
    "return the hour (1..12)."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   524
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   525
    ^ self hours - 1 \\ 12 + 1.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   526
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   527
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   528
     Time now hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   529
     Time now hour24   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   530
     (Time hours:0 minutes:0 seconds:0) hour24   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   531
     (Time hours:0 minutes:0 seconds:0) hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   532
     (Time hours:1 minutes:0 seconds:0) hour24   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   533
     (Time hours:1 minutes:0 seconds:0) hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   534
     (Time hours:12 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   535
     (Time hours:12 minutes:0 seconds:0) hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   536
     (Time hours:13 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   537
     (Time hours:13 minutes:0 seconds:0) hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   538
     (Time hours:23 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   539
     (Time hours:23 minutes:0 seconds:0) hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   540
     (Time hours:24 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   541
     (Time hours:24 minutes:0 seconds:0) hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   542
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   543
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   544
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   545
hour24
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   546
    "return the hour (0..23)."
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   547
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   548
    ^ self hours
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   549
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   550
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   551
     Time now hour12   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   552
     Time now hour24   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   553
     (Time hours:0 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   554
     (Time hours:0 minutes:0 seconds:0) hour12 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   555
     (Time hours:1 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   556
     (Time hours:1 minutes:0 seconds:0) hour12 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   557
     (Time hours:12 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   558
     (Time hours:12 minutes:0 seconds:0) hour12 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   559
     (Time hours:13 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   560
     (Time hours:13 minutes:0 seconds:0) hour12 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   561
     (Time hours:23 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   562
     (Time hours:23 minutes:0 seconds:0) hour12 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   563
     (Time hours:24 minutes:0 seconds:0) hour24 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   564
     (Time hours:24 minutes:0 seconds:0) hour12 
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   565
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   566
!
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   567
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   568
meridianAbbreviation
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   569
    "am/pm"
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   570
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   571
    self hours // 12 == 0 ifTrue:[
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   572
        ^ 'am'.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   573
    ] ifFalse:[
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   574
        (self hours == 12 and:[self minutes == 0 and:[self seconds == 0]]) ifTrue:[
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   575
            ^ 'noon'
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   576
        ].
6419
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   577
        ^ 'pm'.
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   578
    ].
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   579
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   580
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   581
     Time now meridianAbbreviation   
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   582
     (Time hours:0 minutes:0 seconds:0) meridianAbbreviation  
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   583
     (Time hours:11 minutes:59 seconds:59) meridianAbbreviation  
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   584
     (Time hours:12 minutes:0 seconds:0) meridianAbbreviation    
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   585
     (Time hours:12 minutes:0 seconds:1) meridianAbbreviation  
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   586
    "
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   587
! !
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
   588
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   589
!AbstractTime methodsFor:'abstract'!
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   590
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   591
hours
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   592
    "return the hour of time (0..23)"
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   593
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   594
    ^ self subclassResponsibility
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   595
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   596
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   597
     Timestamp now hours 
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   598
     Time now hours 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   599
    "
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   600
!
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   601
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   602
milliseconds
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   603
    "return the milliseconds since the start of the second (0..999)"
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   604
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   605
    ^ self subclassResponsibility
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   606
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   607
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   608
     Timestamp now milliseconds 
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   609
     Time now milliseconds 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   610
    "
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   611
!
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   612
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   613
minutes
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   614
    "return the minutes since the start of the hour (0..59)"
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   615
7672
46f206594db3 Category change
Stefan Vogel <sv@exept.de>
parents: 7327
diff changeset
   616
    ^ self subclassResponsibility.
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   617
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   618
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   619
     Timestamp now minutes 
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   620
     Time now minutes 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   621
    "
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   622
!
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   623
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   624
seconds
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   625
    "return the seconds since the start of the minute (0..59)"
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   626
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   627
    ^ self subclassResponsibility
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   628
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   629
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   630
     Timestamp now seconds. 
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   631
     Time now seconds 
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   632
    "
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   633
! !
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   634
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   635
!AbstractTime methodsFor:'accessing'!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   636
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   637
hourInDay
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   638
    "return the hours (0..23)"
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   639
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   640
    ^ self hours
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   641
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   642
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   643
     Timestamp now hourInDay 
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   644
     Time now hourInDay 
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   645
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   646
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   647
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   648
minuteInDay
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   649
    "return the minutes (0..59)"
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   650
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   651
    ^ self minutes.
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   652
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   653
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   654
     Timestamp now minuteInDay 
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   655
     Time now minuteInDay 
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   656
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   657
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   658
2310
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
   659
secondInDay
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   660
    "return the seconds (0..59)"
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   661
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   662
    ^ self seconds
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   663
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   664
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   665
     Timestamp now secondInDay 
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   666
     Time now seconds 
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   667
    "
2310
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
   668
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
   669
    "Created: 22.10.1996 / 09:27:47 / stefan"
5548
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
   670
!
eead51e4752e added #weekInYear query
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
   671
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   672
timeZoneDeltaInMinutes
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   673
    "answer the number of minutes between local time and utc time.
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   674
     Delta is positive if local time is ahead of utc, negative if behind utc."
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
   675
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   676
    ^ 0
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   677
!
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
   678
5968
4832ed93f0b4 preps for timeZone
Claus Gittinger <cg@exept.de>
parents: 5964
diff changeset
   679
timeZoneName
16982
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   680
    ^ 'UTC'
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   681
!
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   682
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   683
utcOffset
c37260d6ff78 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16941
diff changeset
   684
    ^ 0
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   685
! !
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   686
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   687
!AbstractTime methodsFor:'arithmetic'!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   688
10679
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   689
+ aNumberOrTimeDuration
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   690
    "Add aNumber numberOfSeconds or, if its a timeDuration, add its value"
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   691
10679
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   692
    ^ aNumberOrTimeDuration sumFromTimestamp:self.
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   693
17015
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
   694
"/    ^ self speciesNew 
10679
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   695
"/        setMilliseconds:(self getMilliseconds + (aNumberOrTimeDuration * 1000) asInteger)
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   696
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   697
    "
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   698
     Timestamp now to:(Timestamp now + 30) by:2 do:[:time|
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   699
        Transcript showCR:time.
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   700
     ].
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   701
10679
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   702
     (Timestamp now + 20)  -  Timestamp now  
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   703
     (Timestamp now + 0.5)  -  Timestamp now  
b4dd3412ce74 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10485
diff changeset
   704
     (Timestamp now + (TimeDuration fromString:'1m 10s'))  -  Timestamp now  
11771
1c6251b7286d comment
Claus Gittinger <cg@exept.de>
parents: 11528
diff changeset
   705
     (Timestamp now + (10 seconds))  -  Timestamp now  
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   706
    "
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   707
!
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   708
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   709
- aTimeOrNumberOfSeconds
8244
06543e00260e comment
Claus Gittinger <cg@exept.de>
parents: 8200
diff changeset
   710
    "return the delta in seconds between 2 times or subtract a number of seconds."
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   711
11515
d467ba9dc495 double dispatch for subtract (time - time; time - nr)
sr
parents: 11130
diff changeset
   712
    ^ aTimeOrNumberOfSeconds differenceFromTimestamp:self.
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   713
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   714
    "
11518
8b4cafbd318a double dispatch for time-difference
sr
parents: 11515
diff changeset
   715
     Timestamp now - 3600.  
11515
d467ba9dc495 double dispatch for subtract (time - time; time - nr)
sr
parents: 11130
diff changeset
   716
     Time now - 3600.   
11518
8b4cafbd318a double dispatch for time-difference
sr
parents: 11515
diff changeset
   717
     (Time now addSeconds:10) - Time now   
11515
d467ba9dc495 double dispatch for subtract (time - time; time - nr)
sr
parents: 11130
diff changeset
   718
     (TimeDuration fromString:'1.5hr') - 3600.   
d467ba9dc495 double dispatch for subtract (time - time; time - nr)
sr
parents: 11130
diff changeset
   719
     (TimeDuration fromString:'1.5hr') - (TimeDuration fromString:'1hr')   
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
   720
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   721
     |t1 t2|
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   722
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   723
     t1 := Timestamp now.
16407
67eeb7ae5eb8 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16365
diff changeset
   724
     Delay waitFor:10 seconds.
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   725
     t2 := Timestamp now.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   726
     Transcript showCR:('seconds passed: ' , (t2 - t1) printString).
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   727
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   728
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   729
6048
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   730
addDays:numberOfDays
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   731
    "return a new instance of myself, numberOfDays afterwards."
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   732
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   733
    ^ self addSeconds:(numberOfDays * (60 * 60 * 24))
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   734
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   735
    "
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   736
     |t|
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   737
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   738
     t := Timestamp now.
6048
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   739
     Transcript showCR:t.
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   740
     Transcript showCR:(t addDays:7)
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   741
    "
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   742
!
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   743
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   744
addHours:numberOfHours
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   745
    "return a new instance of myself, numberOfHours afterwards."
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   746
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   747
    ^ self addSeconds:(numberOfHours * (60 * 60))
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   748
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   749
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   750
     |t|
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   751
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   752
     t := Timestamp now.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   753
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   754
     Transcript showCR:(t addHours:12).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   755
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   756
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   757
    "
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   758
     |t|
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   759
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   760
     t := Time now.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   761
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   762
     Transcript showCR:(t addHours:12).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   763
    "
6043
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   764
!
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   765
6043
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   766
addMilliseconds:numberOfMilliSeconds
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   767
    "return a new instance of myself, numberOfMilliSeconds afterwards."
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   768
17015
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
   769
    ^ self speciesNew 
6043
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   770
        setMilliseconds:(self getMilliseconds + numberOfMilliSeconds)
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   771
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   772
    "
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   773
     |t|
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   774
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   775
     t := Timestamp now.
6043
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   776
     Transcript showCR:t.
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   777
     Transcript showCR:(t addMilliseconds:100).
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   778
    "
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   779
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   780
    "
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   781
     |t|
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   782
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   783
     t := Time now.
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   784
     Transcript showCR:t.
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   785
     Transcript showCR:(t addMilliseconds:1000).
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   786
    "
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   787
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   788
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   789
addMinutes:numberOfMinutes
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   790
    "return a new instance of myself, numberOfMinutes afterwards."
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   791
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   792
    ^ self addSeconds:(numberOfMinutes * 60)
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   793
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   794
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   795
     |t|
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   796
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   797
     t := Timestamp now.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   798
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   799
     Transcript showCR:(t addMinutes:60).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   800
    "
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   801
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   802
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   803
     |t|
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   804
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   805
     t := Time now.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   806
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   807
     Transcript showCR:(t addMinutes:60).
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   808
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   809
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   810
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   811
addSeconds:numberOfSeconds
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   812
    "return a new instance of myself, numberOfSeconds afterwards."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   813
17015
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
   814
    ^ self speciesNew 
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   815
        setMilliseconds:(self getMilliseconds + (numberOfSeconds * 1000))
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   816
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   817
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   818
     |t|
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   819
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   820
     t := Timestamp now.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   821
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   822
     Transcript showCR:(t addSeconds:60).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   823
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   824
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   825
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   826
     |t|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   827
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   828
     t := Time now.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   829
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   830
     Transcript showCR:(t addSeconds:60).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   831
    "
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   832
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   833
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   834
addTime:timeAmount
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   835
    "return a new instance of myself, timeAmount seconds afterwards.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   836
     Provided for ST-80 compatibility.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   837
     WARNING:
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   838
        AddTime is a bad name - it does not add a time, but expects
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   839
        a numberOfSeconds as argument. 
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   840
        Use any of addSeconds/addHours etc. to make things clear"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   841
6888
d75cbe2e8ef7 addTime / subtractTime handle non-Number argument
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   842
    timeAmount isNumber ifFalse:[
d75cbe2e8ef7 addTime / subtractTime handle non-Number argument
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   843
        ^ self addSeconds:(timeAmount asSeconds).
d75cbe2e8ef7 addTime / subtractTime handle non-Number argument
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
   844
    ].
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   845
    ^ self addSeconds:timeAmount
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   846
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   847
16475
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   848
deltaFrom:aTimeOrInteger
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   849
    "return the delta as a timeDuration between 2 timeStamps.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   850
     The argument is supposed to be BEFORE the receiver,
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   851
        computes self - aTimestamp"
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   852
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   853
    ^ aTimeOrInteger differenceFromTimestamp:self
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   854
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   855
    "
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   856
        Time now deltaFrom:10 minutes.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   857
        Time now deltaFrom:3600.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   858
        Time now deltaFrom:3600 seconds.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   859
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   860
        Timestamp now deltaFrom:10 minutes.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   861
        Timestamp now deltaFrom:3600.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   862
        Timestamp now deltaFrom:3600 seconds.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   863
    "
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   864
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   865
    "
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   866
     |t1 t2|
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   867
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   868
     t1 := Timestamp now.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   869
     Delay waitForSeconds:0.5.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   870
     t2 := Timestamp now.
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   871
     t2 deltaFrom:t1   
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   872
    "
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   873
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   874
    "Created: / 04-10-2007 / 13:34:28 / cg"
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   875
    "Modified: / 10-07-2010 / 09:37:01 / cg"
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   876
!
dd2e012601bf class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16407
diff changeset
   877
16505
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   878
roundTo:aTimeDuration
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   879
     ^ self class new setMilliseconds:(self getMilliseconds roundTo:aTimeDuration getMilliseconds)
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   880
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   881
    "
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   882
      (TimeDuration fromMilliseconds:25234) roundTo:2 seconds
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   883
      Time now roundTo:10 minutes
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   884
      Timestamp now roundTo:10 minutes
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   885
    "
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   886
!
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
   887
6048
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   888
subtractDays:numberOfDays
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   889
    "return a new instance of myself, numberOfDays before."
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   890
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   891
    ^ self subtractSeconds:(numberOfDays * (60 * 60 * 24))
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   892
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   893
    "
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   894
     |t|
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   895
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   896
     t := Timestamp now.
6048
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   897
     Transcript showCR:t.
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   898
     Transcript showCR:(t subtractDays:50)
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   899
    "
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   900
!
af4b1127f362 refactored - some methods moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 6043
diff changeset
   901
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   902
subtractHours:numberOfHours
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   903
    "return a new instance of myself, numberOfHours before."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   904
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   905
    ^ self subtractSeconds:(numberOfHours * (60 * 60))
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   906
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   907
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   908
     |t|
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   909
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   910
     t := Timestamp now.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   911
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   912
     Transcript showCR:(t subtractHours:12).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   913
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   914
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   915
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   916
     |t|
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   917
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   918
     t := Time now.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   919
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   920
     Transcript showCR:(t subtractHours:12).
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   921
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   922
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   923
6043
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   924
subtractMilliseconds:numberOfMilliSeconds
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   925
    "return a new instance of myself, numberOfMilliSeconds before."
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   926
17015
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
   927
    ^ self speciesNew 
6043
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   928
        setMilliseconds:(self getMilliseconds - numberOfMilliSeconds)
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   929
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   930
    "
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   931
     |t|
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   932
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   933
     t := Timestamp now.
6043
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   934
     Transcript showCR:t.
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   935
     Transcript showCR:(t subtractMilliseconds:100).
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   936
    "
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   937
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   938
    "
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   939
     |t|
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   940
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   941
     t := Time now.
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   942
     Transcript showCR:t.
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   943
     Transcript showCR:(t subtractMilliseconds:1000).
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   944
    "
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   945
!
ee486429674b pushed up addMilliseconds/subtractMilliseconds
Claus Gittinger <cg@exept.de>
parents: 5968
diff changeset
   946
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   947
subtractMinutes:numberOfMinutes
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   948
    "return a new instance of myself, numberOfMinutes before."
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   949
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   950
    ^ self subtractSeconds:(numberOfMinutes * 60)
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   951
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   952
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   953
     |t|
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   954
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   955
     t := Timestamp now.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   956
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   957
     Transcript showCR:(t subtractMinutes:60).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   958
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   959
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   960
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   961
     |t|
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   962
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   963
     t := Time now.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   964
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   965
     Transcript showCR:(t subtractMinutes:60).
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   966
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   967
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   968
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   969
subtractSeconds:numberOfSeconds
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   970
    "return a new instance of myself, numberOfSeconds before."
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   971
17015
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
   972
    ^ self speciesNew 
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   973
        setMilliseconds:(self getMilliseconds - (numberOfSeconds * 1000))
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   974
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   975
    "
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   976
     |t|
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   977
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
   978
     t := Timestamp now.
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   979
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   980
     Transcript showCR:(t subtractSeconds:60).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   981
    "
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   982
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   983
    "
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   984
     |t|
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   985
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   986
     t := Time now.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   987
     Transcript showCR:t.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   988
     Transcript showCR:(t subtractSeconds:60).
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   989
    "
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   990
!
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   991
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   992
subtractTime:timeAmount
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   993
    "return a new instance of myself, timeAmount seconds before myself.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   994
     Provided for ST-80 compatibility.
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   995
     WARNING:
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   996
        SubtractTime is a bad name - it does not add a time, but expects
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   997
        a numberOfSeconds as argument. 
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
   998
        Use any of addSeconds/addHours etc. to make things clear"
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
   999
6888
d75cbe2e8ef7 addTime / subtractTime handle non-Number argument
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
  1000
    timeAmount isNumber ifFalse:[
d75cbe2e8ef7 addTime / subtractTime handle non-Number argument
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
  1001
        ^ self subtractSeconds:(timeAmount asSeconds).
d75cbe2e8ef7 addTime / subtractTime handle non-Number argument
Claus Gittinger <cg@exept.de>
parents: 6795
diff changeset
  1002
    ].
3476
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
  1003
    ^ self subtractSeconds:timeAmount
f2ebb76a952d dont loose milliseconds when adding seconds to a Timestamp.
Claus Gittinger <cg@exept.de>
parents: 2310
diff changeset
  1004
16505
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1005
!
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1006
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1007
truncateTo:aTimeDuration
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1008
     ^ self class new setMilliseconds:(self getMilliseconds truncateTo:aTimeDuration getMilliseconds)
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1009
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1010
    "
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1011
      (TimeDuration fromMilliseconds:25234) truncateTo:2 seconds
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1012
      Time now truncateTo:10 minutes
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1013
      Timestamp now truncateTo:10 minutes
c285d94f2248 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16475
diff changeset
  1014
    "
275
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
  1015
! !
a76029ddaa98 *** empty log message ***
claus
parents: 240
diff changeset
  1016
5573
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1017
!AbstractTime methodsFor:'comparing'!
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1018
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1019
< aTime
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1020
    "return true if the receiver is before the argument"
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1021
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1022
    ^ self getMilliseconds < aTime getMilliseconds
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1023
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1024
    "Modified: 3.7.1996 / 13:10:17 / cg"
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1025
!
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1026
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1027
> aTime
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1028
    "return true if the receiver is after the argument"
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1029
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1030
    ^ self getMilliseconds > aTime getMilliseconds
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1031
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1032
    "Modified: 1.7.1996 / 15:24:38 / cg"
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1033
! !
efd0dc6578ac #-, #< and #> moved from AbsoluteTime
Claus Gittinger <cg@exept.de>
parents: 5548
diff changeset
  1034
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1035
!AbstractTime methodsFor:'converting'!
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1036
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1037
asAbsoluteTime
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1038
    "deprecated, use #asTimestamp"
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1039
    <resource:#obsolete>
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1040
12002
3ecffb2d77ad *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11772
diff changeset
  1041
    self obsoleteMethodWarning:'use #asTimestamp'.
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1042
    ^ self asTimestamp
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1043
!
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1044
13233
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1045
asLocalTimestamp
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1046
    "represent myself as a timestamp in the local timezone"
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1047
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1048
    ^ self subclassResponsibility
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1049
!
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1050
17140
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1051
asMilliseconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1052
    "return the number of milliseconds elapsed since midnight"
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1053
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1054
    ^ self getMilliseconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1055
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1056
    "
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1057
     Time now asMilliseconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1058
     Timestamp now asMilliseconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1059
     (TimeDuration days:1) asMilliseconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1060
     (TimeDuration hours:1) asMilliseconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1061
    "
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1062
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1063
    "Created: / 05-09-2011 / 10:40:15 / cg"
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1064
!
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1065
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1066
asSeconds
19398
7384b2086a5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19198
diff changeset
  1067
    "get the seconds since some point of time in the past.
7384b2086a5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19198
diff changeset
  1068
     For Time instances, this is the number of seconds elapsed since midnight;
7384b2086a5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19198
diff changeset
  1069
     For TimeDurations, that is the duration in seconds;
7384b2086a5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19198
diff changeset
  1070
     For TimeStamps, that is the number of seconds since the epoch"
17140
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1071
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1072
    ^ self getSeconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1073
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1074
    "
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1075
     Timestamp now asSeconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1076
     Time now asSeconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1077
     (TimeDuration days:1) asSeconds
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1078
    "
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1079
!
9369deba01dc class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 17015
diff changeset
  1080
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1081
asTimestamp
13233
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1082
    "represent myself as a Timestamp"
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1083
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1084
    ^ self subclassResponsibility
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1085
!
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1086
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1087
asUtcTimestamp
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1088
    "represent myself as a timestamp in the local timezone"
Stefan Vogel <sv@exept.de>
parents: 13175
diff changeset
  1089
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1090
    ^ self subclassResponsibility
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1091
! !
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1092
11518
8b4cafbd318a double dispatch for time-difference
sr
parents: 11515
diff changeset
  1093
!AbstractTime methodsFor:'double dispatching'!
8b4cafbd318a double dispatch for time-difference
sr
parents: 11515
diff changeset
  1094
8b4cafbd318a double dispatch for time-difference
sr
parents: 11515
diff changeset
  1095
differenceFromTimestamp:aTimestamp
16365
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1096
    "/ the correct thing to do (and I will, in the future) is to
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1097
    "/ return a TimeDuration:
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1098
    "/
16934
2a4639715b07 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16926
diff changeset
  1099
    ^ TimeDuration fromMilliseconds:(aTimestamp getMilliseconds - self getMilliseconds).
16407
67eeb7ae5eb8 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16365
diff changeset
  1100
16365
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1101
    "/ which is the same as: deltaFrom:aTimestamp
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1102
    "/
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1103
    "/ however, there might be old code around, which is not be prepared for
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1104
    "/ getting a non-number (the seconds). Therefore, for the meantime,
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1105
    "/ we return:
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1106
7255d544da96 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 15684
diff changeset
  1107
    "/ ^ aTimestamp getSeconds - self getSeconds
11518
8b4cafbd318a double dispatch for time-difference
sr
parents: 11515
diff changeset
  1108
! !
8b4cafbd318a double dispatch for time-difference
sr
parents: 11515
diff changeset
  1109
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1110
!AbstractTime methodsFor:'printing & storing'!
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1111
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1112
addBasicPrintBindingsTo:aDictionary language:languageOrNil
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1113
    "private print support: add bindings for printing to aDictionary.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1114
     languageOrNil can be #en, #fr, #de or nil for the current language.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1115
     Here only basic bindings are added - no timezone am am/pm stuff,
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1116
     which doesn't make sense for TimeDuration.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1117
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1118
     bindings:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1119
        %h      hours, 00..23 (i.e. european)  0-padded to length 2
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1120
        %m      minutes, 00..59                0-padded to length 2
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1121
        %s      seconds, 00..59                0-padded to length 2
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1122
        %i      milliseconds, 000..999         0-padded to length 3
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1123
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1124
     Timestamp only:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1125
        %(day)   day, 00..31                    0-padded to length 2
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1126
        %(month) month, 00..12                  0-padded to length 2
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1127
        %(year)  year, 4 digits                 0-padded to length 4
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1128
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1129
     special:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1130
        %H      24-hours - unpadded
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1131
        %M      minutes - unpadded
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1132
        %S      seconds - unpadded
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1133
        %I      milliseconds, unpadded
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1134
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1135
        %t      seconds within hour  (unpadded)
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1136
        %T      seconds from midNight  (unpadded)
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1137
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1138
        %(milli1) milliseconds, truncated to 1/10th of a second 0..9
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1139
        %(milli2) milliseconds, truncated to 1/100th of a second 00..99 0-padded to length 2
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1140
        %(milli3) milliseconds, same as %i for convenience
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1141
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1142
     Timestamp only:
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1143
        %(Day)         - day - unpadded
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1144
        %(Month)       - month - unpadded
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1145
        %(yearOrTime)  - year or time 5 digits    as in unix-ls:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1146
                                                  year if it is not the current year;
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1147
                                                  time otherwise
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1148
        %(weekDay)      - day in week (1->monday, 2->tuesday, ... ,7->sunday)
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1149
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1150
        %(dayName)      - full day name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1151
        %(DayName)      - full day name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1152
        %(DAYNAME)      - full day name, all uppercase
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1153
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1154
        %(monthName)    - full month name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1155
        %(MonthName)    - full month name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1156
        %(MONTHNAME)    - full month name, all uppercase
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1157
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1158
        %(shortDayName) - short (abbreviated) day name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1159
        %(ShortDayName) - short (abbreviated) day name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1160
        %(SHORTDAYNAME) - short (abbreviated) day name, all uppercase
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1161
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1162
        %(shortMonthName) - short (abbreviated) month name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1163
        %(ShortMonthName) - short (abbreviated) month name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1164
        %(SHORTMONTHNAME) - short (abbreviated) month name, all uppercase
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1165
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1166
        %(nth)          - counting day-in-month (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1167
        %(weekDayNth)   - counting day-in-week (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1168
        %(weekNth)      - counting week-in-year (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1169
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1170
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1171
     The ISO8601 printString are generated with:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1172
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1173
       Year:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1174
          YYYY (eg 1997)
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1175
                Date today printStringFormat:'%(year)'
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1176
                Timestamp now printStringFormat:'%(year)'
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1177
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1178
       Year and month:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1179
          YYYY-MM (eg 1997-07)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1180
                Date today printStringFormat:'%(year)-%(month)'
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1181
                Timestamp now printStringFormat:'%(year)-%(month)'
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1182
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1183
       Complete date:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1184
          YYYY-MM-DD (eg 1997-07-16)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1185
                Date today printStringFormat:'%(year)-%(month)-%(day)'
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1186
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)'
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1187
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1188
       Complete date plus hours and minutes:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1189
          YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1190
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m%(TZD)'
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1191
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1192
       Complete date plus hours, minutes and seconds:
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1193
          YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1194
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m:%s%(TZD)'
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1195
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1196
       Complete date plus hours, minutes, seconds and a decimal fraction of a second
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1197
          YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1198
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m:%s.%(milli2)%(TZD)'
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1199
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1200
    "
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1201
16926
755f4c452bf4 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16829
diff changeset
  1202
    |time hours minutes seconds millis s t|
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1203
16926
755f4c452bf4 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16829
diff changeset
  1204
    time := self asTime.
755f4c452bf4 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16829
diff changeset
  1205
    hours := time hours.
755f4c452bf4 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16829
diff changeset
  1206
    minutes := time minutes.
755f4c452bf4 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16829
diff changeset
  1207
    seconds := time seconds.
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1208
    millis := self milliseconds.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1209
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1210
    aDictionary at:$H put:(s := hours printString).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1211
    aDictionary at:$h put:(s leftPaddedTo:2 with:$0).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1212
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1213
    aDictionary at:$M put:(s := minutes printString).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1214
    aDictionary at:$m put:(s leftPaddedTo:2 with:$0).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1215
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1216
    aDictionary at:$S put:(s := seconds printString).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1217
    aDictionary at:$s put:(s leftPaddedTo:2 with:$0).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1218
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1219
    aDictionary at:$I put:(s := millis printString).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1220
    aDictionary at:$i put:(t := s leftPaddedTo:3 with:$0).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1221
    aDictionary at:#milli3 put:t.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1222
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1223
    aDictionary at:#milli1 put:((millis // 100) printString).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1224
    aDictionary at:#milli2 put:((millis // 10) printStringLeftPaddedTo:2 with:$0).
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1225
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1226
    aDictionary at:$t put:(seconds * minutes) printString.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1227
    aDictionary at:$T put:(seconds * minutes * hours) printString.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1228
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1229
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1230
    "
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1231
      |dict|
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1232
      dict := Dictionary new.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1233
      Timestamp now addBasicPrintBindingsTo:dict language:#en.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1234
      dict inspect
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1235
    "
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1236
!
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1237
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1238
addPrintBindingsTo:aDictionary
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1239
    <resource: #obsolete>
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7672
diff changeset
  1240
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1241
    self obsoleteMethodWarning:'use #addPrintBindingsTo:language:'.
8111
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7672
diff changeset
  1242
    self addPrintBindingsTo:aDictionary language:nil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7672
diff changeset
  1243
!
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7672
diff changeset
  1244
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7672
diff changeset
  1245
addPrintBindingsTo:aDictionary language:languageOrNil
67347b7e3e69 print bindings (care for language specifics)
Claus Gittinger <cg@exept.de>
parents: 7672
diff changeset
  1246
    "private print support: add bindings for printing to aDictionary.
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1247
     languageOrNil can be #en, #fr, #de or nil for the current language.
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1248
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1249
     bindings:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1250
        %h      hours, 00..23 (i.e. european)  0-padded to length 2
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1251
        %u      hours, 00..12 (i.e. us)        0-padded to length 2
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1252
        %m      minutes, 00..59                0-padded to length 2
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1253
        %s      seconds, 00..59                0-padded to length 2
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1254
        %i      milliseconds, 000..999         0-padded to length 3
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1255
        %a      am/pm
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1256
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1257
     Timestamp only:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1258
        %(day)   day, 00..31                    0-padded to length 2
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1259
        %(month) month, 00..12                  0-padded to length 2
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1260
        %(year)  year, 4 digits                 0-padded to length 4
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1261
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1262
     special:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1263
        %H      24-hours - unpadded
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1264
        %U      12-hours - unpadded
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1265
        %M      minutes - unpadded
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1266
        %S      seconds - unpadded
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1267
        %I      milliseconds, unpadded
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1268
        %A      AM/PM   - uppercase
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1269
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1270
        %t      seconds within hour  (unpadded)
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1271
        %T      seconds from midNight  (unpadded)
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1272
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1273
        %(TZD)  timeZone delta of the receiver from UTC in the format +/-hh:mm
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1274
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1275
        %(milli1) milliseconds, truncated to 1/10th of a second 0..9
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1276
        %(milli2) milliseconds, truncated to 1/100th of a second 00..99 0-padded to length 2
14493
0a3c9081d40a changed: #addPrintBindingsTo:language:
Claus Gittinger <cg@exept.de>
parents: 13701
diff changeset
  1277
        %(milli3) milliseconds, same as %i for convenience
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1278
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1279
     Timestamp only:
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1280
        %(Day)         - day - unpadded
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1281
        %(Month)       - month - unpadded
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1282
        %(yearOrTime)  - year or time 5 digits    as in unix-ls:
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1283
                                                  year if it is not the current year;
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1284
                                                  time otherwise
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1285
        %(weekDay)      - day in week (1->monday, 2->tuesday, ... ,7->sunday)
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1286
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1287
        %(dayName)      - full day name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1288
        %(DayName)      - full day name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1289
        %(DAYNAME)      - full day name, all uppercase
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1290
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1291
        %(monthName)    - full month name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1292
        %(MonthName)    - full month name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1293
        %(MONTHNAME)    - full month name, all uppercase
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1294
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1295
        %(shortDayName) - short (abbreviated) day name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1296
        %(ShortDayName) - short (abbreviated) day name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1297
        %(SHORTDAYNAME) - short (abbreviated) day name, all uppercase
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1298
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1299
        %(shortMonthName) - short (abbreviated) month name
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1300
        %(ShortMonthName) - short (abbreviated) month name, first character uppercase
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1301
        %(SHORTMONTHNAME) - short (abbreviated) month name, all uppercase
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1302
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1303
        %(nth)          - counting day-in-month (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1304
        %(weekDayNth)   - counting day-in-week (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1305
        %(weekNth)      - counting week-in-year (1->'st'; 2->'nd'; 3->'rd'; 4...->'th')
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1306
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1307
        %(yearRoman)    - year, in roman letters
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1308
        %(monthRoman)   - month, in roman letters
17195
8c13747ba36d class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17140
diff changeset
  1309
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1310
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1311
     The ISO8601 printString are generated with:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1312
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1313
       Year:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1314
          YYYY (eg 1997)
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1315
                Date today printStringFormat:'%(year)'
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1316
                Timestamp now printStringFormat:'%(year)'
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1317
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1318
       Year and month:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1319
          YYYY-MM (eg 1997-07)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1320
                Date today printStringFormat:'%(year)-%(month)'
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1321
                Timestamp now printStringFormat:'%(year)-%(month)'
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1322
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1323
       Complete date:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1324
          YYYY-MM-DD (eg 1997-07-16)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1325
                Date today printStringFormat:'%(year)-%(month)-%(day)'
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1326
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)'
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1327
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1328
       Complete date plus hours and minutes:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1329
          YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1330
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m%(TZD)'
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1331
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1332
       Complete date plus hours, minutes and seconds:
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1333
          YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1334
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m:%s%(TZD)'
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1335
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1336
       Complete date plus hours, minutes, seconds and a decimal fraction of a second
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1337
          YYYY-MM-DDThh:mm:ss.sTZD (eg 1997-07-16T19:20:30.45+01:00)
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1338
                Timestamp now printStringFormat:'%(year)-%(month)-%(day)T%h:%m:%s.%(milli2)%(TZD)'
11772
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1339
a220d63dfc64 comment
Claus Gittinger <cg@exept.de>
parents: 11771
diff changeset
  1340
    "
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1341
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1342
    |usHours ampm s zone tzDelta|
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1343
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1344
    self addBasicPrintBindingsTo:aDictionary language:languageOrNil.
5968
4832ed93f0b4 preps for timeZone
Claus Gittinger <cg@exept.de>
parents: 5964
diff changeset
  1345
    zone := self timeZoneName.
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
  1346
    tzDelta := self timeZoneDeltaInMinutes.
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1347
6419
5cf00f5e656d more ANSI compatibility
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
  1348
    ampm := self meridianAbbreviation.
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1349
    usHours := self hour12 printString.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1350
    aDictionary at:$U put:usHours.
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1351
    aDictionary at:$u put:(usHours leftPaddedTo:2 with:$0).
14493
0a3c9081d40a changed: #addPrintBindingsTo:language:
Claus Gittinger <cg@exept.de>
parents: 13701
diff changeset
  1352
0a3c9081d40a changed: #addPrintBindingsTo:language:
Claus Gittinger <cg@exept.de>
parents: 13701
diff changeset
  1353
12662
a19b835e49a0 changed: #addPrintBindingsTo:language:
sr
parents: 12660
diff changeset
  1354
    aDictionary at:$a put:ampm.
a19b835e49a0 changed: #addPrintBindingsTo:language:
sr
parents: 12660
diff changeset
  1355
    aDictionary at:$A put:ampm asUppercase.
a19b835e49a0 changed: #addPrintBindingsTo:language:
sr
parents: 12660
diff changeset
  1356
    aDictionary at:$z put:zone.
a19b835e49a0 changed: #addPrintBindingsTo:language:
sr
parents: 12660
diff changeset
  1357
    aDictionary at:$Z put:zone asUppercase.
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
  1358
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
  1359
    tzDelta == 0 ifTrue:[
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
  1360
        s := 'Z'.
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
  1361
    ] ifFalse:[
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
  1362
        s := tzDelta < 0 ifTrue:[ '-' ] ifFalse:[ '+' ].
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
  1363
        tzDelta := tzDelta abs.
20200
5259d691c97e #OTHER by mawalch
mawalch
parents: 19894
diff changeset
  1364
        s := s  , ((tzDelta // 60) printStringLeftPaddedTo:2 with:$0),
9432
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
  1365
            ':' , ((tzDelta \\ 60) printStringLeftPaddedTo:2 with:$0).
79e9c3e9bb75 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 9429
diff changeset
  1366
    ].
6172
a3c88ea5efe9 comment and iso8601 (time/date formats) fixes
Claus Gittinger <cg@exept.de>
parents: 6048
diff changeset
  1367
    aDictionary at:#TZD put:s
13082
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1368
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1369
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1370
    "
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1371
      |dict|
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1372
      dict := Dictionary new.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1373
      Timestamp now addPrintBindingsTo:dict language:#en.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1374
      dict inspect
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1375
    "
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1376
!
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1377
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1378
printOn:aStream format:aFormatString
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1379
    "print using a format string;
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1380
     See #addPrintBindingsTo:language: for allowed format strings"
7327
ab17eb5f11a6 printFormat
Claus Gittinger <cg@exept.de>
parents: 7294
diff changeset
  1381
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1382
    self printOn:aStream format:aFormatString language:nil.
10907
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1383
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1384
    "
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1385
     Timestamp now printOn:Transcript format:'%h:%m:%s'   . Transcript cr.      
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1386
     Time now printOn:Transcript format:'%h:%m:%s'   . Transcript cr.      
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1387
     Time now printOn:Transcript format:'%H:%m:%s'   . Transcript cr.      
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1388
     Time now printOn:Transcript format:'%u:%m:%s %a'. Transcript cr.   
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1389
     Time now printOn:Transcript format:'%h:%m'      . Transcript cr. 
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1390
     Time now printOn:Transcript format:'%H:%m %A'   . Transcript cr.
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1391
     Time now printOn:Transcript format:'minutes:%M seconds:%S'. Transcript cr.
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1392
    "
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1393
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1394
    "Modified: 22.2.1996 / 16:58:30 / cg"
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1395
!
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1396
13082
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1397
printOn:aStream format:aFormatString language:languageString
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1398
    "print using a format string;
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1399
     See #addPrintBindingsTo:language: for allowed format strings"
13082
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1400
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1401
    |dict|
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1402
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1403
    dict := IdentityDictionary new.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1404
    self addPrintBindingsTo:dict language:languageString.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1405
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1406
    aFormatString expandPlaceholdersWith:dict on:aStream
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1407
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1408
    "
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1409
     Timestamp now printOn:Transcript format:'%h:%m:%s'   . Transcript cr.      
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1410
     Time now printOn:Transcript format:'%h:%m:%s'   . Transcript cr.      
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1411
     Time now printOn:Transcript format:'%H:%m:%s'   . Transcript cr.      
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1412
     Time now printOn:Transcript format:'%u:%m:%s %a'. Transcript cr.   
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1413
     Time now printOn:Transcript format:'%h:%m'      . Transcript cr. 
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1414
     Time now printOn:Transcript format:'%H:%m %A'   . Transcript cr.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1415
     Time now printOn:Transcript format:'minutes:%M seconds:%S'. Transcript cr.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1416
    "
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1417
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1418
    "Modified: 22.2.1996 / 16:58:30 / cg"
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1419
!
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1420
10907
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1421
printStringFormat:aFormatString
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1422
    "print using a format string.
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1423
     See #addPrintBindingsTo:language: for allowed format strings"
10907
8b98ba82a46f Now printStringXXXX uses printOn:XXXX.
Stefan Vogel <sv@exept.de>
parents: 10770
diff changeset
  1424
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1425
    ^ self printStringFormat:aFormatString language:nil.
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1426
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1427
    "
17400
2aad82c1d66c class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17195
diff changeset
  1428
     Timestamp now printStringFormat:'%U:%m:%s %a'        
2aad82c1d66c class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17195
diff changeset
  1429
     Timestamp now printStringFormat:'%u:%m:%s %a'        
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1430
     Time now printStringFormat:'%U:%m:%s %a'   
17400
2aad82c1d66c class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 17195
diff changeset
  1431
     Time now printStringFormat:'%u:%m:%s %a'   
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1432
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1433
     Time now printStringFormat:'%h:%m:%s'      
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1434
     Time now printStringFormat:'%H:%m:%s'      
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1435
     Time now printStringFormat:'%H:%m:%s.%i'           
8256
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1436
     Timestamp now printStringFormat:'%H:%m:%s.%i'   
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1437
     Timestamp now printStringFormat:'%H:%m:%s.%(milli1)'   
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1438
     Timestamp now printStringFormat:'%H:%m:%s.%(milli2)'     
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1439
     Timestamp now printStringFormat:'%(day)-%(month)-%(year) :%m:%s'       
4c3d944ef85a Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 8244
diff changeset
  1440
     Timestamp now printStringFormat:'%(day)-%(monthName)-%(year) :%m:%s'       
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1441
     Time now printStringFormat:'%u:%m:%s %a'   
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1442
     Time now printStringFormat:'%h:%m'         
4844
6938f0df31f7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4841
diff changeset
  1443
     Time now printStringFormat:'%h:%m'         
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1444
     Time now printStringFormat:'%H:%m %A'     
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1445
     Time now printStringFormat:'%m minutes after %U %a'     
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1446
     Time now printStringFormat:'%t seconds after %U %a'     
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1447
     Time now printStringFormat:'%T seconds from midNight'     
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1448
    "
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1449
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1450
    "Modified: 22.2.1996 / 16:58:30 / cg"
13082
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1451
!
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1452
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1453
printStringFormat:aFormatString language:languageString
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1454
    "print using a format string.
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1455
     See #addPrintBindingsTo:language: for allowed format strings"
13082
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1456
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1457
    |s|
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1458
16829
2b434f626099 class: AbstractTime
Stefan Vogel <sv@exept.de>
parents: 16673
diff changeset
  1459
    s := CharacterWriteStream on:(String new:20).
13082
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1460
    self printOn:s format:aFormatString language:languageString.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1461
    ^ s contents.
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1462
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1463
    "
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1464
     Timestamp now printStringFormat:'%U:%m:%s %a  
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1465
     Time now printStringFormat:'%U:%m:%s %a'   
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1466
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1467
     Time now printStringFormat:'%h:%m:%s'      
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1468
     Time now printStringFormat:'%H:%m:%s'      
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1469
     Time now printStringFormat:'%H:%m:%s.%i'           
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1470
     Timestamp now printStringFormat:'%H:%m:%s.%i'   
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1471
     Timestamp now printStringFormat:'%H:%m:%s.%(milli1)'   
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1472
     Timestamp now printStringFormat:'%H:%m:%s.%(milli2)'     
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1473
     Timestamp now printStringFormat:'%(day)-%(month)-%(year) :%m:%s'       
13175
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1474
     Timestamp now printStringFormat:'%(day)-%(monthName)-%(year) :%m:%s' language:#en      
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1475
     Timestamp now printStringFormat:'%(day)-%(monthName)-%(year) :%m:%s' language:#de      
ea7102cce519 comment/format in:
Stefan Vogel <sv@exept.de>
parents: 13082
diff changeset
  1476
     Timestamp now printStringFormat:'%(day)-%(monthName)-%(year) :%m:%s' language:#fr      
13082
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1477
     Time now printStringFormat:'%u:%m:%s %a'   
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1478
     Time now printStringFormat:'%h:%m'         
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1479
     Time now printStringFormat:'%h:%m'         
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1480
     Time now printStringFormat:'%H:%m %A'     
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1481
     Time now printStringFormat:'%m minutes after %U %a'     
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1482
     Time now printStringFormat:'%t seconds after %U %a'     
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1483
     Time now printStringFormat:'%T seconds from midNight'     
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1484
    "
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1485
Stefan Vogel <sv@exept.de>
parents: 13026
diff changeset
  1486
    "Modified: 22.2.1996 / 16:58:30 / cg"
4649
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1487
! !
3eaf75dd8973 Move printOn:format: to AbstractTime
Stefan Vogel <sv@exept.de>
parents: 3476
diff changeset
  1488
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1489
!AbstractTime methodsFor:'private'!
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1490
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1491
fromOSTime:osTime
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1492
    "set my time, from operatingSystems time parts"
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1493
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1494
    ^ self subclassResponsibility
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1495
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1496
    "Modified: 1.7.1996 / 15:09:44 / cg"
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1497
!
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1498
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1499
getMilliseconds
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1500
    "get the milliseconds since some point of time in the past.
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1501
     Since I am abstract (not knowing how the time is actually
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1502
     represented), this must be done by a concrete class."
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1503
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1504
    ^ self subclassResponsibility
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1505
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1506
    "Created: 1.7.1996 / 14:16:49 / cg"
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1507
!
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1508
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1509
getSeconds
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1510
    "get the seconds since some point of time in the past.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1511
     Since I am abstract (not knowing how the time is actually
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1512
     represented), this must be done by a concrete class."
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1513
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1514
    ^ self subclassResponsibility
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1515
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1516
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1517
setMilliseconds:millis
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1518
    "set the milliseconds since some point of time in the past.
1500
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1519
     Since I am abstract (not knowing how the time is actually
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1520
     represented), this must be done by a concrete class."
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1521
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1522
    ^ self subclassResponsibility
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1523
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1524
    "Created: 1.7.1996 / 14:17:00 / cg"
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1525
!
d42e61e53cee changed osTime to a largeInt, which includes the milliseconds
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  1526
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1527
setSeconds:secs
8200
d443d3c8ce40 More arithmethic.
Stefan Vogel <sv@exept.de>
parents: 8111
diff changeset
  1528
    "set the seconds since some point of time in the past.
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1529
     Since I am abstract (not knowing how the time is actually
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1530
     represented), this must be done by a concrete class."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1531
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1532
    ^ self subclassResponsibility
17015
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
  1533
!
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
  1534
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
  1535
speciesNew
f7c4867a3633 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 16982
diff changeset
  1536
    ^ self species basicNew
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1537
! !
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1538
2310
2cb1366e0eb3 Correct name: #secondDay --> #secondInDay.
Stefan Vogel <sv@exept.de>
parents: 1500
diff changeset
  1539
!AbstractTime class methodsFor:'documentation'!
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1540
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  1541
version
18918
ea95a7e73213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18454
diff changeset
  1542
    ^ '$Header$'
12660
518ee2523071 changed: #addPrintBindingsTo:language:
sr
parents: 12002
diff changeset
  1543
!
518ee2523071 changed: #addPrintBindingsTo:language:
sr
parents: 12002
diff changeset
  1544
518ee2523071 changed: #addPrintBindingsTo:language:
sr
parents: 12002
diff changeset
  1545
version_CVS
18918
ea95a7e73213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18454
diff changeset
  1546
    ^ '$Header$'
240
f5ff68fffb92 Initial revision
claus
parents:
diff changeset
  1547
! !
15684
4c4bc53e32c8 class: AbstractTime
Claus Gittinger <cg@exept.de>
parents: 14494
diff changeset
  1548