mirror of
https://github.com/openharmony/notification_ces_standard.git
synced 2026-07-01 04:39:51 -04:00
33fe45ee52
Description:ces_standard change to common_event_service Sig: SIG_ApplicationFramework Feature or Bugfix:Feature Binary Source:No Signed-off-by: liqiang <liqiang121@huawei.com> Change-Id: Ifb47d0a2ecd926ed23a9c1807de59b9a65df72b6
69 lines
3.0 KiB
C++
69 lines
3.0 KiB
C++
/*
|
|
* Copyright (c) 2021-2022 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 FOUNDATION_EVENT_CESFWK_SERVICES_INCLUDE_INNER_COMMON_EVENT_MANAGER_H
|
|
#define FOUNDATION_EVENT_CESFWK_SERVICES_INCLUDE_INNER_COMMON_EVENT_MANAGER_H
|
|
|
|
#include "access_token_helper.h"
|
|
#include "common_event_control_manager.h"
|
|
#include "icommon_event.h"
|
|
#include "static_subscriber_manager.h"
|
|
|
|
namespace OHOS {
|
|
namespace EventFwk {
|
|
class InnerCommonEventManager {
|
|
public:
|
|
InnerCommonEventManager();
|
|
|
|
virtual ~InnerCommonEventManager() {};
|
|
|
|
bool PublishCommonEvent(const CommonEventData &data, const CommonEventPublishInfo &publishinfo,
|
|
const sptr<IRemoteObject> &commonEventListener, const struct tm &recordTime, const pid_t &pid, const uid_t &uid,
|
|
const Security::AccessToken::AccessTokenID &callerToken, const int32_t &userId, const std::string &bundleName,
|
|
const sptr<IRemoteObject> &service = nullptr);
|
|
|
|
bool SubscribeCommonEvent(const CommonEventSubscribeInfo &subscribeInfo,
|
|
const sptr<IRemoteObject> &commonEventListener, const struct tm &recordTime, const pid_t &pid, const uid_t &uid,
|
|
const Security::AccessToken::AccessTokenID &callerToken, const std::string &bundleName);
|
|
|
|
bool UnsubscribeCommonEvent(sptr<IRemoteObject> &commonEventListener);
|
|
|
|
bool GetStickyCommonEvent(const std::string &event, CommonEventData &eventData);
|
|
|
|
void DumpState(const std::string &event, const int32_t &userId, std::vector<std::string> &state);
|
|
|
|
void FinishReceiver(
|
|
const sptr<IRemoteObject> &proxy, const int &code, const std::string &receiverData, const bool &abortEvent);
|
|
|
|
bool Freeze(const uid_t &uid);
|
|
|
|
bool Unfreeze(const uid_t &uid);
|
|
|
|
private:
|
|
bool ProcessStickyEvent(const CommonEventRecord &record, const Security::AccessToken::AccessTokenID &callerToken);
|
|
bool PublishStickyEvent(const std::shared_ptr<CommonEventSubscribeInfo> &sp,
|
|
const std::shared_ptr<EventSubscriberRecord> &subscriberRecord);
|
|
bool CheckUserId(const pid_t &pid, const uid_t &uid, const Security::AccessToken::AccessTokenID &callerToken,
|
|
bool &isSubsystem, bool &isSystemApp, bool &isProxy, int32_t &userId);
|
|
|
|
private:
|
|
std::shared_ptr<CommonEventControlManager> controlPtr_;
|
|
std::shared_ptr<StaticSubscriberManager> staticSubscriberManager_;
|
|
DISALLOW_COPY_AND_MOVE(InnerCommonEventManager);
|
|
};
|
|
} // namespace EventFwk
|
|
} // namespace OHOS
|
|
#endif // FOUNDATION_EVENT_CESFWK_SERVICES_INCLUDE_INNER_COMMON_EVENT_MANAGER_H
|