Menu

[r3166]: / trunk / Src / UDOSDateTime.pas  Maximize  Restore  History

Download this file

226 lines (194 with data), 6.7 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
{
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/
*
* Copyright (C) 2006-2012, Peter Johnson (www.delphidabbler.com).
*
* $Rev$
* $Date$
*
* Interface, implementation class and factory object used to encapsulate, read
* and apply DOS file dates.
}
unit UDOSDateTime;
interface
uses
// Project
UBaseObjects;
type
/// <summary>
/// Interface supported by classes that encapsulate and manipulate a DOS file
/// date.
/// </summary>
IDOSDateTime = interface(IInterface)
['{6213B468-744A-4AC4-AABE-615627534E27}']
/// <summary>
/// Compares file date object against another such object.
/// </summary>
/// <param name="DT">IDOSDateTime object to compare to.</param>
/// <returns>-ve if this date is less than DT, +ve if this date is greater
/// than DT and zero if the two objects are equal.</returns>
function CompareTo(const DT: IDOSDateTime): Integer;
/// <summary>
/// Applies date stamp to a named file.
/// </summary>
procedure ApplyToFile(const FileName: string);
/// <summary>
/// Returns date stamp.
/// </summary>
function DateStamp: Integer;
end;
type
/// <summary>
/// Factory class that creates instances of IDOSDateTime objects.
/// </summary>
TDOSDateTimeFactory = class(TNoConstructObject)
public
/// <summary>
/// Creates an IDOSDateTime instance from a DOS date stamp.
/// </summary>
/// <param name="DateStamp">DOS date stamp as an Integer. Assumed to be in
/// local time.</param>
/// <returns>IDOSDateTime instance.</returns>
class function CreateFromDOSTimeStamp(const DateStamp: Integer):
IDOSDateTime;
/// <summary>
/// Creates an IDOSDateTime instance from a Unix time stamp.
/// </summary>
/// <param name="UnixTimeStamp">Unix time stamp as Int64. Assumed to be in
/// GTM.</param>
/// <returns>IDOSDateTime instance.</returns>
class function CreateFromUnixTimeStamp(
const UnixTimeStamp: Int64): IDOSDateTime;
/// <summary>
/// Creates an IDOSDateTime instance from the date stamp of a file.
/// </summary>
/// <param name="FileName">Name of file whose date stamp, in local time, is
/// to be used.</param>
/// <returns>IDOSDateTime instance.</returns>
class function CreateFromFile(const FileName: string): IDOSDateTime;
end;
implementation
uses
// Delphi
SysUtils, DateUtils, Windows, Math,
// Project
IntfCommon, UExceptions, UUtils;
type
/// <summary>
/// Implementation of IDOSDateTime interface. All times are in local time.
/// </summary>
TDOSDateTime = class(TInterfacedObject,
IDOSDateTime, IAssignable
)
strict private
var fDateStamp: Integer; // DOS date stamp
public
/// <summary>
/// Object constructor. Sets up object for a specified DOS date stamp.
/// </summary>
constructor Create(const DateStamp: Integer);
{ IDOSDateTime methods }
/// <summary>
/// Compares file date object against another such object.
/// </summary>
/// <param name="DT">IDOSDateTime object to compare to.</param>
/// <returns>-ve if this date is less than DT, +ve if this date is greater
/// than DT and zero if the two objects are equal.</returns>
/// <remarks>
/// Comparisons are made within 2 seconds, i.e. two date stamps up to 2
/// seconds apart compare as equal. This is because DOS file stamps may
/// only be accurate to 2 seconds.
/// </remarks>
function CompareTo(const DT: IDOSDateTime): Integer;
/// <summary>
/// Applies date stamp to a named file.
/// </summary>
procedure ApplyToFile(const FileName: string);
/// <summary>
/// Returns date stamp.
/// </summary>
function DateStamp: Integer;
{ IAssignable methods }
/// <summary>
/// Assigns properties of a given object to this object.
/// </summary>
/// <param name="Src">Object whose properties are to be copied. Must be non
/// nil and support IDOSDateTime.</param>
procedure Assign(const Src: IInterface);
end;
/// <summary>
/// Converts a given GMT time to local time, taking into account daylight
/// saving time.
/// </summary>
/// <param name="GMTTime">TDateTime [in] GMT time to be converted.</param>
/// <returns>TDateTime: Local date time.</returns>
/// <remarks>Required Windows NT platform.</remarks>
function GMTToLocalTime(GMTTime: TDateTime): TDateTime;
var
GMTST: TSystemTime; // GMT date as system time
LocalST: TSystemTime; // local date as system time
begin
DateTimeToSystemTime(GMTTime, GMTST);
Win32Check(SystemTimeToTzSpecificLocalTime(nil, GMTST, LocalST));
Result := SystemTimeToDateTime(LocalST);
end;
{ TDOSDateTime }
procedure TDOSDateTime.ApplyToFile(const FileName: string);
begin
// FileSetDate expects local time
FileSetDate(FileName, Self.DateStamp);
end;
procedure TDOSDateTime.Assign(const Src: IInterface);
var
DT: IDOSDateTime; // IDOSDateTime interface to object being assigned
begin
if not Supports(Src, IDOSDateTime, DT) then
raise EBug.Create(ClassName + '.Assign: Src is wrong type');
fDateStamp := DT.DateStamp;
end;
function TDOSDateTime.CompareTo(const DT: IDOSDateTime): Integer;
const
cDelta = 2; // DOS file stamps accurate to 2 sec on Win 9x
var
Difference: Integer; // difference between two date stamps
begin
Difference := Self.DateStamp - DT.DateStamp;
if InRange(Difference, -cDelta, cDelta) then
Result := 0
else
Result := Difference;
end;
constructor TDOSDateTime.Create(const DateStamp: Integer);
begin
inherited Create;
fDateStamp := DateStamp;
end;
function TDOSDateTime.DateStamp: Integer;
begin
Result := fDateStamp;
end;
{ TDOSDateTimeFactory }
class function TDOSDateTimeFactory.CreateFromDOSTimeStamp(
const DateStamp: Integer): IDOSDateTime;
begin
// Assume this date stamp is local time
Result := TDOSDateTime.Create(DateStamp);
end;
class function TDOSDateTimeFactory.CreateFromFile(
const FileName: string): IDOSDateTime;
begin
// FileAge returns local time stamp
Result := TDOSDateTime.Create(UUtils.FileAge(FileName));
end;
class function TDOSDateTimeFactory.CreateFromUnixTimeStamp(
const UnixTimeStamp: Int64): IDOSDateTime;
var
UDT: TDateTime; // unix time stamp as TDateTime
begin
// UnixTimeStamp is in GMT: need to convert to local time
UDT := GMTToLocalTime(UnixToDateTime(UnixTimeStamp));
Result := TDOSDateTime.Create(DateTimeToFileDate(UDT));
end;
end.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.