Martijn Coenen | 7211016 | 2016-08-19 14:28:25 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | // All static variables go here, to control initialization and |
| 18 | // destruction order in the library. |
| 19 | |
Steven Moreland | 9cbef74 | 2018-06-26 16:23:50 -0700 | [diff] [blame] | 20 | #include <InternalStatic.h> |
Martijn Coenen | 7211016 | 2016-08-19 14:28:25 +0200 | [diff] [blame] | 21 | #include <hidl/Static.h> |
| 22 | |
Yifan Hong | 953e6b0 | 2017-03-16 14:52:40 -0700 | [diff] [blame] | 23 | #include <android/hidl/manager/1.0/IServiceManager.h> |
| 24 | #include <utils/Mutex.h> |
| 25 | |
Martijn Coenen | 7211016 | 2016-08-19 14:28:25 +0200 | [diff] [blame] | 26 | namespace android { |
| 27 | namespace hardware { |
Yifan Hong | 953e6b0 | 2017-03-16 14:52:40 -0700 | [diff] [blame] | 28 | namespace details { |
Martijn Coenen | 7211016 | 2016-08-19 14:28:25 +0200 | [diff] [blame] | 29 | |
Steven Moreland | 6538e75 | 2018-02-08 16:49:23 +0000 | [diff] [blame] | 30 | // Deprecated; kept for ABI compatibility. Use getBnConstructorMap. |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame^] | 31 | DoNotDestruct<BnConstructorMap> gBnConstructorMap{}; |
Steven Moreland | 6538e75 | 2018-02-08 16:49:23 +0000 | [diff] [blame] | 32 | |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame^] | 33 | DoNotDestruct<ConcurrentMap<const ::android::hidl::base::V1_0::IBase*, |
| 34 | wp<::android::hardware::BHwBinder>>> |
| 35 | gBnMap{}; |
Steven Moreland | 2932c13 | 2017-07-21 19:29:54 +0000 | [diff] [blame] | 36 | |
Steven Moreland | 399533d | 2019-01-07 14:13:07 -0800 | [diff] [blame] | 37 | // TODO(b/122472540): replace with single, hidden map |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame^] | 38 | DoNotDestruct<ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, SchedPrio>> gServicePrioMap{}; |
| 39 | DoNotDestruct<ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, bool>> gServiceSidMap{}; |
Martijn Coenen | 6b9cc8d | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 40 | |
Steven Moreland | 6538e75 | 2018-02-08 16:49:23 +0000 | [diff] [blame] | 41 | // Deprecated; kept for ABI compatibility. Use getBsConstructorMap. |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame^] | 42 | DoNotDestruct<BsConstructorMap> gBsConstructorMap{}; |
Steven Moreland | 6538e75 | 2018-02-08 16:49:23 +0000 | [diff] [blame] | 43 | |
Yifan Hong | 97f88f3 | 2017-11-09 16:05:37 -0800 | [diff] [blame] | 44 | // For static executables, it is not guaranteed that gBnConstructorMap are initialized before |
| 45 | // used in HAL definition libraries. |
| 46 | BnConstructorMap& getBnConstructorMap() { |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame^] | 47 | static BnConstructorMap& map = *new BnConstructorMap(); |
Yifan Hong | 97f88f3 | 2017-11-09 16:05:37 -0800 | [diff] [blame] | 48 | return map; |
| 49 | } |
| 50 | |
| 51 | BsConstructorMap& getBsConstructorMap() { |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame^] | 52 | static BsConstructorMap& map = *new BsConstructorMap(); |
Yifan Hong | 97f88f3 | 2017-11-09 16:05:37 -0800 | [diff] [blame] | 53 | return map; |
| 54 | } |
Yifan Hong | b2c9c75 | 2016-12-07 15:15:41 -0800 | [diff] [blame] | 55 | |
Yifan Hong | 953e6b0 | 2017-03-16 14:52:40 -0700 | [diff] [blame] | 56 | } // namespace details |
| 57 | } // namespace hardware |
| 58 | } // namespace android |