clang 19.0.0git
PlistSupport.h
Go to the documentation of this file.
1//===- PlistSupport.h - Plist Output Utilities ------------------*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_BASIC_PLISTSUPPORT_H
10#define LLVM_CLANG_BASIC_PLISTSUPPORT_H
11
12#include "clang/Basic/LLVM.h"
15#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/SmallVector.h"
17#include "llvm/ADT/StringRef.h"
18#include "llvm/Support/raw_ostream.h"
19#include <cassert>
20#include <cstdint>
21
22namespace clang {
23namespace markup {
24
25using FIDMap = llvm::DenseMap<FileID, unsigned>;
26
27inline unsigned AddFID(FIDMap &FIDs, SmallVectorImpl<FileID> &V,
28 FileID FID) {
29 FIDMap::iterator I = FIDs.find(FID);
30 if (I != FIDs.end())
31 return I->second;
32 unsigned NewValue = V.size();
33 FIDs[FID] = NewValue;
34 V.push_back(FID);
35 return NewValue;
36}
37
38inline unsigned AddFID(FIDMap &FIDs, SmallVectorImpl<FileID> &V,
40 FileID FID = SM.getFileID(SM.getExpansionLoc(L));
41 return AddFID(FIDs, V, FID);
42}
43
44inline unsigned GetFID(const FIDMap &FIDs, FileID FID) {
45 FIDMap::const_iterator I = FIDs.find(FID);
46 assert(I != FIDs.end());
47 return I->second;
48}
49
50inline unsigned GetFID(const FIDMap &FIDs, const SourceManager &SM,
52 FileID FID = SM.getFileID(SM.getExpansionLoc(L));
53 return GetFID(FIDs, FID);
54}
55
56inline raw_ostream &Indent(raw_ostream &o, const unsigned indent) {
57 for (unsigned i = 0; i < indent; ++i)
58 o << ' ';
59 return o;
60}
61
62inline raw_ostream &EmitPlistHeader(raw_ostream &o) {
63 static const char *PlistHeader =
64 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
65 "<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" "
66 "\"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
67 "<plist version=\"1.0\">\n";
68 return o << PlistHeader;
69}
70
71inline raw_ostream &EmitInteger(raw_ostream &o, int64_t value) {
72 o << "<integer>";
73 o << value;
74 o << "</integer>";
75 return o;
76}
77
78inline raw_ostream &EmitString(raw_ostream &o, StringRef s) {
79 o << "<string>";
80 for (char c : s) {
81 switch (c) {
82 default:
83 o << c;
84 break;
85 case '&':
86 o << "&amp;";
87 break;
88 case '<':
89 o << "&lt;";
90 break;
91 case '>':
92 o << "&gt;";
93 break;
94 case '\'':
95 o << "&apos;";
96 break;
97 case '\"':
98 o << "&quot;";
99 break;
100 }
101 }
102 o << "</string>";
103 return o;
104}
105
106inline void EmitLocation(raw_ostream &o, const SourceManager &SM,
107 SourceLocation L, const FIDMap &FM, unsigned indent) {
108 if (L.isInvalid()) return;
109
110 FullSourceLoc Loc(SM.getExpansionLoc(L), const_cast<SourceManager &>(SM));
111
112 Indent(o, indent) << "<dict>\n";
113 Indent(o, indent) << " <key>line</key>";
114 EmitInteger(o, Loc.getExpansionLineNumber()) << '\n';
115 Indent(o, indent) << " <key>col</key>";
116 EmitInteger(o, Loc.getExpansionColumnNumber()) << '\n';
117 Indent(o, indent) << " <key>file</key>";
118 EmitInteger(o, GetFID(FM, SM, Loc)) << '\n';
119 Indent(o, indent) << "</dict>\n";
120}
121
122inline void EmitRange(raw_ostream &o, const SourceManager &SM,
123 CharSourceRange R, const FIDMap &FM, unsigned indent) {
124 if (R.isInvalid()) return;
125
126 assert(R.isCharRange() && "cannot handle a token range");
127 Indent(o, indent) << "<array>\n";
128 EmitLocation(o, SM, R.getBegin(), FM, indent + 1);
129
130 // The ".getLocWithOffset(-1)" emulates the behavior of an off-by-one bug
131 // in Lexer that is already fixed. It is here for backwards compatibility
132 // even though it is incorrect.
133 EmitLocation(o, SM, R.getEnd().getLocWithOffset(-1), FM, indent + 1);
134 Indent(o, indent) << "</array>\n";
135}
136
137} // namespace markup
138} // namespace clang
139
140#endif // LLVM_CLANG_BASIC_PLISTSUPPORT_H
#define V(N, I)
Definition: ASTContext.h:3259
#define SM(sm)
Definition: Cuda.cpp:82
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::SourceLocation class and associated facilities.
Defines the SourceManager interface.
__device__ __2f16 float __ockl_bool s
__device__ __2f16 float c
Represents a character-granular source range.
SourceLocation getEnd() const
SourceLocation getBegin() const
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
A SourceLocation and its associated SourceManager.
unsigned getExpansionColumnNumber(bool *Invalid=nullptr) const
unsigned getExpansionLineNumber(bool *Invalid=nullptr) const
Encodes a location in the source.
SourceLocation getLocWithOffset(IntTy Offset) const
Return a source location with the specified offset from this SourceLocation.
This class handles loading and caching of source files into memory.
void EmitRange(raw_ostream &o, const SourceManager &SM, CharSourceRange R, const FIDMap &FM, unsigned indent)
Definition: PlistSupport.h:122
raw_ostream & EmitString(raw_ostream &o, StringRef s)
Definition: PlistSupport.h:78
unsigned GetFID(const FIDMap &FIDs, FileID FID)
Definition: PlistSupport.h:44
unsigned AddFID(FIDMap &FIDs, SmallVectorImpl< FileID > &V, FileID FID)
Definition: PlistSupport.h:27
raw_ostream & EmitInteger(raw_ostream &o, int64_t value)
Definition: PlistSupport.h:71
llvm::DenseMap< FileID, unsigned > FIDMap
Definition: PlistSupport.h:25
raw_ostream & EmitPlistHeader(raw_ostream &o)
Definition: PlistSupport.h:62
void EmitLocation(raw_ostream &o, const SourceManager &SM, SourceLocation L, const FIDMap &FM, unsigned indent)
Definition: PlistSupport.h:106
The JSON file list parser is used to communicate input to InstallAPI.