blob: f106b62d768b107ea101cc6c65e8b7d90064e1f4 [file] [log] [blame]
Kenny Rootcf0b38c2011-03-22 14:17:59 -07001/*
2 * Copyright (C) 2011 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;
18
Christopher Tate628946a2013-10-18 18:11:05 -070019import android.content.pm.ApplicationInfo;
Jeff Sharkeyc5967e92016-01-07 18:50:29 -070020import android.content.pm.PackageManager;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070021import android.content.pm.PackageParser;
22
23import java.io.File;
24
25/**
26 * Settings data for a particular package we know about.
27 */
28final class PackageSetting extends PackageSettingBase {
Amith Yamasani13593602012-03-22 16:16:17 -070029 int appId;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070030 PackageParser.Package pkg;
31 SharedUserSetting sharedUser;
32
33 PackageSetting(String name, String realName, File codePath, File resourcePath,
Narayan Kamathff110bd2014-07-04 18:30:45 +010034 String legacyNativeLibraryPathString, String primaryCpuAbiString,
Narayan Kamath4903f642014-08-11 13:33:45 +010035 String secondaryCpuAbiString, String cpuAbiOverrideString,
Alex Klyubinb9f8a522015-02-03 11:12:59 -080036 int pVersionCode, int pkgFlags, int privateFlags) {
Narayan Kamathff110bd2014-07-04 18:30:45 +010037 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
Narayan Kamath4903f642014-08-11 13:33:45 +010038 primaryCpuAbiString, secondaryCpuAbiString, cpuAbiOverrideString,
Alex Klyubinb9f8a522015-02-03 11:12:59 -080039 pVersionCode, pkgFlags, privateFlags);
Kenny Rootcf0b38c2011-03-22 14:17:59 -070040 }
41
42 /**
43 * New instance of PackageSetting replicating the original settings.
44 * Note that it keeps the same PackageParser.Package instance.
45 */
46 PackageSetting(PackageSetting orig) {
47 super(orig);
48
Amith Yamasani13593602012-03-22 16:16:17 -070049 appId = orig.appId;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070050 pkg = orig.pkg;
51 sharedUser = orig.sharedUser;
52 }
53
54 @Override
55 public String toString() {
56 return "PackageSetting{"
57 + Integer.toHexString(System.identityHashCode(this))
Amith Yamasani13593602012-03-22 16:16:17 -070058 + " " + name + "/" + appId + "}";
Kenny Rootcf0b38c2011-03-22 14:17:59 -070059 }
Jeff Sharkey02e4d16e2013-08-12 20:31:36 -070060
Svetoslavc6d1c342015-02-26 14:44:43 -080061 public PermissionsState getPermissionsState() {
62 return (sharedUser != null)
63 ? sharedUser.getPermissionsState()
64 : super.getPermissionsState();
Jeff Sharkey02e4d16e2013-08-12 20:31:36 -070065 }
Christopher Tate628946a2013-10-18 18:11:05 -070066
67 public boolean isPrivileged() {
Alex Klyubinb9f8a522015-02-03 11:12:59 -080068 return (pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED) != 0;
Christopher Tate628946a2013-10-18 18:11:05 -070069 }
Fyodor Kupoloveeea67b2015-02-23 17:14:45 -080070
71 public boolean isForwardLocked() {
72 return (pkgPrivateFlags & ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK) != 0;
73 }
Svet Ganov12a692a2015-03-28 19:34:15 -070074
75 public boolean isSystem() {
76 return (pkgFlags & ApplicationInfo.FLAG_SYSTEM) != 0;
77 }
Svetoslavd2cf3ae2015-04-02 16:51:55 -070078
79 public boolean isSharedUser() {
80 return sharedUser != null;
81 }
Jeff Sharkeyc5967e92016-01-07 18:50:29 -070082
83 public boolean isMatch(int flags) {
84 if ((flags & PackageManager.MATCH_SYSTEM_ONLY) != 0) {
85 return isSystem();
86 }
87 return true;
88 }
Jeff Sharkey02e4d16e2013-08-12 20:31:36 -070089}