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
268 lines
12 KiB
C++
268 lines
12 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.
|
|
*/
|
|
|
|
#include "common_event_permission_manager.h"
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
#include "common_event_support.h"
|
|
#include "event_log_wrapper.h"
|
|
|
|
namespace OHOS {
|
|
namespace EventFwk {
|
|
const int REVERSE = 3;
|
|
|
|
static const std::unordered_map<std::string, std::pair<PermissionState, std::vector<std::string>>> COMMON_EVENT_MAP {
|
|
{CommonEventSupport::COMMON_EVENT_BOOT_COMPLETED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.RECEIVER_STARTUP_COMPLETED"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_LOCKED_BOOT_COMPLETED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.RECEIVER_STARTUP_COMPLETED"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_USER_SWITCHED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.MANAGE_USERS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_USER_STARTING,
|
|
{PermissionState::DEFAULT, {"ohos.permission.INTERACT_ACROSS_USERS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_USER_STOPPING,
|
|
{PermissionState::DEFAULT, {"ohos.permission.INTERACT_ACROSS_USERS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_SCAN_FINISHED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.LOCATION"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_RSSI_VALUE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_AP_STA_JOIN,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_AP_STA_LEAVE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_MPLINK_STATE_CHANGE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.MPLINK_CHANGE_STATE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_P2P_CONN_STATE,
|
|
{PermissionState::AND, {"ohos.permission.GET_WIFI_INFO", "ohos.permission.LOCATION"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_P2P_STATE_CHANGED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_P2P_PEERS_STATE_CHANGED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_P2P_PEERS_DISCOVERY_STATE_CHANGED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_P2P_CURRENT_DEVICE_STATE_CHANGED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_WIFI_P2P_GROUP_STATE_CHANGED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_WIFI_INFO"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CONNECT_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_CURRENT_DEVICE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HANDSFREE_AG_AUDIO_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CONNECT_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CURRENT_DEVICE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_A2DPSOURCE_PLAYING_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_A2DPSOURCE_CODEC_VALUE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED,
|
|
{PermissionState::AND, {"ohos.permission.USE_BLUETOOTH", "ohos.permission.LOCATION"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_DISCOVERED,
|
|
{PermissionState::AND, {"ohos.permission.USE_BLUETOOTH", "ohos.permission.LOCATION"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_CLASS_VALUE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_CONNECTED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_ACL_DISCONNECTED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_NAME_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIR_STATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_BATTERY_VALUE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_UUID_VALUE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.DISCOVER_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_REMOTEDEVICE_PAIRING_REQ,
|
|
{PermissionState::DEFAULT, {"ohos.permission.DISCOVER_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HOST_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HOST_REQ_ENABLE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HOST_REQ_DISABLE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HOST_SCAN_MODE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_STARTED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HOST_DISCOVERY_FINISHED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_HOST_NAME_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_A2DPSINK_CONNECT_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_A2DPSINK_PLAYING_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_BLUETOOTH_A2DPSINK_AUDIO_STATE_UPDATE,
|
|
{PermissionState::DEFAULT, {"ohos.permission.USE_BLUETOOTH"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_NFC_ACTION_RF_FIELD_ON_DETECTED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.MANAGE_SECURE_SETTINGS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_NFC_ACTION_RF_FIELD_OFF_DETECTED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.MANAGE_SECURE_SETTINGS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_USER_ADDED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.MANAGE_USERS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_USER_REMOVED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.MANAGE_USERS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_ABILITY_ADDED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.LISTEN_BUNDLE_CHANGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_ABILITY_REMOVED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.LISTEN_BUNDLE_CHANGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_ABILITY_UPDATED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.LISTEN_BUNDLE_CHANGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_DISK_REMOVED,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_DISK_UNMOUNTED,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_DISK_MOUNTED,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_DISK_BAD_REMOVAL,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_DISK_UNMOUNTABLE,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_DISK_EJECT,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_VOLUME_REMOVED,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_VOLUME_UNMOUNTED,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_VOLUME_MOUNTED,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_VOLUME_BAD_REMOVAL,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_VOLUME_EJECT,
|
|
{PermissionState::OR, {"ohos.permission.WRITE_USER_STORAGE", "ohos.permission.READ_USER_STORAGE"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_VISIBLE_ACCOUNTS_UPDATED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.GET_APP_ACCOUNTS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_ACCOUNT_DELETED,
|
|
{PermissionState::DEFAULT, {"ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_FOUNDATION_READY,
|
|
{PermissionState::DEFAULT, {"ohos.permission.RECEIVER_STARTUP_COMPLETED"}}
|
|
},
|
|
{CommonEventSupport::COMMON_EVENT_SPLIT_SCREEN,
|
|
{PermissionState::DEFAULT, {"ohos.permission.RECEIVER_SPLIT_SCREEN"}}
|
|
}
|
|
};
|
|
|
|
CommonEventPermissionManager::CommonEventPermissionManager()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
void CommonEventPermissionManager::Init()
|
|
{
|
|
EVENT_LOGI("enter");
|
|
Permission per;
|
|
per.names.reserve(REVERSE);
|
|
|
|
for (auto &[eventName, permissions] : COMMON_EVENT_MAP) {
|
|
per.state = permissions.first;
|
|
for (auto &permissionName : permissions.second) {
|
|
per.names.emplace_back(permissionName);
|
|
}
|
|
multimap_.insert(std::make_pair(eventName, per));
|
|
per.names.clear();
|
|
}
|
|
}
|
|
|
|
Permission CommonEventPermissionManager::GetEventPermission(std::string event)
|
|
{
|
|
EVENT_LOGI("enter");
|
|
Permission per;
|
|
|
|
auto iter = multimap_.begin();
|
|
for (; iter != multimap_.end(); ++iter) {
|
|
if (!event.compare(iter->first)) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (iter == multimap_.end()) {
|
|
return per;
|
|
}
|
|
|
|
return iter->second;
|
|
}
|
|
} // namespace EventFwk
|
|
} // namespace OHOS
|