2020-06-23 17:48:40 +00:00
|
|
|
// Copyright 2020 The Tint Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#ifndef SRC_WRITER_TEXT_GENERATOR_H_
|
|
|
|
#define SRC_WRITER_TEXT_GENERATOR_H_
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
#include "src/diagnostic/diagnostic.h"
|
|
|
|
|
2020-06-23 17:48:40 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace writer {
|
|
|
|
|
|
|
|
/// Helper methods for generators which are creating text output
|
|
|
|
class TextGenerator {
|
|
|
|
public:
|
|
|
|
/// Constructor
|
2020-12-02 21:17:58 +00:00
|
|
|
TextGenerator();
|
2020-06-23 17:48:40 +00:00
|
|
|
~TextGenerator();
|
|
|
|
|
|
|
|
/// Increment the emitter indent level
|
|
|
|
void increment_indent() { indent_ += 2; }
|
|
|
|
/// Decrement the emiter indent level
|
|
|
|
void decrement_indent() {
|
|
|
|
if (indent_ < 2) {
|
|
|
|
indent_ = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
indent_ -= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Writes the current indent to the output stream
|
|
|
|
void make_indent();
|
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
/// Writes the current indent to `out`
|
|
|
|
/// @param out the stream to write the indent to
|
|
|
|
void make_indent(std::ostream& out) const;
|
|
|
|
|
2020-06-23 17:48:40 +00:00
|
|
|
/// @returns the result data
|
|
|
|
std::string result() const { return out_.str(); }
|
|
|
|
|
2021-02-17 20:13:34 +00:00
|
|
|
/// @returns the list of diagnostics raised by the generator.
|
|
|
|
const diag::List& Diagnostics() const { return diagnostics_; }
|
|
|
|
|
2020-06-23 17:48:40 +00:00
|
|
|
/// @returns the error
|
2021-02-17 20:13:34 +00:00
|
|
|
std::string error() const { return diagnostics_.str(); }
|
2020-06-23 17:48:40 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/// The text output stream
|
|
|
|
std::ostringstream out_;
|
2021-02-17 20:13:34 +00:00
|
|
|
/// Diagnostics generated by the generator
|
|
|
|
diag::List diagnostics_;
|
2020-06-23 17:48:40 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
size_t indent_ = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace writer
|
|
|
|
} // namespace tint
|
|
|
|
|
|
|
|
#endif // SRC_WRITER_TEXT_GENERATOR_H_
|