1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
//===--- MetadataSource.cpp - Swift Metadata Sources for Reflection -------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#if SWIFT_ENABLE_REFLECTION
#include "swift/RemoteInspection/MetadataSource.h"
#include <iostream>
using namespace swift;
using namespace reflection;
class PrintMetadataSource
: public MetadataSourceVisitor<PrintMetadataSource, void> {
std::ostream &stream;
unsigned Indent;
std::ostream &indent(unsigned Amount) {
for (unsigned i = 0; i < Amount; ++i)
stream << " ";
return stream;
}
std::ostream &printHeader(std::string Name) {
indent(Indent) << "(" << Name;
return stream;
}
std::ostream &printField(std::string name, std::string value) {
if (!name.empty())
stream << " " << name << "=" << value;
else
stream << " " << value;
return stream;
}
void printRec(const MetadataSource *MS) {
stream << "\n";
Indent += 2;
visit(MS);
Indent -= 2;
}
void closeForm() {
stream << ")";
}
public:
PrintMetadataSource(std::ostream &stream, unsigned Indent)
: stream(stream), Indent(Indent) {}
void
visitClosureBindingMetadataSource(const ClosureBindingMetadataSource *CB) {
printHeader("closure_binding");
printField("index", std::to_string(CB->getIndex()));
closeForm();
}
void
visitReferenceCaptureMetadataSource(const ReferenceCaptureMetadataSource *RC){
printHeader("reference_capture");
printField("index", std::to_string(RC->getIndex()));
closeForm();
}
void
visitMetadataCaptureMetadataSource(const MetadataCaptureMetadataSource *MC){
printHeader("metadata_capture");
printField("index", std::to_string(MC->getIndex()));
closeForm();
}
void
visitGenericArgumentMetadataSource(const GenericArgumentMetadataSource *GA) {
printHeader("generic_argument");
printField("index", std::to_string(GA->getIndex()));
printRec(GA->getSource());
closeForm();
}
void visitSelfMetadataSource(const SelfMetadataSource *S) {
printHeader("self");
closeForm();
}
void
visitSelfWitnessTableMetadataSource(const SelfWitnessTableMetadataSource *W) {
printHeader("self_witness_table");
closeForm();
}
};
void MetadataSource::dump() const { dump(std::cerr, 0); }
void MetadataSource::dump(std::ostream &stream, unsigned Indent) const {
PrintMetadataSource(stream, Indent).visit(this);
stream << "\n";
}
#endif
|