mirror of
https://github.com/openharmony/ability_ability_runtime.git
synced 2026-08-24 22:21:36 -04:00
9a9cd53c84
Signed-off-by: zhongjianfei <zhongjianfei@huawei.com> Change-Id: I0436a3a061297b02b50bef0861d66e8243419b5e
129 lines
4.1 KiB
C++
129 lines
4.1 KiB
C++
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef OHOS_AAFWK_USER_CONTROLLER_H
|
|
#define OHOS_AAFWK_USER_CONTROLLER_H
|
|
|
|
#include <unordered_map>
|
|
#include <memory>
|
|
|
|
#include "user_event_handler.h"
|
|
|
|
namespace OHOS {
|
|
namespace AAFwk {
|
|
const int32_t USER_ID_NO_HEAD = 0;
|
|
const int32_t USER_ID_DEFAULT = 100;
|
|
|
|
enum UserState {
|
|
STATE_BOOTING = 0,
|
|
STATE_STARTED,
|
|
STATE_STOPPING,
|
|
STATE_SHUTDOWN
|
|
};
|
|
|
|
class UserItem {
|
|
public:
|
|
explicit UserItem(int32_t id);
|
|
virtual ~UserItem();
|
|
|
|
int32_t GetUserId();
|
|
void SetState(const UserState &state);
|
|
UserState GetState();
|
|
|
|
private:
|
|
int32_t userId_;
|
|
UserState curState_ = STATE_BOOTING;
|
|
UserState lastState_ = STATE_BOOTING;
|
|
};
|
|
|
|
struct UserEvent {
|
|
int32_t oldUserId;
|
|
int32_t newUserId;
|
|
std::shared_ptr<UserItem> userItem;
|
|
};
|
|
|
|
class UserController : public std::enable_shared_from_this<UserController> {
|
|
public:
|
|
UserController();
|
|
virtual ~UserController();
|
|
|
|
void Init();
|
|
|
|
/**
|
|
* Start user, if it is not running..
|
|
*
|
|
* @param userId id of started user.
|
|
* @param isForeground whether user should brout to foreground.
|
|
* @return 0 if the user has been successfully started.
|
|
*/
|
|
int32_t StartUser(int32_t userId, bool isForeground);
|
|
|
|
/**
|
|
* Stop user, if it is running..
|
|
*
|
|
* @param userId id of started user.
|
|
* @return 0 if the user has been successfully started.
|
|
*/
|
|
int32_t StopUser(int32_t userId);
|
|
|
|
int32_t GetCurrentUserId();
|
|
|
|
std::shared_ptr<UserItem> GetUserItem(int32_t userId);
|
|
|
|
void ProcessEvent(const AppExecFwk::InnerEvent::Pointer &event);
|
|
|
|
private:
|
|
bool IsCurrentUser(int32_t userId);
|
|
bool IsExistOsAccount(int32_t userId);
|
|
std::shared_ptr<UserItem> GetOrCreateUserItem(int32_t userId);
|
|
void SetCurrentUserId(int32_t userId);
|
|
void BroadcastUserStarted(int32_t userId);
|
|
void MoveUserToForeground(int32_t oldUserId, int32_t newUserId);
|
|
void UserBootDone(std::shared_ptr<UserItem> &item);
|
|
void BroadcastUserBackground(int32_t userId);
|
|
void BroadcastUserForeground(int32_t userId);
|
|
void BroadcastUserStopping(int32_t userId);
|
|
void BroadcastUserStopped(int32_t userId);
|
|
|
|
void SendSystemUserStart(int32_t userId);
|
|
void SendSystemUserCurrent(int32_t oldUserId, int32_t newUserId);
|
|
void SendReportUserSwitch(int32_t oldUserId, int32_t newUserId,
|
|
std::shared_ptr<UserItem> &usrItem);
|
|
void SendUserSwitchTimeout(int32_t oldUserId, int32_t newUserId,
|
|
std::shared_ptr<UserItem> &usrItem);
|
|
void SendContinueUserSwitch(int32_t oldUserId, int32_t newUserId,
|
|
std::shared_ptr<UserItem> &usrItem);
|
|
void SendUserSwitchDone(int32_t userId);
|
|
|
|
void HandleSystemUserStart(int32_t userId);
|
|
void HandleSystemUserCurrent(int32_t oldUserId, int32_t newUserId);
|
|
void HandleReportUserSwitch(int32_t oldUserId, int32_t newUserId,
|
|
std::shared_ptr<UserItem> &usrItem);
|
|
void HandleUserSwitchTimeout(int32_t oldUserId, int32_t newUserId,
|
|
std::shared_ptr<UserItem> &usrItem);
|
|
void HandleContinueUserSwitch(int32_t oldUserId, int32_t newUserId,
|
|
std::shared_ptr<UserItem> &usrItem);
|
|
void HandleUserSwitchDone(int32_t userId);
|
|
|
|
private:
|
|
std::recursive_mutex userLock_;
|
|
int32_t currentUserId_ = USER_ID_DEFAULT;
|
|
std::unordered_map<int32_t, std::shared_ptr<UserItem>> userItems_;
|
|
std::shared_ptr<UserEventHandler> eventHandler_;
|
|
};
|
|
} // namespace AAFwk
|
|
} // namespace OHOS
|
|
#endif // OHOS_AAFWK_USER_CONTROLLER_H
|