/* * Copyright (c) 2021-2024 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef PANDA_ASSEMBLER_IDE_HELPERS_H #define PANDA_ASSEMBLER_IDE_HELPERS_H #include namespace ark::pandasm { // NOLINTBEGIN(misc-non-private-member-variables-in-classes) struct SourcePosition { size_t line = 0; size_t column = 0; std::string JsonSerialize() const { std::stringstream ss; ss << "{ " << "\"line\": " << line << ", " << "\"column\": " << column << " }"; return ss.str(); } }; struct SourceLocation { SourcePosition begin; SourcePosition end; std::string JsonSerialize() const { std::stringstream ss; ss << "{ " << "\"begin\": " << begin.JsonSerialize() << ", " << "\"end\": " << end.JsonSerialize(); ss << " }"; return ss.str(); } }; // NOLINTEND(misc-non-private-member-variables-in-classes) template std::string JsonSerializeItemBody(const T &item) { std::stringstream ss; std::string quotedName = "\"" + item.name + "\""; ss << "{ " << "\"name\": " << quotedName; if (item.fileLocation && item.fileLocation->isDefined) { ss << ", " << "\"bodyLocation\": " << item.bodyLocation.JsonSerialize() << " }"; } else { ss << " }"; } return ss.str(); } template std::string JsonSerializeProgramItems(const T &itemTable) { std::stringstream ss; ss << "[ "; auto it = itemTable.begin(); if (it != itemTable.end()) { ss << JsonSerializeItemBody(it->second); ++it; } while (it != itemTable.end()) { ss << ", " << JsonSerializeItemBody(it->second); ++it; } ss << " ]"; return ss.str(); } } // namespace ark::pandasm #endif // PANDA_ASSEMBLER_IDE_HELPERS_H