| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // DataPack represents a read-only view onto an on-disk file that contains | |
| 6 // (key, value) pairs of data. It's used to store static resources like | |
| 7 // translation strings and images. | |
| 8 | |
| 9 #ifndef APP_DATA_PACK_H_ | |
| 10 #define APP_DATA_PACK_H_ | |
| 11 #pragma once | |
| 12 | |
| 13 #include <map> | |
| 14 | |
| 15 #include "base/basictypes.h" | |
| 16 #include "base/scoped_ptr.h" | |
| 17 | |
| 18 namespace base { | |
| 19 class StringPiece; | |
| 20 } | |
| 21 | |
| 22 namespace file_util { | |
| 23 class MemoryMappedFile; | |
| 24 } | |
| 25 | |
| 26 class FilePath; | |
| 27 class RefCountedStaticMemory; | |
| 28 | |
| 29 | |
| 30 namespace app { | |
| 31 | |
| 32 class DataPack { | |
| 33 public: | |
| 34 DataPack(); | |
| 35 ~DataPack(); | |
| 36 | |
| 37 // Load a pack file from |path|, returning false on error. | |
| 38 bool Load(const FilePath& path); | |
| 39 | |
| 40 // Get resource by id |resource_id|, filling in |data|. | |
| 41 // The data is owned by the DataPack object and should not be modified. | |
| 42 // Returns false if the resource id isn't found. | |
| 43 bool GetStringPiece(uint32 resource_id, base::StringPiece* data) const; | |
| 44 | |
| 45 // Like GetStringPiece(), but returns a reference to memory. This interface | |
| 46 // is used for image data, while the StringPiece interface is usually used | |
| 47 // for localization strings. | |
| 48 RefCountedStaticMemory* GetStaticMemory(uint32 resource_id) const; | |
| 49 | |
| 50 // Writes a pack file containing |resources| to |path|. | |
| 51 static bool WritePack(const FilePath& path, | |
| 52 const std::map<uint32, base::StringPiece>& resources); | |
| 53 | |
| 54 private: | |
| 55 // The memory-mapped data. | |
| 56 scoped_ptr<file_util::MemoryMappedFile> mmap_; | |
| 57 | |
| 58 // Number of resources in the data. | |
| 59 size_t resource_count_; | |
| 60 | |
| 61 DISALLOW_COPY_AND_ASSIGN(DataPack); | |
| 62 }; | |
| 63 | |
| 64 } // namespace app | |
| 65 | |
| 66 #endif // APP_DATA_PACK_H_ | |
| OLD | NEW |