| The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2005 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 |  | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 17 | #define LOG_TAG "misc" | 
|  | 18 |  | 
| The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | #include <utils/misc.h> | 
| Steven Moreland | 8da9613 | 2017-04-13 15:17:59 -0700 | [diff] [blame] | 20 |  | 
|  | 21 | #include <pthread.h> | 
|  | 22 |  | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 23 | #include <utils/Log.h> | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 24 | #include <utils/Vector.h> | 
|  | 25 |  | 
| Jiyong Park | 0b3c24b | 2017-05-26 17:57:18 +0900 | [diff] [blame] | 26 | #if defined(__ANDROID__) | 
|  | 27 | #include <dlfcn.h> | 
|  | 28 | #include <vndksupport/linker.h> | 
|  | 29 | #endif | 
|  | 30 |  | 
|  | 31 | extern "C" void do_report_sysprop_change(); | 
|  | 32 |  | 
| The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 33 | using namespace android; | 
|  | 34 |  | 
|  | 35 | namespace android { | 
|  | 36 |  | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 37 | struct sysprop_change_callback_info { | 
|  | 38 | sysprop_change_callback callback; | 
|  | 39 | int priority; | 
|  | 40 | }; | 
| The Android Open Source Project | cbb1011 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 41 |  | 
| Yabin Cui | 4a6e5a3 | 2015-01-26 19:48:54 -0800 | [diff] [blame] | 42 | #if !defined(_WIN32) | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 43 | static pthread_mutex_t gSyspropMutex = PTHREAD_MUTEX_INITIALIZER; | 
|  | 44 | static Vector<sysprop_change_callback_info>* gSyspropList = NULL; | 
|  | 45 | #endif | 
|  | 46 |  | 
|  | 47 | void add_sysprop_change_callback(sysprop_change_callback cb, int priority) { | 
| Yabin Cui | 4a6e5a3 | 2015-01-26 19:48:54 -0800 | [diff] [blame] | 48 | #if !defined(_WIN32) | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 49 | pthread_mutex_lock(&gSyspropMutex); | 
|  | 50 | if (gSyspropList == NULL) { | 
|  | 51 | gSyspropList = new Vector<sysprop_change_callback_info>(); | 
|  | 52 | } | 
|  | 53 | sysprop_change_callback_info info; | 
|  | 54 | info.callback = cb; | 
|  | 55 | info.priority = priority; | 
|  | 56 | bool added = false; | 
|  | 57 | for (size_t i=0; i<gSyspropList->size(); i++) { | 
|  | 58 | if (priority >= gSyspropList->itemAt(i).priority) { | 
|  | 59 | gSyspropList->insertAt(info, i); | 
|  | 60 | added = true; | 
|  | 61 | break; | 
|  | 62 | } | 
|  | 63 | } | 
|  | 64 | if (!added) { | 
|  | 65 | gSyspropList->add(info); | 
|  | 66 | } | 
|  | 67 | pthread_mutex_unlock(&gSyspropMutex); | 
|  | 68 | #endif | 
|  | 69 | } | 
|  | 70 |  | 
| Jiyong Park | 0b3c24b | 2017-05-26 17:57:18 +0900 | [diff] [blame] | 71 | #if defined(__ANDROID__) | 
|  | 72 | void (*get_report_sysprop_change_func())() { | 
|  | 73 | void (*func)() = nullptr; | 
|  | 74 | void* handle = android_load_sphal_library("libutils.so", RTLD_NOW); | 
|  | 75 | if (handle != nullptr) { | 
|  | 76 | func = reinterpret_cast<decltype(func)>(dlsym(handle, "do_report_sysprop_change")); | 
|  | 77 | } | 
|  | 78 |  | 
|  | 79 | return func; | 
|  | 80 | } | 
|  | 81 | #endif | 
|  | 82 |  | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 83 | void report_sysprop_change() { | 
| Jiyong Park | 0b3c24b | 2017-05-26 17:57:18 +0900 | [diff] [blame] | 84 | do_report_sysprop_change(); | 
|  | 85 |  | 
|  | 86 | #if defined(__ANDROID__) | 
|  | 87 | // libutils.so is double loaded; from the default namespace and from the | 
|  | 88 | // 'sphal' namespace. Redirect the sysprop change event to the other instance | 
|  | 89 | // of libutils.so loaded in the 'sphal' namespace so that listeners attached | 
|  | 90 | // to that instance is also notified with this event. | 
|  | 91 | static auto func = get_report_sysprop_change_func(); | 
|  | 92 | if (func != nullptr) { | 
|  | 93 | (*func)(); | 
|  | 94 | } | 
|  | 95 | #endif | 
|  | 96 | } | 
|  | 97 |  | 
|  | 98 | };  // namespace android | 
|  | 99 |  | 
|  | 100 | void do_report_sysprop_change() { | 
| Yabin Cui | 4a6e5a3 | 2015-01-26 19:48:54 -0800 | [diff] [blame] | 101 | #if !defined(_WIN32) | 
| Dianne Hackborn | c1309d7 | 2012-05-08 18:54:22 -0700 | [diff] [blame] | 102 | pthread_mutex_lock(&gSyspropMutex); | 
|  | 103 | Vector<sysprop_change_callback_info> listeners; | 
|  | 104 | if (gSyspropList != NULL) { | 
|  | 105 | listeners = *gSyspropList; | 
|  | 106 | } | 
|  | 107 | pthread_mutex_unlock(&gSyspropMutex); | 
|  | 108 |  | 
|  | 109 | //ALOGI("Reporting sysprop change to %d listeners", listeners.size()); | 
|  | 110 | for (size_t i=0; i<listeners.size(); i++) { | 
|  | 111 | listeners[i].callback(); | 
|  | 112 | } | 
|  | 113 | #endif | 
|  | 114 | } |