123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692 |
- //===- TextStub.cpp -------------------------------------------------------===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- //
- // Implements the text stub file reader/writer.
- //
- //===----------------------------------------------------------------------===//
- #include "TextAPIContext.h"
- #include "TextStubCommon.h"
- #include "llvm/ADT/BitmaskEnum.h"
- #include "llvm/ADT/SmallString.h"
- #include "llvm/ADT/StringRef.h"
- #include "llvm/Support/Allocator.h"
- #include "llvm/Support/SourceMgr.h"
- #include "llvm/Support/YAMLTraits.h"
- #include "llvm/Support/raw_ostream.h"
- #include "llvm/TextAPI/MachO/Architecture.h"
- #include "llvm/TextAPI/MachO/ArchitectureSet.h"
- #include "llvm/TextAPI/MachO/InterfaceFile.h"
- #include "llvm/TextAPI/MachO/PackedVersion.h"
- #include "llvm/TextAPI/MachO/TextAPIReader.h"
- #include "llvm/TextAPI/MachO/TextAPIWriter.h"
- #include <algorithm>
- #include <set>
- // clang-format off
- /*
- YAML Format specification.
- The TBD v1 format only support two level address libraries and is per
- definition application extension safe.
- --- # the tag !tapi-tbd-v1 is optional and
- # shouldn't be emitted to support older linker.
- archs: [ armv7, armv7s, arm64 ] # the list of architecture slices that are
- # supported by this file.
- platform: ios # Specifies the platform (macosx, ios, etc)
- install-name: /u/l/libfoo.dylib #
- current-version: 1.2.3 # Optional: defaults to 1.0
- compatibility-version: 1.0 # Optional: defaults to 1.0
- swift-version: 0 # Optional: defaults to 0
- objc-constraint: none # Optional: defaults to none
- exports: # List of export sections
- ...
- Each export section is defined as following:
- - archs: [ arm64 ] # the list of architecture slices
- allowed-clients: [ client ] # Optional: List of clients
- re-exports: [ ] # Optional: List of re-exports
- symbols: [ _sym ] # Optional: List of symbols
- objc-classes: [] # Optional: List of Objective-C classes
- objc-ivars: [] # Optional: List of Objective C Instance
- # Variables
- weak-def-symbols: [] # Optional: List of weak defined symbols
- thread-local-symbols: [] # Optional: List of thread local symbols
- */
- /*
- YAML Format specification.
- --- !tapi-tbd-v2
- archs: [ armv7, armv7s, arm64 ] # the list of architecture slices that are
- # supported by this file.
- uuids: [ armv7:... ] # Optional: List of architecture and UUID pairs.
- platform: ios # Specifies the platform (macosx, ios, etc)
- flags: [] # Optional:
- install-name: /u/l/libfoo.dylib #
- current-version: 1.2.3 # Optional: defaults to 1.0
- compatibility-version: 1.0 # Optional: defaults to 1.0
- swift-version: 0 # Optional: defaults to 0
- objc-constraint: retain_release # Optional: defaults to retain_release
- parent-umbrella: # Optional:
- exports: # List of export sections
- ...
- undefineds: # List of undefineds sections
- ...
- Each export section is defined as following:
- - archs: [ arm64 ] # the list of architecture slices
- allowed-clients: [ client ] # Optional: List of clients
- re-exports: [ ] # Optional: List of re-exports
- symbols: [ _sym ] # Optional: List of symbols
- objc-classes: [] # Optional: List of Objective-C classes
- objc-ivars: [] # Optional: List of Objective C Instance
- # Variables
- weak-def-symbols: [] # Optional: List of weak defined symbols
- thread-local-symbols: [] # Optional: List of thread local symbols
- Each undefineds section is defined as following:
- - archs: [ arm64 ] # the list of architecture slices
- symbols: [ _sym ] # Optional: List of symbols
- objc-classes: [] # Optional: List of Objective-C classes
- objc-ivars: [] # Optional: List of Objective C Instance Variables
- weak-ref-symbols: [] # Optional: List of weak defined symbols
- */
- /*
- YAML Format specification.
- --- !tapi-tbd-v3
- archs: [ armv7, armv7s, arm64 ] # the list of architecture slices that are
- # supported by this file.
- uuids: [ armv7:... ] # Optional: List of architecture and UUID pairs.
- platform: ios # Specifies the platform (macosx, ios, etc)
- flags: [] # Optional:
- install-name: /u/l/libfoo.dylib #
- current-version: 1.2.3 # Optional: defaults to 1.0
- compatibility-version: 1.0 # Optional: defaults to 1.0
- swift-abi-version: 0 # Optional: defaults to 0
- objc-constraint: retain_release # Optional: defaults to retain_release
- parent-umbrella: # Optional:
- exports: # List of export sections
- ...
- undefineds: # List of undefineds sections
- ...
- Each export section is defined as following:
- - archs: [ arm64 ] # the list of architecture slices
- allowed-clients: [ client ] # Optional: List of clients
- re-exports: [ ] # Optional: List of re-exports
- symbols: [ _sym ] # Optional: List of symbols
- objc-classes: [] # Optional: List of Objective-C classes
- objc-eh-types: [] # Optional: List of Objective-C classes
- # with EH
- objc-ivars: [] # Optional: List of Objective C Instance
- # Variables
- weak-def-symbols: [] # Optional: List of weak defined symbols
- thread-local-symbols: [] # Optional: List of thread local symbols
- Each undefineds section is defined as following:
- - archs: [ arm64 ] # the list of architecture slices
- symbols: [ _sym ] # Optional: List of symbols
- objc-classes: [] # Optional: List of Objective-C classes
- objc-eh-types: [] # Optional: List of Objective-C classes
- # with EH
- objc-ivars: [] # Optional: List of Objective C Instance Variables
- weak-ref-symbols: [] # Optional: List of weak defined symbols
- */
- // clang-format on
- using namespace llvm;
- using namespace llvm::yaml;
- using namespace llvm::MachO;
- namespace {
- struct ExportSection {
- std::vector<Architecture> Architectures;
- std::vector<FlowStringRef> AllowableClients;
- std::vector<FlowStringRef> ReexportedLibraries;
- std::vector<FlowStringRef> Symbols;
- std::vector<FlowStringRef> Classes;
- std::vector<FlowStringRef> ClassEHs;
- std::vector<FlowStringRef> IVars;
- std::vector<FlowStringRef> WeakDefSymbols;
- std::vector<FlowStringRef> TLVSymbols;
- };
- struct UndefinedSection {
- std::vector<Architecture> Architectures;
- std::vector<FlowStringRef> Symbols;
- std::vector<FlowStringRef> Classes;
- std::vector<FlowStringRef> ClassEHs;
- std::vector<FlowStringRef> IVars;
- std::vector<FlowStringRef> WeakRefSymbols;
- };
- // clang-format off
- enum TBDFlags : unsigned {
- None = 0U,
- FlatNamespace = 1U << 0,
- NotApplicationExtensionSafe = 1U << 1,
- InstallAPI = 1U << 2,
- LLVM_MARK_AS_BITMASK_ENUM(/*LargestValue=*/InstallAPI),
- };
- // clang-format on
- } // end anonymous namespace.
- LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(Architecture)
- LLVM_YAML_IS_SEQUENCE_VECTOR(ExportSection)
- LLVM_YAML_IS_SEQUENCE_VECTOR(UndefinedSection)
- namespace llvm {
- namespace yaml {
- template <> struct MappingTraits<ExportSection> {
- static void mapping(IO &IO, ExportSection &Section) {
- const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO.getContext());
- assert((!Ctx || (Ctx && Ctx->FileKind != FileType::Invalid)) &&
- "File type is not set in YAML context");
- IO.mapRequired("archs", Section.Architectures);
- if (Ctx->FileKind == FileType::TBD_V1)
- IO.mapOptional("allowed-clients", Section.AllowableClients);
- else
- IO.mapOptional("allowable-clients", Section.AllowableClients);
- IO.mapOptional("re-exports", Section.ReexportedLibraries);
- IO.mapOptional("symbols", Section.Symbols);
- IO.mapOptional("objc-classes", Section.Classes);
- if (Ctx->FileKind == FileType::TBD_V3)
- IO.mapOptional("objc-eh-types", Section.ClassEHs);
- IO.mapOptional("objc-ivars", Section.IVars);
- IO.mapOptional("weak-def-symbols", Section.WeakDefSymbols);
- IO.mapOptional("thread-local-symbols", Section.TLVSymbols);
- }
- };
- template <> struct MappingTraits<UndefinedSection> {
- static void mapping(IO &IO, UndefinedSection &Section) {
- const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO.getContext());
- assert((!Ctx || (Ctx && Ctx->FileKind != FileType::Invalid)) &&
- "File type is not set in YAML context");
- IO.mapRequired("archs", Section.Architectures);
- IO.mapOptional("symbols", Section.Symbols);
- IO.mapOptional("objc-classes", Section.Classes);
- if (Ctx->FileKind == FileType::TBD_V3)
- IO.mapOptional("objc-eh-types", Section.ClassEHs);
- IO.mapOptional("objc-ivars", Section.IVars);
- IO.mapOptional("weak-ref-symbols", Section.WeakRefSymbols);
- }
- };
- template <> struct ScalarBitSetTraits<TBDFlags> {
- static void bitset(IO &IO, TBDFlags &Flags) {
- IO.bitSetCase(Flags, "flat_namespace", TBDFlags::FlatNamespace);
- IO.bitSetCase(Flags, "not_app_extension_safe",
- TBDFlags::NotApplicationExtensionSafe);
- IO.bitSetCase(Flags, "installapi", TBDFlags::InstallAPI);
- }
- };
- template <> struct MappingTraits<const InterfaceFile *> {
- struct NormalizedTBD {
- explicit NormalizedTBD(IO &IO) {}
- NormalizedTBD(IO &IO, const InterfaceFile *&File) {
- Architectures = File->getArchitectures();
- UUIDs = File->uuids();
- Platforms = File->getPlatforms();
- InstallName = File->getInstallName();
- CurrentVersion = PackedVersion(File->getCurrentVersion());
- CompatibilityVersion = PackedVersion(File->getCompatibilityVersion());
- SwiftABIVersion = File->getSwiftABIVersion();
- ObjCConstraint = File->getObjCConstraint();
- Flags = TBDFlags::None;
- if (!File->isApplicationExtensionSafe())
- Flags |= TBDFlags::NotApplicationExtensionSafe;
- if (!File->isTwoLevelNamespace())
- Flags |= TBDFlags::FlatNamespace;
- if (File->isInstallAPI())
- Flags |= TBDFlags::InstallAPI;
- for (const auto &Iter : File->umbrellas()) {
- ParentUmbrella = Iter.second;
- break;
- }
- std::set<ArchitectureSet> ArchSet;
- for (const auto &Library : File->allowableClients())
- ArchSet.insert(Library.getArchitectures());
- for (const auto &Library : File->reexportedLibraries())
- ArchSet.insert(Library.getArchitectures());
- std::map<const Symbol *, ArchitectureSet> SymbolToArchSet;
- for (const auto *Symbol : File->exports()) {
- auto Architectures = Symbol->getArchitectures();
- SymbolToArchSet[Symbol] = Architectures;
- ArchSet.insert(Architectures);
- }
- for (auto Architectures : ArchSet) {
- ExportSection Section;
- Section.Architectures = Architectures;
- for (const auto &Library : File->allowableClients())
- if (Library.getArchitectures() == Architectures)
- Section.AllowableClients.emplace_back(Library.getInstallName());
- for (const auto &Library : File->reexportedLibraries())
- if (Library.getArchitectures() == Architectures)
- Section.ReexportedLibraries.emplace_back(Library.getInstallName());
- for (const auto &SymArch : SymbolToArchSet) {
- if (SymArch.second != Architectures)
- continue;
- const auto *Symbol = SymArch.first;
- switch (Symbol->getKind()) {
- case SymbolKind::GlobalSymbol:
- if (Symbol->isWeakDefined())
- Section.WeakDefSymbols.emplace_back(Symbol->getName());
- else if (Symbol->isThreadLocalValue())
- Section.TLVSymbols.emplace_back(Symbol->getName());
- else
- Section.Symbols.emplace_back(Symbol->getName());
- break;
- case SymbolKind::ObjectiveCClass:
- if (File->getFileType() != FileType::TBD_V3)
- Section.Classes.emplace_back(
- copyString("_" + Symbol->getName().str()));
- else
- Section.Classes.emplace_back(Symbol->getName());
- break;
- case SymbolKind::ObjectiveCClassEHType:
- if (File->getFileType() != FileType::TBD_V3)
- Section.Symbols.emplace_back(
- copyString("_OBJC_EHTYPE_$_" + Symbol->getName().str()));
- else
- Section.ClassEHs.emplace_back(Symbol->getName());
- break;
- case SymbolKind::ObjectiveCInstanceVariable:
- if (File->getFileType() != FileType::TBD_V3)
- Section.IVars.emplace_back(
- copyString("_" + Symbol->getName().str()));
- else
- Section.IVars.emplace_back(Symbol->getName());
- break;
- }
- }
- llvm::sort(Section.Symbols.begin(), Section.Symbols.end());
- llvm::sort(Section.Classes.begin(), Section.Classes.end());
- llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end());
- llvm::sort(Section.IVars.begin(), Section.IVars.end());
- llvm::sort(Section.WeakDefSymbols.begin(),
- Section.WeakDefSymbols.end());
- llvm::sort(Section.TLVSymbols.begin(), Section.TLVSymbols.end());
- Exports.emplace_back(std::move(Section));
- }
- ArchSet.clear();
- SymbolToArchSet.clear();
- for (const auto *Symbol : File->undefineds()) {
- auto Architectures = Symbol->getArchitectures();
- SymbolToArchSet[Symbol] = Architectures;
- ArchSet.insert(Architectures);
- }
- for (auto Architectures : ArchSet) {
- UndefinedSection Section;
- Section.Architectures = Architectures;
- for (const auto &SymArch : SymbolToArchSet) {
- if (SymArch.second != Architectures)
- continue;
- const auto *Symbol = SymArch.first;
- switch (Symbol->getKind()) {
- case SymbolKind::GlobalSymbol:
- if (Symbol->isWeakReferenced())
- Section.WeakRefSymbols.emplace_back(Symbol->getName());
- else
- Section.Symbols.emplace_back(Symbol->getName());
- break;
- case SymbolKind::ObjectiveCClass:
- if (File->getFileType() != FileType::TBD_V3)
- Section.Classes.emplace_back(
- copyString("_" + Symbol->getName().str()));
- else
- Section.Classes.emplace_back(Symbol->getName());
- break;
- case SymbolKind::ObjectiveCClassEHType:
- if (File->getFileType() != FileType::TBD_V3)
- Section.Symbols.emplace_back(
- copyString("_OBJC_EHTYPE_$_" + Symbol->getName().str()));
- else
- Section.ClassEHs.emplace_back(Symbol->getName());
- break;
- case SymbolKind::ObjectiveCInstanceVariable:
- if (File->getFileType() != FileType::TBD_V3)
- Section.IVars.emplace_back(
- copyString("_" + Symbol->getName().str()));
- else
- Section.IVars.emplace_back(Symbol->getName());
- break;
- }
- }
- llvm::sort(Section.Symbols.begin(), Section.Symbols.end());
- llvm::sort(Section.Classes.begin(), Section.Classes.end());
- llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end());
- llvm::sort(Section.IVars.begin(), Section.IVars.end());
- llvm::sort(Section.WeakRefSymbols.begin(),
- Section.WeakRefSymbols.end());
- Undefineds.emplace_back(std::move(Section));
- }
- }
- // TBD v1 - TBD v3 files only support one platform and several
- // architectures. It is possible to have more than one platform for TBD v3
- // files, but the architectures don't apply to all
- // platforms, specifically to filter out the i386 slice from
- // platform macCatalyst.
- TargetList synthesizeTargets(ArchitectureSet Architectures,
- const PlatformSet &Platforms) {
- TargetList Targets;
- for (auto Platform : Platforms) {
- Platform = mapToPlatformKind(Platform, Architectures.hasX86());
- for (const auto &&Architecture : Architectures) {
- if ((Architecture == AK_i386) &&
- (Platform == PlatformKind::macCatalyst))
- continue;
- Targets.emplace_back(Architecture, Platform);
- }
- }
- return Targets;
- }
- const InterfaceFile *denormalize(IO &IO) {
- auto Ctx = reinterpret_cast<TextAPIContext *>(IO.getContext());
- assert(Ctx);
- auto *File = new InterfaceFile;
- File->setPath(Ctx->Path);
- File->setFileType(Ctx->FileKind);
- File->addTargets(synthesizeTargets(Architectures, Platforms));
- for (auto &ID : UUIDs)
- File->addUUID(ID.first, ID.second);
- File->setInstallName(InstallName);
- File->setCurrentVersion(CurrentVersion);
- File->setCompatibilityVersion(CompatibilityVersion);
- File->setSwiftABIVersion(SwiftABIVersion);
- File->setObjCConstraint(ObjCConstraint);
- for (const auto &Target : File->targets())
- File->addParentUmbrella(Target, ParentUmbrella);
- if (Ctx->FileKind == FileType::TBD_V1) {
- File->setTwoLevelNamespace();
- File->setApplicationExtensionSafe();
- } else {
- File->setTwoLevelNamespace(!(Flags & TBDFlags::FlatNamespace));
- File->setApplicationExtensionSafe(
- !(Flags & TBDFlags::NotApplicationExtensionSafe));
- File->setInstallAPI(Flags & TBDFlags::InstallAPI);
- }
- for (const auto &Section : Exports) {
- const auto Targets =
- synthesizeTargets(Section.Architectures, Platforms);
- for (const auto &Lib : Section.AllowableClients)
- for (const auto &Target : Targets)
- File->addAllowableClient(Lib, Target);
- for (const auto &Lib : Section.ReexportedLibraries)
- for (const auto &Target : Targets)
- File->addReexportedLibrary(Lib, Target);
- for (const auto &Symbol : Section.Symbols) {
- if (Ctx->FileKind != FileType::TBD_V3 &&
- Symbol.value.startswith("_OBJC_EHTYPE_$_"))
- File->addSymbol(SymbolKind::ObjectiveCClassEHType,
- Symbol.value.drop_front(15), Targets);
- else
- File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets);
- }
- for (auto &Symbol : Section.Classes) {
- auto Name = Symbol.value;
- if (Ctx->FileKind != FileType::TBD_V3)
- Name = Name.drop_front();
- File->addSymbol(SymbolKind::ObjectiveCClass, Name, Targets);
- }
- for (auto &Symbol : Section.ClassEHs)
- File->addSymbol(SymbolKind::ObjectiveCClassEHType, Symbol, Targets);
- for (auto &Symbol : Section.IVars) {
- auto Name = Symbol.value;
- if (Ctx->FileKind != FileType::TBD_V3)
- Name = Name.drop_front();
- File->addSymbol(SymbolKind::ObjectiveCInstanceVariable, Name,
- Targets);
- }
- for (auto &Symbol : Section.WeakDefSymbols)
- File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
- SymbolFlags::WeakDefined);
- for (auto &Symbol : Section.TLVSymbols)
- File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
- SymbolFlags::ThreadLocalValue);
- }
- for (const auto &Section : Undefineds) {
- const auto Targets =
- synthesizeTargets(Section.Architectures, Platforms);
- for (auto &Symbol : Section.Symbols) {
- if (Ctx->FileKind != FileType::TBD_V3 &&
- Symbol.value.startswith("_OBJC_EHTYPE_$_"))
- File->addSymbol(SymbolKind::ObjectiveCClassEHType,
- Symbol.value.drop_front(15), Targets,
- SymbolFlags::Undefined);
- else
- File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
- SymbolFlags::Undefined);
- }
- for (auto &Symbol : Section.Classes) {
- auto Name = Symbol.value;
- if (Ctx->FileKind != FileType::TBD_V3)
- Name = Name.drop_front();
- File->addSymbol(SymbolKind::ObjectiveCClass, Name, Targets,
- SymbolFlags::Undefined);
- }
- for (auto &Symbol : Section.ClassEHs)
- File->addSymbol(SymbolKind::ObjectiveCClassEHType, Symbol, Targets,
- SymbolFlags::Undefined);
- for (auto &Symbol : Section.IVars) {
- auto Name = Symbol.value;
- if (Ctx->FileKind != FileType::TBD_V3)
- Name = Name.drop_front();
- File->addSymbol(SymbolKind::ObjectiveCInstanceVariable, Name, Targets,
- SymbolFlags::Undefined);
- }
- for (auto &Symbol : Section.WeakRefSymbols)
- File->addSymbol(SymbolKind::GlobalSymbol, Symbol, Targets,
- SymbolFlags::Undefined | SymbolFlags::WeakReferenced);
- }
- return File;
- }
- llvm::BumpPtrAllocator Allocator;
- StringRef copyString(StringRef String) {
- if (String.empty())
- return {};
- void *Ptr = Allocator.Allocate(String.size(), 1);
- memcpy(Ptr, String.data(), String.size());
- return StringRef(reinterpret_cast<const char *>(Ptr), String.size());
- }
- std::vector<Architecture> Architectures;
- std::vector<UUID> UUIDs;
- PlatformSet Platforms;
- StringRef InstallName;
- PackedVersion CurrentVersion;
- PackedVersion CompatibilityVersion;
- SwiftVersion SwiftABIVersion{0};
- ObjCConstraintType ObjCConstraint{ObjCConstraintType::None};
- TBDFlags Flags{TBDFlags::None};
- StringRef ParentUmbrella;
- std::vector<ExportSection> Exports;
- std::vector<UndefinedSection> Undefineds;
- };
- static void mapping(IO &IO, const InterfaceFile *&File) {
- auto *Ctx = reinterpret_cast<TextAPIContext *>(IO.getContext());
- assert((!Ctx || !IO.outputting() ||
- (Ctx && Ctx->FileKind != FileType::Invalid)) &&
- "File type is not set in YAML context");
- MappingNormalization<NormalizedTBD, const InterfaceFile *> Keys(IO, File);
- // prope file type when reading.
- if (!IO.outputting()) {
- if (IO.mapTag("!tapi-tbd-v3", false))
- Ctx->FileKind = FileType::TBD_V3;
- else if (IO.mapTag("!tapi-tbd-v2", false))
- Ctx->FileKind = FileType::TBD_V2;
- else if (IO.mapTag("!tapi-tbd-v1", false) ||
- IO.mapTag("tag:yaml.org,2002:map", false))
- Ctx->FileKind = FileType::TBD_V1;
- else {
- IO.setError("unsupported file type");
- return;
- }
- }
- // Set file type when writing.
- if (IO.outputting()) {
- switch (Ctx->FileKind) {
- default:
- llvm_unreachable("unexpected file type");
- case FileType::TBD_V1:
- // Don't write the tag into the .tbd file for TBD v1.
- break;
- case FileType::TBD_V2:
- IO.mapTag("!tapi-tbd-v2", true);
- break;
- case FileType::TBD_V3:
- IO.mapTag("!tapi-tbd-v3", true);
- break;
- }
- }
- IO.mapRequired("archs", Keys->Architectures);
- if (Ctx->FileKind != FileType::TBD_V1)
- IO.mapOptional("uuids", Keys->UUIDs);
- IO.mapRequired("platform", Keys->Platforms);
- if (Ctx->FileKind != FileType::TBD_V1)
- IO.mapOptional("flags", Keys->Flags, TBDFlags::None);
- IO.mapRequired("install-name", Keys->InstallName);
- IO.mapOptional("current-version", Keys->CurrentVersion,
- PackedVersion(1, 0, 0));
- IO.mapOptional("compatibility-version", Keys->CompatibilityVersion,
- PackedVersion(1, 0, 0));
- if (Ctx->FileKind != FileType::TBD_V3)
- IO.mapOptional("swift-version", Keys->SwiftABIVersion, SwiftVersion(0));
- else
- IO.mapOptional("swift-abi-version", Keys->SwiftABIVersion,
- SwiftVersion(0));
- IO.mapOptional("objc-constraint", Keys->ObjCConstraint,
- (Ctx->FileKind == FileType::TBD_V1)
- ? ObjCConstraintType::None
- : ObjCConstraintType::Retain_Release);
- if (Ctx->FileKind != FileType::TBD_V1)
- IO.mapOptional("parent-umbrella", Keys->ParentUmbrella, StringRef());
- IO.mapOptional("exports", Keys->Exports);
- if (Ctx->FileKind != FileType::TBD_V1)
- IO.mapOptional("undefineds", Keys->Undefineds);
- }
- };
- template <>
- struct DocumentListTraits<std::vector<const MachO::InterfaceFile *>> {
- static size_t size(IO &IO, std::vector<const MachO::InterfaceFile *> &Seq) {
- return Seq.size();
- }
- static const InterfaceFile *&
- element(IO &IO, std::vector<const InterfaceFile *> &Seq, size_t Index) {
- if (Index >= Seq.size())
- Seq.resize(Index + 1);
- return Seq[Index];
- }
- };
- } // end namespace yaml.
- namespace MachO {
- static void DiagHandler(const SMDiagnostic &Diag, void *Context) {
- auto *File = static_cast<TextAPIContext *>(Context);
- SmallString<1024> Message;
- raw_svector_ostream S(Message);
- SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(), File->Path,
- Diag.getLineNo(), Diag.getColumnNo(), Diag.getKind(),
- Diag.getMessage(), Diag.getLineContents(),
- Diag.getRanges(), Diag.getFixIts());
- NewDiag.print(nullptr, S);
- File->ErrorMessage = ("malformed file\n" + Message).str();
- }
- Expected<std::unique_ptr<InterfaceFile>>
- TextAPIReader::get(MemoryBufferRef InputBuffer) {
- TextAPIContext Ctx;
- Ctx.Path = InputBuffer.getBufferIdentifier();
- yaml::Input YAMLIn(InputBuffer.getBuffer(), &Ctx, DiagHandler, &Ctx);
- // Fill vector with interface file objects created by parsing the YAML file.
- std::vector<const InterfaceFile *> Files;
- YAMLIn >> Files;
- // YAMLIn dynamically allocates for Interface file and in case of error,
- // memory leak will occur unless wrapped around unique_ptr
- auto File = std::unique_ptr<InterfaceFile>(
- const_cast<InterfaceFile *>(Files.front()));
- if (YAMLIn.error())
- return make_error<StringError>(Ctx.ErrorMessage, YAMLIn.error());
- return std::move(File);
- }
- Error TextAPIWriter::writeToStream(raw_ostream &OS, const InterfaceFile &File) {
- TextAPIContext Ctx;
- Ctx.Path = File.getPath();
- Ctx.FileKind = File.getFileType();
- llvm::yaml::Output YAMLOut(OS, &Ctx, /*WrapColumn=*/80);
- std::vector<const InterfaceFile *> Files;
- Files.emplace_back(&File);
- // Stream out yaml.
- YAMLOut << Files;
- return Error::success();
- }
- } // end namespace MachO.
- } // end namespace llvm.
|