blob: fdd532aec6a8c5746630d8c027760169560951d7 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 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#ifndef ANDROID_BUFFEREDTEXTOUTPUT_H
18#define ANDROID_BUFFEREDTEXTOUTPUT_H
19
Mathias Agopian002e1e52013-05-06 20:20:50 -070020#include <binder/TextOutput.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021#include <utils/threads.h>
Colin Crossf5f8fa02013-07-23 14:52:34 -070022#include <sys/uio.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023
24// ---------------------------------------------------------------------------
25namespace android {
26
27class BufferedTextOutput : public TextOutput
28{
29public:
30 //** Flags for constructor */
31 enum {
32 MULTITHREADED = 0x0001
33 };
34
Chih-Hung Hsieh5ca1ea42018-12-20 15:42:22 -080035 explicit BufferedTextOutput(uint32_t flags = 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036 virtual ~BufferedTextOutput();
37
38 virtual status_t print(const char* txt, size_t len);
39 virtual void moveIndent(int delta);
40
41 virtual void pushBundle();
42 virtual void popBundle();
43
44protected:
45 virtual status_t writeLines(const struct iovec& vec, size_t N) = 0;
46
47private:
48 struct BufferState;
49 struct ThreadState;
Elliott Hughes308e9802020-12-03 15:42:02 -080050
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051 BufferState*getBuffer() const;
52
53 uint32_t mFlags;
54 const int32_t mSeq;
55 const int32_t mIndex;
56
57 Mutex mLock;
58 BufferState* mGlobalState;
59};
60
61// ---------------------------------------------------------------------------
Steven Moreland61ff8492019-09-26 16:05:45 -070062} // namespace android
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063
64#endif // ANDROID_BUFFEREDTEXTOUTPUT_H