blob: b4478610509d3b23c81ad89ad225aaf2586450c6 [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;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070020import android.content.pm.PackageParser;
21
22import java.io.File;
23
24/**
25 * Settings data for a particular package we know about.
26 */
27final class PackageSetting extends PackageSettingBase {
Amith Yamasani13593602012-03-22 16:16:17 -070028 int appId;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070029 PackageParser.Package pkg;
30 SharedUserSetting sharedUser;
31
32 PackageSetting(String name, String realName, File codePath, File resourcePath,
33 String nativeLibraryPathString, int pVersionCode, int pkgFlags) {
34 super(name, realName, codePath, resourcePath, nativeLibraryPathString, pVersionCode,
35 pkgFlags);
36 }
37
38 /**
39 * New instance of PackageSetting replicating the original settings.
40 * Note that it keeps the same PackageParser.Package instance.
41 */
42 PackageSetting(PackageSetting orig) {
43 super(orig);
44
Amith Yamasani13593602012-03-22 16:16:17 -070045 appId = orig.appId;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070046 pkg = orig.pkg;
47 sharedUser = orig.sharedUser;
48 }
49
50 @Override
51 public String toString() {
52 return "PackageSetting{"
53 + Integer.toHexString(System.identityHashCode(this))
Amith Yamasani13593602012-03-22 16:16:17 -070054 + " " + name + "/" + appId + "}";
Kenny Rootcf0b38c2011-03-22 14:17:59 -070055 }
Jeff Sharkey02e4d16e2013-08-12 20:31:36 -070056
57 public int[] getGids() {
58 return sharedUser != null ? sharedUser.gids : gids;
59 }
Christopher Tate628946a2013-10-18 18:11:05 -070060
61 public boolean isPrivileged() {
62 return (pkgFlags & ApplicationInfo.FLAG_PRIVILEGED) != 0;
63 }
Jeff Sharkey02e4d16e2013-08-12 20:31:36 -070064}