DexoptOptions.java revision 11c22e3ce0310510f31811e39c32e864bd7cc8d1
1/*
2 * Copyright (C) 2017 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
17package com.android.server.pm.dex;
18
19import static com.android.server.pm.PackageManagerServiceCompilerMapping.getCompilerFilterForReason;
20
21import android.annotation.Nullable;
22
23/**
24 * Options used for dexopt invocations.
25 */
26public final class DexoptOptions {
27    // When set, the profiles will be checked for updates before calling dexopt. If
28    // the apps profiles didn't update in a meaningful way (decided by the compiler), dexopt
29    // will be skipped.
30    // Currently this only affects the optimization of primary apks. Secondary dex files
31    // will always check the profiles for updates.
32    public static final int DEXOPT_CHECK_FOR_PROFILES_UPDATES = 1 << 0;
33
34    // When set, dexopt will execute unconditionally (even if not needed).
35    public static final int DEXOPT_FORCE = 1 << 1;
36
37    // Whether or not the invocation of dexopt is done after the boot is completed. This is used
38    // in order to adjust the priority of the compilation thread.
39    public static final int DEXOPT_BOOT_COMPLETE = 1 << 2;
40
41    // When set, the dexopt invocation will optimize only the secondary dex files. If false, dexopt
42    // will only consider the primary apk.
43    public static final int DEXOPT_ONLY_SECONDARY_DEX = 1 << 3;
44
45    // When set, dexopt will optimize only dex files that are used by other apps.
46    // Currently, this flag is ignored for primary apks.
47    public static final int DEXOPT_ONLY_SHARED_DEX = 1 << 4;
48
49    // When set, dexopt will attempt to scale down the optimizations previously applied in order
50    // save disk space.
51    public static final int DEXOPT_DOWNGRADE = 1 << 5;
52
53    // When set, dexopt will compile the dex file as a shared library even if it is not actually
54    // used by other apps. This is used to force the compilation or shared libraries declared
55    // with in the manifest with ''uses-library' before we have a chance to detect they are
56    // actually shared at runtime.
57    public static final int DEXOPT_AS_SHARED_LIBRARY = 1 << 6;
58
59    // When set, indicates that dexopt is invoked from the background service.
60    public static final int DEXOPT_IDLE_BACKGROUND_JOB = 1 << 9;
61
62    // The name of package to optimize.
63    private final String mPackageName;
64
65    // The intended target compiler filter. Note that dexopt might adjust the filter before the
66    // execution based on factors like: vmSafeMode and packageUsedByOtherApps.
67    private final String mCompilerFilter;
68
69    // The set of flags for the dexopt options. It's a mix of the DEXOPT_* flags.
70    private final int mFlags;
71
72    // When not null, dexopt will optimize only the split identified by this name.
73    // It only applies for primary apk and it's always null if mOnlySecondaryDex is true.
74    private final String mSplitName;
75
76    public DexoptOptions(String packageName, String compilerFilter, int flags) {
77        this(packageName, compilerFilter, /*splitName*/ null, flags);
78    }
79
80    public DexoptOptions(String packageName, int compilerReason, int flags) {
81        this(packageName, getCompilerFilterForReason(compilerReason), flags);
82    }
83
84    public DexoptOptions(String packageName, String compilerFilter, String splitName, int flags) {
85        int validityMask =
86                DEXOPT_CHECK_FOR_PROFILES_UPDATES |
87                DEXOPT_FORCE |
88                DEXOPT_BOOT_COMPLETE |
89                DEXOPT_ONLY_SECONDARY_DEX |
90                DEXOPT_ONLY_SHARED_DEX |
91                DEXOPT_DOWNGRADE |
92                DEXOPT_AS_SHARED_LIBRARY |
93                DEXOPT_IDLE_BACKGROUND_JOB;
94        if ((flags & (~validityMask)) != 0) {
95            throw new IllegalArgumentException("Invalid flags : " + Integer.toHexString(flags));
96        }
97
98        mPackageName = packageName;
99        mCompilerFilter = compilerFilter;
100        mFlags = flags;
101        mSplitName = splitName;
102    }
103
104    public String getPackageName() {
105        return mPackageName;
106    }
107
108    public boolean isCheckForProfileUpdates() {
109        return (mFlags & DEXOPT_CHECK_FOR_PROFILES_UPDATES) != 0;
110    }
111
112    public String getCompilerFilter() {
113        return mCompilerFilter;
114    }
115
116    public boolean isForce() {
117        return (mFlags & DEXOPT_FORCE) != 0;
118    }
119
120    public boolean isBootComplete() {
121        return (mFlags & DEXOPT_BOOT_COMPLETE) != 0;
122    }
123
124    public boolean isDexoptOnlySecondaryDex() {
125        return (mFlags & DEXOPT_ONLY_SECONDARY_DEX) != 0;
126    }
127
128    public boolean isDexoptOnlySharedDex() {
129        return (mFlags & DEXOPT_ONLY_SHARED_DEX) != 0;
130    }
131
132    public boolean isDowngrade() {
133        return (mFlags & DEXOPT_DOWNGRADE) != 0;
134    }
135
136    public boolean isDexoptAsSharedLibrary() {
137        return (mFlags & DEXOPT_AS_SHARED_LIBRARY) != 0;
138    }
139
140    public boolean isDexoptIdleBackgroundJob() {
141        return (mFlags & DEXOPT_IDLE_BACKGROUND_JOB) != 0;
142    }
143
144    public String getSplitName() {
145        return mSplitName;
146    }
147
148    public int getFlags() {
149        return mFlags;
150    }
151}
152