1 /* 2 * Copyright (c) 2021-2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef OS_ACCOUNT_SERVICES_ACCOUNTMGR_INCLUDE_OSACCOUNT_IINNER_OS_ACCOUNT_H 17 #define OS_ACCOUNT_SERVICES_ACCOUNTMGR_INCLUDE_OSACCOUNT_IINNER_OS_ACCOUNT_H 18 19 #include <string> 20 #include "account_error_no.h" 21 #include "idomain_account_callback.h" 22 #include "os_account_info.h" 23 #include "iremote_object.h" 24 #include "os_account_subscribe_info.h" 25 26 namespace OHOS { 27 namespace AccountSA { 28 class IInnerOsAccount { 29 public: 30 virtual void Init() = 0; 31 virtual ErrCode CreateOsAccount( 32 const std::string &name, const OsAccountType &type, OsAccountInfo &osAccountInfo) = 0; 33 virtual ErrCode CreateOsAccount(const std::string &localName, const std::string &shortName, 34 const OsAccountType &type, OsAccountInfo &osAccountInfo, const CreateOsAccountOptions &options = {}) = 0; 35 virtual ErrCode CreateOsAccountWithFullInfo(OsAccountInfo &osAccountInfo, 36 const CreateOsAccountOptions &options = {}) = 0; 37 virtual ErrCode UpdateOsAccountWithFullInfo(OsAccountInfo &osAccountInfo) = 0; 38 virtual ErrCode CreateOsAccountForDomain(const OsAccountType &type, const DomainAccountInfo &domainInfo, 39 const sptr<IDomainAccountCallback> &callback, const CreateOsAccountForDomainOptions &options = {}) = 0; 40 virtual ErrCode RemoveOsAccount(const int id) = 0; 41 virtual ErrCode IsOsAccountExists(const int id, bool &isOsAccountExits) = 0; 42 virtual ErrCode IsOsAccountActived(const int id, bool &isOsAccountActived) = 0; 43 virtual ErrCode IsOsAccountConstraintEnable( 44 const int id, const std::string &constraint, bool &isOsAccountConstraintEnable) = 0; 45 virtual ErrCode IsOsAccountVerified(const int id, bool &isVerified) = 0; 46 virtual ErrCode IsOsAccountDeactivating(const int id, bool &isDeactivating) = 0; 47 virtual ErrCode GetCreatedOsAccountsCount(unsigned int &createdOsAccountCount) = 0; 48 virtual ErrCode QueryMaxOsAccountNumber(uint32_t &maxOsAccountNumber) = 0; 49 virtual ErrCode QueryMaxLoggedInOsAccountNumber(uint32_t &maxNum) = 0; 50 virtual ErrCode GetOsAccountAllConstraints(const int id, std::vector<std::string> &constraints) = 0; 51 virtual ErrCode QueryAllCreatedOsAccounts(std::vector<OsAccountInfo> &osAccountInfos) = 0; 52 virtual ErrCode QueryOsAccountById(const int id, OsAccountInfo &osAccountInfo) = 0; 53 virtual ErrCode GetOsAccountShortName(const int id, std::string &shortName) = 0; 54 virtual ErrCode GetOsAccountName(const int id, std::string &name) = 0; 55 virtual ErrCode GetOsAccountType(const int id, OsAccountType &type) = 0; 56 virtual ErrCode GetOsAccountProfilePhoto(const int id, std::string &photo) = 0; 57 virtual ErrCode IsMultiOsAccountEnable(bool &isMultiOsAccountEnable) = 0; 58 virtual ErrCode SetOsAccountName(const int id, const std::string &name) = 0; 59 virtual ErrCode SetOsAccountConstraints( 60 const int id, const std::vector<std::string> &constraints, const bool enable) = 0; 61 virtual ErrCode SetOsAccountProfilePhoto(const int id, const std::string &photo) = 0; 62 virtual ErrCode ActivateOsAccount(const int id, const bool startStorage = true, const uint64_t displayId = 0) = 0; 63 virtual ErrCode DeactivateOsAccount(const int id, bool isStopStorage = true) = 0; 64 virtual ErrCode StartOsAccount(const int id) = 0; 65 virtual ErrCode GetOsAccountLocalIdBySerialNumber(const int64_t serialNumber, int &id) = 0; 66 virtual ErrCode GetSerialNumberByOsAccountLocalId(const int &id, int64_t &serialNumber) = 0; 67 virtual ErrCode SubscribeOsAccount( 68 const OsAccountSubscribeInfo &subscribeInfo, const sptr<IRemoteObject> &eventListener) = 0; 69 virtual ErrCode UnsubscribeOsAccount(const sptr<IRemoteObject> &eventListener) = 0; 70 virtual const std::shared_ptr<OsAccountSubscribeInfo> GetSubscribeRecordInfo( 71 const sptr<IRemoteObject> &eventListener) = 0; 72 virtual OS_ACCOUNT_SWITCH_MOD GetOsAccountSwitchMod() = 0; 73 virtual ErrCode IsOsAccountCompleted(const int id, bool &isOsAccountCompleted) = 0; 74 virtual ErrCode SetOsAccountIsVerified(const int id, const bool isVerified) = 0; 75 virtual ErrCode SetOsAccountIsLoggedIn(const int32_t id, const bool isLoggedIn) = 0; 76 virtual ErrCode GetOsAccountCredentialId(const int id, uint64_t &credentialId) = 0; 77 virtual ErrCode SetOsAccountCredentialId(const int id, uint64_t credentialId) = 0; 78 virtual ErrCode IsAllowedCreateAdmin(bool &isAllowedCreateAdmin) = 0; 79 virtual ErrCode GetOsAccountLocalIdFromDomain(const DomainAccountInfo &domainInfo, int &id) = 0; 80 virtual ErrCode GetCreatedOsAccountNumFromDatabase(const std::string& storeID, 81 int &createdOsAccountNum) = 0; 82 virtual ErrCode GetSerialNumberFromDatabase(const std::string& storeID, int64_t &serialNumber) = 0; 83 virtual ErrCode GetMaxAllowCreateIdFromDatabase(const std::string& storeID, int &id) = 0; 84 virtual ErrCode GetOsAccountFromDatabase(const std::string& storeID, const int id, 85 OsAccountInfo &osAccountInfo) = 0; 86 virtual ErrCode GetOsAccountListFromDatabase(const std::string& storeID, 87 std::vector<OsAccountInfo> &osAccountList) = 0; 88 virtual ErrCode QueryActiveOsAccountIds(std::vector<int32_t>& ids) = 0; 89 virtual ErrCode QueryOsAccountConstraintSourceTypes(const int32_t id, 90 const std::string &constraint, std::vector<ConstraintSourceTypeInfo> &constraintSourceTypeInfos) = 0; 91 virtual ErrCode SetGlobalOsAccountConstraints(const std::vector<std::string> &constraints, 92 const bool enable, const int32_t enforcerId, const bool isDeviceOwner) = 0; 93 virtual ErrCode SetSpecificOsAccountConstraints(const std::vector<std::string> &constraints, 94 const bool enable, const int32_t targetId, const int32_t enforcerId, const bool isDeviceOwner) = 0; 95 virtual ErrCode SetBaseOsAccountConstraints(const int32_t id, 96 const std::vector<std::string> &constraints, const bool enable) = 0; 97 virtual ErrCode SetDefaultActivatedOsAccount(const int32_t id) = 0; 98 virtual ErrCode GetDefaultActivatedOsAccount(int32_t &id) = 0; 99 virtual ErrCode ValidateShortName(const std::string &shortName) = 0; 100 virtual ErrCode GetTypeNumber(const OsAccountType& type, int32_t& typeNumber) = 0; 101 virtual ErrCode CheckTypeNumber(const OsAccountType& type) = 0; 102 virtual ErrCode IsOsAccountForeground(const int32_t localId, const uint64_t displayId, bool &isForeground) = 0; 103 virtual ErrCode GetForegroundOsAccountLocalId(const uint64_t displayId, int32_t &localId) = 0; 104 virtual ErrCode GetForegroundOsAccounts(std::vector<ForegroundOsAccount> &accounts) = 0; 105 virtual ErrCode GetBackgroundOsAccountLocalIds(std::vector<int32_t> &localIds) = 0; 106 virtual ErrCode SetOsAccountToBeRemoved(int32_t localId, bool toBeRemoved) = 0; 107 virtual ErrCode ActivateDefaultOsAccount() = 0; 108 virtual int32_t CleanGarbageOsAccounts(int32_t excludeId = -1) = 0; 109 virtual void ResetAccountStatus() = 0; 110 }; 111 } // namespace AccountSA 112 } // namespace OHOS 113 114 #endif // OS_ACCOUNT_SERVICES_ACCOUNTMGR_INCLUDE_OSACCOUNT_IINNER_OS_ACCOUNT_H 115