| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_COLUMN_READER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_COLUMN_READER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_COLUMN_READER_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_COLUMN_READER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_constants.h" | 13 #include "chrome/browser/media_galleries/fileapi/picasa/pmp_constants.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class FilePath; | 16 class FilePath; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace picasaimport { | 19 namespace picasaimport { |
| 20 | 20 |
| 21 // Reads a single PMP column from a file. | 21 // Reads a single PMP column from a file. |
| 22 class PmpColumnReader { | 22 class PmpColumnReader { |
| 23 public: | 23 public: |
| 24 PmpColumnReader(); | 24 PmpColumnReader(); |
| 25 virtual ~PmpColumnReader(); | 25 virtual ~PmpColumnReader(); |
| 26 | 26 |
| 27 // Returns true if read successfully. | 27 // Returns true if read successfully. |
| 28 // |rows_read| is undefined if returns false. | 28 // |rows_read| is undefined if returns false. |
| 29 bool Init(const base::FilePath& filepath, uint32* rows_read); | 29 bool Init(const base::FilePath& filepath, const PmpFieldType expected_type, |
| 30 uint32* rows_read); |
| 30 | 31 |
| 31 // These functions read the value of that |row| into |result|. | 32 // These functions read the value of that |row| into |result|. |
| 32 // Functions return false if the column is of the wrong type or the row | 33 // Functions return false if the column is of the wrong type or the row |
| 33 // is out of range. | 34 // is out of range. |
| 34 bool ReadString(const uint32 row, std::string* result) const; | 35 bool ReadString(const uint32 row, std::string* result) const; |
| 35 bool ReadUInt32(const uint32 row, uint32* result) const; | 36 bool ReadUInt32(const uint32 row, uint32* result) const; |
| 36 bool ReadDouble64(const uint32 row, double* result) const; | 37 bool ReadDouble64(const uint32 row, double* result) const; |
| 37 bool ReadUInt8(const uint32 row, uint8* result) const; | 38 bool ReadUInt8(const uint32 row, uint8* result) const; |
| 38 bool ReadUInt64(const uint32 row, uint64* result) const; | 39 bool ReadUInt64(const uint32 row, uint64* result) const; |
| 39 | 40 |
| 40 // Returns the native encoding of field_type. | |
| 41 PmpFieldType field_type() const { | |
| 42 return field_type_; | |
| 43 } | |
| 44 | |
| 45 private: | 41 private: |
| 46 bool ParseData(uint32* rows_read); | 42 bool ParseData(const PmpFieldType expected_type, uint32* rows_read); |
| 47 // Returns the number of bytes parsed in the body, or, -1 on failure. | 43 // Returns the number of bytes parsed in the body, or, -1 on failure. |
| 48 long IndexStrings(); | 44 long IndexStrings(); |
| 49 | 45 |
| 50 // Source data | 46 // Source data |
| 51 scoped_ptr<uint8[]> data_; | 47 scoped_ptr<uint8[]> data_; |
| 52 size_t length_; | 48 size_t length_; |
| 53 | 49 |
| 54 // Header data | 50 // Header data |
| 55 PmpFieldType field_type_; | 51 PmpFieldType field_type_; |
| 56 uint32 rows_; | 52 uint32 rows_; |
| 57 | 53 |
| 58 // Index of string start locations if fields are strings. Empty otherwise. | 54 // Index of string start locations if fields are strings. Empty otherwise. |
| 59 std::vector<const char*> strings_; | 55 std::vector<const char*> strings_; |
| 60 | 56 |
| 61 DISALLOW_COPY_AND_ASSIGN(PmpColumnReader); | 57 DISALLOW_COPY_AND_ASSIGN(PmpColumnReader); |
| 62 }; | 58 }; |
| 63 | 59 |
| 64 } // namespace picasaimport | 60 } // namespace picasaimport |
| 65 | 61 |
| 66 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_COLUMN_READER_H_ | 62 #endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_PICASA_PMP_COLUMN_READER_H_ |
| OLD | NEW |