Mathias Agopian | 7922fa2 | 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 | |
Martijn Coenen | e01f4f2 | 2016-05-12 12:33:28 +0200 | [diff] [blame] | 20 | #include <hwbinder/Static.h> |
Mathias Agopian | 7922fa2 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 21 | |
Steven Moreland | 507238e | 2020-07-14 22:12:20 +0000 | [diff] [blame] | 22 | #include "BufferedTextOutput.h" |
| 23 | |
Martijn Coenen | 4080edc | 2016-05-04 14:17:02 +0200 | [diff] [blame] | 24 | #include <hwbinder/IPCThreadState.h> |
Mathias Agopian | 7922fa2 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 25 | #include <utils/Log.h> |
| 26 | |
| 27 | namespace android { |
Martijn Coenen | f75a23d | 2016-08-01 11:55:17 +0200 | [diff] [blame] | 28 | namespace hardware { |
Mathias Agopian | 7922fa2 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 29 | |
Mathias Agopian | 4ea13dc | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 30 | // ------------ Text output streams |
| 31 | |
| 32 | Vector<int32_t> gTextBuffers; |
| 33 | |
| 34 | class LogTextOutput : public BufferedTextOutput |
| 35 | { |
| 36 | public: |
| 37 | LogTextOutput() : BufferedTextOutput(MULTITHREADED) { } |
| 38 | virtual ~LogTextOutput() { }; |
| 39 | |
| 40 | protected: |
| 41 | virtual status_t writeLines(const struct iovec& vec, size_t N) |
| 42 | { |
| 43 | //android_writevLog(&vec, N); <-- this is now a no-op |
| 44 | if (N != 1) ALOGI("WARNING: writeLines N=%zu\n", N); |
| 45 | ALOGI("%.*s", (int)vec.iov_len, (const char*) vec.iov_base); |
| 46 | return NO_ERROR; |
| 47 | } |
| 48 | }; |
| 49 | |
Mathias Agopian | 4ea13dc | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 50 | static LogTextOutput gLogTextOutput; |
Mathias Agopian | 4ea13dc | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 51 | TextOutput& alog(gLogTextOutput); |
Mathias Agopian | 4ea13dc | 2013-05-06 20:20:50 -0700 | [diff] [blame] | 52 | |
Martijn Coenen | f75a23d | 2016-08-01 11:55:17 +0200 | [diff] [blame] | 53 | } // namespace hardware |
Mathias Agopian | 7922fa2 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 54 | } // namespace android |