blob: 9215e52b079650a219ce32108ae400290385395d [file] [log] [blame]
David Brazdil7b49e6c2016-09-01 11:06:18 +01001/*
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"
David Brazdil7b49e6c2016-09-01 11:06:18 +010024#include "mem_map.h"
25#include "os.h"
26
27namespace art {
28
29// VDEX files contain extracted DEX files. The VdexFile class maps the file to
30// memory and provides tools for accessing its individual sections.
31//
32// File format:
33// VdexFile::Header fixed-length header
34//
35// DEX[0] array of the input DEX files
36// DEX[1] the bytecode may have been quickened
37// ...
38// DEX[D]
39//
40
41class VdexFile {
42 public:
43 struct Header {
44 public:
45 Header();
46
47 bool IsMagicValid() const;
48 bool IsVersionValid() const;
49
50 private:
51 static constexpr uint8_t kVdexMagic[] = { 'v', 'd', 'e', 'x' };
52 static constexpr uint8_t kVdexVersion[] = { '0', '0', '0', '\0' };
53
54 uint8_t magic_[4];
55 uint8_t version_[4];
56 };
57
58 static VdexFile* Open(const std::string& vdex_filename,
59 bool writable,
60 bool low_4gb,
61 std::string* error_msg);
62
63 const uint8_t* Begin() const { return mmap_->Begin(); }
64 const uint8_t* End() const { return mmap_->End(); }
65 size_t Size() const { return mmap_->Size(); }
66
67 private:
Andreas Gampef7e82232016-09-12 15:55:56 -070068 explicit VdexFile(MemMap* mmap) : mmap_(mmap) {}
David Brazdil7b49e6c2016-09-01 11:06:18 +010069
David Brazdil7b49e6c2016-09-01 11:06:18 +010070 std::unique_ptr<MemMap> mmap_;
71
72 DISALLOW_COPY_AND_ASSIGN(VdexFile);
73};
74
75} // namespace art
76
77#endif // ART_RUNTIME_VDEX_FILE_H_