blob: 469cd5f7796e29750d08d22d7c29eb26c50821b9 [file] [log] [blame]
Christopher Wileyfdeb0f42015-09-11 15:38:22 -07001/*
2 * Copyright (C) 2015, 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
Steven Moreland9fccf582018-08-27 20:36:27 -070017#pragma once
Christopher Wileyfdeb0f42015-09-11 15:38:22 -070018
19#include <memory>
Jeongik Cha9a7f21f2019-02-13 14:42:47 +090020#include <ostream>
Christopher Wileyfdeb0f42015-09-11 15:38:22 -070021#include <string>
22
23#include <stdio.h>
24
Christopher Wileyfdeb0f42015-09-11 15:38:22 -070025namespace android {
26namespace aidl {
27
Jiyong Parkb78e15b2018-07-04 20:31:03 +090028class CodeWriter;
29using CodeWriterPtr = std::unique_ptr<CodeWriter>;
30
Christopher Wileyfdeb0f42015-09-11 15:38:22 -070031class CodeWriter {
32 public:
Jiyong Parkb78e15b2018-07-04 20:31:03 +090033 // Get a CodeWriter that writes to a file. When filename is "-",
34 // it is written to stdout.
35 static CodeWriterPtr ForFile(const std::string& filename);
36 // Get a CodeWriter that writes to a string buffer.
37 // The buffer gets updated only after Close() is called or the CodeWriter
38 // is deleted -- much like a real file.
39 static CodeWriterPtr ForString(std::string* buf);
Christopher Wileyfdeb0f42015-09-11 15:38:22 -070040 // Write a formatted string to this writer in the usual printf sense.
41 // Returns false on error.
Steven Morelandd3721d62019-12-09 13:04:16 -080042 virtual bool Write(const char* format, ...) __attribute__((format(printf, 2, 3)));
Steven Moreland201a3162019-03-06 12:04:46 -080043 void Indent();
44 void Dedent();
Jiyong Parkb78e15b2018-07-04 20:31:03 +090045 virtual bool Close();
46 virtual ~CodeWriter() = default;
47 CodeWriter() = default;
48
Jiyong Park22b4ecd2018-07-23 23:34:42 +090049 CodeWriter& operator<<(const char* s);
50 CodeWriter& operator<<(const std::string& str);
51
Jiyong Parka755dc72018-06-29 13:52:24 +090052 private:
Jiyong Parkb78e15b2018-07-04 20:31:03 +090053 CodeWriter(std::unique_ptr<std::ostream> ostream);
Jiyong Parka755dc72018-06-29 13:52:24 +090054 std::string ApplyIndent(const std::string& str);
Jiyong Parkb78e15b2018-07-04 20:31:03 +090055 const std::unique_ptr<std::ostream> ostream_;
Jiyong Parka755dc72018-06-29 13:52:24 +090056 int indent_level_ {0};
57 bool start_of_line_ {true};
Jiyong Parkb78e15b2018-07-04 20:31:03 +090058};
Christopher Wileyfdeb0f42015-09-11 15:38:22 -070059
60} // namespace aidl
61} // namespace android