blob: db00d41d0351664ae53396bf91d8e32eedeef4b6 [file] [log] [blame]
Daniel Jasper9be2c5c2013-03-20 09:53:23 +00001//===-- clang-format/ClangFormat.cpp - Clang format tool ------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Daniel Jasper9be2c5c2013-03-20 09:53:23 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// \file
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000010/// This file implements a clang-format tool that automatically formats
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000011/// (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 Weberb00d66e2014-01-07 16:27:35 +000019#include "clang/Basic/Version.h"
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000020#include "clang/Format/Format.h"
Vlad Tsyrklevichefed3142019-10-29 10:20:38 -070021#include "clang/Frontend/TextDiagnosticPrinter.h"
Daniel Jasper867a9382015-09-30 13:59:29 +000022#include "clang/Rewrite/Core/Rewriter.h"
Daniel Jasper06dbac42014-10-29 22:42:53 +000023#include "llvm/Support/CommandLine.h"
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000024#include "llvm/Support/FileSystem.h"
Rui Ueyamae4b59a92018-04-13 20:57:57 +000025#include "llvm/Support/InitLLVM.h"
Alexander Kornienko54dcb532018-03-26 13:54:17 +000026#include "llvm/Support/Process.h"
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000027
28using namespace llvm;
Daniel Jasperd89ae9d2015-09-23 08:30:47 +000029using clang::tooling::Replacements;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000030
31static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden);
32
Alexander Kornienko88a0d932013-05-10 18:12:00 +000033// Mark all our options with this category, everything else (except for -version
34// and -help) will be hidden.
Alexander Kornienko3bb8fbf2014-02-05 13:42:43 +000035static cl::OptionCategory ClangFormatCategory("Clang-format options");
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000036
Alexander Kornienko88a0d932013-05-10 18:12:00 +000037static 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));
44static 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));
Alexander Kornienkoa49732f2013-07-18 22:54:56 +000054static cl::list<std::string>
Paul Hoada65cfe32019-10-07 16:53:35 +000055 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));
Alexander Kornienko88a0d932013-05-10 18:12:00 +000063static cl::opt<std::string>
Eric Liub4adc912018-06-25 16:29:19 +000064 Style("style", cl::desc(clang::format::StyleOptionHelpDescription),
65 cl::init(clang::format::DefaultFormatStyle),
66 cl::cat(ClangFormatCategory));
Alexander Kornienkobc4ae442013-12-02 15:21:38 +000067static cl::opt<std::string>
Eric Liub4adc912018-06-25 16:29:19 +000068 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));
Daniel Jaspere488f5d2013-09-13 13:40:24 +000076
Paul Hoada65cfe32019-10-07 16:53:35 +000077static 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));
Daniel Jaspere488f5d2013-09-13 13:40:24 +000083
Alexander Kornienko88a0d932013-05-10 18:12:00 +000084static cl::opt<bool> Inplace("i",
85 cl::desc("Inplace edit <file>s, if specified."),
86 cl::cat(ClangFormatCategory));
87
88static cl::opt<bool> OutputXML("output-replacements-xml",
89 cl::desc("Output replacements as XML."),
90 cl::cat(ClangFormatCategory));
Alexander Kornienko49149672013-05-10 11:56:10 +000091static cl::opt<bool>
92 DumpConfig("dump-config",
Alexander Kornienko88a0d932013-05-10 18:12:00 +000093 cl::desc("Dump configuration options to stdout and exit.\n"
94 "Can be used with -style option."),
95 cl::cat(ClangFormatCategory));
Daniel Jasper2a250b82013-05-21 12:21:39 +000096static cl::opt<unsigned>
97 Cursor("cursor",
Alexander Kornienkod83adf32013-09-02 15:30:26 +000098 cl::desc("The position of the cursor when invoking\n"
99 "clang-format from an editor integration"),
Daniel Jasper2a250b82013-05-21 12:21:39 +0000100 cl::init(0), cl::cat(ClangFormatCategory));
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000101
Daniel Jasperda446772015-11-16 12:38:56 +0000102static 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));
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000107
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000108static cl::opt<bool>
109 Verbose("verbose", cl::desc("If set, shows the list of processed files"),
110 cl::cat(ClangFormatCategory));
111
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000112// Use --dry-run to match other LLVM tools when you mean do it but don't
113// actually do it
114static 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)
120static 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.
125static 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
131static 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
137static 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
143static cl::opt<bool>
144 WarningsAsErrors("Werror",
145 cl::desc("If set, changes formatting warnings to errors"),
146 cl::cat(ClangFormatCategory));
147
148static 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
154static 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
Alexander Kornienko88a0d932013-05-10 18:12:00 +0000160static cl::list<std::string> FileNames(cl::Positional, cl::desc("[<file> ...]"),
161 cl::cat(ClangFormatCategory));
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000162
163namespace clang {
164namespace format {
165
David Blaikie66cc07b2014-06-27 17:40:03 +0000166static FileID createInMemoryFile(StringRef FileName, MemoryBuffer *Source,
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000167 SourceManager &Sources, FileManager &Files,
Jonas Devliegherefc514902018-10-10 13:27:25 +0000168 llvm::vfs::InMemoryFileSystem *MemFS) {
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000169 MemFS->addFileNoOwn(FileName, 0, Source);
Harlan Haskins8d323d12019-08-01 21:31:56 +0000170 auto File = Files.getFile(FileName);
171 return Sources.createFileID(File ? *File : nullptr, SourceLocation(),
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000172 SrcMgr::C_User);
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000173}
174
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000175// Parses <start line>:<end line> input to a pair of line numbers.
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000176// Returns true on error.
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000177static 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
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000184static bool fillRanges(MemoryBuffer *Code,
185 std::vector<tooling::Range> &Ranges) {
Jonas Devliegherefc514902018-10-10 13:27:25 +0000186 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem(
187 new llvm::vfs::InMemoryFileSystem);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000188 FileManager Files(FileSystemOptions(), InMemoryFileSystem);
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000189 DiagnosticsEngine Diagnostics(
190 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
191 new DiagnosticOptions);
192 SourceManager Sources(Diagnostics, Files);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000193 FileID ID = createInMemoryFile("<irrelevant>", Code, Sources, Files,
194 InMemoryFileSystem.get());
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000195 if (!LineRanges.empty()) {
196 if (!Offsets.empty() || !Lengths.empty()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000197 errs() << "error: cannot use -lines with -offset/-length\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000198 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)) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000204 errs() << "error: invalid <start line>:<end line> pair\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000205 return true;
206 }
207 if (FromLine > ToLine) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000208 errs() << "error: start line should be less than end line\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000209 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;
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000215 unsigned Offset = Sources.getFileOffset(Start);
216 unsigned Length = Sources.getFileOffset(End) - Offset;
217 Ranges.push_back(tooling::Range(Offset, Length));
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000218 }
219 return false;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000220 }
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000221
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000222 if (Offsets.empty())
223 Offsets.push_back(0);
224 if (Offsets.size() != Lengths.size() &&
225 !(Offsets.size() == 1 && Lengths.empty())) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000226 errs() << "error: number of -offset and -length arguments must match.\n";
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000227 return true;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000228 }
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000229 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
230 if (Offsets[i] >= Code->getBufferSize()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000231 errs() << "error: offset " << Offsets[i] << " is outside the file\n";
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000232 return true;
233 }
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000234 SourceLocation Start =
235 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]);
236 SourceLocation End;
237 if (i < Lengths.size()) {
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000238 if (Offsets[i] + Lengths[i] > Code->getBufferSize()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000239 errs() << "error: invalid length " << Lengths[i]
240 << ", offset + length (" << Offsets[i] + Lengths[i]
241 << ") is outside the file.\n";
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000242 return true;
243 }
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000244 End = Start.getLocWithOffset(Lengths[i]);
245 } else {
246 End = Sources.getLocForEndOfFile(ID);
247 }
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000248 unsigned Offset = Sources.getFileOffset(Start);
249 unsigned Length = Sources.getFileOffset(End) - Offset;
250 Ranges.push_back(tooling::Range(Offset, Length));
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000251 }
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000252 return false;
253}
254
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000255static void outputReplacementXML(StringRef Text) {
Daniel Jasperf39757d2015-10-15 18:39:31 +0000256 // FIXME: When we sort includes, we need to make sure the stream is correct
257 // utf-8.
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000258 size_t From = 0;
259 size_t Index;
Daniel Jasperf39757d2015-10-15 18:39:31 +0000260 while ((Index = Text.find_first_of("\n\r<&", From)) != StringRef::npos) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000261 outs() << Text.substr(From, Index - From);
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000262 switch (Text[Index]) {
263 case '\n':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000264 outs() << "&#10;";
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000265 break;
266 case '\r':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000267 outs() << "&#13;";
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000268 break;
Daniel Jasperf39757d2015-10-15 18:39:31 +0000269 case '<':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000270 outs() << "&lt;";
Daniel Jasperf39757d2015-10-15 18:39:31 +0000271 break;
272 case '&':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000273 outs() << "&amp;";
Daniel Jasperf39757d2015-10-15 18:39:31 +0000274 break;
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000275 default:
276 llvm_unreachable("Unexpected character encountered!");
277 }
278 From = Index + 1;
279 }
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000280 outs() << Text.substr(From);
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000281}
282
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000283static 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
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000293static bool
294emitReplacementWarnings(const Replacements &Replaces, StringRef AssumedFileName,
295 const std::unique_ptr<llvm::MemoryBuffer> &Code) {
296 if (Replaces.empty()) {
297 return false;
298 }
299
300 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
301 DiagOpts->ShowColors = (ShowColors && !NoShowColors);
302
Vlad Tsyrklevichefed3142019-10-29 10:20:38 -0700303 TextDiagnosticPrinter *DiagsBuffer =
304 new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts, false);
305
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000306 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
307 IntrusiveRefCntPtr<DiagnosticsEngine> Diags(
Vlad Tsyrklevichefed3142019-10-29 10:20:38 -0700308 new DiagnosticsEngine(DiagID, &*DiagOpts, DiagsBuffer));
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000309
310 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem(
311 new llvm::vfs::InMemoryFileSystem);
312 FileManager Files(FileSystemOptions(), InMemoryFileSystem);
313 SourceManager Sources(*Diags, Files);
314 FileID FileID = createInMemoryFile(AssumedFileName, Code.get(), Sources,
315 Files, InMemoryFileSystem.get());
316
Vlad Tsyrklevichefed3142019-10-29 10:20:38 -0700317 const unsigned ID = Diags->getCustomDiagID(
318 WarningsAsErrors ? clang::DiagnosticsEngine::Error
319 : clang::DiagnosticsEngine::Warning,
320 "code should be clang-formatted [-Wclang-format-violations]");
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000321
322 unsigned Errors = 0;
Vlad Tsyrklevichefed3142019-10-29 10:20:38 -0700323 DiagsBuffer->BeginSourceFile(LangOptions(), nullptr);
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000324 if (WarnFormat && !NoWarnFormat) {
325 for (const auto &R : Replaces) {
Vlad Tsyrklevichefed3142019-10-29 10:20:38 -0700326 Diags->Report(
327 Sources.getLocForStartOfFile(FileID).getLocWithOffset(R.getOffset()),
328 ID);
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000329 Errors++;
330 if (ErrorLimit && Errors >= ErrorLimit)
331 break;
332 }
333 }
Vlad Tsyrklevichefed3142019-10-29 10:20:38 -0700334 DiagsBuffer->EndSourceFile();
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000335 return WarningsAsErrors;
336}
337
338static void outputXML(const Replacements &Replaces,
339 const Replacements &FormatChanges,
340 const FormattingAttemptStatus &Status,
341 const cl::opt<unsigned> &Cursor,
342 unsigned CursorPosition) {
343 outs() << "<?xml version='1.0'?>\n<replacements "
344 "xml:space='preserve' incomplete_format='"
345 << (Status.FormatComplete ? "false" : "true") << "'";
346 if (!Status.FormatComplete)
347 outs() << " line='" << Status.Line << "'";
348 outs() << ">\n";
349 if (Cursor.getNumOccurrences() != 0)
350 outs() << "<cursor>" << FormatChanges.getShiftedCodePosition(CursorPosition)
351 << "</cursor>\n";
352
353 outputReplacementsXML(Replaces);
354 outs() << "</replacements>\n";
355}
356
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000357// Returns true on error.
Bill Wendlinge94f74f2013-11-09 00:23:58 +0000358static bool format(StringRef FileName) {
Nico Weber65da4572017-02-27 22:59:58 +0000359 if (!OutputXML && Inplace && FileName == "-") {
360 errs() << "error: cannot use -i when reading from stdin.\n";
361 return false;
362 }
363 // On Windows, overwriting a file with an open file mapping doesn't work,
364 // so read the whole file into memory when formatting in-place.
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000365 ErrorOr<std::unique_ptr<MemoryBuffer>> CodeOrErr =
Paul Hoada65cfe32019-10-07 16:53:35 +0000366 !OutputXML && Inplace ? MemoryBuffer::getFileAsStream(FileName)
367 : MemoryBuffer::getFileOrSTDIN(FileName);
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000368 if (std::error_code EC = CodeOrErr.getError()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000369 errs() << EC.message() << "\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000370 return true;
371 }
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000372 std::unique_ptr<llvm::MemoryBuffer> Code = std::move(CodeOrErr.get());
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000373 if (Code->getBufferSize() == 0)
Daniel Jaspere8845ad2013-10-08 15:54:36 +0000374 return false; // Empty files are formatted correctly.
Owen Pan4ba52692019-05-08 14:11:12 +0000375
Owen Pan4ba52692019-05-08 14:11:12 +0000376 StringRef BufStr = Code->getBuffer();
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000377
paulhoad8fa5e982019-10-24 20:24:03 +0100378 const char *InvalidBOM = SrcMgr::ContentCache::getInvalidBOM(BufStr);
Owen Pan4ba52692019-05-08 14:11:12 +0000379
380 if (InvalidBOM) {
381 errs() << "error: encoding with unsupported byte order mark \""
382 << InvalidBOM << "\" detected";
383 if (FileName != "-")
384 errs() << " in file '" << FileName << "'";
385 errs() << ".\n";
386 return true;
387 }
388
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000389 std::vector<tooling::Range> Ranges;
390 if (fillRanges(Code.get(), Ranges))
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000391 return true;
Daniel Jasper85c472d2015-09-29 07:53:08 +0000392 StringRef AssumedFileName = (FileName == "-") ? AssumeFileName : FileName;
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000393
394 llvm::Expected<FormatStyle> FormatStyle =
Daniel Jasper03a04fe2016-12-12 12:42:29 +0000395 getStyle(Style, AssumedFileName, FallbackStyle, Code->getBuffer());
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000396 if (!FormatStyle) {
397 llvm::errs() << llvm::toString(FormatStyle.takeError()) << "\n";
398 return true;
399 }
Martin Probstfa37b182017-01-27 09:09:11 +0000400
Daniel Jasperda446772015-11-16 12:38:56 +0000401 if (SortIncludes.getNumOccurrences() != 0)
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000402 FormatStyle->SortIncludes = SortIncludes;
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000403 unsigned CursorPosition = Cursor;
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000404 Replacements Replaces = sortIncludes(*FormatStyle, Code->getBuffer(), Ranges,
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000405 AssumedFileName, &CursorPosition);
Eric Liu4f8d9942016-07-11 13:53:12 +0000406 auto ChangedCode = tooling::applyAllReplacements(Code->getBuffer(), Replaces);
407 if (!ChangedCode) {
408 llvm::errs() << llvm::toString(ChangedCode.takeError()) << "\n";
409 return true;
410 }
Eric Liua992afe2016-08-10 09:32:23 +0000411 // Get new affected ranges after sorting `#includes`.
412 Ranges = tooling::calculateRangesAfterReplacements(Replaces, Ranges);
Krasimir Georgievbcda54b2017-04-21 14:35:20 +0000413 FormattingAttemptStatus Status;
Paul Hoada65cfe32019-10-07 16:53:35 +0000414 Replacements FormatChanges =
415 reformat(*FormatStyle, *ChangedCode, Ranges, AssumedFileName, &Status);
Eric Liu40ef2fb2016-08-01 10:16:37 +0000416 Replaces = Replaces.merge(FormatChanges);
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000417 if (OutputXML || DryRun) {
418 if (DryRun) {
419 return emitReplacementWarnings(Replaces, AssumedFileName, Code);
420 } else {
421 outputXML(Replaces, FormatChanges, Status, Cursor, CursorPosition);
422 }
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000423 } else {
Jonas Devliegherefc514902018-10-10 13:27:25 +0000424 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem(
425 new llvm::vfs::InMemoryFileSystem);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000426 FileManager Files(FileSystemOptions(), InMemoryFileSystem);
Daniel Jasper867a9382015-09-30 13:59:29 +0000427 DiagnosticsEngine Diagnostics(
428 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
429 new DiagnosticOptions);
430 SourceManager Sources(Diagnostics, Files);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000431 FileID ID = createInMemoryFile(AssumedFileName, Code.get(), Sources, Files,
432 InMemoryFileSystem.get());
Daniel Jasper867a9382015-09-30 13:59:29 +0000433 Rewriter Rewrite(Sources, LangOptions());
434 tooling::applyAllReplacements(Replaces, Rewrite);
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000435 if (Inplace) {
Nico Weber65da4572017-02-27 22:59:58 +0000436 if (Rewrite.overwriteChangedFiles())
Daniel Jasper867a9382015-09-30 13:59:29 +0000437 return true;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000438 } else {
Krasimir Georgievbcda54b2017-04-21 14:35:20 +0000439 if (Cursor.getNumOccurrences() != 0) {
Tobias Grossera7046002015-05-08 21:34:09 +0000440 outs() << "{ \"Cursor\": "
Eric Liu40ef2fb2016-08-01 10:16:37 +0000441 << FormatChanges.getShiftedCodePosition(CursorPosition)
Daniel Jasper622c72d2015-05-10 07:47:19 +0000442 << ", \"IncompleteFormat\": "
Krasimir Georgievbcda54b2017-04-21 14:35:20 +0000443 << (Status.FormatComplete ? "false" : "true");
444 if (!Status.FormatComplete)
445 outs() << ", \"Line\": " << Status.Line;
446 outs() << " }\n";
447 }
Daniel Jasper867a9382015-09-30 13:59:29 +0000448 Rewrite.getEditBuffer(ID).write(outs());
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000449 }
450 }
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000451 return false;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000452}
453
Paul Hoada65cfe32019-10-07 16:53:35 +0000454} // namespace format
455} // namespace clang
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000456
Dimitry Andric81c40422017-06-06 21:54:21 +0000457static void PrintVersion(raw_ostream &OS) {
Nico Weberb00d66e2014-01-07 16:27:35 +0000458 OS << clang::getClangToolFullVersion("clang-format") << '\n';
459}
460
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000461// Dump the configuration.
462static int dumpConfig() {
463 StringRef FileName;
464 std::unique_ptr<llvm::MemoryBuffer> Code;
465 if (FileNames.empty()) {
466 // We can't read the code to detect the language if there's no
467 // file name, so leave Code empty here.
468 FileName = AssumeFileName;
469 } else {
470 // Read in the code in case the filename alone isn't enough to
471 // detect the language.
472 ErrorOr<std::unique_ptr<MemoryBuffer>> CodeOrErr =
473 MemoryBuffer::getFileOrSTDIN(FileNames[0]);
474 if (std::error_code EC = CodeOrErr.getError()) {
475 llvm::errs() << EC.message() << "\n";
476 return 1;
477 }
478 FileName = (FileNames[0] == "-") ? AssumeFileName : FileNames[0];
479 Code = std::move(CodeOrErr.get());
480 }
481 llvm::Expected<clang::format::FormatStyle> FormatStyle =
482 clang::format::getStyle(Style, FileName, FallbackStyle,
483 Code ? Code->getBuffer() : "");
484 if (!FormatStyle) {
485 llvm::errs() << llvm::toString(FormatStyle.takeError()) << "\n";
486 return 1;
487 }
488 std::string Config = clang::format::configurationAsText(*FormatStyle);
489 outs() << Config << "\n";
490 return 0;
491}
492
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000493int main(int argc, const char **argv) {
Rui Ueyamae4b59a92018-04-13 20:57:57 +0000494 llvm::InitLLVM X(argc, argv);
Alexander Kornienko54dcb532018-03-26 13:54:17 +0000495
Chris Bieneman0a9f6072015-01-21 23:26:11 +0000496 cl::HideUnrelatedOptions(ClangFormatCategory);
Alexander Kornienko88a0d932013-05-10 18:12:00 +0000497
Nico Weberb00d66e2014-01-07 16:27:35 +0000498 cl::SetVersionPrinter(PrintVersion);
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000499 cl::ParseCommandLineOptions(
Rui Ueyamae4b59a92018-04-13 20:57:57 +0000500 argc, argv,
Paul Hoadcbb726d2019-03-21 13:09:22 +0000501 "A tool to format C/C++/Java/JavaScript/Objective-C/Protobuf/C# code.\n\n"
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000502 "If no arguments are specified, it formats the code from standard input\n"
503 "and writes the result to the standard output.\n"
Alexander Kornienkod83adf32013-09-02 15:30:26 +0000504 "If <file>s are given, it reformats the files. If -i is specified\n"
505 "together with <file>s, the files are edited in-place. Otherwise, the\n"
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000506 "result is written to the standard output.\n");
507
Rafael Espindola79d9a692017-09-08 00:01:26 +0000508 if (Help) {
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000509 cl::PrintHelpMessage();
Rafael Espindola79d9a692017-09-08 00:01:26 +0000510 return 0;
511 }
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000512
Alexander Kornienko49149672013-05-10 11:56:10 +0000513 if (DumpConfig) {
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000514 return dumpConfig();
Alexander Kornienko49149672013-05-10 11:56:10 +0000515 }
516
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000517 bool Error = false;
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000518 if (FileNames.empty()) {
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000519 Error = clang::format::format("-");
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000520 return Error ? 1 : 0;
521 }
Paul Hoada65cfe32019-10-07 16:53:35 +0000522 if (FileNames.size() != 1 &&
523 (!Offsets.empty() || !Lengths.empty() || !LineRanges.empty())) {
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000524 errs() << "error: -offset, -length and -lines can only be used for "
525 "single file.\n";
526 return 1;
527 }
528 for (const auto &FileName : FileNames) {
529 if (Verbose)
530 errs() << "Formatting " << FileName << "\n";
531 Error |= clang::format::format(FileName);
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000532 }
533 return Error ? 1 : 0;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000534}