blob: 7c92045c7c5eb7045cb94faac5ba3edf3eed8606 [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
19import android.content.pm.ApplicationInfo;
Svet Ganovd5752bd2015-03-25 22:57:39 -070020
Todd Kennedy82b08422017-09-28 13:32:05 -070021import com.android.server.pm.permission.PermissionsState;
22
Svetoslavc6d1c342015-02-26 14:44:43 -080023abstract class SettingBase {
Kenny Rootcf0b38c2011-03-22 14:17:59 -070024 int pkgFlags;
Alex Klyubinb9f8a522015-02-03 11:12:59 -080025 int pkgPrivateFlags;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070026
Svet Ganov37f05182015-03-31 16:52:11 -070027 protected final PermissionsState mPermissionsState;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070028
Svetoslavc6d1c342015-02-26 14:44:43 -080029 SettingBase(int pkgFlags, int pkgPrivateFlags) {
Kenny Rootcf0b38c2011-03-22 14:17:59 -070030 setFlags(pkgFlags);
Alex Klyubinb9f8a522015-02-03 11:12:59 -080031 setPrivateFlags(pkgPrivateFlags);
Svetoslavc6d1c342015-02-26 14:44:43 -080032 mPermissionsState = new PermissionsState();
Kenny Rootcf0b38c2011-03-22 14:17:59 -070033 }
34
Todd Kennedy788c8422016-08-10 10:52:34 -070035 SettingBase(SettingBase orig) {
36 mPermissionsState = new PermissionsState();
37 doCopy(orig);
38 }
39
40 public void copyFrom(SettingBase orig) {
41 doCopy(orig);
42 }
43
44 private void doCopy(SettingBase orig) {
45 pkgFlags = orig.pkgFlags;
46 pkgPrivateFlags = orig.pkgPrivateFlags;
47 mPermissionsState.copyFrom(orig.mPermissionsState);
Svetoslavc6d1c342015-02-26 14:44:43 -080048 }
Kenny Rootcf0b38c2011-03-22 14:17:59 -070049
Svetoslavc6d1c342015-02-26 14:44:43 -080050 public PermissionsState getPermissionsState() {
51 return mPermissionsState;
Kenny Rootcf0b38c2011-03-22 14:17:59 -070052 }
53
54 void setFlags(int pkgFlags) {
55 this.pkgFlags = pkgFlags
56 & (ApplicationInfo.FLAG_SYSTEM
Kenny Rootcf0b38c2011-03-22 14:17:59 -070057 | ApplicationInfo.FLAG_EXTERNAL_STORAGE);
58 }
Alex Klyubinb9f8a522015-02-03 11:12:59 -080059
60 void setPrivateFlags(int pkgPrivateFlags) {
61 this.pkgPrivateFlags = pkgPrivateFlags
62 & (ApplicationInfo.PRIVATE_FLAG_PRIVILEGED
Svet Ganov087dce22017-09-07 15:42:16 -070063 | ApplicationInfo.PRIVATE_FLAG_OEM
Jiyong Park002fdbd2017-02-13 20:50:31 +090064 | ApplicationInfo.PRIVATE_FLAG_VENDOR
Jaekyun Seok1713d9e2018-01-12 21:47:26 +090065 | ApplicationInfo.PRIVATE_FLAG_PRODUCT
Fyodor Kupolovbdbc9692015-12-14 13:11:13 -080066 | ApplicationInfo.PRIVATE_FLAG_FORWARD_LOCK
67 | ApplicationInfo.PRIVATE_FLAG_REQUIRED_FOR_SYSTEM_USER);
Alex Klyubinb9f8a522015-02-03 11:12:59 -080068 }
Kenny Rootcf0b38c2011-03-22 14:17:59 -070069}