| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2008 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 <private/binder/Static.h> | 
|  | 21 |  | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 22 | #include <binder/BufferedTextOutput.h> | 
| Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 23 | #include <binder/IPCThreadState.h> | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 24 | #include <utils/Log.h> | 
|  | 25 |  | 
|  | 26 | namespace android { | 
|  | 27 |  | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 28 | // ------------ Text output streams | 
|  | 29 |  | 
|  | 30 | Vector<int32_t> gTextBuffers; | 
|  | 31 |  | 
|  | 32 | class LogTextOutput : public BufferedTextOutput | 
|  | 33 | { | 
|  | 34 | public: | 
|  | 35 | LogTextOutput() : BufferedTextOutput(MULTITHREADED) { } | 
|  | 36 | virtual ~LogTextOutput() { }; | 
|  | 37 |  | 
|  | 38 | protected: | 
|  | 39 | virtual status_t writeLines(const struct iovec& vec, size_t N) | 
|  | 40 | { | 
|  | 41 | //android_writevLog(&vec, N);       <-- this is now a no-op | 
|  | 42 | if (N != 1) ALOGI("WARNING: writeLines N=%zu\n", N); | 
|  | 43 | ALOGI("%.*s", (int)vec.iov_len, (const char*) vec.iov_base); | 
|  | 44 | return NO_ERROR; | 
|  | 45 | } | 
|  | 46 | }; | 
|  | 47 |  | 
|  | 48 | class FdTextOutput : public BufferedTextOutput | 
|  | 49 | { | 
|  | 50 | public: | 
| Chih-Hung Hsieh | e2347b7 | 2016-04-25 15:41:05 -0700 | [diff] [blame] | 51 | explicit FdTextOutput(int fd) : BufferedTextOutput(MULTITHREADED), mFD(fd) { } | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 52 | virtual ~FdTextOutput() { }; | 
|  | 53 |  | 
|  | 54 | protected: | 
|  | 55 | virtual status_t writeLines(const struct iovec& vec, size_t N) | 
|  | 56 | { | 
|  | 57 | writev(mFD, &vec, N); | 
|  | 58 | return NO_ERROR; | 
|  | 59 | } | 
|  | 60 |  | 
|  | 61 | private: | 
|  | 62 | int mFD; | 
|  | 63 | }; | 
|  | 64 |  | 
|  | 65 | static LogTextOutput gLogTextOutput; | 
|  | 66 | static FdTextOutput gStdoutTextOutput(STDOUT_FILENO); | 
|  | 67 | static FdTextOutput gStderrTextOutput(STDERR_FILENO); | 
|  | 68 |  | 
|  | 69 | TextOutput& alog(gLogTextOutput); | 
|  | 70 | TextOutput& aout(gStdoutTextOutput); | 
|  | 71 | TextOutput& aerr(gStderrTextOutput); | 
|  | 72 |  | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 73 | // ------------ ProcessState.cpp | 
|  | 74 |  | 
|  | 75 | Mutex gProcessMutex; | 
|  | 76 | sp<ProcessState> gProcess; | 
|  | 77 |  | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 78 | class LibBinderIPCtStatics | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 79 | { | 
|  | 80 | public: | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 81 | LibBinderIPCtStatics() | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 82 | { | 
|  | 83 | } | 
|  | 84 |  | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 85 | ~LibBinderIPCtStatics() | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 86 | { | 
|  | 87 | IPCThreadState::shutdown(); | 
|  | 88 | } | 
|  | 89 | }; | 
|  | 90 |  | 
| Mathias Agopian | 002e1e5 | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 91 | static LibBinderIPCtStatics gIPCStatics; | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 92 |  | 
| Dianne Hackborn | 7e790af | 2014-11-11 12:22:53 -0800 | [diff] [blame] | 93 | // ------------ IServiceManager.cpp | 
| Mathias Agopian | 208059f | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 94 |  | 
|  | 95 | Mutex gDefaultServiceManagerLock; | 
|  | 96 | sp<IServiceManager> gDefaultServiceManager; | 
|  | 97 | sp<IPermissionController> gPermissionController; | 
|  | 98 |  | 
|  | 99 | }   // namespace android |