blob: eba22fd14725a6ab2e59c47a150fe9eadb2b7d83 [file] [log] [blame]
Nick Kledzikf60a9272012-12-12 20:46:15 +00001//===- lib/Support/YAMLTraits.cpp -----------------------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Nick Kledzikf60a9272012-12-12 20:46:15 +00006//
7//===----------------------------------------------------------------------===//
8
Benjamin Kramer16132e62015-03-23 18:07:13 +00009#include "llvm/Support/YAMLTraits.h"
Eugene Zelenko72208a82017-06-21 23:19:47 +000010#include "llvm/ADT/STLExtras.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000011#include "llvm/ADT/SmallString.h"
Pavel Labathec000f42017-06-23 12:55:02 +000012#include "llvm/ADT/StringExtras.h"
Eugene Zelenko72208a82017-06-21 23:19:47 +000013#include "llvm/ADT/StringRef.h"
Nick Kledzikf60a9272012-12-12 20:46:15 +000014#include "llvm/ADT/Twine.h"
15#include "llvm/Support/Casting.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000016#include "llvm/Support/Errc.h"
Nick Kledzikf60a9272012-12-12 20:46:15 +000017#include "llvm/Support/ErrorHandling.h"
Benjamin Kramercbe05842012-12-12 20:55:44 +000018#include "llvm/Support/Format.h"
Alex Lorenz68e787b2015-05-14 23:08:22 +000019#include "llvm/Support/LineIterator.h"
Eugene Zelenko72208a82017-06-21 23:19:47 +000020#include "llvm/Support/MemoryBuffer.h"
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +000021#include "llvm/Support/Unicode.h"
Nick Kledzikf60a9272012-12-12 20:46:15 +000022#include "llvm/Support/YAMLParser.h"
Benjamin Kramercbe05842012-12-12 20:55:44 +000023#include "llvm/Support/raw_ostream.h"
Eugene Zelenko72208a82017-06-21 23:19:47 +000024#include <algorithm>
25#include <cassert>
26#include <cstdint>
27#include <cstdlib>
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000028#include <cstring>
Eugene Zelenko72208a82017-06-21 23:19:47 +000029#include <string>
30#include <vector>
31
Benjamin Kramer36b0f122012-12-12 22:40:02 +000032using namespace llvm;
33using namespace yaml;
Nick Kledzikf60a9272012-12-12 20:46:15 +000034
35//===----------------------------------------------------------------------===//
36// IO
37//===----------------------------------------------------------------------===//
38
Eugene Zelenko72208a82017-06-21 23:19:47 +000039IO::IO(void *Context) : Ctxt(Context) {}
Nick Kledzikf60a9272012-12-12 20:46:15 +000040
Eugene Zelenko72208a82017-06-21 23:19:47 +000041IO::~IO() = default;
Nick Kledzikf60a9272012-12-12 20:46:15 +000042
George Rimar4e717022019-08-30 13:39:22 +000043void *IO::getContext() const {
Nick Kledzikf60a9272012-12-12 20:46:15 +000044 return Ctxt;
45}
46
47void IO::setContext(void *Context) {
48 Ctxt = Context;
49}
50
Nick Kledzikf60a9272012-12-12 20:46:15 +000051//===----------------------------------------------------------------------===//
52// Input
53//===----------------------------------------------------------------------===//
54
Mehdi Amini3ab3fef2016-11-28 21:38:52 +000055Input::Input(StringRef InputContent, void *Ctxt,
56 SourceMgr::DiagHandlerTy DiagHandler, void *DiagHandlerCtxt)
Eugene Zelenko72208a82017-06-21 23:19:47 +000057 : IO(Ctxt), Strm(new Stream(InputContent, SrcMgr, false, &EC)) {
Alexander Kornienko681e37c2013-11-18 15:50:04 +000058 if (DiagHandler)
59 SrcMgr.setDiagHandler(DiagHandler, DiagHandlerCtxt);
Nick Kledzikf60a9272012-12-12 20:46:15 +000060 DocIterator = Strm->begin();
61}
62
Alex Bradbury16843172017-07-17 11:41:30 +000063Input::Input(MemoryBufferRef Input, void *Ctxt,
64 SourceMgr::DiagHandlerTy DiagHandler, void *DiagHandlerCtxt)
65 : IO(Ctxt), Strm(new Stream(Input, SrcMgr, false, &EC)) {
66 if (DiagHandler)
67 SrcMgr.setDiagHandler(DiagHandler, DiagHandlerCtxt);
68 DocIterator = Strm->begin();
69}
70
Eugene Zelenko72208a82017-06-21 23:19:47 +000071Input::~Input() = default;
Nick Kledzik0dcef842013-01-08 21:04:44 +000072
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000073std::error_code Input::error() { return EC; }
Nick Kledzikf60a9272012-12-12 20:46:15 +000074
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000075// Pin the vtables to this file.
76void Input::HNode::anchor() {}
77void Input::EmptyHNode::anchor() {}
78void Input::ScalarHNode::anchor() {}
David Blaikied759fe52014-09-15 18:39:24 +000079void Input::MapHNode::anchor() {}
80void Input::SequenceHNode::anchor() {}
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000081
George Rimar4e717022019-08-30 13:39:22 +000082bool Input::outputting() const {
Nick Kledzikf60a9272012-12-12 20:46:15 +000083 return false;
84}
85
86bool Input::setCurrentDocument() {
Benjamin Kramer36b0f122012-12-12 22:40:02 +000087 if (DocIterator != Strm->end()) {
Nick Kledzikf60a9272012-12-12 20:46:15 +000088 Node *N = DocIterator->getRoot();
Alexander Kornienko681e37c2013-11-18 15:50:04 +000089 if (!N) {
Alex Lorenz7a38d752015-05-12 17:44:32 +000090 assert(Strm->failed() && "Root is NULL iff parsing failed");
Rafael Espindola2a826e42014-06-13 17:20:48 +000091 EC = make_error_code(errc::invalid_argument);
Alexander Kornienko681e37c2013-11-18 15:50:04 +000092 return false;
93 }
94
Benjamin Kramer36b0f122012-12-12 22:40:02 +000095 if (isa<NullNode>(N)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +000096 // Empty files are allowed and ignored
97 ++DocIterator;
98 return setCurrentDocument();
99 }
Scott Linderad115b72018-10-10 18:14:02 +0000100 TopNode = createHNodes(N);
Nick Kledzik0dcef842013-01-08 21:04:44 +0000101 CurrentNode = TopNode.get();
Nick Kledzikf60a9272012-12-12 20:46:15 +0000102 return true;
103 }
104 return false;
105}
106
Simon Atanasyanf97af8a2014-05-31 04:51:07 +0000107bool Input::nextDocument() {
108 return ++DocIterator != Strm->end();
Nick Kledzikf60a9272012-12-12 20:46:15 +0000109}
NAKAMURA Takumi9439c522013-11-14 07:08:49 +0000110
Alex Lorenz2bdb4e12015-05-27 18:02:19 +0000111const Node *Input::getCurrentNode() const {
112 return CurrentNode ? CurrentNode->_node : nullptr;
113}
114
Nick Kledzik1e6033c2013-11-14 00:59:59 +0000115bool Input::mapTag(StringRef Tag, bool Default) {
George Rimar45d042e2019-04-25 09:59:55 +0000116 // CurrentNode can be null if setCurrentDocument() was unable to
117 // parse the document because it was invalid or empty.
118 if (!CurrentNode)
119 return false;
120
NAKAMURA Takumi5b94d282013-11-14 07:08:56 +0000121 std::string foundTag = CurrentNode->_node->getVerbatimTag();
Nick Kledzik1e6033c2013-11-14 00:59:59 +0000122 if (foundTag.empty()) {
123 // If no tag found and 'Tag' is the default, say it was found.
124 return Default;
125 }
Alex Lorenz7a38d752015-05-12 17:44:32 +0000126 // Return true iff found tag matches supplied tag.
Nick Kledzik1e6033c2013-11-14 00:59:59 +0000127 return Tag.equals(foundTag);
128}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000129
130void Input::beginMapping() {
Mehdi Amini43c24282016-11-28 04:57:04 +0000131 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000132 return;
Alexander Kornienko681e37c2013-11-18 15:50:04 +0000133 // CurrentNode can be null if the document is empty.
134 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000135 if (MN) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000136 MN->ValidKeys.clear();
137 }
138}
139
Peter Collingbourne87dd2ab2017-01-04 03:51:36 +0000140std::vector<StringRef> Input::keys() {
141 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode);
142 std::vector<StringRef> Ret;
143 if (!MN) {
144 setError(CurrentNode, "not a mapping");
145 return Ret;
146 }
147 for (auto &P : MN->Mapping)
148 Ret.push_back(P.first());
149 return Ret;
150}
151
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000152bool Input::preflightKey(const char *Key, bool Required, bool, bool &UseDefault,
153 void *&SaveInfo) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000154 UseDefault = false;
Mehdi Amini43c24282016-11-28 04:57:04 +0000155 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000156 return false;
Alexander Kornienko681e37c2013-11-18 15:50:04 +0000157
158 // CurrentNode is null for empty documents, which is an error in case required
159 // nodes are present.
160 if (!CurrentNode) {
161 if (Required)
Rafael Espindola2a826e42014-06-13 17:20:48 +0000162 EC = make_error_code(errc::invalid_argument);
Alexander Kornienko681e37c2013-11-18 15:50:04 +0000163 return false;
164 }
165
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000166 MapHNode *MN = dyn_cast<MapHNode>(CurrentNode);
167 if (!MN) {
Dave Leec6f2e692017-11-16 17:46:11 +0000168 if (Required || !isa<EmptyHNode>(CurrentNode))
169 setError(CurrentNode, "not a mapping");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000170 return false;
171 }
172 MN->ValidKeys.push_back(Key);
David Blaikied759fe52014-09-15 18:39:24 +0000173 HNode *Value = MN->Mapping[Key].get();
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000174 if (!Value) {
175 if (Required)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000176 setError(CurrentNode, Twine("missing required key '") + Key + "'");
177 else
178 UseDefault = true;
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000179 return false;
Nick Kledzikf60a9272012-12-12 20:46:15 +0000180 }
181 SaveInfo = CurrentNode;
182 CurrentNode = Value;
183 return true;
184}
185
186void Input::postflightKey(void *saveInfo) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000187 CurrentNode = reinterpret_cast<HNode *>(saveInfo);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000188}
189
190void Input::endMapping() {
Mehdi Amini43c24282016-11-28 04:57:04 +0000191 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000192 return;
Alexander Kornienko681e37c2013-11-18 15:50:04 +0000193 // CurrentNode can be null if the document is empty.
194 MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000195 if (!MN)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000196 return;
Simon Atanasyan878bd8a2014-04-10 06:02:49 +0000197 for (const auto &NN : MN->Mapping) {
Peter Collingbourneefdff712017-01-04 20:10:43 +0000198 if (!is_contained(MN->ValidKeys, NN.first())) {
David Blaikied759fe52014-09-15 18:39:24 +0000199 setError(NN.second.get(), Twine("unknown key '") + NN.first() + "'");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000200 break;
201 }
202 }
203}
204
Alex Lorenzb1225082015-05-04 20:11:40 +0000205void Input::beginFlowMapping() { beginMapping(); }
206
207void Input::endFlowMapping() { endMapping(); }
208
Nick Kledzikf60a9272012-12-12 20:46:15 +0000209unsigned Input::beginSequence() {
Justin Bogner64d2cdf2015-03-02 17:26:43 +0000210 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode))
Nick Kledzikf60a9272012-12-12 20:46:15 +0000211 return SQ->Entries.size();
Justin Bogner64d2cdf2015-03-02 17:26:43 +0000212 if (isa<EmptyHNode>(CurrentNode))
213 return 0;
214 // Treat case where there's a scalar "null" value as an empty sequence.
215 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) {
216 if (isNull(SN->value()))
217 return 0;
Nick Kledzikf60a9272012-12-12 20:46:15 +0000218 }
Justin Bogner64d2cdf2015-03-02 17:26:43 +0000219 // Any other type of HNode is an error.
220 setError(CurrentNode, "not a sequence");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000221 return 0;
222}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000223
Nick Kledzikf60a9272012-12-12 20:46:15 +0000224void Input::endSequence() {
225}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000226
Nick Kledzikf60a9272012-12-12 20:46:15 +0000227bool Input::preflightElement(unsigned Index, void *&SaveInfo) {
Mehdi Amini43c24282016-11-28 04:57:04 +0000228 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000229 return false;
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000230 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000231 SaveInfo = CurrentNode;
David Blaikied759fe52014-09-15 18:39:24 +0000232 CurrentNode = SQ->Entries[Index].get();
Nick Kledzikf60a9272012-12-12 20:46:15 +0000233 return true;
234 }
235 return false;
236}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000237
Nick Kledzikf60a9272012-12-12 20:46:15 +0000238void Input::postflightElement(void *SaveInfo) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000239 CurrentNode = reinterpret_cast<HNode *>(SaveInfo);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000240}
241
Justin Bogner64d2cdf2015-03-02 17:26:43 +0000242unsigned Input::beginFlowSequence() { return beginSequence(); }
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000243
Nick Kledzikf60a9272012-12-12 20:46:15 +0000244bool Input::preflightFlowElement(unsigned index, void *&SaveInfo) {
Mehdi Amini43c24282016-11-28 04:57:04 +0000245 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000246 return false;
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000247 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000248 SaveInfo = CurrentNode;
David Blaikied759fe52014-09-15 18:39:24 +0000249 CurrentNode = SQ->Entries[index].get();
Nick Kledzikf60a9272012-12-12 20:46:15 +0000250 return true;
251 }
252 return false;
253}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000254
Nick Kledzikf60a9272012-12-12 20:46:15 +0000255void Input::postflightFlowElement(void *SaveInfo) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000256 CurrentNode = reinterpret_cast<HNode *>(SaveInfo);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000257}
258
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000259void Input::endFlowSequence() {
260}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000261
262void Input::beginEnumScalar() {
263 ScalarMatchFound = false;
264}
265
266bool Input::matchEnumScalar(const char *Str, bool) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000267 if (ScalarMatchFound)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000268 return false;
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000269 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) {
270 if (SN->value().equals(Str)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000271 ScalarMatchFound = true;
272 return true;
273 }
274 }
275 return false;
276}
277
Michael J. Spencer731cae32015-01-23 21:57:50 +0000278bool Input::matchEnumFallback() {
279 if (ScalarMatchFound)
280 return false;
281 ScalarMatchFound = true;
282 return true;
283}
284
Nick Kledzikf60a9272012-12-12 20:46:15 +0000285void Input::endEnumScalar() {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000286 if (!ScalarMatchFound) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000287 setError(CurrentNode, "unknown enumerated scalar");
288 }
289}
290
Nick Kledzikf60a9272012-12-12 20:46:15 +0000291bool Input::beginBitSetScalar(bool &DoClear) {
292 BitValuesUsed.clear();
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000293 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000294 BitValuesUsed.insert(BitValuesUsed.begin(), SQ->Entries.size(), false);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000295 } else {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000296 setError(CurrentNode, "expected sequence of bit values");
297 }
298 DoClear = true;
299 return true;
300}
301
302bool Input::bitSetMatch(const char *Str, bool) {
Mehdi Amini43c24282016-11-28 04:57:04 +0000303 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000304 return false;
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000305 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000306 unsigned Index = 0;
David Blaikied759fe52014-09-15 18:39:24 +0000307 for (auto &N : SQ->Entries) {
308 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(N.get())) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000309 if (SN->value().equals(Str)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000310 BitValuesUsed[Index] = true;
311 return true;
312 }
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000313 } else {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000314 setError(CurrentNode, "unexpected scalar in sequence of bit values");
315 }
316 ++Index;
317 }
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000318 } else {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000319 setError(CurrentNode, "expected sequence of bit values");
320 }
321 return false;
322}
323
324void Input::endBitSetScalar() {
Mehdi Amini43c24282016-11-28 04:57:04 +0000325 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000326 return;
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000327 if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000328 assert(BitValuesUsed.size() == SQ->Entries.size());
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000329 for (unsigned i = 0; i < SQ->Entries.size(); ++i) {
330 if (!BitValuesUsed[i]) {
David Blaikied759fe52014-09-15 18:39:24 +0000331 setError(SQ->Entries[i].get(), "unknown bit value");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000332 return;
333 }
334 }
335 }
336}
337
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +0000338void Input::scalarString(StringRef &S, QuotingType) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000339 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000340 S = SN->value();
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000341 } else {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000342 setError(CurrentNode, "unexpected scalar");
343 }
344}
345
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +0000346void Input::blockScalarString(StringRef &S) { scalarString(S, QuotingType::None); }
Alex Lorenz68e787b2015-05-14 23:08:22 +0000347
Scott Linderc0830f52018-11-14 19:39:59 +0000348void Input::scalarTag(std::string &Tag) {
349 Tag = CurrentNode->_node->getVerbatimTag();
350}
351
Nick Kledzikf60a9272012-12-12 20:46:15 +0000352void Input::setError(HNode *hnode, const Twine &message) {
Alexander Kornienko681e37c2013-11-18 15:50:04 +0000353 assert(hnode && "HNode must not be NULL");
Scott Linderad115b72018-10-10 18:14:02 +0000354 setError(hnode->_node, message);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000355}
356
Scott Linderc0830f52018-11-14 19:39:59 +0000357NodeKind Input::getNodeKind() {
358 if (isa<ScalarHNode>(CurrentNode))
359 return NodeKind::Scalar;
360 else if (isa<MapHNode>(CurrentNode))
361 return NodeKind::Map;
362 else if (isa<SequenceHNode>(CurrentNode))
363 return NodeKind::Sequence;
364 llvm_unreachable("Unsupported node kind");
365}
366
Nick Kledzikf60a9272012-12-12 20:46:15 +0000367void Input::setError(Node *node, const Twine &message) {
368 Strm->printError(node, message);
Rafael Espindola2a826e42014-06-13 17:20:48 +0000369 EC = make_error_code(errc::invalid_argument);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000370}
371
David Blaikied759fe52014-09-15 18:39:24 +0000372std::unique_ptr<Input::HNode> Input::createHNodes(Node *N) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000373 SmallString<128> StringStorage;
374 if (ScalarNode *SN = dyn_cast<ScalarNode>(N)) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000375 StringRef KeyStr = SN->getValue(StringStorage);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000376 if (!StringStorage.empty()) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000377 // Copy string to permanent storage
Benjamin Kramer7a923772015-08-05 14:16:38 +0000378 KeyStr = StringStorage.str().copy(StringAllocator);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000379 }
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000380 return std::make_unique<ScalarHNode>(N, KeyStr);
Alex Lorenz68e787b2015-05-14 23:08:22 +0000381 } else if (BlockScalarNode *BSN = dyn_cast<BlockScalarNode>(N)) {
Benjamin Kramer7a923772015-08-05 14:16:38 +0000382 StringRef ValueCopy = BSN->getValue().copy(StringAllocator);
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000383 return std::make_unique<ScalarHNode>(N, ValueCopy);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000384 } else if (SequenceNode *SQ = dyn_cast<SequenceNode>(N)) {
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000385 auto SQHNode = std::make_unique<SequenceHNode>(N);
Simon Atanasyan878bd8a2014-04-10 06:02:49 +0000386 for (Node &SN : *SQ) {
Scott Linderad115b72018-10-10 18:14:02 +0000387 auto Entry = createHNodes(&SN);
Mehdi Amini43c24282016-11-28 04:57:04 +0000388 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000389 break;
David Blaikied759fe52014-09-15 18:39:24 +0000390 SQHNode->Entries.push_back(std::move(Entry));
Nick Kledzikf60a9272012-12-12 20:46:15 +0000391 }
David Blaikied759fe52014-09-15 18:39:24 +0000392 return std::move(SQHNode);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000393 } else if (MappingNode *Map = dyn_cast<MappingNode>(N)) {
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000394 auto mapHNode = std::make_unique<MapHNode>(N);
Simon Atanasyan878bd8a2014-04-10 06:02:49 +0000395 for (KeyValueNode &KVN : *Map) {
Rafael Espindolaa97373f2014-08-08 13:58:00 +0000396 Node *KeyNode = KVN.getKey();
George Rimar3674fb62017-09-21 08:25:59 +0000397 ScalarNode *Key = dyn_cast<ScalarNode>(KeyNode);
398 Node *Value = KVN.getValue();
399 if (!Key || !Value) {
400 if (!Key)
401 setError(KeyNode, "Map key must be a scalar");
402 if (!Value)
403 setError(KeyNode, "Map value must not be empty");
Rafael Espindolaa97373f2014-08-08 13:58:00 +0000404 break;
405 }
Nick Kledzikf60a9272012-12-12 20:46:15 +0000406 StringStorage.clear();
George Rimar3674fb62017-09-21 08:25:59 +0000407 StringRef KeyStr = Key->getValue(StringStorage);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000408 if (!StringStorage.empty()) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000409 // Copy string to permanent storage
Benjamin Kramer7a923772015-08-05 14:16:38 +0000410 KeyStr = StringStorage.str().copy(StringAllocator);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000411 }
Scott Linderad115b72018-10-10 18:14:02 +0000412 auto ValueHNode = createHNodes(Value);
Mehdi Amini43c24282016-11-28 04:57:04 +0000413 if (EC)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000414 break;
David Blaikied759fe52014-09-15 18:39:24 +0000415 mapHNode->Mapping[KeyStr] = std::move(ValueHNode);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000416 }
David Blaikied759fe52014-09-15 18:39:24 +0000417 return std::move(mapHNode);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000418 } else if (isa<NullNode>(N)) {
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000419 return std::make_unique<EmptyHNode>(N);
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000420 } else {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000421 setError(N, "unknown node kind");
Craig Topperc10719f2014-04-07 04:17:22 +0000422 return nullptr;
Nick Kledzikf60a9272012-12-12 20:46:15 +0000423 }
424}
425
Nick Kledzikf60a9272012-12-12 20:46:15 +0000426void Input::setError(const Twine &Message) {
Scott Linderad115b72018-10-10 18:14:02 +0000427 setError(CurrentNode, Message);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000428}
429
Aaron Ballman0e63e532013-08-15 23:17:53 +0000430bool Input::canElideEmptySequence() {
431 return false;
432}
433
Nick Kledzikf60a9272012-12-12 20:46:15 +0000434//===----------------------------------------------------------------------===//
435// Output
436//===----------------------------------------------------------------------===//
437
Frederic Riss4939e6a2015-05-29 17:56:28 +0000438Output::Output(raw_ostream &yout, void *context, int WrapColumn)
Eugene Zelenko72208a82017-06-21 23:19:47 +0000439 : IO(context), Out(yout), WrapColumn(WrapColumn) {}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000440
Eugene Zelenko72208a82017-06-21 23:19:47 +0000441Output::~Output() = default;
Nick Kledzikf60a9272012-12-12 20:46:15 +0000442
George Rimar4e717022019-08-30 13:39:22 +0000443bool Output::outputting() const {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000444 return true;
445}
446
447void Output::beginMapping() {
448 StateStack.push_back(inMapFirstKey);
Fangrui Song27ed1c52019-07-12 04:51:31 +0000449 PaddingBeforeContainer = Padding;
450 Padding = "\n";
Nick Kledzikf60a9272012-12-12 20:46:15 +0000451}
452
Nick Kledzik1e6033c2013-11-14 00:59:59 +0000453bool Output::mapTag(StringRef Tag, bool Use) {
454 if (Use) {
Chris Bieneman92b2e8a2016-06-28 21:10:26 +0000455 // If this tag is being written inside a sequence we should write the start
456 // of the sequence before writing the tag, otherwise the tag won't be
457 // attached to the element in the sequence, but rather the sequence itself.
Scott Linderc0830f52018-11-14 19:39:59 +0000458 bool SequenceElement = false;
459 if (StateStack.size() > 1) {
460 auto &E = StateStack[StateStack.size() - 2];
461 SequenceElement = inSeqAnyElement(E) || inFlowSeqAnyElement(E);
462 }
Chris Bieneman92b2e8a2016-06-28 21:10:26 +0000463 if (SequenceElement && StateStack.back() == inMapFirstKey) {
Scott Linderad115b72018-10-10 18:14:02 +0000464 newLineCheck();
Chris Bieneman92b2e8a2016-06-28 21:10:26 +0000465 } else {
Scott Linderad115b72018-10-10 18:14:02 +0000466 output(" ");
Chris Bieneman92b2e8a2016-06-28 21:10:26 +0000467 }
Scott Linderad115b72018-10-10 18:14:02 +0000468 output(Tag);
Chris Bieneman92b2e8a2016-06-28 21:10:26 +0000469 if (SequenceElement) {
470 // If we're writing the tag during the first element of a map, the tag
471 // takes the place of the first element in the sequence.
472 if (StateStack.back() == inMapFirstKey) {
473 StateStack.pop_back();
474 StateStack.push_back(inMapOtherKey);
475 }
476 // Tags inside maps in sequences should act as keys in the map from a
477 // formatting perspective, so we always want a newline in a sequence.
Fangrui Song27ed1c52019-07-12 04:51:31 +0000478 Padding = "\n";
Chris Bieneman92b2e8a2016-06-28 21:10:26 +0000479 }
Nick Kledzik1e6033c2013-11-14 00:59:59 +0000480 }
481 return Use;
482}
483
Nick Kledzikf60a9272012-12-12 20:46:15 +0000484void Output::endMapping() {
Scott Linderc0830f52018-11-14 19:39:59 +0000485 // If we did not map anything, we should explicitly emit an empty map
Fangrui Song27ed1c52019-07-12 04:51:31 +0000486 if (StateStack.back() == inMapFirstKey) {
487 Padding = PaddingBeforeContainer;
488 newLineCheck();
Scott Linderc0830f52018-11-14 19:39:59 +0000489 output("{}");
Fangrui Song27ed1c52019-07-12 04:51:31 +0000490 Padding = "\n";
491 }
Nick Kledzikf60a9272012-12-12 20:46:15 +0000492 StateStack.pop_back();
493}
494
Peter Collingbourne87dd2ab2017-01-04 03:51:36 +0000495std::vector<StringRef> Output::keys() {
496 report_fatal_error("invalid call");
497}
498
Nick Kledzikf60a9272012-12-12 20:46:15 +0000499bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault,
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000500 bool &UseDefault, void *&) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000501 UseDefault = false;
Zachary Turner84efd4d2017-03-15 17:47:39 +0000502 if (Required || !SameAsDefault || WriteDefaultValues) {
Alex Lorenzb1225082015-05-04 20:11:40 +0000503 auto State = StateStack.back();
504 if (State == inFlowMapFirstKey || State == inFlowMapOtherKey) {
505 flowKey(Key);
506 } else {
Scott Linderad115b72018-10-10 18:14:02 +0000507 newLineCheck();
508 paddedKey(Key);
Alex Lorenzb1225082015-05-04 20:11:40 +0000509 }
Nick Kledzikf60a9272012-12-12 20:46:15 +0000510 return true;
511 }
512 return false;
513}
514
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000515void Output::postflightKey(void *) {
516 if (StateStack.back() == inMapFirstKey) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000517 StateStack.pop_back();
518 StateStack.push_back(inMapOtherKey);
Alex Lorenzb1225082015-05-04 20:11:40 +0000519 } else if (StateStack.back() == inFlowMapFirstKey) {
520 StateStack.pop_back();
521 StateStack.push_back(inFlowMapOtherKey);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000522 }
523}
524
Alex Lorenzb1225082015-05-04 20:11:40 +0000525void Output::beginFlowMapping() {
526 StateStack.push_back(inFlowMapFirstKey);
Scott Linderad115b72018-10-10 18:14:02 +0000527 newLineCheck();
Alex Lorenzb1225082015-05-04 20:11:40 +0000528 ColumnAtMapFlowStart = Column;
529 output("{ ");
530}
531
532void Output::endFlowMapping() {
533 StateStack.pop_back();
Scott Linderad115b72018-10-10 18:14:02 +0000534 outputUpToEndOfLine(" }");
Alex Lorenzb1225082015-05-04 20:11:40 +0000535}
536
Nick Kledzikf60a9272012-12-12 20:46:15 +0000537void Output::beginDocuments() {
Scott Linderad115b72018-10-10 18:14:02 +0000538 outputUpToEndOfLine("---");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000539}
540
541bool Output::preflightDocument(unsigned index) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000542 if (index > 0)
Scott Linderad115b72018-10-10 18:14:02 +0000543 outputUpToEndOfLine("\n---");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000544 return true;
545}
546
547void Output::postflightDocument() {
548}
549
550void Output::endDocuments() {
551 output("\n...\n");
552}
553
554unsigned Output::beginSequence() {
Scott Linderc0830f52018-11-14 19:39:59 +0000555 StateStack.push_back(inSeqFirstElement);
Fangrui Song27ed1c52019-07-12 04:51:31 +0000556 PaddingBeforeContainer = Padding;
557 Padding = "\n";
Nick Kledzikf60a9272012-12-12 20:46:15 +0000558 return 0;
559}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000560
Nick Kledzikf60a9272012-12-12 20:46:15 +0000561void Output::endSequence() {
Scott Linderc0830f52018-11-14 19:39:59 +0000562 // If we did not emit anything, we should explicitly emit an empty sequence
Fangrui Song27ed1c52019-07-12 04:51:31 +0000563 if (StateStack.back() == inSeqFirstElement) {
564 Padding = PaddingBeforeContainer;
565 newLineCheck();
Scott Linderc0830f52018-11-14 19:39:59 +0000566 output("[]");
Fangrui Song27ed1c52019-07-12 04:51:31 +0000567 Padding = "\n";
568 }
Nick Kledzikf60a9272012-12-12 20:46:15 +0000569 StateStack.pop_back();
570}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000571
572bool Output::preflightElement(unsigned, void *&) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000573 return true;
574}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000575
576void Output::postflightElement(void *) {
Scott Linderc0830f52018-11-14 19:39:59 +0000577 if (StateStack.back() == inSeqFirstElement) {
578 StateStack.pop_back();
579 StateStack.push_back(inSeqOtherElement);
580 } else if (StateStack.back() == inFlowSeqFirstElement) {
581 StateStack.pop_back();
582 StateStack.push_back(inFlowSeqOtherElement);
583 }
Nick Kledzikf60a9272012-12-12 20:46:15 +0000584}
585
586unsigned Output::beginFlowSequence() {
Scott Linderc0830f52018-11-14 19:39:59 +0000587 StateStack.push_back(inFlowSeqFirstElement);
Scott Linderad115b72018-10-10 18:14:02 +0000588 newLineCheck();
Nick Kledzikf60a9272012-12-12 20:46:15 +0000589 ColumnAtFlowStart = Column;
590 output("[ ");
591 NeedFlowSequenceComma = false;
592 return 0;
593}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000594
Nick Kledzikf60a9272012-12-12 20:46:15 +0000595void Output::endFlowSequence() {
596 StateStack.pop_back();
Scott Linderad115b72018-10-10 18:14:02 +0000597 outputUpToEndOfLine(" ]");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000598}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000599
600bool Output::preflightFlowElement(unsigned, void *&) {
601 if (NeedFlowSequenceComma)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000602 output(", ");
Frederic Riss4939e6a2015-05-29 17:56:28 +0000603 if (WrapColumn && Column > WrapColumn) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000604 output("\n");
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000605 for (int i = 0; i < ColumnAtFlowStart; ++i)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000606 output(" ");
607 Column = ColumnAtFlowStart;
608 output(" ");
609 }
610 return true;
611}
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000612
613void Output::postflightFlowElement(void *) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000614 NeedFlowSequenceComma = true;
615}
616
Nick Kledzikf60a9272012-12-12 20:46:15 +0000617void Output::beginEnumScalar() {
618 EnumerationMatchFound = false;
619}
620
621bool Output::matchEnumScalar(const char *Str, bool Match) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000622 if (Match && !EnumerationMatchFound) {
Scott Linderad115b72018-10-10 18:14:02 +0000623 newLineCheck();
624 outputUpToEndOfLine(Str);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000625 EnumerationMatchFound = true;
626 }
627 return false;
628}
629
Michael J. Spencer731cae32015-01-23 21:57:50 +0000630bool Output::matchEnumFallback() {
631 if (EnumerationMatchFound)
632 return false;
633 EnumerationMatchFound = true;
634 return true;
635}
636
Nick Kledzikf60a9272012-12-12 20:46:15 +0000637void Output::endEnumScalar() {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000638 if (!EnumerationMatchFound)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000639 llvm_unreachable("bad runtime enum value");
640}
641
Nick Kledzikf60a9272012-12-12 20:46:15 +0000642bool Output::beginBitSetScalar(bool &DoClear) {
Scott Linderad115b72018-10-10 18:14:02 +0000643 newLineCheck();
Nick Kledzikf60a9272012-12-12 20:46:15 +0000644 output("[ ");
645 NeedBitValueComma = false;
646 DoClear = false;
647 return true;
648}
649
650bool Output::bitSetMatch(const char *Str, bool Matches) {
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000651 if (Matches) {
652 if (NeedBitValueComma)
Nick Kledzikf60a9272012-12-12 20:46:15 +0000653 output(", ");
Scott Linderad115b72018-10-10 18:14:02 +0000654 output(Str);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000655 NeedBitValueComma = true;
656 }
657 return false;
658}
659
660void Output::endBitSetScalar() {
Scott Linderad115b72018-10-10 18:14:02 +0000661 outputUpToEndOfLine(" ]");
Nick Kledzikf60a9272012-12-12 20:46:15 +0000662}
663
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +0000664void Output::scalarString(StringRef &S, QuotingType MustQuote) {
Scott Linderad115b72018-10-10 18:14:02 +0000665 newLineCheck();
Rui Ueyama106eded2013-09-11 04:00:08 +0000666 if (S.empty()) {
667 // Print '' for the empty string because leaving the field empty is not
668 // allowed.
Scott Linderad115b72018-10-10 18:14:02 +0000669 outputUpToEndOfLine("''");
Rui Ueyama106eded2013-09-11 04:00:08 +0000670 return;
671 }
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +0000672 if (MustQuote == QuotingType::None) {
David Majnemer77880332014-04-10 07:37:33 +0000673 // Only quote if we must.
Scott Linderad115b72018-10-10 18:14:02 +0000674 outputUpToEndOfLine(S);
Nick Kledzikf60a9272012-12-12 20:46:15 +0000675 return;
676 }
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +0000677
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +0000678 const char *const Quote = MustQuote == QuotingType::Single ? "'" : "\"";
Francis Visoiu Mistrihb213b272017-12-18 17:38:03 +0000679 output(Quote); // Starting quote.
680
Graydon Hoare926cd9b2018-03-27 19:52:45 +0000681 // When using double-quoted strings (and only in that case), non-printable characters may be
682 // present, and will be escaped using a variety of unicode-scalar and special short-form
683 // escapes. This is handled in yaml::escape.
684 if (MustQuote == QuotingType::Double) {
Pavel Labathd7e12572019-04-11 14:57:34 +0000685 output(yaml::escape(S, /* EscapePrintable= */ false));
Scott Linderad115b72018-10-10 18:14:02 +0000686 outputUpToEndOfLine(Quote);
Graydon Hoare926cd9b2018-03-27 19:52:45 +0000687 return;
688 }
689
Pavel Labathd7e12572019-04-11 14:57:34 +0000690 unsigned i = 0;
691 unsigned j = 0;
692 unsigned End = S.size();
693 const char *Base = S.data();
694
Graydon Hoare926cd9b2018-03-27 19:52:45 +0000695 // When using single-quoted strings, any single quote ' must be doubled to be escaped.
Nick Kledzikf60a9272012-12-12 20:46:15 +0000696 while (j < End) {
Graydon Hoare926cd9b2018-03-27 19:52:45 +0000697 if (S[j] == '\'') { // Escape quotes.
698 output(StringRef(&Base[i], j - i)); // "flush".
699 output(StringLiteral("''")); // Print it as ''
Nick Kledzikf60a9272012-12-12 20:46:15 +0000700 i = j + 1;
701 }
702 ++j;
703 }
704 output(StringRef(&Base[i], j - i));
Scott Linderad115b72018-10-10 18:14:02 +0000705 outputUpToEndOfLine(Quote); // Ending quote.
Nick Kledzikf60a9272012-12-12 20:46:15 +0000706}
707
Alex Lorenz68e787b2015-05-14 23:08:22 +0000708void Output::blockScalarString(StringRef &S) {
709 if (!StateStack.empty())
710 newLineCheck();
711 output(" |");
712 outputNewLine();
713
714 unsigned Indent = StateStack.empty() ? 1 : StateStack.size();
715
716 auto Buffer = MemoryBuffer::getMemBuffer(S, "", false);
717 for (line_iterator Lines(*Buffer, false); !Lines.is_at_end(); ++Lines) {
718 for (unsigned I = 0; I < Indent; ++I) {
719 output(" ");
720 }
721 output(*Lines);
722 outputNewLine();
723 }
724}
725
Scott Linderc0830f52018-11-14 19:39:59 +0000726void Output::scalarTag(std::string &Tag) {
727 if (Tag.empty())
728 return;
729 newLineCheck();
730 output(Tag);
731 output(" ");
732}
733
Nick Kledzikf60a9272012-12-12 20:46:15 +0000734void Output::setError(const Twine &message) {
735}
736
Aaron Ballman0e63e532013-08-15 23:17:53 +0000737bool Output::canElideEmptySequence() {
738 // Normally, with an optional key/value where the value is an empty sequence,
739 // the whole key/value can be not written. But, that produces wrong yaml
740 // if the key/value is the only thing in the map and the map is used in
741 // a sequence. This detects if the this sequence is the first key/value
742 // in map that itself is embedded in a sequnce.
Rui Ueyama38dfffa2013-09-11 00:53:07 +0000743 if (StateStack.size() < 2)
Aaron Ballman0e63e532013-08-15 23:17:53 +0000744 return true;
Rui Ueyama38dfffa2013-09-11 00:53:07 +0000745 if (StateStack.back() != inMapFirstKey)
Aaron Ballman0e63e532013-08-15 23:17:53 +0000746 return true;
Scott Linderc0830f52018-11-14 19:39:59 +0000747 return !inSeqAnyElement(StateStack[StateStack.size() - 2]);
Aaron Ballman0e63e532013-08-15 23:17:53 +0000748}
749
Nick Kledzikf60a9272012-12-12 20:46:15 +0000750void Output::output(StringRef s) {
751 Column += s.size();
752 Out << s;
753}
754
755void Output::outputUpToEndOfLine(StringRef s) {
Scott Linderad115b72018-10-10 18:14:02 +0000756 output(s);
Scott Linderc0830f52018-11-14 19:39:59 +0000757 if (StateStack.empty() || (!inFlowSeqAnyElement(StateStack.back()) &&
758 !inFlowMapAnyKey(StateStack.back())))
Fangrui Song27ed1c52019-07-12 04:51:31 +0000759 Padding = "\n";
Nick Kledzikf60a9272012-12-12 20:46:15 +0000760}
761
762void Output::outputNewLine() {
763 Out << "\n";
764 Column = 0;
765}
766
767// if seq at top, indent as if map, then add "- "
768// if seq in middle, use "- " if firstKey, else use " "
769//
770
771void Output::newLineCheck() {
Fangrui Song27ed1c52019-07-12 04:51:31 +0000772 if (Padding != "\n") {
773 output(Padding);
774 Padding = {};
Nick Kledzikf60a9272012-12-12 20:46:15 +0000775 return;
Fangrui Song27ed1c52019-07-12 04:51:31 +0000776 }
Scott Linderad115b72018-10-10 18:14:02 +0000777 outputNewLine();
Fangrui Song27ed1c52019-07-12 04:51:31 +0000778 Padding = {};
Nick Kledzikf60a9272012-12-12 20:46:15 +0000779
Scott Linderc0830f52018-11-14 19:39:59 +0000780 if (StateStack.size() == 0)
781 return;
782
Nick Kledzikf60a9272012-12-12 20:46:15 +0000783 unsigned Indent = StateStack.size() - 1;
784 bool OutputDash = false;
785
Scott Linderc0830f52018-11-14 19:39:59 +0000786 if (StateStack.back() == inSeqFirstElement ||
787 StateStack.back() == inSeqOtherElement) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000788 OutputDash = true;
Scott Linderc0830f52018-11-14 19:39:59 +0000789 } else if ((StateStack.size() > 1) &&
790 ((StateStack.back() == inMapFirstKey) ||
791 inFlowSeqAnyElement(StateStack.back()) ||
792 (StateStack.back() == inFlowMapFirstKey)) &&
793 inSeqAnyElement(StateStack[StateStack.size() - 2])) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000794 --Indent;
795 OutputDash = true;
796 }
797
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000798 for (unsigned i = 0; i < Indent; ++i) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000799 output(" ");
800 }
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000801 if (OutputDash) {
Nick Kledzikf60a9272012-12-12 20:46:15 +0000802 output("- ");
803 }
804
805}
806
807void Output::paddedKey(StringRef key) {
808 output(key);
809 output(":");
810 const char *spaces = " ";
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000811 if (key.size() < strlen(spaces))
Fangrui Song27ed1c52019-07-12 04:51:31 +0000812 Padding = &spaces[key.size()];
Nick Kledzikf60a9272012-12-12 20:46:15 +0000813 else
Fangrui Song27ed1c52019-07-12 04:51:31 +0000814 Padding = " ";
Nick Kledzikf60a9272012-12-12 20:46:15 +0000815}
816
Alex Lorenzb1225082015-05-04 20:11:40 +0000817void Output::flowKey(StringRef Key) {
818 if (StateStack.back() == inFlowMapOtherKey)
819 output(", ");
Frederic Riss4939e6a2015-05-29 17:56:28 +0000820 if (WrapColumn && Column > WrapColumn) {
Alex Lorenzb1225082015-05-04 20:11:40 +0000821 output("\n");
822 for (int I = 0; I < ColumnAtMapFlowStart; ++I)
823 output(" ");
824 Column = ColumnAtMapFlowStart;
825 output(" ");
826 }
827 output(Key);
828 output(": ");
829}
830
Scott Linderc0830f52018-11-14 19:39:59 +0000831NodeKind Output::getNodeKind() { report_fatal_error("invalid call"); }
832
833bool Output::inSeqAnyElement(InState State) {
834 return State == inSeqFirstElement || State == inSeqOtherElement;
835}
836
837bool Output::inFlowSeqAnyElement(InState State) {
838 return State == inFlowSeqFirstElement || State == inFlowSeqOtherElement;
839}
840
841bool Output::inMapAnyKey(InState State) {
842 return State == inMapFirstKey || State == inMapOtherKey;
843}
844
845bool Output::inFlowMapAnyKey(InState State) {
846 return State == inFlowMapFirstKey || State == inFlowMapOtherKey;
847}
848
Nick Kledzikf60a9272012-12-12 20:46:15 +0000849//===----------------------------------------------------------------------===//
850// traits for built-in types
851//===----------------------------------------------------------------------===//
852
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000853void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) {
854 Out << (Val ? "true" : "false");
855}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000856
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000857StringRef ScalarTraits<bool>::input(StringRef Scalar, void *, bool &Val) {
858 if (Scalar.equals("true")) {
859 Val = true;
860 return StringRef();
861 } else if (Scalar.equals("false")) {
862 Val = false;
Nick Kledzikf60a9272012-12-12 20:46:15 +0000863 return StringRef();
864 }
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000865 return "invalid boolean";
866}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000867
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000868void ScalarTraits<StringRef>::output(const StringRef &Val, void *,
869 raw_ostream &Out) {
870 Out << Val;
871}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000872
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000873StringRef ScalarTraits<StringRef>::input(StringRef Scalar, void *,
874 StringRef &Val) {
875 Val = Scalar;
876 return StringRef();
877}
Alex Rosenbergf298f162015-01-26 18:02:18 +0000878
John Thompson48e018a2013-11-19 17:28:21 +0000879void ScalarTraits<std::string>::output(const std::string &Val, void *,
880 raw_ostream &Out) {
881 Out << Val;
882}
883
884StringRef ScalarTraits<std::string>::input(StringRef Scalar, void *,
885 std::string &Val) {
886 Val = Scalar.str();
887 return StringRef();
888}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000889
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000890void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *,
891 raw_ostream &Out) {
892 // use temp uin32_t because ostream thinks uint8_t is a character
893 uint32_t Num = Val;
894 Out << Num;
895}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000896
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000897StringRef ScalarTraits<uint8_t>::input(StringRef Scalar, void *, uint8_t &Val) {
898 unsigned long long n;
899 if (getAsUnsignedInteger(Scalar, 0, n))
900 return "invalid number";
901 if (n > 0xFF)
902 return "out of range number";
903 Val = n;
904 return StringRef();
905}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000906
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000907void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *,
908 raw_ostream &Out) {
909 Out << Val;
910}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000911
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000912StringRef ScalarTraits<uint16_t>::input(StringRef Scalar, void *,
913 uint16_t &Val) {
914 unsigned long long n;
915 if (getAsUnsignedInteger(Scalar, 0, n))
916 return "invalid number";
917 if (n > 0xFFFF)
918 return "out of range number";
919 Val = n;
920 return StringRef();
921}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000922
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000923void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *,
924 raw_ostream &Out) {
925 Out << Val;
926}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000927
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000928StringRef ScalarTraits<uint32_t>::input(StringRef Scalar, void *,
929 uint32_t &Val) {
930 unsigned long long n;
931 if (getAsUnsignedInteger(Scalar, 0, n))
932 return "invalid number";
933 if (n > 0xFFFFFFFFUL)
934 return "out of range number";
935 Val = n;
936 return StringRef();
937}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000938
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000939void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *,
940 raw_ostream &Out) {
941 Out << Val;
942}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000943
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000944StringRef ScalarTraits<uint64_t>::input(StringRef Scalar, void *,
945 uint64_t &Val) {
946 unsigned long long N;
947 if (getAsUnsignedInteger(Scalar, 0, N))
948 return "invalid number";
949 Val = N;
950 return StringRef();
951}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000952
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000953void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) {
954 // use temp in32_t because ostream thinks int8_t is a character
955 int32_t Num = Val;
956 Out << Num;
957}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000958
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000959StringRef ScalarTraits<int8_t>::input(StringRef Scalar, void *, int8_t &Val) {
960 long long N;
961 if (getAsSignedInteger(Scalar, 0, N))
962 return "invalid number";
963 if ((N > 127) || (N < -128))
964 return "out of range number";
965 Val = N;
966 return StringRef();
967}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000968
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000969void ScalarTraits<int16_t>::output(const int16_t &Val, void *,
970 raw_ostream &Out) {
971 Out << Val;
972}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000973
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000974StringRef ScalarTraits<int16_t>::input(StringRef Scalar, void *, int16_t &Val) {
975 long long N;
976 if (getAsSignedInteger(Scalar, 0, N))
977 return "invalid number";
978 if ((N > INT16_MAX) || (N < INT16_MIN))
979 return "out of range number";
980 Val = N;
981 return StringRef();
982}
Nick Kledzikf60a9272012-12-12 20:46:15 +0000983
Benjamin Kramer36b0f122012-12-12 22:40:02 +0000984void ScalarTraits<int32_t>::output(const int32_t &Val, void *,
985 raw_ostream &Out) {
986 Out << Val;
987}
988
989StringRef ScalarTraits<int32_t>::input(StringRef Scalar, void *, int32_t &Val) {
990 long long N;
991 if (getAsSignedInteger(Scalar, 0, N))
992 return "invalid number";
993 if ((N > INT32_MAX) || (N < INT32_MIN))
994 return "out of range number";
995 Val = N;
996 return StringRef();
997}
998
999void ScalarTraits<int64_t>::output(const int64_t &Val, void *,
1000 raw_ostream &Out) {
1001 Out << Val;
1002}
1003
1004StringRef ScalarTraits<int64_t>::input(StringRef Scalar, void *, int64_t &Val) {
1005 long long N;
1006 if (getAsSignedInteger(Scalar, 0, N))
1007 return "invalid number";
1008 Val = N;
1009 return StringRef();
1010}
1011
1012void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) {
Nick Kledzikf60a9272012-12-12 20:46:15 +00001013 Out << format("%g", Val);
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001014}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001015
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001016StringRef ScalarTraits<double>::input(StringRef Scalar, void *, double &Val) {
Pavel Labathec000f42017-06-23 12:55:02 +00001017 if (to_float(Scalar, Val))
1018 return StringRef();
1019 return "invalid floating point number";
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001020}
1021
1022void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) {
Nick Kledzikf60a9272012-12-12 20:46:15 +00001023 Out << format("%g", Val);
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001024}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001025
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001026StringRef ScalarTraits<float>::input(StringRef Scalar, void *, float &Val) {
Pavel Labathec000f42017-06-23 12:55:02 +00001027 if (to_float(Scalar, Val))
1028 return StringRef();
1029 return "invalid floating point number";
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001030}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001031
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001032void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) {
1033 uint8_t Num = Val;
1034 Out << format("0x%02X", Num);
1035}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001036
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001037StringRef ScalarTraits<Hex8>::input(StringRef Scalar, void *, Hex8 &Val) {
1038 unsigned long long n;
1039 if (getAsUnsignedInteger(Scalar, 0, n))
1040 return "invalid hex8 number";
1041 if (n > 0xFF)
1042 return "out of range hex8 number";
1043 Val = n;
1044 return StringRef();
1045}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001046
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001047void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) {
1048 uint16_t Num = Val;
1049 Out << format("0x%04X", Num);
1050}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001051
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001052StringRef ScalarTraits<Hex16>::input(StringRef Scalar, void *, Hex16 &Val) {
1053 unsigned long long n;
1054 if (getAsUnsignedInteger(Scalar, 0, n))
1055 return "invalid hex16 number";
1056 if (n > 0xFFFF)
1057 return "out of range hex16 number";
1058 Val = n;
1059 return StringRef();
1060}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001061
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001062void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) {
1063 uint32_t Num = Val;
1064 Out << format("0x%08X", Num);
1065}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001066
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001067StringRef ScalarTraits<Hex32>::input(StringRef Scalar, void *, Hex32 &Val) {
1068 unsigned long long n;
1069 if (getAsUnsignedInteger(Scalar, 0, n))
1070 return "invalid hex32 number";
1071 if (n > 0xFFFFFFFFUL)
1072 return "out of range hex32 number";
1073 Val = n;
1074 return StringRef();
1075}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001076
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001077void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) {
1078 uint64_t Num = Val;
1079 Out << format("0x%016llX", Num);
1080}
Nick Kledzikf60a9272012-12-12 20:46:15 +00001081
Benjamin Kramer36b0f122012-12-12 22:40:02 +00001082StringRef ScalarTraits<Hex64>::input(StringRef Scalar, void *, Hex64 &Val) {
1083 unsigned long long Num;
1084 if (getAsUnsignedInteger(Scalar, 0, Num))
1085 return "invalid hex64 number";
1086 Val = Num;
1087 return StringRef();
1088}