David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_RUNTIME_VDEX_FILE_H_ |
| 18 | #define ART_RUNTIME_VDEX_FILE_H_ |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <string> |
| 22 | |
| 23 | #include "base/macros.h" |
| 24 | #include "base/unix_file/fd_file.h" |
| 25 | #include "mem_map.h" |
| 26 | #include "os.h" |
| 27 | |
| 28 | namespace art { |
| 29 | |
| 30 | // VDEX files contain extracted DEX files. The VdexFile class maps the file to |
| 31 | // memory and provides tools for accessing its individual sections. |
| 32 | // |
| 33 | // File format: |
| 34 | // VdexFile::Header fixed-length header |
| 35 | // |
| 36 | // DEX[0] array of the input DEX files |
| 37 | // DEX[1] the bytecode may have been quickened |
| 38 | // ... |
| 39 | // DEX[D] |
| 40 | // |
| 41 | |
| 42 | class VdexFile { |
| 43 | public: |
| 44 | struct Header { |
| 45 | public: |
| 46 | Header(); |
| 47 | |
| 48 | bool IsMagicValid() const; |
| 49 | bool IsVersionValid() const; |
| 50 | |
| 51 | private: |
| 52 | static constexpr uint8_t kVdexMagic[] = { 'v', 'd', 'e', 'x' }; |
| 53 | static constexpr uint8_t kVdexVersion[] = { '0', '0', '0', '\0' }; |
| 54 | |
| 55 | uint8_t magic_[4]; |
| 56 | uint8_t version_[4]; |
| 57 | }; |
| 58 | |
| 59 | static VdexFile* Open(const std::string& vdex_filename, |
| 60 | bool writable, |
| 61 | bool low_4gb, |
| 62 | std::string* error_msg); |
| 63 | |
| 64 | const uint8_t* Begin() const { return mmap_->Begin(); } |
| 65 | const uint8_t* End() const { return mmap_->End(); } |
| 66 | size_t Size() const { return mmap_->Size(); } |
| 67 | |
| 68 | private: |
| 69 | VdexFile(File* file, MemMap* mmap) : file_(file), mmap_(mmap) {} |
| 70 | |
| 71 | std::unique_ptr<File> file_; |
| 72 | std::unique_ptr<MemMap> mmap_; |
| 73 | |
| 74 | DISALLOW_COPY_AND_ASSIGN(VdexFile); |
| 75 | }; |
| 76 | |
| 77 | } // namespace art |
| 78 | |
| 79 | #endif // ART_RUNTIME_VDEX_FILE_H_ |