blob: 94eddf24ed3bce57a96e5a4f87c17830c445f2a4 [file] [log] [blame]
Jeff Sharkey6c2c0562016-12-07 12:12:00 -07001/*
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 DEXOPT_H_
18#define DEXOPT_H_
19
20#include <sys/types.h>
21
Jeff Sharkey90aff262016-12-12 14:28:24 -070022#include <cutils/multiuser.h>
23
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070024namespace android {
25namespace installd {
26
Jeff Sharkey90aff262016-12-12 14:28:24 -070027/* dexopt needed flags matching those in dalvik.system.DexFile */
Calin Juravle80a21252017-01-17 14:43:25 -080028static constexpr int NO_DEXOPT_NEEDED = 0;
Jeff Sharkey90aff262016-12-12 14:28:24 -070029static constexpr int DEX2OAT_FROM_SCRATCH = 1;
30static constexpr int DEX2OAT_FOR_BOOT_IMAGE = 2;
31static constexpr int DEX2OAT_FOR_FILTER = 3;
32static constexpr int DEX2OAT_FOR_RELOCATION = 4;
33static constexpr int PATCHOAT_FOR_RELOCATION = 5;
34
35typedef int fd_t;
36
37bool clear_reference_profile(const char* pkgname);
38bool clear_current_profile(const char* pkgname, userid_t user);
39bool clear_current_profiles(const char* pkgname);
40
41bool move_ab(const char* apk_path, const char* instruction_set, const char* output_path);
42
43bool analyse_profiles(uid_t uid, const char* pkgname);
44bool dump_profiles(int32_t uid, const char* pkgname, const char* code_paths);
45
46bool delete_odex(const char* apk_path, const char* instruction_set, const char* output_path);
47
Jeff Sharkey6c2c0562016-12-07 12:12:00 -070048int dexopt(const char *apk_path, uid_t uid, const char *pkgName, const char *instruction_set,
49 int dexopt_needed, const char* oat_dir, int dexopt_flags, const char* compiler_filter,
50 const char* volume_uuid, const char* shared_libraries);
51
52static constexpr size_t DEXOPT_PARAM_COUNT = 10U;
53static_assert(DEXOPT_PARAM_COUNT == 10U, "Unexpected dexopt param size");
54
55// Helper for the above, converting arguments.
56int dexopt(const char* const params[DEXOPT_PARAM_COUNT]);
57
58} // namespace installd
59} // namespace android
60
61#endif // DEXOPT_H_