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 | |
| 20 | #include <hidl/Static.h> |
Steven Moreland | 55d2dcd | 2020-02-10 17:20:56 -0800 | [diff] [blame] | 21 | #include "InternalStatic.h" |
Martijn Coenen | 7211016 | 2016-08-19 14:28:25 +0200 | [diff] [blame] | 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 | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame] | 30 | DoNotDestruct<ConcurrentMap<const ::android::hidl::base::V1_0::IBase*, |
| 31 | wp<::android::hardware::BHwBinder>>> |
| 32 | gBnMap{}; |
Steven Moreland | 2932c13 | 2017-07-21 19:29:54 +0000 | [diff] [blame] | 33 | |
Steven Moreland | 399533d | 2019-01-07 14:13:07 -0800 | [diff] [blame] | 34 | // TODO(b/122472540): replace with single, hidden map |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame] | 35 | DoNotDestruct<ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, SchedPrio>> gServicePrioMap{}; |
| 36 | DoNotDestruct<ConcurrentMap<wp<::android::hidl::base::V1_0::IBase>, bool>> gServiceSidMap{}; |
Martijn Coenen | 6b9cc8d | 2017-04-21 16:21:31 -0700 | [diff] [blame] | 37 | |
Yifan Hong | 97f88f3 | 2017-11-09 16:05:37 -0800 | [diff] [blame] | 38 | BnConstructorMap& getBnConstructorMap() { |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame] | 39 | static BnConstructorMap& map = *new BnConstructorMap(); |
Yifan Hong | 97f88f3 | 2017-11-09 16:05:37 -0800 | [diff] [blame] | 40 | return map; |
| 41 | } |
| 42 | |
| 43 | BsConstructorMap& getBsConstructorMap() { |
Steven Moreland | b1c7d06 | 2019-04-22 10:27:47 -0700 | [diff] [blame] | 44 | static BsConstructorMap& map = *new BsConstructorMap(); |
Yifan Hong | 97f88f3 | 2017-11-09 16:05:37 -0800 | [diff] [blame] | 45 | return map; |
| 46 | } |
Yifan Hong | b2c9c75 | 2016-12-07 15:15:41 -0800 | [diff] [blame] | 47 | |
Yifan Hong | 953e6b0 | 2017-03-16 14:52:40 -0700 | [diff] [blame] | 48 | } // namespace details |
| 49 | } // namespace hardware |
| 50 | } // namespace android |