| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |