djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 1 | //===-- clang-format/ClangFormat.cpp - Clang format tool ------------------===// |
| 2 | // |
chandlerc | 079ee0b | 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 |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
adrian | 7822084 | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 10 | /// This file implements a clang-format tool that automatically formats |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 11 | /// (fragments of) C++ code. |
| 12 | /// |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Basic/Diagnostic.h" |
| 16 | #include "clang/Basic/DiagnosticOptions.h" |
| 17 | #include "clang/Basic/FileManager.h" |
| 18 | #include "clang/Basic/SourceManager.h" |
nico | 436d02f | 2014-01-07 16:27:35 +0000 | [diff] [blame] | 19 | #include "clang/Basic/Version.h" |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 20 | #include "clang/Format/Format.h" |
paulhoad | f40d1f4 | 2019-10-13 14:51:45 +0000 | [diff] [blame^] | 21 | #include "clang/Frontend/TextDiagnosticPrinter.h" |
djasper | 44bf2ae | 2015-09-30 13:59:29 +0000 | [diff] [blame] | 22 | #include "clang/Rewrite/Core/Rewriter.h" |
djasper | 1e1687b | 2014-10-29 22:42:53 +0000 | [diff] [blame] | 23 | #include "llvm/Support/CommandLine.h" |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 24 | #include "llvm/Support/FileSystem.h" |
ruiu | cdaacac | 2018-04-13 20:57:57 +0000 | [diff] [blame] | 25 | #include "llvm/Support/InitLLVM.h" |
alexfh | 9b1d30f | 2018-03-26 13:54:17 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Process.h" |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 27 | |
| 28 | using namespace llvm; |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 29 | using clang::tooling::Replacements; |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 30 | |
| 31 | static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden); |
| 32 | |
alexfh | 725a9f7 | 2013-05-10 18:12:00 +0000 | [diff] [blame] | 33 | // Mark all our options with this category, everything else (except for -version |
| 34 | // and -help) will be hidden. |
alexfh | ebc1600 | 2014-02-05 13:42:43 +0000 | [diff] [blame] | 35 | static cl::OptionCategory ClangFormatCategory("Clang-format options"); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 36 | |
alexfh | 725a9f7 | 2013-05-10 18:12:00 +0000 | [diff] [blame] | 37 | static cl::list<unsigned> |
| 38 | Offsets("offset", |
| 39 | cl::desc("Format a range starting at this byte offset.\n" |
| 40 | "Multiple ranges can be formatted by specifying\n" |
| 41 | "several -offset and -length pairs.\n" |
| 42 | "Can only be used with one input file."), |
| 43 | cl::cat(ClangFormatCategory)); |
| 44 | static cl::list<unsigned> |
| 45 | Lengths("length", |
| 46 | cl::desc("Format a range of this length (in bytes).\n" |
| 47 | "Multiple ranges can be formatted by specifying\n" |
| 48 | "several -offset and -length pairs.\n" |
| 49 | "When only a single -offset is specified without\n" |
| 50 | "-length, clang-format will format up to the end\n" |
| 51 | "of the file.\n" |
| 52 | "Can only be used with one input file."), |
| 53 | cl::cat(ClangFormatCategory)); |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 54 | static cl::list<std::string> |
paulhoad | b125d50 | 2019-10-07 16:53:35 +0000 | [diff] [blame] | 55 | LineRanges("lines", |
| 56 | cl::desc("<start line>:<end line> - format a range of\n" |
| 57 | "lines (both 1-based).\n" |
| 58 | "Multiple ranges can be formatted by specifying\n" |
| 59 | "several -lines arguments.\n" |
| 60 | "Can't be used with -offset and -length.\n" |
| 61 | "Can only be used with one input file."), |
| 62 | cl::cat(ClangFormatCategory)); |
alexfh | 725a9f7 | 2013-05-10 18:12:00 +0000 | [diff] [blame] | 63 | static cl::opt<std::string> |
ioeric | 66e1057 | 2018-06-25 16:29:19 +0000 | [diff] [blame] | 64 | Style("style", cl::desc(clang::format::StyleOptionHelpDescription), |
| 65 | cl::init(clang::format::DefaultFormatStyle), |
| 66 | cl::cat(ClangFormatCategory)); |
alexfh | 7e0adcf | 2013-12-02 15:21:38 +0000 | [diff] [blame] | 67 | static cl::opt<std::string> |
ioeric | 66e1057 | 2018-06-25 16:29:19 +0000 | [diff] [blame] | 68 | FallbackStyle("fallback-style", |
| 69 | cl::desc("The name of the predefined style used as a\n" |
| 70 | "fallback in case clang-format is invoked with\n" |
| 71 | "-style=file, but can not find the .clang-format\n" |
| 72 | "file to use.\n" |
| 73 | "Use -fallback-style=none to skip formatting."), |
| 74 | cl::init(clang::format::DefaultFallbackStyle), |
| 75 | cl::cat(ClangFormatCategory)); |
djasper | 0584828 | 2013-09-13 13:40:24 +0000 | [diff] [blame] | 76 | |
paulhoad | b125d50 | 2019-10-07 16:53:35 +0000 | [diff] [blame] | 77 | static cl::opt<std::string> AssumeFileName( |
| 78 | "assume-filename", |
| 79 | cl::desc("When reading from stdin, clang-format assumes this\n" |
| 80 | "filename to look for a style config file (with\n" |
| 81 | "-style=file) and to determine the language."), |
| 82 | cl::init("<stdin>"), cl::cat(ClangFormatCategory)); |
djasper | 0584828 | 2013-09-13 13:40:24 +0000 | [diff] [blame] | 83 | |
alexfh | 725a9f7 | 2013-05-10 18:12:00 +0000 | [diff] [blame] | 84 | static cl::opt<bool> Inplace("i", |
| 85 | cl::desc("Inplace edit <file>s, if specified."), |
| 86 | cl::cat(ClangFormatCategory)); |
| 87 | |
| 88 | static cl::opt<bool> OutputXML("output-replacements-xml", |
| 89 | cl::desc("Output replacements as XML."), |
| 90 | cl::cat(ClangFormatCategory)); |
alexfh | 5988345 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 91 | static cl::opt<bool> |
| 92 | DumpConfig("dump-config", |
alexfh | 725a9f7 | 2013-05-10 18:12:00 +0000 | [diff] [blame] | 93 | cl::desc("Dump configuration options to stdout and exit.\n" |
| 94 | "Can be used with -style option."), |
| 95 | cl::cat(ClangFormatCategory)); |
djasper | d0252b7 | 2013-05-21 12:21:39 +0000 | [diff] [blame] | 96 | static cl::opt<unsigned> |
| 97 | Cursor("cursor", |
alexfh | b5b4302 | 2013-09-02 15:30:26 +0000 | [diff] [blame] | 98 | cl::desc("The position of the cursor when invoking\n" |
| 99 | "clang-format from an editor integration"), |
djasper | d0252b7 | 2013-05-21 12:21:39 +0000 | [diff] [blame] | 100 | cl::init(0), cl::cat(ClangFormatCategory)); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 101 | |
djasper | 71631c2 | 2015-11-16 12:38:56 +0000 | [diff] [blame] | 102 | static cl::opt<bool> SortIncludes( |
| 103 | "sort-includes", |
| 104 | cl::desc("If set, overrides the include sorting behavior determined by the " |
| 105 | "SortIncludes style flag"), |
| 106 | cl::cat(ClangFormatCategory)); |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 107 | |
sylvestre | a23fc48 | 2017-08-12 15:15:10 +0000 | [diff] [blame] | 108 | static cl::opt<bool> |
| 109 | Verbose("verbose", cl::desc("If set, shows the list of processed files"), |
| 110 | cl::cat(ClangFormatCategory)); |
| 111 | |
paulhoad | f40d1f4 | 2019-10-13 14:51:45 +0000 | [diff] [blame^] | 112 | // Use --dry-run to match other LLVM tools when you mean do it but don't |
| 113 | // actually do it |
| 114 | static cl::opt<bool> |
| 115 | DryRun("dry-run", |
| 116 | cl::desc("If set, do not actually make the formatting changes"), |
| 117 | cl::cat(ClangFormatCategory)); |
| 118 | |
| 119 | // Use -n as a common command as an alias for --dry-run. (git and make use -n) |
| 120 | static cl::alias DryRunShort("n", cl::desc("Alias for --dry-run"), |
| 121 | cl::cat(ClangFormatCategory), cl::aliasopt(DryRun), |
| 122 | cl::NotHidden); |
| 123 | |
| 124 | // Emulate being able to turn on/off the warning. |
| 125 | static cl::opt<bool> |
| 126 | WarnFormat("Wclang-format-violations", |
| 127 | cl::desc("Warnings about individual formatting changes needed. " |
| 128 | "Used only with --dry-run or -n"), |
| 129 | cl::init(true), cl::cat(ClangFormatCategory), cl::Hidden); |
| 130 | |
| 131 | static cl::opt<bool> |
| 132 | NoWarnFormat("Wno-clang-format-violations", |
| 133 | cl::desc("Do not warn about individual formatting changes " |
| 134 | "needed. Used only with --dry-run or -n"), |
| 135 | cl::init(false), cl::cat(ClangFormatCategory), cl::Hidden); |
| 136 | |
| 137 | static cl::opt<unsigned> ErrorLimit( |
| 138 | "ferror-limit", |
| 139 | cl::desc("Set the maximum number of clang-format errors to emit before " |
| 140 | "stopping (0 = no limit). Used only with --dry-run or -n"), |
| 141 | cl::init(0), cl::cat(ClangFormatCategory)); |
| 142 | |
| 143 | static cl::opt<bool> |
| 144 | WarningsAsErrors("Werror", |
| 145 | cl::desc("If set, changes formatting warnings to errors"), |
| 146 | cl::cat(ClangFormatCategory)); |
| 147 | |
| 148 | static cl::opt<bool> |
| 149 | ShowColors("fcolor-diagnostics", |
| 150 | cl::desc("If set, and on a color-capable terminal controls " |
| 151 | "whether or not to print diagnostics in color"), |
| 152 | cl::init(true), cl::cat(ClangFormatCategory), cl::Hidden); |
| 153 | |
| 154 | static cl::opt<bool> |
| 155 | NoShowColors("fno-color-diagnostics", |
| 156 | cl::desc("If set, and on a color-capable terminal controls " |
| 157 | "whether or not to print diagnostics in color"), |
| 158 | cl::init(false), cl::cat(ClangFormatCategory), cl::Hidden); |
| 159 | |
alexfh | 725a9f7 | 2013-05-10 18:12:00 +0000 | [diff] [blame] | 160 | static cl::list<std::string> FileNames(cl::Positional, cl::desc("[<file> ...]"), |
| 161 | cl::cat(ClangFormatCategory)); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 162 | |
| 163 | namespace clang { |
| 164 | namespace format { |
| 165 | |
dblaikie | aa159c5 | 2014-06-27 17:40:03 +0000 | [diff] [blame] | 166 | static FileID createInMemoryFile(StringRef FileName, MemoryBuffer *Source, |
d0k | 39bdfea | 2015-10-06 10:04:08 +0000 | [diff] [blame] | 167 | SourceManager &Sources, FileManager &Files, |
jdevlieghere | 96636aa | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 168 | llvm::vfs::InMemoryFileSystem *MemFS) { |
d0k | 39bdfea | 2015-10-06 10:04:08 +0000 | [diff] [blame] | 169 | MemFS->addFileNoOwn(FileName, 0, Source); |
harlanhaskins | b0308d5 | 2019-08-01 21:31:56 +0000 | [diff] [blame] | 170 | auto File = Files.getFile(FileName); |
| 171 | return Sources.createFileID(File ? *File : nullptr, SourceLocation(), |
d0k | 39bdfea | 2015-10-06 10:04:08 +0000 | [diff] [blame] | 172 | SrcMgr::C_User); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 173 | } |
| 174 | |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 175 | // Parses <start line>:<end line> input to a pair of line numbers. |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 176 | // Returns true on error. |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 177 | static bool parseLineRange(StringRef Input, unsigned &FromLine, |
| 178 | unsigned &ToLine) { |
| 179 | std::pair<StringRef, StringRef> LineRange = Input.split(':'); |
| 180 | return LineRange.first.getAsInteger(0, FromLine) || |
| 181 | LineRange.second.getAsInteger(0, ToLine); |
| 182 | } |
| 183 | |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 184 | static bool fillRanges(MemoryBuffer *Code, |
| 185 | std::vector<tooling::Range> &Ranges) { |
jdevlieghere | 96636aa | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 186 | IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( |
| 187 | new llvm::vfs::InMemoryFileSystem); |
d0k | 39bdfea | 2015-10-06 10:04:08 +0000 | [diff] [blame] | 188 | FileManager Files(FileSystemOptions(), InMemoryFileSystem); |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 189 | DiagnosticsEngine Diagnostics( |
| 190 | IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs), |
| 191 | new DiagnosticOptions); |
| 192 | SourceManager Sources(Diagnostics, Files); |
d0k | 39bdfea | 2015-10-06 10:04:08 +0000 | [diff] [blame] | 193 | FileID ID = createInMemoryFile("<irrelevant>", Code, Sources, Files, |
| 194 | InMemoryFileSystem.get()); |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 195 | if (!LineRanges.empty()) { |
| 196 | if (!Offsets.empty() || !Lengths.empty()) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 197 | errs() << "error: cannot use -lines with -offset/-length\n"; |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 198 | return true; |
| 199 | } |
| 200 | |
| 201 | for (unsigned i = 0, e = LineRanges.size(); i < e; ++i) { |
| 202 | unsigned FromLine, ToLine; |
| 203 | if (parseLineRange(LineRanges[i], FromLine, ToLine)) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 204 | errs() << "error: invalid <start line>:<end line> pair\n"; |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 205 | return true; |
| 206 | } |
| 207 | if (FromLine > ToLine) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 208 | errs() << "error: start line should be less than end line\n"; |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 209 | return true; |
| 210 | } |
| 211 | SourceLocation Start = Sources.translateLineCol(ID, FromLine, 1); |
| 212 | SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX); |
| 213 | if (Start.isInvalid() || End.isInvalid()) |
| 214 | return true; |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 215 | unsigned Offset = Sources.getFileOffset(Start); |
| 216 | unsigned Length = Sources.getFileOffset(End) - Offset; |
| 217 | Ranges.push_back(tooling::Range(Offset, Length)); |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 218 | } |
| 219 | return false; |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 220 | } |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 221 | |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 222 | if (Offsets.empty()) |
| 223 | Offsets.push_back(0); |
| 224 | if (Offsets.size() != Lengths.size() && |
| 225 | !(Offsets.size() == 1 && Lengths.empty())) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 226 | errs() << "error: number of -offset and -length arguments must match.\n"; |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 227 | return true; |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 228 | } |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 229 | for (unsigned i = 0, e = Offsets.size(); i != e; ++i) { |
| 230 | if (Offsets[i] >= Code->getBufferSize()) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 231 | errs() << "error: offset " << Offsets[i] << " is outside the file\n"; |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 232 | return true; |
| 233 | } |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 234 | SourceLocation Start = |
| 235 | Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]); |
| 236 | SourceLocation End; |
| 237 | if (i < Lengths.size()) { |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 238 | if (Offsets[i] + Lengths[i] > Code->getBufferSize()) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 239 | errs() << "error: invalid length " << Lengths[i] |
| 240 | << ", offset + length (" << Offsets[i] + Lengths[i] |
| 241 | << ") is outside the file.\n"; |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 242 | return true; |
| 243 | } |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 244 | End = Start.getLocWithOffset(Lengths[i]); |
| 245 | } else { |
| 246 | End = Sources.getLocForEndOfFile(ID); |
| 247 | } |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 248 | unsigned Offset = Sources.getFileOffset(Start); |
| 249 | unsigned Length = Sources.getFileOffset(End) - Offset; |
| 250 | Ranges.push_back(tooling::Range(Offset, Length)); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 251 | } |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 252 | return false; |
| 253 | } |
| 254 | |
klimek | 82392d7 | 2013-12-03 09:46:06 +0000 | [diff] [blame] | 255 | static void outputReplacementXML(StringRef Text) { |
djasper | c8a1a08 | 2015-10-15 18:39:31 +0000 | [diff] [blame] | 256 | // FIXME: When we sort includes, we need to make sure the stream is correct |
| 257 | // utf-8. |
klimek | 82392d7 | 2013-12-03 09:46:06 +0000 | [diff] [blame] | 258 | size_t From = 0; |
| 259 | size_t Index; |
djasper | c8a1a08 | 2015-10-15 18:39:31 +0000 | [diff] [blame] | 260 | while ((Index = Text.find_first_of("\n\r<&", From)) != StringRef::npos) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 261 | outs() << Text.substr(From, Index - From); |
klimek | 82392d7 | 2013-12-03 09:46:06 +0000 | [diff] [blame] | 262 | switch (Text[Index]) { |
| 263 | case '\n': |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 264 | outs() << " "; |
klimek | 82392d7 | 2013-12-03 09:46:06 +0000 | [diff] [blame] | 265 | break; |
| 266 | case '\r': |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 267 | outs() << " "; |
klimek | 82392d7 | 2013-12-03 09:46:06 +0000 | [diff] [blame] | 268 | break; |
djasper | c8a1a08 | 2015-10-15 18:39:31 +0000 | [diff] [blame] | 269 | case '<': |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 270 | outs() << "<"; |
djasper | c8a1a08 | 2015-10-15 18:39:31 +0000 | [diff] [blame] | 271 | break; |
| 272 | case '&': |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 273 | outs() << "&"; |
djasper | c8a1a08 | 2015-10-15 18:39:31 +0000 | [diff] [blame] | 274 | break; |
klimek | 82392d7 | 2013-12-03 09:46:06 +0000 | [diff] [blame] | 275 | default: |
| 276 | llvm_unreachable("Unexpected character encountered!"); |
| 277 | } |
| 278 | From = Index + 1; |
| 279 | } |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 280 | outs() << Text.substr(From); |
klimek | 82392d7 | 2013-12-03 09:46:06 +0000 | [diff] [blame] | 281 | } |
| 282 | |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 283 | static void outputReplacementsXML(const Replacements &Replaces) { |
| 284 | for (const auto &R : Replaces) { |
| 285 | outs() << "<replacement " |
| 286 | << "offset='" << R.getOffset() << "' " |
| 287 | << "length='" << R.getLength() << "'>"; |
| 288 | outputReplacementXML(R.getReplacementText()); |
| 289 | outs() << "</replacement>\n"; |
| 290 | } |
| 291 | } |
| 292 | |
paulhoad | f40d1f4 | 2019-10-13 14:51:45 +0000 | [diff] [blame^] | 293 | // If BufStr has an invalid BOM, returns the BOM name; otherwise, returns |
| 294 | // nullptr. |
| 295 | static const char *getInValidBOM(StringRef BufStr) { |
| 296 | // Check to see if the buffer has a UTF Byte Order Mark (BOM). |
| 297 | // We only support UTF-8 with and without a BOM right now. See |
| 298 | // https://en.wikipedia.org/wiki/Byte_order_mark#Byte_order_marks_by_encoding |
| 299 | // for more information. |
| 300 | const char *InvalidBOM = |
| 301 | llvm::StringSwitch<const char *>(BufStr) |
| 302 | .StartsWith(llvm::StringLiteral::withInnerNUL("\x00\x00\xFE\xFF"), |
| 303 | "UTF-32 (BE)") |
| 304 | .StartsWith(llvm::StringLiteral::withInnerNUL("\xFF\xFE\x00\x00"), |
| 305 | "UTF-32 (LE)") |
| 306 | .StartsWith("\xFE\xFF", "UTF-16 (BE)") |
| 307 | .StartsWith("\xFF\xFE", "UTF-16 (LE)") |
| 308 | .StartsWith("\x2B\x2F\x76", "UTF-7") |
| 309 | .StartsWith("\xF7\x64\x4C", "UTF-1") |
| 310 | .StartsWith("\xDD\x73\x66\x73", "UTF-EBCDIC") |
| 311 | .StartsWith("\x0E\xFE\xFF", "SCSU") |
| 312 | .StartsWith("\xFB\xEE\x28", "BOCU-1") |
| 313 | .StartsWith("\x84\x31\x95\x33", "GB-18030") |
| 314 | .Default(nullptr); |
| 315 | return InvalidBOM; |
| 316 | } |
| 317 | |
| 318 | static bool |
| 319 | emitReplacementWarnings(const Replacements &Replaces, StringRef AssumedFileName, |
| 320 | const std::unique_ptr<llvm::MemoryBuffer> &Code) { |
| 321 | if (Replaces.empty()) { |
| 322 | return false; |
| 323 | } |
| 324 | |
| 325 | IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); |
| 326 | DiagOpts->ShowColors = (ShowColors && !NoShowColors); |
| 327 | |
| 328 | TextDiagnosticPrinter *DiagsBuffer = |
| 329 | new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts, false); |
| 330 | |
| 331 | IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); |
| 332 | IntrusiveRefCntPtr<DiagnosticsEngine> Diags( |
| 333 | new DiagnosticsEngine(DiagID, &*DiagOpts, DiagsBuffer)); |
| 334 | |
| 335 | IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( |
| 336 | new llvm::vfs::InMemoryFileSystem); |
| 337 | FileManager Files(FileSystemOptions(), InMemoryFileSystem); |
| 338 | SourceManager Sources(*Diags, Files); |
| 339 | FileID FileID = createInMemoryFile(AssumedFileName, Code.get(), Sources, |
| 340 | Files, InMemoryFileSystem.get()); |
| 341 | |
| 342 | const unsigned ID = Diags->getCustomDiagID( |
| 343 | WarningsAsErrors ? clang::DiagnosticsEngine::Error |
| 344 | : clang::DiagnosticsEngine::Warning, |
| 345 | "code should be clang-formatted [-Wclang-format-violations]"); |
| 346 | |
| 347 | unsigned Errors = 0; |
| 348 | DiagsBuffer->BeginSourceFile(LangOptions(), nullptr); |
| 349 | if (WarnFormat && !NoWarnFormat) { |
| 350 | for (const auto &R : Replaces) { |
| 351 | Diags->Report( |
| 352 | Sources.getLocForStartOfFile(FileID).getLocWithOffset(R.getOffset()), |
| 353 | ID); |
| 354 | Errors++; |
| 355 | if (ErrorLimit && Errors >= ErrorLimit) |
| 356 | break; |
| 357 | } |
| 358 | } |
| 359 | DiagsBuffer->EndSourceFile(); |
| 360 | return WarningsAsErrors; |
| 361 | } |
| 362 | |
| 363 | static void outputXML(const Replacements &Replaces, |
| 364 | const Replacements &FormatChanges, |
| 365 | const FormattingAttemptStatus &Status, |
| 366 | const cl::opt<unsigned> &Cursor, |
| 367 | unsigned CursorPosition) { |
| 368 | outs() << "<?xml version='1.0'?>\n<replacements " |
| 369 | "xml:space='preserve' incomplete_format='" |
| 370 | << (Status.FormatComplete ? "false" : "true") << "'"; |
| 371 | if (!Status.FormatComplete) |
| 372 | outs() << " line='" << Status.Line << "'"; |
| 373 | outs() << ">\n"; |
| 374 | if (Cursor.getNumOccurrences() != 0) |
| 375 | outs() << "<cursor>" << FormatChanges.getShiftedCodePosition(CursorPosition) |
| 376 | << "</cursor>\n"; |
| 377 | |
| 378 | outputReplacementsXML(Replaces); |
| 379 | outs() << "</replacements>\n"; |
| 380 | } |
| 381 | |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 382 | // Returns true on error. |
void | a14558f | 2013-11-09 00:23:58 +0000 | [diff] [blame] | 383 | static bool format(StringRef FileName) { |
nico | c09c8de | 2017-02-27 22:59:58 +0000 | [diff] [blame] | 384 | if (!OutputXML && Inplace && FileName == "-") { |
| 385 | errs() << "error: cannot use -i when reading from stdin.\n"; |
| 386 | return false; |
| 387 | } |
| 388 | // On Windows, overwriting a file with an open file mapping doesn't work, |
| 389 | // so read the whole file into memory when formatting in-place. |
rafael | 54c71a8 | 2014-07-06 17:43:24 +0000 | [diff] [blame] | 390 | ErrorOr<std::unique_ptr<MemoryBuffer>> CodeOrErr = |
paulhoad | b125d50 | 2019-10-07 16:53:35 +0000 | [diff] [blame] | 391 | !OutputXML && Inplace ? MemoryBuffer::getFileAsStream(FileName) |
| 392 | : MemoryBuffer::getFileOrSTDIN(FileName); |
rafael | 54c71a8 | 2014-07-06 17:43:24 +0000 | [diff] [blame] | 393 | if (std::error_code EC = CodeOrErr.getError()) { |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 394 | errs() << EC.message() << "\n"; |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 395 | return true; |
| 396 | } |
rafael | 54c71a8 | 2014-07-06 17:43:24 +0000 | [diff] [blame] | 397 | std::unique_ptr<llvm::MemoryBuffer> Code = std::move(CodeOrErr.get()); |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 398 | if (Code->getBufferSize() == 0) |
djasper | 60dad2e | 2013-10-08 15:54:36 +0000 | [diff] [blame] | 399 | return false; // Empty files are formatted correctly. |
owenpan | 77a4b6d | 2019-05-08 14:11:12 +0000 | [diff] [blame] | 400 | |
owenpan | 77a4b6d | 2019-05-08 14:11:12 +0000 | [diff] [blame] | 401 | StringRef BufStr = Code->getBuffer(); |
paulhoad | f40d1f4 | 2019-10-13 14:51:45 +0000 | [diff] [blame^] | 402 | |
| 403 | const char *InvalidBOM = getInValidBOM(BufStr); |
owenpan | 77a4b6d | 2019-05-08 14:11:12 +0000 | [diff] [blame] | 404 | |
| 405 | if (InvalidBOM) { |
| 406 | errs() << "error: encoding with unsupported byte order mark \"" |
| 407 | << InvalidBOM << "\" detected"; |
| 408 | if (FileName != "-") |
| 409 | errs() << " in file '" << FileName << "'"; |
| 410 | errs() << ".\n"; |
| 411 | return true; |
| 412 | } |
| 413 | |
djasper | 578d203 | 2015-09-23 08:30:47 +0000 | [diff] [blame] | 414 | std::vector<tooling::Range> Ranges; |
| 415 | if (fillRanges(Code.get(), Ranges)) |
alexfh | 6e70179 | 2013-07-18 22:54:56 +0000 | [diff] [blame] | 416 | return true; |
djasper | 262cb33 | 2015-09-29 07:53:08 +0000 | [diff] [blame] | 417 | StringRef AssumedFileName = (FileName == "-") ? AssumeFileName : FileName; |
amaiorano | a7d6236 | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 418 | |
| 419 | llvm::Expected<FormatStyle> FormatStyle = |
djasper | 4be7a6c | 2016-12-12 12:42:29 +0000 | [diff] [blame] | 420 | getStyle(Style, AssumedFileName, FallbackStyle, Code->getBuffer()); |
amaiorano | a7d6236 | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 421 | if (!FormatStyle) { |
| 422 | llvm::errs() << llvm::toString(FormatStyle.takeError()) << "\n"; |
| 423 | return true; |
| 424 | } |
mprobst | f9dd41b | 2017-01-27 09:09:11 +0000 | [diff] [blame] | 425 | |
djasper | 71631c2 | 2015-11-16 12:38:56 +0000 | [diff] [blame] | 426 | if (SortIncludes.getNumOccurrences() != 0) |
amaiorano | a7d6236 | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 427 | FormatStyle->SortIncludes = SortIncludes; |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 428 | unsigned CursorPosition = Cursor; |
amaiorano | a7d6236 | 2017-01-17 00:12:27 +0000 | [diff] [blame] | 429 | Replacements Replaces = sortIncludes(*FormatStyle, Code->getBuffer(), Ranges, |
djasper | 9e191b4 | 2015-11-23 08:36:35 +0000 | [diff] [blame] | 430 | AssumedFileName, &CursorPosition); |
ioeric | 2b036d3 | 2016-07-11 13:53:12 +0000 | [diff] [blame] | 431 | auto ChangedCode = tooling::applyAllReplacements(Code->getBuffer(), Replaces); |
| 432 | if (!ChangedCode) { |
| 433 | llvm::errs() << llvm::toString(ChangedCode.takeError()) << "\n"; |
| 434 | return true; |
| 435 | } |
ioeric | 5159065 | 2016-08-10 09:32:23 +0000 | [diff] [blame] | 436 | // Get new affected ranges after sorting `#includes`. |
| 437 | Ranges = tooling::calculateRangesAfterReplacements(Replaces, Ranges); |
krasimir | 0653eee | 2017-04-21 14:35:20 +0000 | [diff] [blame] | 438 | FormattingAttemptStatus Status; |
paulhoad | b125d50 | 2019-10-07 16:53:35 +0000 | [diff] [blame] | 439 | Replacements FormatChanges = |
| 440 | reformat(*FormatStyle, *ChangedCode, Ranges, AssumedFileName, &Status); |
ioeric | 531dffd | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 441 | Replaces = Replaces.merge(FormatChanges); |
paulhoad | f40d1f4 | 2019-10-13 14:51:45 +0000 | [diff] [blame^] | 442 | if (OutputXML || DryRun) { |
| 443 | if (DryRun) { |
| 444 | return emitReplacementWarnings(Replaces, AssumedFileName, Code); |
| 445 | } else { |
| 446 | outputXML(Replaces, FormatChanges, Status, Cursor, CursorPosition); |
| 447 | } |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 448 | } else { |
jdevlieghere | 96636aa | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 449 | IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( |
| 450 | new llvm::vfs::InMemoryFileSystem); |
d0k | 39bdfea | 2015-10-06 10:04:08 +0000 | [diff] [blame] | 451 | FileManager Files(FileSystemOptions(), InMemoryFileSystem); |
djasper | 44bf2ae | 2015-09-30 13:59:29 +0000 | [diff] [blame] | 452 | DiagnosticsEngine Diagnostics( |
| 453 | IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs), |
| 454 | new DiagnosticOptions); |
| 455 | SourceManager Sources(Diagnostics, Files); |
d0k | 39bdfea | 2015-10-06 10:04:08 +0000 | [diff] [blame] | 456 | FileID ID = createInMemoryFile(AssumedFileName, Code.get(), Sources, Files, |
| 457 | InMemoryFileSystem.get()); |
djasper | 44bf2ae | 2015-09-30 13:59:29 +0000 | [diff] [blame] | 458 | Rewriter Rewrite(Sources, LangOptions()); |
| 459 | tooling::applyAllReplacements(Replaces, Rewrite); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 460 | if (Inplace) { |
nico | c09c8de | 2017-02-27 22:59:58 +0000 | [diff] [blame] | 461 | if (Rewrite.overwriteChangedFiles()) |
djasper | 44bf2ae | 2015-09-30 13:59:29 +0000 | [diff] [blame] | 462 | return true; |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 463 | } else { |
krasimir | 0653eee | 2017-04-21 14:35:20 +0000 | [diff] [blame] | 464 | if (Cursor.getNumOccurrences() != 0) { |
grosser | 7e070d5 | 2015-05-08 21:34:09 +0000 | [diff] [blame] | 465 | outs() << "{ \"Cursor\": " |
ioeric | 531dffd | 2016-08-01 10:16:37 +0000 | [diff] [blame] | 466 | << FormatChanges.getShiftedCodePosition(CursorPosition) |
djasper | 0c6c947 | 2015-05-10 07:47:19 +0000 | [diff] [blame] | 467 | << ", \"IncompleteFormat\": " |
krasimir | 0653eee | 2017-04-21 14:35:20 +0000 | [diff] [blame] | 468 | << (Status.FormatComplete ? "false" : "true"); |
| 469 | if (!Status.FormatComplete) |
| 470 | outs() << ", \"Line\": " << Status.Line; |
| 471 | outs() << " }\n"; |
| 472 | } |
djasper | 44bf2ae | 2015-09-30 13:59:29 +0000 | [diff] [blame] | 473 | Rewrite.getEditBuffer(ID).write(outs()); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 474 | } |
| 475 | } |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 476 | return false; |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 477 | } |
| 478 | |
paulhoad | b125d50 | 2019-10-07 16:53:35 +0000 | [diff] [blame] | 479 | } // namespace format |
| 480 | } // namespace clang |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 481 | |
dim | 00bed78 | 2017-06-06 21:54:21 +0000 | [diff] [blame] | 482 | static void PrintVersion(raw_ostream &OS) { |
nico | 436d02f | 2014-01-07 16:27:35 +0000 | [diff] [blame] | 483 | OS << clang::getClangToolFullVersion("clang-format") << '\n'; |
| 484 | } |
| 485 | |
paulhoad | f40d1f4 | 2019-10-13 14:51:45 +0000 | [diff] [blame^] | 486 | // Dump the configuration. |
| 487 | static int dumpConfig() { |
| 488 | StringRef FileName; |
| 489 | std::unique_ptr<llvm::MemoryBuffer> Code; |
| 490 | if (FileNames.empty()) { |
| 491 | // We can't read the code to detect the language if there's no |
| 492 | // file name, so leave Code empty here. |
| 493 | FileName = AssumeFileName; |
| 494 | } else { |
| 495 | // Read in the code in case the filename alone isn't enough to |
| 496 | // detect the language. |
| 497 | ErrorOr<std::unique_ptr<MemoryBuffer>> CodeOrErr = |
| 498 | MemoryBuffer::getFileOrSTDIN(FileNames[0]); |
| 499 | if (std::error_code EC = CodeOrErr.getError()) { |
| 500 | llvm::errs() << EC.message() << "\n"; |
| 501 | return 1; |
| 502 | } |
| 503 | FileName = (FileNames[0] == "-") ? AssumeFileName : FileNames[0]; |
| 504 | Code = std::move(CodeOrErr.get()); |
| 505 | } |
| 506 | llvm::Expected<clang::format::FormatStyle> FormatStyle = |
| 507 | clang::format::getStyle(Style, FileName, FallbackStyle, |
| 508 | Code ? Code->getBuffer() : ""); |
| 509 | if (!FormatStyle) { |
| 510 | llvm::errs() << llvm::toString(FormatStyle.takeError()) << "\n"; |
| 511 | return 1; |
| 512 | } |
| 513 | std::string Config = clang::format::configurationAsText(*FormatStyle); |
| 514 | outs() << Config << "\n"; |
| 515 | return 0; |
| 516 | } |
| 517 | |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 518 | int main(int argc, const char **argv) { |
ruiu | cdaacac | 2018-04-13 20:57:57 +0000 | [diff] [blame] | 519 | llvm::InitLLVM X(argc, argv); |
alexfh | 9b1d30f | 2018-03-26 13:54:17 +0000 | [diff] [blame] | 520 | |
cbieneman | c9f3db6 | 2015-01-21 23:26:11 +0000 | [diff] [blame] | 521 | cl::HideUnrelatedOptions(ClangFormatCategory); |
alexfh | 725a9f7 | 2013-05-10 18:12:00 +0000 | [diff] [blame] | 522 | |
nico | 436d02f | 2014-01-07 16:27:35 +0000 | [diff] [blame] | 523 | cl::SetVersionPrinter(PrintVersion); |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 524 | cl::ParseCommandLineOptions( |
ruiu | cdaacac | 2018-04-13 20:57:57 +0000 | [diff] [blame] | 525 | argc, argv, |
paulhoad | 3e050fe | 2019-03-21 13:09:22 +0000 | [diff] [blame] | 526 | "A tool to format C/C++/Java/JavaScript/Objective-C/Protobuf/C# code.\n\n" |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 527 | "If no arguments are specified, it formats the code from standard input\n" |
| 528 | "and writes the result to the standard output.\n" |
alexfh | b5b4302 | 2013-09-02 15:30:26 +0000 | [diff] [blame] | 529 | "If <file>s are given, it reformats the files. If -i is specified\n" |
| 530 | "together with <file>s, the files are edited in-place. Otherwise, the\n" |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 531 | "result is written to the standard output.\n"); |
| 532 | |
rafael | f94a89d | 2017-09-08 00:01:26 +0000 | [diff] [blame] | 533 | if (Help) { |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 534 | cl::PrintHelpMessage(); |
rafael | f94a89d | 2017-09-08 00:01:26 +0000 | [diff] [blame] | 535 | return 0; |
| 536 | } |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 537 | |
alexfh | 5988345 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 538 | if (DumpConfig) { |
paulhoad | f40d1f4 | 2019-10-13 14:51:45 +0000 | [diff] [blame^] | 539 | return dumpConfig(); |
alexfh | 5988345 | 2013-05-10 11:56:10 +0000 | [diff] [blame] | 540 | } |
| 541 | |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 542 | bool Error = false; |
sylvestre | a23fc48 | 2017-08-12 15:15:10 +0000 | [diff] [blame] | 543 | if (FileNames.empty()) { |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 544 | Error = clang::format::format("-"); |
sylvestre | a23fc48 | 2017-08-12 15:15:10 +0000 | [diff] [blame] | 545 | return Error ? 1 : 0; |
| 546 | } |
paulhoad | b125d50 | 2019-10-07 16:53:35 +0000 | [diff] [blame] | 547 | if (FileNames.size() != 1 && |
| 548 | (!Offsets.empty() || !Lengths.empty() || !LineRanges.empty())) { |
sylvestre | a23fc48 | 2017-08-12 15:15:10 +0000 | [diff] [blame] | 549 | errs() << "error: -offset, -length and -lines can only be used for " |
| 550 | "single file.\n"; |
| 551 | return 1; |
| 552 | } |
| 553 | for (const auto &FileName : FileNames) { |
| 554 | if (Verbose) |
| 555 | errs() << "Formatting " << FileName << "\n"; |
| 556 | Error |= clang::format::format(FileName); |
alexfh | 4df4364 | 2013-04-24 12:46:44 +0000 | [diff] [blame] | 557 | } |
| 558 | return Error ? 1 : 0; |
djasper | 7f66360 | 2013-03-20 09:53:23 +0000 | [diff] [blame] | 559 | } |