1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
|
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.content.pm.parsing;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.content.pm.PackageInfo;
import android.content.pm.VerifierInfo;
import com.android.internal.util.ArrayUtils;
import com.android.internal.util.CollectionUtils;
import com.android.internal.util.DataClass;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;
/**
* Lightweight parsed details about a single package.
*
* @hide
*/
@DataClass(genConstructor = false, genConstDefs = false)
public class PackageLite {
/** Name of the package as used to identify it in the system */
private final @NonNull String mPackageName;
/**
* Path where this package was found on disk. For monolithic packages
* this is path to single base APK file; for cluster packages this is
* path to the cluster directory.
*/
private final @NonNull String mPath;
/** Path of base APK */
private final @NonNull String mBaseApkPath;
/** Paths of any split APKs, ordered by parsed splitName */
private final @Nullable String[] mSplitApkPaths;
/** Names of any split APKs, ordered by parsed splitName */
private final @Nullable String[] mSplitNames;
/** Dependencies of any split APKs, ordered by parsed splitName */
private final @Nullable String[] mUsesSplitNames;
private final @Nullable String[] mConfigForSplit;
/** Indicate the types of the required split are necessary for base APK to run */
private final @Nullable Set<String> mBaseRequiredSplitTypes;
/** Indicate the types of the required split are necessary for split APKs to run */
private final @Nullable Set<String>[] mRequiredSplitTypes;
/** Split type of any split APKs, ordered by parsed splitName */
private final @Nullable Set<String>[] mSplitTypes;
/** Major and minor version number of this package */
private final int mVersionCodeMajor;
private final int mVersionCode;
private final int mTargetSdk;
/** Revision code of base APK */
private final int mBaseRevisionCode;
/** Revision codes of any split APKs, ordered by parsed splitName */
private final @Nullable int[] mSplitRevisionCodes;
/**
* Indicate the install location of this package
*
* @see {@link PackageInfo#INSTALL_LOCATION_AUTO}
* @see {@link PackageInfo#INSTALL_LOCATION_INTERNAL_ONLY}
* @see {@link PackageInfo#INSTALL_LOCATION_PREFER_EXTERNAL}
*/
private final int mInstallLocation;
/** Information about a package verifiers as used during package verification */
private final @NonNull VerifierInfo[] mVerifiers;
/** Indicate whether any split APKs that are features. Ordered by splitName */
private final @Nullable boolean[] mIsFeatureSplits;
/** Indicate whether each split should be load into their own Context objects */
private final boolean mIsolatedSplits;
/**
* Indicate whether this package requires at least one split (either feature or resource)
* to be present in order to function
*/
private final boolean mSplitRequired;
/** Indicate whether this app is coreApp */
private final boolean mCoreApp;
/** Indicate whether this app can be debugged */
private final boolean mDebuggable;
/** Indicate whether this app needs to be loaded into other applications' processes */
private final boolean mMultiArch;
/** Indicate whether the 32 bit version of the ABI should be used */
private final boolean mUse32bitAbi;
/** Indicate whether installer extracts native libraries */
private final boolean mExtractNativeLibs;
/** Indicate whether this app is profileable by Shell */
private final boolean mProfileableByShell;
/**
* Indicate whether this package wants to run the dex within its APK but not extracted
* or locally compiled variants.
*/
private final boolean mUseEmbeddedDex;
/**
* Indicates if this package is a sdk.
*/
private final boolean mIsSdkLibrary;
public PackageLite(String path, String baseApkPath, ApkLite baseApk,
String[] splitNames, boolean[] isFeatureSplits, String[] usesSplitNames,
String[] configForSplit, String[] splitApkPaths, int[] splitRevisionCodes,
int targetSdk, Set<String>[] requiredSplitTypes, Set<String>[] splitTypes) {
// The following paths may be different from the path in ApkLite because we
// move or rename the APK files. Use parameters to indicate the correct paths.
mPath = path;
mBaseApkPath = baseApkPath;
mPackageName = baseApk.getPackageName();
mVersionCode = baseApk.getVersionCode();
mVersionCodeMajor = baseApk.getVersionCodeMajor();
mInstallLocation = baseApk.getInstallLocation();
mVerifiers = baseApk.getVerifiers();
mBaseRevisionCode = baseApk.getRevisionCode();
mCoreApp = baseApk.isCoreApp();
mDebuggable = baseApk.isDebuggable();
mMultiArch = baseApk.isMultiArch();
mUse32bitAbi = baseApk.isUse32bitAbi();
mExtractNativeLibs = baseApk.isExtractNativeLibs();
mIsolatedSplits = baseApk.isIsolatedSplits();
mUseEmbeddedDex = baseApk.isUseEmbeddedDex();
mBaseRequiredSplitTypes = baseApk.getRequiredSplitTypes();
mRequiredSplitTypes = requiredSplitTypes;
mSplitRequired = (baseApk.isSplitRequired() || hasAnyRequiredSplitTypes());
mProfileableByShell = baseApk.isProfileableByShell();
mIsSdkLibrary = baseApk.isIsSdkLibrary();
mSplitNames = splitNames;
mSplitTypes = splitTypes;
mIsFeatureSplits = isFeatureSplits;
mUsesSplitNames = usesSplitNames;
mConfigForSplit = configForSplit;
mSplitApkPaths = splitApkPaths;
mSplitRevisionCodes = splitRevisionCodes;
mTargetSdk = targetSdk;
}
/**
* Return code path to the base APK file, and split APK files if any.
*/
public List<String> getAllApkPaths() {
final ArrayList<String> paths = new ArrayList<>();
paths.add(mBaseApkPath);
if (!ArrayUtils.isEmpty(mSplitApkPaths)) {
Collections.addAll(paths, mSplitApkPaths);
}
return paths;
}
/**
* Return {@link #mVersionCode} and {@link #mVersionCodeMajor} combined together as a
* single long value. The {@link #mVersionCodeMajor} is placed in the upper 32 bits.
*/
public long getLongVersionCode() {
return PackageInfo.composeLongVersionCode(mVersionCodeMajor, mVersionCode);
}
/**
* Return if requiredSplitTypes presents in the package.
*/
private boolean hasAnyRequiredSplitTypes() {
if (!CollectionUtils.isEmpty(mBaseRequiredSplitTypes)) {
return true;
}
return ArrayUtils.find(mRequiredSplitTypes, r -> !CollectionUtils.isEmpty(r)) != null;
}
// Code below generated by codegen v1.0.23.
//
// DO NOT MODIFY!
// CHECKSTYLE:OFF Generated code
//
// To regenerate run:
// $ codegen $ANDROID_BUILD_TOP/frameworks/base/core/java/android/content/pm/parsing/PackageLite.java
//
// To exclude the generated code from IntelliJ auto-formatting enable (one-time):
// Settings > Editor > Code Style > Formatter Control
//@formatter:off
/**
* Name of the package as used to identify it in the system
*/
@DataClass.Generated.Member
public @NonNull String getPackageName() {
return mPackageName;
}
/**
* Path where this package was found on disk. For monolithic packages
* this is path to single base APK file; for cluster packages this is
* path to the cluster directory.
*/
@DataClass.Generated.Member
public @NonNull String getPath() {
return mPath;
}
/**
* Path of base APK
*/
@DataClass.Generated.Member
public @NonNull String getBaseApkPath() {
return mBaseApkPath;
}
/**
* Paths of any split APKs, ordered by parsed splitName
*/
@DataClass.Generated.Member
public @Nullable String[] getSplitApkPaths() {
return mSplitApkPaths;
}
/**
* Names of any split APKs, ordered by parsed splitName
*/
@DataClass.Generated.Member
public @Nullable String[] getSplitNames() {
return mSplitNames;
}
/**
* Dependencies of any split APKs, ordered by parsed splitName
*/
@DataClass.Generated.Member
public @Nullable String[] getUsesSplitNames() {
return mUsesSplitNames;
}
@DataClass.Generated.Member
public @Nullable String[] getConfigForSplit() {
return mConfigForSplit;
}
/**
* Indicate the types of the required split are necessary for base APK to run
*/
@DataClass.Generated.Member
public @Nullable Set<String> getBaseRequiredSplitTypes() {
return mBaseRequiredSplitTypes;
}
/**
* Indicate the types of the required split are necessary for split APKs to run
*/
@DataClass.Generated.Member
public @Nullable Set<String>[] getRequiredSplitTypes() {
return mRequiredSplitTypes;
}
/**
* Split type of any split APKs, ordered by parsed splitName
*/
@DataClass.Generated.Member
public @Nullable Set<String>[] getSplitTypes() {
return mSplitTypes;
}
/**
* Major and minor version number of this package
*/
@DataClass.Generated.Member
public int getVersionCodeMajor() {
return mVersionCodeMajor;
}
@DataClass.Generated.Member
public int getVersionCode() {
return mVersionCode;
}
@DataClass.Generated.Member
public int getTargetSdk() {
return mTargetSdk;
}
/**
* Revision code of base APK
*/
@DataClass.Generated.Member
public int getBaseRevisionCode() {
return mBaseRevisionCode;
}
/**
* Revision codes of any split APKs, ordered by parsed splitName
*/
@DataClass.Generated.Member
public @Nullable int[] getSplitRevisionCodes() {
return mSplitRevisionCodes;
}
/**
* Indicate the install location of this package
*
* @see {@link PackageInfo#INSTALL_LOCATION_AUTO}
* @see {@link PackageInfo#INSTALL_LOCATION_INTERNAL_ONLY}
* @see {@link PackageInfo#INSTALL_LOCATION_PREFER_EXTERNAL}
*/
@DataClass.Generated.Member
public int getInstallLocation() {
return mInstallLocation;
}
/**
* Information about a package verifiers as used during package verification
*/
@DataClass.Generated.Member
public @NonNull VerifierInfo[] getVerifiers() {
return mVerifiers;
}
/**
* Indicate whether any split APKs that are features. Ordered by splitName
*/
@DataClass.Generated.Member
public @Nullable boolean[] getIsFeatureSplits() {
return mIsFeatureSplits;
}
/**
* Indicate whether each split should be load into their own Context objects
*/
@DataClass.Generated.Member
public boolean isIsolatedSplits() {
return mIsolatedSplits;
}
/**
* Indicate whether this package requires at least one split (either feature or resource)
* to be present in order to function
*/
@DataClass.Generated.Member
public boolean isSplitRequired() {
return mSplitRequired;
}
/**
* Indicate whether this app is coreApp
*/
@DataClass.Generated.Member
public boolean isCoreApp() {
return mCoreApp;
}
/**
* Indicate whether this app can be debugged
*/
@DataClass.Generated.Member
public boolean isDebuggable() {
return mDebuggable;
}
/**
* Indicate whether this app needs to be loaded into other applications' processes
*/
@DataClass.Generated.Member
public boolean isMultiArch() {
return mMultiArch;
}
/**
* Indicate whether the 32 bit version of the ABI should be used
*/
@DataClass.Generated.Member
public boolean isUse32bitAbi() {
return mUse32bitAbi;
}
/**
* Indicate whether installer extracts native libraries
*/
@DataClass.Generated.Member
public boolean isExtractNativeLibs() {
return mExtractNativeLibs;
}
/**
* Indicate whether this app is profileable by Shell
*/
@DataClass.Generated.Member
public boolean isProfileableByShell() {
return mProfileableByShell;
}
/**
* Indicate whether this package wants to run the dex within its APK but not extracted
* or locally compiled variants.
*/
@DataClass.Generated.Member
public boolean isUseEmbeddedDex() {
return mUseEmbeddedDex;
}
/**
* Indicates if this package is a sdk.
*/
@DataClass.Generated.Member
public boolean isIsSdkLibrary() {
return mIsSdkLibrary;
}
@DataClass.Generated(
time = 1643132127068L,
codegenVersion = "1.0.23",
sourceFile = "frameworks/base/core/java/android/content/pm/parsing/PackageLite.java",
inputSignatures =
"private final @android.annotation.NonNull java.lang.String mPackageName\nprivate final @android.annotation.NonNull java.lang.String mPath\nprivate final @android.annotation.NonNull java.lang.String mBaseApkPath\nprivate final @android.annotation.Nullable java.lang.String[] mSplitApkPaths\nprivate final @android.annotation.Nullable java.lang.String[] mSplitNames\nprivate final @android.annotation.Nullable java.lang.String[] mUsesSplitNames\nprivate final @android.annotation.Nullable java.lang.String[] mConfigForSplit\nprivate final @android.annotation.Nullable java.util.Set<java.lang.String> mBaseRequiredSplitTypes\nprivate final @android.annotation.Nullable java.util.Set<java.lang.String>[] mRequiredSplitTypes\nprivate final @android.annotation.Nullable java.util.Set<java.lang.String>[] mSplitTypes\nprivate final int mVersionCodeMajor\nprivate final int mVersionCode\nprivate final int mTargetSdk\nprivate final int mBaseRevisionCode\nprivate final @android.annotation.Nullable int[] mSplitRevisionCodes\nprivate final int mInstallLocation\nprivate final @android.annotation.NonNull android.content.pm.VerifierInfo[] mVerifiers\nprivate final @android.annotation.Nullable boolean[] mIsFeatureSplits\nprivate final boolean mIsolatedSplits\nprivate final boolean mSplitRequired\nprivate final boolean mCoreApp\nprivate final boolean mDebuggable\nprivate final boolean mMultiArch\nprivate final boolean mUse32bitAbi\nprivate final boolean mExtractNativeLibs\nprivate final boolean mProfileableByShell\nprivate final boolean mUseEmbeddedDex\nprivate final boolean mIsSdkLibrary\npublic java.util.List<java.lang.String> getAllApkPaths()\npublic long getLongVersionCode()\nprivate boolean hasAnyRequiredSplitTypes()\nclass PackageLite extends java.lang.Object implements []\n@com.android.internal.util.DataClass(genConstructor=false, genConstDefs=false)")
@Deprecated
private void __metadata() {}
//@formatter:on
// End of generated code
}
|