1 /* 2 * Copyright (c) 2021-2023 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 #include "core/common/container_scope.h" 17 18 #include <mutex> 19 20 #include "base/utils/utils.h" 21 22 namespace OHOS::Ace { 23 24 // preview not support multi-instance, always using default instance id 0. 25 #if defined(PREVIEW) 26 thread_local int32_t ContainerScope::currentId_ = 0; 27 #else 28 thread_local int32_t ContainerScope::currentId_ = -1; 29 #endif 30 std::function<void(int32_t)> ContainerScope::updateScopeNotify_; 31 std::shared_mutex ContainerScope::scopeLock_; 32 CurrentId()33int32_t ContainerScope::CurrentId() 34 { 35 return currentId_; 36 } 37 UpdateCurrent(int32_t id)38void ContainerScope::UpdateCurrent(int32_t id) 39 { 40 currentId_ = id; 41 std::shared_lock<std::shared_mutex> readLock(scopeLock_); 42 CHECK_NULL_VOID_NOLOG(updateScopeNotify_); 43 updateScopeNotify_(id); 44 } 45 SetScopeNotify(std::function<void (int32_t)> && notify)46void ContainerScope::SetScopeNotify(std::function<void(int32_t)>&& notify) 47 { 48 std::unique_lock<std::shared_mutex> writeLock(scopeLock_); 49 updateScopeNotify_ = std::move(notify); 50 } 51 52 } // namespace OHOS::Ace