Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: Source/platform/FileMetadata.h

Issue 884393002: Upgrade Blink to milliseconds-based last modified filetimes, part 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sof-fileinfo-modtime-in-ms-1
Patch Set: Stop using time_t over getFileModificationTime(); not sound Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/modules/filesystem/Metadata.h ('k') | Source/platform/FileMetadata.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 #include "platform/weborigin/KURL.h" 35 #include "platform/weborigin/KURL.h"
36 #include "wtf/MathExtras.h" 36 #include "wtf/MathExtras.h"
37 #include "wtf/text/WTFString.h" 37 #include "wtf/text/WTFString.h"
38 #include <time.h> 38 #include <time.h>
39 39
40 namespace blink { 40 namespace blink {
41 41
42 inline double invalidFileTime() { return std::numeric_limits<double>::quiet_NaN( ); } 42 inline double invalidFileTime() { return std::numeric_limits<double>::quiet_NaN( ); }
43 inline bool isValidFileTime(double time) { return std::isfinite(time); } 43 inline bool isValidFileTime(double time) { return std::isfinite(time); }
44 44
45 struct FileMetadata { 45 class FileMetadata {
46 // The last modification time of the file, in seconds. 46 public:
47 // The value 0.0 means that the time is not set. 47 FileMetadata()
48 double modificationTime; 48 : modificationTimeMS(invalidFileTime())
49 , length(-1)
50 , type(TypeUnknown)
51 {
52 }
53
54 // The last modification time of the file, in milliseconds.
55 // The value NaN means that the time is not known.
56 double modificationTimeMS;
49 57
50 // The length of the file in bytes. 58 // The length of the file in bytes.
51 // The value -1 means that the length is not set. 59 // The value -1 means that the length is not set.
52 long long length; 60 long long length;
53 61
54 enum Type { 62 enum Type {
55 TypeUnknown = 0, 63 TypeUnknown = 0,
56 TypeFile, 64 TypeFile,
57 TypeDirectory 65 TypeDirectory
58 }; 66 };
59 67
60 Type type; 68 Type type;
61 String platformPath; 69 String platformPath;
62
63 FileMetadata() : modificationTime(invalidFileTime()), length(-1), type(TypeU nknown) { }
64 }; 70 };
65 71
66 PLATFORM_EXPORT bool getFileSize(const String&, long long& result); 72 PLATFORM_EXPORT bool getFileSize(const String&, long long& result);
67 PLATFORM_EXPORT bool getFileModificationTime(const String&, time_t& result); 73 PLATFORM_EXPORT bool getFileModificationTime(const String&, double& result);
68 PLATFORM_EXPORT bool getFileMetadata(const String&, FileMetadata&); 74 PLATFORM_EXPORT bool getFileMetadata(const String&, FileMetadata&);
69 PLATFORM_EXPORT String directoryName(const String&); 75 PLATFORM_EXPORT String directoryName(const String&);
70 PLATFORM_EXPORT KURL filePathToURL(const String&); 76 PLATFORM_EXPORT KURL filePathToURL(const String&);
71 77
72 } // namespace blink 78 } // namespace blink
73 79
74 #endif // FileMetadata_h 80 #endif // FileMetadata_h
OLDNEW
« no previous file with comments | « Source/modules/filesystem/Metadata.h ('k') | Source/platform/FileMetadata.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698