| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1 | //===- lib/Support/YAMLTraits.cpp -----------------------------------------===// | 
|  | 2 | // | 
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // 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 Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 6 | // | 
|  | 7 | //===----------------------------------------------------------------------===// | 
|  | 8 |  | 
| Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 9 | #include "llvm/Support/YAMLTraits.h" | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 10 | #include "llvm/ADT/STLExtras.h" | 
| Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/SmallString.h" | 
| Pavel Labath | ec000f4 | 2017-06-23 12:55:02 +0000 | [diff] [blame] | 12 | #include "llvm/ADT/StringExtras.h" | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/StringRef.h" | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/Twine.h" | 
|  | 15 | #include "llvm/Support/Casting.h" | 
| Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 16 | #include "llvm/Support/Errc.h" | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 17 | #include "llvm/Support/ErrorHandling.h" | 
| Benjamin Kramer | cbe0584 | 2012-12-12 20:55:44 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Format.h" | 
| Alex Lorenz | 68e787b | 2015-05-14 23:08:22 +0000 | [diff] [blame] | 19 | #include "llvm/Support/LineIterator.h" | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MemoryBuffer.h" | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Unicode.h" | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 22 | #include "llvm/Support/YAMLParser.h" | 
| Benjamin Kramer | cbe0584 | 2012-12-12 20:55:44 +0000 | [diff] [blame] | 23 | #include "llvm/Support/raw_ostream.h" | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 24 | #include <algorithm> | 
|  | 25 | #include <cassert> | 
|  | 26 | #include <cstdint> | 
|  | 27 | #include <cstdlib> | 
| Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 28 | #include <cstring> | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 29 | #include <string> | 
|  | 30 | #include <vector> | 
|  | 31 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 32 | using namespace llvm; | 
|  | 33 | using namespace yaml; | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 34 |  | 
|  | 35 | //===----------------------------------------------------------------------===// | 
|  | 36 | //  IO | 
|  | 37 | //===----------------------------------------------------------------------===// | 
|  | 38 |  | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 39 | IO::IO(void *Context) : Ctxt(Context) {} | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 40 |  | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 41 | IO::~IO() = default; | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 42 |  | 
|  | 43 | void *IO::getContext() { | 
|  | 44 | return Ctxt; | 
|  | 45 | } | 
|  | 46 |  | 
|  | 47 | void IO::setContext(void *Context) { | 
|  | 48 | Ctxt = Context; | 
|  | 49 | } | 
|  | 50 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 51 | //===----------------------------------------------------------------------===// | 
|  | 52 | //  Input | 
|  | 53 | //===----------------------------------------------------------------------===// | 
|  | 54 |  | 
| Mehdi Amini | 3ab3fef | 2016-11-28 21:38:52 +0000 | [diff] [blame] | 55 | Input::Input(StringRef InputContent, void *Ctxt, | 
|  | 56 | SourceMgr::DiagHandlerTy DiagHandler, void *DiagHandlerCtxt) | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 57 | : IO(Ctxt), Strm(new Stream(InputContent, SrcMgr, false, &EC)) { | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 58 | if (DiagHandler) | 
|  | 59 | SrcMgr.setDiagHandler(DiagHandler, DiagHandlerCtxt); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 60 | DocIterator = Strm->begin(); | 
|  | 61 | } | 
|  | 62 |  | 
| Alex Bradbury | 1684317 | 2017-07-17 11:41:30 +0000 | [diff] [blame] | 63 | Input::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 Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 71 | Input::~Input() = default; | 
| Nick Kledzik | 0dcef84 | 2013-01-08 21:04:44 +0000 | [diff] [blame] | 72 |  | 
| Rafael Espindola | db4ed0b | 2014-06-13 02:24:39 +0000 | [diff] [blame] | 73 | std::error_code Input::error() { return EC; } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 74 |  | 
| Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 75 | // Pin the vtables to this file. | 
|  | 76 | void Input::HNode::anchor() {} | 
|  | 77 | void Input::EmptyHNode::anchor() {} | 
|  | 78 | void Input::ScalarHNode::anchor() {} | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 79 | void Input::MapHNode::anchor() {} | 
|  | 80 | void Input::SequenceHNode::anchor() {} | 
| Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 81 |  | 
| Nick Kledzik | 4761c60 | 2013-11-21 00:20:10 +0000 | [diff] [blame] | 82 | bool Input::outputting() { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 83 | return false; | 
|  | 84 | } | 
|  | 85 |  | 
|  | 86 | bool Input::setCurrentDocument() { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 87 | if (DocIterator != Strm->end()) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 88 | Node *N = DocIterator->getRoot(); | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 89 | if (!N) { | 
| Alex Lorenz | 7a38d75 | 2015-05-12 17:44:32 +0000 | [diff] [blame] | 90 | assert(Strm->failed() && "Root is NULL iff parsing failed"); | 
| Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 91 | EC = make_error_code(errc::invalid_argument); | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 92 | return false; | 
|  | 93 | } | 
|  | 94 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 95 | if (isa<NullNode>(N)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 96 | // Empty files are allowed and ignored | 
|  | 97 | ++DocIterator; | 
|  | 98 | return setCurrentDocument(); | 
|  | 99 | } | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 100 | TopNode = createHNodes(N); | 
| Nick Kledzik | 0dcef84 | 2013-01-08 21:04:44 +0000 | [diff] [blame] | 101 | CurrentNode = TopNode.get(); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 102 | return true; | 
|  | 103 | } | 
|  | 104 | return false; | 
|  | 105 | } | 
|  | 106 |  | 
| Simon Atanasyan | f97af8a | 2014-05-31 04:51:07 +0000 | [diff] [blame] | 107 | bool Input::nextDocument() { | 
|  | 108 | return ++DocIterator != Strm->end(); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 109 | } | 
| NAKAMURA Takumi | 9439c52 | 2013-11-14 07:08:49 +0000 | [diff] [blame] | 110 |  | 
| Alex Lorenz | 2bdb4e1 | 2015-05-27 18:02:19 +0000 | [diff] [blame] | 111 | const Node *Input::getCurrentNode() const { | 
|  | 112 | return CurrentNode ? CurrentNode->_node : nullptr; | 
|  | 113 | } | 
|  | 114 |  | 
| Nick Kledzik | 1e6033c | 2013-11-14 00:59:59 +0000 | [diff] [blame] | 115 | bool Input::mapTag(StringRef Tag, bool Default) { | 
| George Rimar | 45d042e | 2019-04-25 09:59:55 +0000 | [diff] [blame] | 116 | // 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 Takumi | 5b94d28 | 2013-11-14 07:08:56 +0000 | [diff] [blame] | 121 | std::string foundTag = CurrentNode->_node->getVerbatimTag(); | 
| Nick Kledzik | 1e6033c | 2013-11-14 00:59:59 +0000 | [diff] [blame] | 122 | if (foundTag.empty()) { | 
|  | 123 | // If no tag found and 'Tag' is the default, say it was found. | 
|  | 124 | return Default; | 
|  | 125 | } | 
| Alex Lorenz | 7a38d75 | 2015-05-12 17:44:32 +0000 | [diff] [blame] | 126 | // Return true iff found tag matches supplied tag. | 
| Nick Kledzik | 1e6033c | 2013-11-14 00:59:59 +0000 | [diff] [blame] | 127 | return Tag.equals(foundTag); | 
|  | 128 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 129 |  | 
|  | 130 | void Input::beginMapping() { | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 131 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 132 | return; | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 133 | // CurrentNode can be null if the document is empty. | 
|  | 134 | MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 135 | if (MN) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 136 | MN->ValidKeys.clear(); | 
|  | 137 | } | 
|  | 138 | } | 
|  | 139 |  | 
| Peter Collingbourne | 87dd2ab | 2017-01-04 03:51:36 +0000 | [diff] [blame] | 140 | std::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 Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 152 | bool Input::preflightKey(const char *Key, bool Required, bool, bool &UseDefault, | 
|  | 153 | void *&SaveInfo) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 154 | UseDefault = false; | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 155 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 156 | return false; | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 157 |  | 
|  | 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 Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 162 | EC = make_error_code(errc::invalid_argument); | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 163 | return false; | 
|  | 164 | } | 
|  | 165 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 166 | MapHNode *MN = dyn_cast<MapHNode>(CurrentNode); | 
|  | 167 | if (!MN) { | 
| Dave Lee | c6f2e69 | 2017-11-16 17:46:11 +0000 | [diff] [blame] | 168 | if (Required || !isa<EmptyHNode>(CurrentNode)) | 
|  | 169 | setError(CurrentNode, "not a mapping"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 170 | return false; | 
|  | 171 | } | 
|  | 172 | MN->ValidKeys.push_back(Key); | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 173 | HNode *Value = MN->Mapping[Key].get(); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 174 | if (!Value) { | 
|  | 175 | if (Required) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 176 | setError(CurrentNode, Twine("missing required key '") + Key + "'"); | 
|  | 177 | else | 
|  | 178 | UseDefault = true; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 179 | return false; | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 180 | } | 
|  | 181 | SaveInfo = CurrentNode; | 
|  | 182 | CurrentNode = Value; | 
|  | 183 | return true; | 
|  | 184 | } | 
|  | 185 |  | 
|  | 186 | void Input::postflightKey(void *saveInfo) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 187 | CurrentNode = reinterpret_cast<HNode *>(saveInfo); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 188 | } | 
|  | 189 |  | 
|  | 190 | void Input::endMapping() { | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 191 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 192 | return; | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 193 | // CurrentNode can be null if the document is empty. | 
|  | 194 | MapHNode *MN = dyn_cast_or_null<MapHNode>(CurrentNode); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 195 | if (!MN) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 196 | return; | 
| Simon Atanasyan | 878bd8a | 2014-04-10 06:02:49 +0000 | [diff] [blame] | 197 | for (const auto &NN : MN->Mapping) { | 
| Peter Collingbourne | efdff71 | 2017-01-04 20:10:43 +0000 | [diff] [blame] | 198 | if (!is_contained(MN->ValidKeys, NN.first())) { | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 199 | setError(NN.second.get(), Twine("unknown key '") + NN.first() + "'"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 200 | break; | 
|  | 201 | } | 
|  | 202 | } | 
|  | 203 | } | 
|  | 204 |  | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 205 | void Input::beginFlowMapping() { beginMapping(); } | 
|  | 206 |  | 
|  | 207 | void Input::endFlowMapping() { endMapping(); } | 
|  | 208 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 209 | unsigned Input::beginSequence() { | 
| Justin Bogner | 64d2cdf | 2015-03-02 17:26:43 +0000 | [diff] [blame] | 210 | if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 211 | return SQ->Entries.size(); | 
| Justin Bogner | 64d2cdf | 2015-03-02 17:26:43 +0000 | [diff] [blame] | 212 | 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 Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 218 | } | 
| Justin Bogner | 64d2cdf | 2015-03-02 17:26:43 +0000 | [diff] [blame] | 219 | // Any other type of HNode is an error. | 
|  | 220 | setError(CurrentNode, "not a sequence"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 221 | return 0; | 
|  | 222 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 223 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 224 | void Input::endSequence() { | 
|  | 225 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 226 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 227 | bool Input::preflightElement(unsigned Index, void *&SaveInfo) { | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 228 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 229 | return false; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 230 | if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 231 | SaveInfo = CurrentNode; | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 232 | CurrentNode = SQ->Entries[Index].get(); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 233 | return true; | 
|  | 234 | } | 
|  | 235 | return false; | 
|  | 236 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 237 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 238 | void Input::postflightElement(void *SaveInfo) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 239 | CurrentNode = reinterpret_cast<HNode *>(SaveInfo); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 240 | } | 
|  | 241 |  | 
| Justin Bogner | 64d2cdf | 2015-03-02 17:26:43 +0000 | [diff] [blame] | 242 | unsigned Input::beginFlowSequence() { return beginSequence(); } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 243 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 244 | bool Input::preflightFlowElement(unsigned index, void *&SaveInfo) { | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 245 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 246 | return false; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 247 | if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 248 | SaveInfo = CurrentNode; | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 249 | CurrentNode = SQ->Entries[index].get(); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 250 | return true; | 
|  | 251 | } | 
|  | 252 | return false; | 
|  | 253 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 254 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 255 | void Input::postflightFlowElement(void *SaveInfo) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 256 | CurrentNode = reinterpret_cast<HNode *>(SaveInfo); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 257 | } | 
|  | 258 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 259 | void Input::endFlowSequence() { | 
|  | 260 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 261 |  | 
|  | 262 | void Input::beginEnumScalar() { | 
|  | 263 | ScalarMatchFound = false; | 
|  | 264 | } | 
|  | 265 |  | 
|  | 266 | bool Input::matchEnumScalar(const char *Str, bool) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 267 | if (ScalarMatchFound) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 268 | return false; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 269 | if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) { | 
|  | 270 | if (SN->value().equals(Str)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 271 | ScalarMatchFound = true; | 
|  | 272 | return true; | 
|  | 273 | } | 
|  | 274 | } | 
|  | 275 | return false; | 
|  | 276 | } | 
|  | 277 |  | 
| Michael J. Spencer | 731cae3 | 2015-01-23 21:57:50 +0000 | [diff] [blame] | 278 | bool Input::matchEnumFallback() { | 
|  | 279 | if (ScalarMatchFound) | 
|  | 280 | return false; | 
|  | 281 | ScalarMatchFound = true; | 
|  | 282 | return true; | 
|  | 283 | } | 
|  | 284 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 285 | void Input::endEnumScalar() { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 286 | if (!ScalarMatchFound) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 287 | setError(CurrentNode, "unknown enumerated scalar"); | 
|  | 288 | } | 
|  | 289 | } | 
|  | 290 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 291 | bool Input::beginBitSetScalar(bool &DoClear) { | 
|  | 292 | BitValuesUsed.clear(); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 293 | if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 294 | BitValuesUsed.insert(BitValuesUsed.begin(), SQ->Entries.size(), false); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 295 | } else { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 296 | setError(CurrentNode, "expected sequence of bit values"); | 
|  | 297 | } | 
|  | 298 | DoClear = true; | 
|  | 299 | return true; | 
|  | 300 | } | 
|  | 301 |  | 
|  | 302 | bool Input::bitSetMatch(const char *Str, bool) { | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 303 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 304 | return false; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 305 | if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 306 | unsigned Index = 0; | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 307 | for (auto &N : SQ->Entries) { | 
|  | 308 | if (ScalarHNode *SN = dyn_cast<ScalarHNode>(N.get())) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 309 | if (SN->value().equals(Str)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 310 | BitValuesUsed[Index] = true; | 
|  | 311 | return true; | 
|  | 312 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 313 | } else { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 314 | setError(CurrentNode, "unexpected scalar in sequence of bit values"); | 
|  | 315 | } | 
|  | 316 | ++Index; | 
|  | 317 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 318 | } else { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 319 | setError(CurrentNode, "expected sequence of bit values"); | 
|  | 320 | } | 
|  | 321 | return false; | 
|  | 322 | } | 
|  | 323 |  | 
|  | 324 | void Input::endBitSetScalar() { | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 325 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 326 | return; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 327 | if (SequenceHNode *SQ = dyn_cast<SequenceHNode>(CurrentNode)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 328 | assert(BitValuesUsed.size() == SQ->Entries.size()); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 329 | for (unsigned i = 0; i < SQ->Entries.size(); ++i) { | 
|  | 330 | if (!BitValuesUsed[i]) { | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 331 | setError(SQ->Entries[i].get(), "unknown bit value"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 332 | return; | 
|  | 333 | } | 
|  | 334 | } | 
|  | 335 | } | 
|  | 336 | } | 
|  | 337 |  | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 338 | void Input::scalarString(StringRef &S, QuotingType) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 339 | if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 340 | S = SN->value(); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 341 | } else { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 342 | setError(CurrentNode, "unexpected scalar"); | 
|  | 343 | } | 
|  | 344 | } | 
|  | 345 |  | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 346 | void Input::blockScalarString(StringRef &S) { scalarString(S, QuotingType::None); } | 
| Alex Lorenz | 68e787b | 2015-05-14 23:08:22 +0000 | [diff] [blame] | 347 |  | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 348 | void Input::scalarTag(std::string &Tag) { | 
|  | 349 | Tag = CurrentNode->_node->getVerbatimTag(); | 
|  | 350 | } | 
|  | 351 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 352 | void Input::setError(HNode *hnode, const Twine &message) { | 
| Alexander Kornienko | 681e37c | 2013-11-18 15:50:04 +0000 | [diff] [blame] | 353 | assert(hnode && "HNode must not be NULL"); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 354 | setError(hnode->_node, message); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 355 | } | 
|  | 356 |  | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 357 | NodeKind 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 Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 367 | void Input::setError(Node *node, const Twine &message) { | 
|  | 368 | Strm->printError(node, message); | 
| Rafael Espindola | 2a826e4 | 2014-06-13 17:20:48 +0000 | [diff] [blame] | 369 | EC = make_error_code(errc::invalid_argument); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 370 | } | 
|  | 371 |  | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 372 | std::unique_ptr<Input::HNode> Input::createHNodes(Node *N) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 373 | SmallString<128> StringStorage; | 
|  | 374 | if (ScalarNode *SN = dyn_cast<ScalarNode>(N)) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 375 | StringRef KeyStr = SN->getValue(StringStorage); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 376 | if (!StringStorage.empty()) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 377 | // Copy string to permanent storage | 
| Benjamin Kramer | 7a92377 | 2015-08-05 14:16:38 +0000 | [diff] [blame] | 378 | KeyStr = StringStorage.str().copy(StringAllocator); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 379 | } | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 380 | return llvm::make_unique<ScalarHNode>(N, KeyStr); | 
| Alex Lorenz | 68e787b | 2015-05-14 23:08:22 +0000 | [diff] [blame] | 381 | } else if (BlockScalarNode *BSN = dyn_cast<BlockScalarNode>(N)) { | 
| Benjamin Kramer | 7a92377 | 2015-08-05 14:16:38 +0000 | [diff] [blame] | 382 | StringRef ValueCopy = BSN->getValue().copy(StringAllocator); | 
|  | 383 | return llvm::make_unique<ScalarHNode>(N, ValueCopy); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 384 | } else if (SequenceNode *SQ = dyn_cast<SequenceNode>(N)) { | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 385 | auto SQHNode = llvm::make_unique<SequenceHNode>(N); | 
| Simon Atanasyan | 878bd8a | 2014-04-10 06:02:49 +0000 | [diff] [blame] | 386 | for (Node &SN : *SQ) { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 387 | auto Entry = createHNodes(&SN); | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 388 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 389 | break; | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 390 | SQHNode->Entries.push_back(std::move(Entry)); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 391 | } | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 392 | return std::move(SQHNode); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 393 | } else if (MappingNode *Map = dyn_cast<MappingNode>(N)) { | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 394 | auto mapHNode = llvm::make_unique<MapHNode>(N); | 
| Simon Atanasyan | 878bd8a | 2014-04-10 06:02:49 +0000 | [diff] [blame] | 395 | for (KeyValueNode &KVN : *Map) { | 
| Rafael Espindola | a97373f | 2014-08-08 13:58:00 +0000 | [diff] [blame] | 396 | Node *KeyNode = KVN.getKey(); | 
| George Rimar | 3674fb6 | 2017-09-21 08:25:59 +0000 | [diff] [blame] | 397 | 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 Espindola | a97373f | 2014-08-08 13:58:00 +0000 | [diff] [blame] | 404 | break; | 
|  | 405 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 406 | StringStorage.clear(); | 
| George Rimar | 3674fb6 | 2017-09-21 08:25:59 +0000 | [diff] [blame] | 407 | StringRef KeyStr = Key->getValue(StringStorage); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 408 | if (!StringStorage.empty()) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 409 | // Copy string to permanent storage | 
| Benjamin Kramer | 7a92377 | 2015-08-05 14:16:38 +0000 | [diff] [blame] | 410 | KeyStr = StringStorage.str().copy(StringAllocator); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 411 | } | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 412 | auto ValueHNode = createHNodes(Value); | 
| Mehdi Amini | 43c2428 | 2016-11-28 04:57:04 +0000 | [diff] [blame] | 413 | if (EC) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 414 | break; | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 415 | mapHNode->Mapping[KeyStr] = std::move(ValueHNode); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 416 | } | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 417 | return std::move(mapHNode); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 418 | } else if (isa<NullNode>(N)) { | 
| David Blaikie | d759fe5 | 2014-09-15 18:39:24 +0000 | [diff] [blame] | 419 | return llvm::make_unique<EmptyHNode>(N); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 420 | } else { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 421 | setError(N, "unknown node kind"); | 
| Craig Topper | c10719f | 2014-04-07 04:17:22 +0000 | [diff] [blame] | 422 | return nullptr; | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 423 | } | 
|  | 424 | } | 
|  | 425 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 426 | void Input::setError(const Twine &Message) { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 427 | setError(CurrentNode, Message); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 428 | } | 
|  | 429 |  | 
| Aaron Ballman | 0e63e53 | 2013-08-15 23:17:53 +0000 | [diff] [blame] | 430 | bool Input::canElideEmptySequence() { | 
|  | 431 | return false; | 
|  | 432 | } | 
|  | 433 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 434 | //===----------------------------------------------------------------------===// | 
|  | 435 | //  Output | 
|  | 436 | //===----------------------------------------------------------------------===// | 
|  | 437 |  | 
| Frederic Riss | 4939e6a | 2015-05-29 17:56:28 +0000 | [diff] [blame] | 438 | Output::Output(raw_ostream &yout, void *context, int WrapColumn) | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 439 | : IO(context), Out(yout), WrapColumn(WrapColumn) {} | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 440 |  | 
| Eugene Zelenko | 72208a8 | 2017-06-21 23:19:47 +0000 | [diff] [blame] | 441 | Output::~Output() = default; | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 442 |  | 
| Nick Kledzik | 4761c60 | 2013-11-21 00:20:10 +0000 | [diff] [blame] | 443 | bool Output::outputting() { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 444 | return true; | 
|  | 445 | } | 
|  | 446 |  | 
|  | 447 | void Output::beginMapping() { | 
|  | 448 | StateStack.push_back(inMapFirstKey); | 
|  | 449 | NeedsNewLine = true; | 
|  | 450 | } | 
|  | 451 |  | 
| Nick Kledzik | 1e6033c | 2013-11-14 00:59:59 +0000 | [diff] [blame] | 452 | bool Output::mapTag(StringRef Tag, bool Use) { | 
|  | 453 | if (Use) { | 
| Chris Bieneman | 92b2e8a | 2016-06-28 21:10:26 +0000 | [diff] [blame] | 454 | // If this tag is being written inside a sequence we should write the start | 
|  | 455 | // of the sequence before writing the tag, otherwise the tag won't be | 
|  | 456 | // attached to the element in the sequence, but rather the sequence itself. | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 457 | bool SequenceElement = false; | 
|  | 458 | if (StateStack.size() > 1) { | 
|  | 459 | auto &E = StateStack[StateStack.size() - 2]; | 
|  | 460 | SequenceElement = inSeqAnyElement(E) || inFlowSeqAnyElement(E); | 
|  | 461 | } | 
| Chris Bieneman | 92b2e8a | 2016-06-28 21:10:26 +0000 | [diff] [blame] | 462 | if (SequenceElement && StateStack.back() == inMapFirstKey) { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 463 | newLineCheck(); | 
| Chris Bieneman | 92b2e8a | 2016-06-28 21:10:26 +0000 | [diff] [blame] | 464 | } else { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 465 | output(" "); | 
| Chris Bieneman | 92b2e8a | 2016-06-28 21:10:26 +0000 | [diff] [blame] | 466 | } | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 467 | output(Tag); | 
| Chris Bieneman | 92b2e8a | 2016-06-28 21:10:26 +0000 | [diff] [blame] | 468 | if (SequenceElement) { | 
|  | 469 | // If we're writing the tag during the first element of a map, the tag | 
|  | 470 | // takes the place of the first element in the sequence. | 
|  | 471 | if (StateStack.back() == inMapFirstKey) { | 
|  | 472 | StateStack.pop_back(); | 
|  | 473 | StateStack.push_back(inMapOtherKey); | 
|  | 474 | } | 
|  | 475 | // Tags inside maps in sequences should act as keys in the map from a | 
|  | 476 | // formatting perspective, so we always want a newline in a sequence. | 
|  | 477 | NeedsNewLine = true; | 
|  | 478 | } | 
| Nick Kledzik | 1e6033c | 2013-11-14 00:59:59 +0000 | [diff] [blame] | 479 | } | 
|  | 480 | return Use; | 
|  | 481 | } | 
|  | 482 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 483 | void Output::endMapping() { | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 484 | // If we did not map anything, we should explicitly emit an empty map | 
|  | 485 | if (StateStack.back() == inMapFirstKey) | 
|  | 486 | output("{}"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 487 | StateStack.pop_back(); | 
|  | 488 | } | 
|  | 489 |  | 
| Peter Collingbourne | 87dd2ab | 2017-01-04 03:51:36 +0000 | [diff] [blame] | 490 | std::vector<StringRef> Output::keys() { | 
|  | 491 | report_fatal_error("invalid call"); | 
|  | 492 | } | 
|  | 493 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 494 | bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault, | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 495 | bool &UseDefault, void *&) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 496 | UseDefault = false; | 
| Zachary Turner | 84efd4d | 2017-03-15 17:47:39 +0000 | [diff] [blame] | 497 | if (Required || !SameAsDefault || WriteDefaultValues) { | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 498 | auto State = StateStack.back(); | 
|  | 499 | if (State == inFlowMapFirstKey || State == inFlowMapOtherKey) { | 
|  | 500 | flowKey(Key); | 
|  | 501 | } else { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 502 | newLineCheck(); | 
|  | 503 | paddedKey(Key); | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 504 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 505 | return true; | 
|  | 506 | } | 
|  | 507 | return false; | 
|  | 508 | } | 
|  | 509 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 510 | void Output::postflightKey(void *) { | 
|  | 511 | if (StateStack.back() == inMapFirstKey) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 512 | StateStack.pop_back(); | 
|  | 513 | StateStack.push_back(inMapOtherKey); | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 514 | } else if (StateStack.back() == inFlowMapFirstKey) { | 
|  | 515 | StateStack.pop_back(); | 
|  | 516 | StateStack.push_back(inFlowMapOtherKey); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 517 | } | 
|  | 518 | } | 
|  | 519 |  | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 520 | void Output::beginFlowMapping() { | 
|  | 521 | StateStack.push_back(inFlowMapFirstKey); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 522 | newLineCheck(); | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 523 | ColumnAtMapFlowStart = Column; | 
|  | 524 | output("{ "); | 
|  | 525 | } | 
|  | 526 |  | 
|  | 527 | void Output::endFlowMapping() { | 
|  | 528 | StateStack.pop_back(); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 529 | outputUpToEndOfLine(" }"); | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 530 | } | 
|  | 531 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 532 | void Output::beginDocuments() { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 533 | outputUpToEndOfLine("---"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 534 | } | 
|  | 535 |  | 
|  | 536 | bool Output::preflightDocument(unsigned index) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 537 | if (index > 0) | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 538 | outputUpToEndOfLine("\n---"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 539 | return true; | 
|  | 540 | } | 
|  | 541 |  | 
|  | 542 | void Output::postflightDocument() { | 
|  | 543 | } | 
|  | 544 |  | 
|  | 545 | void Output::endDocuments() { | 
|  | 546 | output("\n...\n"); | 
|  | 547 | } | 
|  | 548 |  | 
|  | 549 | unsigned Output::beginSequence() { | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 550 | StateStack.push_back(inSeqFirstElement); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 551 | NeedsNewLine = true; | 
|  | 552 | return 0; | 
|  | 553 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 554 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 555 | void Output::endSequence() { | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 556 | // If we did not emit anything, we should explicitly emit an empty sequence | 
|  | 557 | if (StateStack.back() == inSeqFirstElement) | 
|  | 558 | output("[]"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 559 | StateStack.pop_back(); | 
|  | 560 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 561 |  | 
|  | 562 | bool Output::preflightElement(unsigned, void *&) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 563 | return true; | 
|  | 564 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 565 |  | 
|  | 566 | void Output::postflightElement(void *) { | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 567 | if (StateStack.back() == inSeqFirstElement) { | 
|  | 568 | StateStack.pop_back(); | 
|  | 569 | StateStack.push_back(inSeqOtherElement); | 
|  | 570 | } else if (StateStack.back() == inFlowSeqFirstElement) { | 
|  | 571 | StateStack.pop_back(); | 
|  | 572 | StateStack.push_back(inFlowSeqOtherElement); | 
|  | 573 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 574 | } | 
|  | 575 |  | 
|  | 576 | unsigned Output::beginFlowSequence() { | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 577 | StateStack.push_back(inFlowSeqFirstElement); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 578 | newLineCheck(); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 579 | ColumnAtFlowStart = Column; | 
|  | 580 | output("[ "); | 
|  | 581 | NeedFlowSequenceComma = false; | 
|  | 582 | return 0; | 
|  | 583 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 584 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 585 | void Output::endFlowSequence() { | 
|  | 586 | StateStack.pop_back(); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 587 | outputUpToEndOfLine(" ]"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 588 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 589 |  | 
|  | 590 | bool Output::preflightFlowElement(unsigned, void *&) { | 
|  | 591 | if (NeedFlowSequenceComma) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 592 | output(", "); | 
| Frederic Riss | 4939e6a | 2015-05-29 17:56:28 +0000 | [diff] [blame] | 593 | if (WrapColumn && Column > WrapColumn) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 594 | output("\n"); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 595 | for (int i = 0; i < ColumnAtFlowStart; ++i) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 596 | output(" "); | 
|  | 597 | Column = ColumnAtFlowStart; | 
|  | 598 | output("  "); | 
|  | 599 | } | 
|  | 600 | return true; | 
|  | 601 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 602 |  | 
|  | 603 | void Output::postflightFlowElement(void *) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 604 | NeedFlowSequenceComma = true; | 
|  | 605 | } | 
|  | 606 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 607 | void Output::beginEnumScalar() { | 
|  | 608 | EnumerationMatchFound = false; | 
|  | 609 | } | 
|  | 610 |  | 
|  | 611 | bool Output::matchEnumScalar(const char *Str, bool Match) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 612 | if (Match && !EnumerationMatchFound) { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 613 | newLineCheck(); | 
|  | 614 | outputUpToEndOfLine(Str); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 615 | EnumerationMatchFound = true; | 
|  | 616 | } | 
|  | 617 | return false; | 
|  | 618 | } | 
|  | 619 |  | 
| Michael J. Spencer | 731cae3 | 2015-01-23 21:57:50 +0000 | [diff] [blame] | 620 | bool Output::matchEnumFallback() { | 
|  | 621 | if (EnumerationMatchFound) | 
|  | 622 | return false; | 
|  | 623 | EnumerationMatchFound = true; | 
|  | 624 | return true; | 
|  | 625 | } | 
|  | 626 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 627 | void Output::endEnumScalar() { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 628 | if (!EnumerationMatchFound) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 629 | llvm_unreachable("bad runtime enum value"); | 
|  | 630 | } | 
|  | 631 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 632 | bool Output::beginBitSetScalar(bool &DoClear) { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 633 | newLineCheck(); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 634 | output("[ "); | 
|  | 635 | NeedBitValueComma = false; | 
|  | 636 | DoClear = false; | 
|  | 637 | return true; | 
|  | 638 | } | 
|  | 639 |  | 
|  | 640 | bool Output::bitSetMatch(const char *Str, bool Matches) { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 641 | if (Matches) { | 
|  | 642 | if (NeedBitValueComma) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 643 | output(", "); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 644 | output(Str); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 645 | NeedBitValueComma = true; | 
|  | 646 | } | 
|  | 647 | return false; | 
|  | 648 | } | 
|  | 649 |  | 
|  | 650 | void Output::endBitSetScalar() { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 651 | outputUpToEndOfLine(" ]"); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 652 | } | 
|  | 653 |  | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 654 | void Output::scalarString(StringRef &S, QuotingType MustQuote) { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 655 | newLineCheck(); | 
| Rui Ueyama | 106eded | 2013-09-11 04:00:08 +0000 | [diff] [blame] | 656 | if (S.empty()) { | 
|  | 657 | // Print '' for the empty string because leaving the field empty is not | 
|  | 658 | // allowed. | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 659 | outputUpToEndOfLine("''"); | 
| Rui Ueyama | 106eded | 2013-09-11 04:00:08 +0000 | [diff] [blame] | 660 | return; | 
|  | 661 | } | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 662 | if (MustQuote == QuotingType::None) { | 
| David Majnemer | 7788033 | 2014-04-10 07:37:33 +0000 | [diff] [blame] | 663 | // Only quote if we must. | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 664 | outputUpToEndOfLine(S); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 665 | return; | 
|  | 666 | } | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 667 |  | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 668 | const char *const Quote = MustQuote == QuotingType::Single ? "'" : "\""; | 
| Francis Visoiu Mistrih | b213b27 | 2017-12-18 17:38:03 +0000 | [diff] [blame] | 669 | output(Quote); // Starting quote. | 
|  | 670 |  | 
| Graydon Hoare | 926cd9b | 2018-03-27 19:52:45 +0000 | [diff] [blame] | 671 | // When using double-quoted strings (and only in that case), non-printable characters may be | 
|  | 672 | // present, and will be escaped using a variety of unicode-scalar and special short-form | 
|  | 673 | // escapes. This is handled in yaml::escape. | 
|  | 674 | if (MustQuote == QuotingType::Double) { | 
| Pavel Labath | d7e1257 | 2019-04-11 14:57:34 +0000 | [diff] [blame] | 675 | output(yaml::escape(S, /* EscapePrintable= */ false)); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 676 | outputUpToEndOfLine(Quote); | 
| Graydon Hoare | 926cd9b | 2018-03-27 19:52:45 +0000 | [diff] [blame] | 677 | return; | 
|  | 678 | } | 
|  | 679 |  | 
| Pavel Labath | d7e1257 | 2019-04-11 14:57:34 +0000 | [diff] [blame] | 680 | unsigned i = 0; | 
|  | 681 | unsigned j = 0; | 
|  | 682 | unsigned End = S.size(); | 
|  | 683 | const char *Base = S.data(); | 
|  | 684 |  | 
| Graydon Hoare | 926cd9b | 2018-03-27 19:52:45 +0000 | [diff] [blame] | 685 | // When using single-quoted strings, any single quote ' must be doubled to be escaped. | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 686 | while (j < End) { | 
| Graydon Hoare | 926cd9b | 2018-03-27 19:52:45 +0000 | [diff] [blame] | 687 | if (S[j] == '\'') {                    // Escape quotes. | 
|  | 688 | output(StringRef(&Base[i], j - i));  // "flush". | 
|  | 689 | output(StringLiteral("''"));         // Print it as '' | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 690 | i = j + 1; | 
|  | 691 | } | 
|  | 692 | ++j; | 
|  | 693 | } | 
|  | 694 | output(StringRef(&Base[i], j - i)); | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 695 | outputUpToEndOfLine(Quote); // Ending quote. | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 696 | } | 
|  | 697 |  | 
| Alex Lorenz | 68e787b | 2015-05-14 23:08:22 +0000 | [diff] [blame] | 698 | void Output::blockScalarString(StringRef &S) { | 
|  | 699 | if (!StateStack.empty()) | 
|  | 700 | newLineCheck(); | 
|  | 701 | output(" |"); | 
|  | 702 | outputNewLine(); | 
|  | 703 |  | 
|  | 704 | unsigned Indent = StateStack.empty() ? 1 : StateStack.size(); | 
|  | 705 |  | 
|  | 706 | auto Buffer = MemoryBuffer::getMemBuffer(S, "", false); | 
|  | 707 | for (line_iterator Lines(*Buffer, false); !Lines.is_at_end(); ++Lines) { | 
|  | 708 | for (unsigned I = 0; I < Indent; ++I) { | 
|  | 709 | output("  "); | 
|  | 710 | } | 
|  | 711 | output(*Lines); | 
|  | 712 | outputNewLine(); | 
|  | 713 | } | 
|  | 714 | } | 
|  | 715 |  | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 716 | void Output::scalarTag(std::string &Tag) { | 
|  | 717 | if (Tag.empty()) | 
|  | 718 | return; | 
|  | 719 | newLineCheck(); | 
|  | 720 | output(Tag); | 
|  | 721 | output(" "); | 
|  | 722 | } | 
|  | 723 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 724 | void Output::setError(const Twine &message) { | 
|  | 725 | } | 
|  | 726 |  | 
| Aaron Ballman | 0e63e53 | 2013-08-15 23:17:53 +0000 | [diff] [blame] | 727 | bool Output::canElideEmptySequence() { | 
|  | 728 | // Normally, with an optional key/value where the value is an empty sequence, | 
|  | 729 | // the whole key/value can be not written.  But, that produces wrong yaml | 
|  | 730 | // if the key/value is the only thing in the map and the map is used in | 
|  | 731 | // a sequence.  This detects if the this sequence is the first key/value | 
|  | 732 | // in map that itself is embedded in a sequnce. | 
| Rui Ueyama | 38dfffa | 2013-09-11 00:53:07 +0000 | [diff] [blame] | 733 | if (StateStack.size() < 2) | 
| Aaron Ballman | 0e63e53 | 2013-08-15 23:17:53 +0000 | [diff] [blame] | 734 | return true; | 
| Rui Ueyama | 38dfffa | 2013-09-11 00:53:07 +0000 | [diff] [blame] | 735 | if (StateStack.back() != inMapFirstKey) | 
| Aaron Ballman | 0e63e53 | 2013-08-15 23:17:53 +0000 | [diff] [blame] | 736 | return true; | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 737 | return !inSeqAnyElement(StateStack[StateStack.size() - 2]); | 
| Aaron Ballman | 0e63e53 | 2013-08-15 23:17:53 +0000 | [diff] [blame] | 738 | } | 
|  | 739 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 740 | void Output::output(StringRef s) { | 
|  | 741 | Column += s.size(); | 
|  | 742 | Out << s; | 
|  | 743 | } | 
|  | 744 |  | 
|  | 745 | void Output::outputUpToEndOfLine(StringRef s) { | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 746 | output(s); | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 747 | if (StateStack.empty() || (!inFlowSeqAnyElement(StateStack.back()) && | 
|  | 748 | !inFlowMapAnyKey(StateStack.back()))) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 749 | NeedsNewLine = true; | 
|  | 750 | } | 
|  | 751 |  | 
|  | 752 | void Output::outputNewLine() { | 
|  | 753 | Out << "\n"; | 
|  | 754 | Column = 0; | 
|  | 755 | } | 
|  | 756 |  | 
|  | 757 | // if seq at top, indent as if map, then add "- " | 
|  | 758 | // if seq in middle, use "- " if firstKey, else use "  " | 
|  | 759 | // | 
|  | 760 |  | 
|  | 761 | void Output::newLineCheck() { | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 762 | if (!NeedsNewLine) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 763 | return; | 
|  | 764 | NeedsNewLine = false; | 
|  | 765 |  | 
| Scott Linder | ad115b7 | 2018-10-10 18:14:02 +0000 | [diff] [blame] | 766 | outputNewLine(); | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 767 |  | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 768 | if (StateStack.size() == 0) | 
|  | 769 | return; | 
|  | 770 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 771 | unsigned Indent = StateStack.size() - 1; | 
|  | 772 | bool OutputDash = false; | 
|  | 773 |  | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 774 | if (StateStack.back() == inSeqFirstElement || | 
|  | 775 | StateStack.back() == inSeqOtherElement) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 776 | OutputDash = true; | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 777 | } else if ((StateStack.size() > 1) && | 
|  | 778 | ((StateStack.back() == inMapFirstKey) || | 
|  | 779 | inFlowSeqAnyElement(StateStack.back()) || | 
|  | 780 | (StateStack.back() == inFlowMapFirstKey)) && | 
|  | 781 | inSeqAnyElement(StateStack[StateStack.size() - 2])) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 782 | --Indent; | 
|  | 783 | OutputDash = true; | 
|  | 784 | } | 
|  | 785 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 786 | for (unsigned i = 0; i < Indent; ++i) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 787 | output("  "); | 
|  | 788 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 789 | if (OutputDash) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 790 | output("- "); | 
|  | 791 | } | 
|  | 792 |  | 
|  | 793 | } | 
|  | 794 |  | 
|  | 795 | void Output::paddedKey(StringRef key) { | 
|  | 796 | output(key); | 
|  | 797 | output(":"); | 
|  | 798 | const char *spaces = "                "; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 799 | if (key.size() < strlen(spaces)) | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 800 | output(&spaces[key.size()]); | 
|  | 801 | else | 
|  | 802 | output(" "); | 
|  | 803 | } | 
|  | 804 |  | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 805 | void Output::flowKey(StringRef Key) { | 
|  | 806 | if (StateStack.back() == inFlowMapOtherKey) | 
|  | 807 | output(", "); | 
| Frederic Riss | 4939e6a | 2015-05-29 17:56:28 +0000 | [diff] [blame] | 808 | if (WrapColumn && Column > WrapColumn) { | 
| Alex Lorenz | b122508 | 2015-05-04 20:11:40 +0000 | [diff] [blame] | 809 | output("\n"); | 
|  | 810 | for (int I = 0; I < ColumnAtMapFlowStart; ++I) | 
|  | 811 | output(" "); | 
|  | 812 | Column = ColumnAtMapFlowStart; | 
|  | 813 | output("  "); | 
|  | 814 | } | 
|  | 815 | output(Key); | 
|  | 816 | output(": "); | 
|  | 817 | } | 
|  | 818 |  | 
| Scott Linder | c0830f5 | 2018-11-14 19:39:59 +0000 | [diff] [blame] | 819 | NodeKind Output::getNodeKind() { report_fatal_error("invalid call"); } | 
|  | 820 |  | 
|  | 821 | bool Output::inSeqAnyElement(InState State) { | 
|  | 822 | return State == inSeqFirstElement || State == inSeqOtherElement; | 
|  | 823 | } | 
|  | 824 |  | 
|  | 825 | bool Output::inFlowSeqAnyElement(InState State) { | 
|  | 826 | return State == inFlowSeqFirstElement || State == inFlowSeqOtherElement; | 
|  | 827 | } | 
|  | 828 |  | 
|  | 829 | bool Output::inMapAnyKey(InState State) { | 
|  | 830 | return State == inMapFirstKey || State == inMapOtherKey; | 
|  | 831 | } | 
|  | 832 |  | 
|  | 833 | bool Output::inFlowMapAnyKey(InState State) { | 
|  | 834 | return State == inFlowMapFirstKey || State == inFlowMapOtherKey; | 
|  | 835 | } | 
|  | 836 |  | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 837 | //===----------------------------------------------------------------------===// | 
|  | 838 | //  traits for built-in types | 
|  | 839 | //===----------------------------------------------------------------------===// | 
|  | 840 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 841 | void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { | 
|  | 842 | Out << (Val ? "true" : "false"); | 
|  | 843 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 844 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 845 | StringRef ScalarTraits<bool>::input(StringRef Scalar, void *, bool &Val) { | 
|  | 846 | if (Scalar.equals("true")) { | 
|  | 847 | Val = true; | 
|  | 848 | return StringRef(); | 
|  | 849 | } else if (Scalar.equals("false")) { | 
|  | 850 | Val = false; | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 851 | return StringRef(); | 
|  | 852 | } | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 853 | return "invalid boolean"; | 
|  | 854 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 855 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 856 | void ScalarTraits<StringRef>::output(const StringRef &Val, void *, | 
|  | 857 | raw_ostream &Out) { | 
|  | 858 | Out << Val; | 
|  | 859 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 860 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 861 | StringRef ScalarTraits<StringRef>::input(StringRef Scalar, void *, | 
|  | 862 | StringRef &Val) { | 
|  | 863 | Val = Scalar; | 
|  | 864 | return StringRef(); | 
|  | 865 | } | 
| Alex Rosenberg | f298f16 | 2015-01-26 18:02:18 +0000 | [diff] [blame] | 866 |  | 
| John Thompson | 48e018a | 2013-11-19 17:28:21 +0000 | [diff] [blame] | 867 | void ScalarTraits<std::string>::output(const std::string &Val, void *, | 
|  | 868 | raw_ostream &Out) { | 
|  | 869 | Out << Val; | 
|  | 870 | } | 
|  | 871 |  | 
|  | 872 | StringRef ScalarTraits<std::string>::input(StringRef Scalar, void *, | 
|  | 873 | std::string &Val) { | 
|  | 874 | Val = Scalar.str(); | 
|  | 875 | return StringRef(); | 
|  | 876 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 877 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 878 | void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *, | 
|  | 879 | raw_ostream &Out) { | 
|  | 880 | // use temp uin32_t because ostream thinks uint8_t is a character | 
|  | 881 | uint32_t Num = Val; | 
|  | 882 | Out << Num; | 
|  | 883 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 884 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 885 | StringRef ScalarTraits<uint8_t>::input(StringRef Scalar, void *, uint8_t &Val) { | 
|  | 886 | unsigned long long n; | 
|  | 887 | if (getAsUnsignedInteger(Scalar, 0, n)) | 
|  | 888 | return "invalid number"; | 
|  | 889 | if (n > 0xFF) | 
|  | 890 | return "out of range number"; | 
|  | 891 | Val = n; | 
|  | 892 | return StringRef(); | 
|  | 893 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 894 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 895 | void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *, | 
|  | 896 | raw_ostream &Out) { | 
|  | 897 | Out << Val; | 
|  | 898 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 899 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 900 | StringRef ScalarTraits<uint16_t>::input(StringRef Scalar, void *, | 
|  | 901 | uint16_t &Val) { | 
|  | 902 | unsigned long long n; | 
|  | 903 | if (getAsUnsignedInteger(Scalar, 0, n)) | 
|  | 904 | return "invalid number"; | 
|  | 905 | if (n > 0xFFFF) | 
|  | 906 | return "out of range number"; | 
|  | 907 | Val = n; | 
|  | 908 | return StringRef(); | 
|  | 909 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 910 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 911 | void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *, | 
|  | 912 | raw_ostream &Out) { | 
|  | 913 | Out << Val; | 
|  | 914 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 915 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 916 | StringRef ScalarTraits<uint32_t>::input(StringRef Scalar, void *, | 
|  | 917 | uint32_t &Val) { | 
|  | 918 | unsigned long long n; | 
|  | 919 | if (getAsUnsignedInteger(Scalar, 0, n)) | 
|  | 920 | return "invalid number"; | 
|  | 921 | if (n > 0xFFFFFFFFUL) | 
|  | 922 | return "out of range number"; | 
|  | 923 | Val = n; | 
|  | 924 | return StringRef(); | 
|  | 925 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 926 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 927 | void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *, | 
|  | 928 | raw_ostream &Out) { | 
|  | 929 | Out << Val; | 
|  | 930 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 931 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 932 | StringRef ScalarTraits<uint64_t>::input(StringRef Scalar, void *, | 
|  | 933 | uint64_t &Val) { | 
|  | 934 | unsigned long long N; | 
|  | 935 | if (getAsUnsignedInteger(Scalar, 0, N)) | 
|  | 936 | return "invalid number"; | 
|  | 937 | Val = N; | 
|  | 938 | return StringRef(); | 
|  | 939 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 940 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 941 | void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) { | 
|  | 942 | // use temp in32_t because ostream thinks int8_t is a character | 
|  | 943 | int32_t Num = Val; | 
|  | 944 | Out << Num; | 
|  | 945 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 946 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 947 | StringRef ScalarTraits<int8_t>::input(StringRef Scalar, void *, int8_t &Val) { | 
|  | 948 | long long N; | 
|  | 949 | if (getAsSignedInteger(Scalar, 0, N)) | 
|  | 950 | return "invalid number"; | 
|  | 951 | if ((N > 127) || (N < -128)) | 
|  | 952 | return "out of range number"; | 
|  | 953 | Val = N; | 
|  | 954 | return StringRef(); | 
|  | 955 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 956 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 957 | void ScalarTraits<int16_t>::output(const int16_t &Val, void *, | 
|  | 958 | raw_ostream &Out) { | 
|  | 959 | Out << Val; | 
|  | 960 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 961 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 962 | StringRef ScalarTraits<int16_t>::input(StringRef Scalar, void *, int16_t &Val) { | 
|  | 963 | long long N; | 
|  | 964 | if (getAsSignedInteger(Scalar, 0, N)) | 
|  | 965 | return "invalid number"; | 
|  | 966 | if ((N > INT16_MAX) || (N < INT16_MIN)) | 
|  | 967 | return "out of range number"; | 
|  | 968 | Val = N; | 
|  | 969 | return StringRef(); | 
|  | 970 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 971 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 972 | void ScalarTraits<int32_t>::output(const int32_t &Val, void *, | 
|  | 973 | raw_ostream &Out) { | 
|  | 974 | Out << Val; | 
|  | 975 | } | 
|  | 976 |  | 
|  | 977 | StringRef ScalarTraits<int32_t>::input(StringRef Scalar, void *, int32_t &Val) { | 
|  | 978 | long long N; | 
|  | 979 | if (getAsSignedInteger(Scalar, 0, N)) | 
|  | 980 | return "invalid number"; | 
|  | 981 | if ((N > INT32_MAX) || (N < INT32_MIN)) | 
|  | 982 | return "out of range number"; | 
|  | 983 | Val = N; | 
|  | 984 | return StringRef(); | 
|  | 985 | } | 
|  | 986 |  | 
|  | 987 | void ScalarTraits<int64_t>::output(const int64_t &Val, void *, | 
|  | 988 | raw_ostream &Out) { | 
|  | 989 | Out << Val; | 
|  | 990 | } | 
|  | 991 |  | 
|  | 992 | StringRef ScalarTraits<int64_t>::input(StringRef Scalar, void *, int64_t &Val) { | 
|  | 993 | long long N; | 
|  | 994 | if (getAsSignedInteger(Scalar, 0, N)) | 
|  | 995 | return "invalid number"; | 
|  | 996 | Val = N; | 
|  | 997 | return StringRef(); | 
|  | 998 | } | 
|  | 999 |  | 
|  | 1000 | void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1001 | Out << format("%g", Val); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1002 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1003 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1004 | StringRef ScalarTraits<double>::input(StringRef Scalar, void *, double &Val) { | 
| Pavel Labath | ec000f4 | 2017-06-23 12:55:02 +0000 | [diff] [blame] | 1005 | if (to_float(Scalar, Val)) | 
|  | 1006 | return StringRef(); | 
|  | 1007 | return "invalid floating point number"; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1008 | } | 
|  | 1009 |  | 
|  | 1010 | void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) { | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1011 | Out << format("%g", Val); | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1012 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1013 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1014 | StringRef ScalarTraits<float>::input(StringRef Scalar, void *, float &Val) { | 
| Pavel Labath | ec000f4 | 2017-06-23 12:55:02 +0000 | [diff] [blame] | 1015 | if (to_float(Scalar, Val)) | 
|  | 1016 | return StringRef(); | 
|  | 1017 | return "invalid floating point number"; | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1018 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1019 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1020 | void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) { | 
|  | 1021 | uint8_t Num = Val; | 
|  | 1022 | Out << format("0x%02X", Num); | 
|  | 1023 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1024 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1025 | StringRef ScalarTraits<Hex8>::input(StringRef Scalar, void *, Hex8 &Val) { | 
|  | 1026 | unsigned long long n; | 
|  | 1027 | if (getAsUnsignedInteger(Scalar, 0, n)) | 
|  | 1028 | return "invalid hex8 number"; | 
|  | 1029 | if (n > 0xFF) | 
|  | 1030 | return "out of range hex8 number"; | 
|  | 1031 | Val = n; | 
|  | 1032 | return StringRef(); | 
|  | 1033 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1034 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1035 | void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) { | 
|  | 1036 | uint16_t Num = Val; | 
|  | 1037 | Out << format("0x%04X", Num); | 
|  | 1038 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1039 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1040 | StringRef ScalarTraits<Hex16>::input(StringRef Scalar, void *, Hex16 &Val) { | 
|  | 1041 | unsigned long long n; | 
|  | 1042 | if (getAsUnsignedInteger(Scalar, 0, n)) | 
|  | 1043 | return "invalid hex16 number"; | 
|  | 1044 | if (n > 0xFFFF) | 
|  | 1045 | return "out of range hex16 number"; | 
|  | 1046 | Val = n; | 
|  | 1047 | return StringRef(); | 
|  | 1048 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1049 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1050 | void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) { | 
|  | 1051 | uint32_t Num = Val; | 
|  | 1052 | Out << format("0x%08X", Num); | 
|  | 1053 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1054 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1055 | StringRef ScalarTraits<Hex32>::input(StringRef Scalar, void *, Hex32 &Val) { | 
|  | 1056 | unsigned long long n; | 
|  | 1057 | if (getAsUnsignedInteger(Scalar, 0, n)) | 
|  | 1058 | return "invalid hex32 number"; | 
|  | 1059 | if (n > 0xFFFFFFFFUL) | 
|  | 1060 | return "out of range hex32 number"; | 
|  | 1061 | Val = n; | 
|  | 1062 | return StringRef(); | 
|  | 1063 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1064 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1065 | void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) { | 
|  | 1066 | uint64_t Num = Val; | 
|  | 1067 | Out << format("0x%016llX", Num); | 
|  | 1068 | } | 
| Nick Kledzik | f60a927 | 2012-12-12 20:46:15 +0000 | [diff] [blame] | 1069 |  | 
| Benjamin Kramer | 36b0f12 | 2012-12-12 22:40:02 +0000 | [diff] [blame] | 1070 | StringRef ScalarTraits<Hex64>::input(StringRef Scalar, void *, Hex64 &Val) { | 
|  | 1071 | unsigned long long Num; | 
|  | 1072 | if (getAsUnsignedInteger(Scalar, 0, Num)) | 
|  | 1073 | return "invalid hex64 number"; | 
|  | 1074 | Val = Num; | 
|  | 1075 | return StringRef(); | 
|  | 1076 | } |