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

Side by Side Diff: ui/base/resource/data_pack.h

Issue 7744017: Updated *.pak file format to support both UTF8 and UTF16 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Modified mac-specific parts of the code. Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « tools/grit/grit/node/message.py ('k') | ui/base/resource/data_pack.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // DataPack represents a read-only view onto an on-disk file that contains 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 6 // (key, value) pairs of data. It's used to store static resources like
7 // translation strings and images. 7 // translation strings and images.
8 8
9 #ifndef UI_BASE_RESOURCE_DATA_PACK_H_ 9 #ifndef UI_BASE_RESOURCE_DATA_PACK_H_
10 #define UI_BASE_RESOURCE_DATA_PACK_H_ 10 #define UI_BASE_RESOURCE_DATA_PACK_H_
(...skipping 13 matching lines...) Expand all
24 } 24 }
25 25
26 namespace file_util { 26 namespace file_util {
27 class MemoryMappedFile; 27 class MemoryMappedFile;
28 } 28 }
29 29
30 namespace ui { 30 namespace ui {
31 31
32 class UI_EXPORT DataPack { 32 class UI_EXPORT DataPack {
33 public: 33 public:
34 // What type of encoding the text resources use.
35 enum TextEncodingType {
36 BINARY,
37 UTF8,
38 UTF16
39 };
40
34 DataPack(); 41 DataPack();
35 ~DataPack(); 42 ~DataPack();
36 43
37 // Load a pack file from |path|, returning false on error. 44 // Load a pack file from |path|, returning false on error.
38 bool Load(const FilePath& path); 45 bool Load(const FilePath& path);
39 46
40 // Get resource by id |resource_id|, filling in |data|. 47 // Get resource by id |resource_id|, filling in |data|.
41 // The data is owned by the DataPack object and should not be modified. 48 // The data is owned by the DataPack object and should not be modified.
42 // Returns false if the resource id isn't found. 49 // Returns false if the resource id isn't found.
43 bool GetStringPiece(uint16 resource_id, base::StringPiece* data) const; 50 bool GetStringPiece(uint16 resource_id, base::StringPiece* data) const;
44 51
45 // Like GetStringPiece(), but returns a reference to memory. This interface 52 // Like GetStringPiece(), but returns a reference to memory. This interface
46 // is used for image data, while the StringPiece interface is usually used 53 // is used for image data, while the StringPiece interface is usually used
47 // for localization strings. 54 // for localization strings.
48 RefCountedStaticMemory* GetStaticMemory(uint16 resource_id) const; 55 RefCountedStaticMemory* GetStaticMemory(uint16 resource_id) const;
49 56
50 // Writes a pack file containing |resources| to |path|. 57 // Writes a pack file containing |resources| to |path|. If there are any
58 // text resources to be written, their encoding must already agree to the
59 // |textEncodingType| specified. If no text resources are present, please
60 // indicate BINARY.
51 static bool WritePack(const FilePath& path, 61 static bool WritePack(const FilePath& path,
52 const std::map<uint16, base::StringPiece>& resources); 62 const std::map<uint16, base::StringPiece>& resources,
63 TextEncodingType textEncodingType);
64
65 // Get the encoding type of text resources.
66 TextEncodingType GetTextEncodingType() const { return text_encoding_type_; }
53 67
54 private: 68 private:
55 // The memory-mapped data. 69 // The memory-mapped data.
56 scoped_ptr<file_util::MemoryMappedFile> mmap_; 70 scoped_ptr<file_util::MemoryMappedFile> mmap_;
57 71
58 // Number of resources in the data. 72 // Number of resources in the data.
59 size_t resource_count_; 73 size_t resource_count_;
60 74
75 // Type of encoding for text resources.
76 TextEncodingType text_encoding_type_;
77
61 DISALLOW_COPY_AND_ASSIGN(DataPack); 78 DISALLOW_COPY_AND_ASSIGN(DataPack);
62 }; 79 };
63 80
64 } // namespace ui 81 } // namespace ui
65 82
66 #endif // UI_BASE_RESOURCE_DATA_PACK_H_ 83 #endif // UI_BASE_RESOURCE_DATA_PACK_H_
OLDNEW
« no previous file with comments | « tools/grit/grit/node/message.py ('k') | ui/base/resource/data_pack.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698