blob: cbbb52bd0aa82b8ba8612b0514d4829e0c0178e0 [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"
Daniel Jasper867a9382015-09-30 13:59:29 +000021#include "clang/Rewrite/Core/Rewriter.h"
Daniel Jasper06dbac42014-10-29 22:42:53 +000022#include "llvm/Support/CommandLine.h"
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000023#include "llvm/Support/FileSystem.h"
Rui Ueyamae4b59a92018-04-13 20:57:57 +000024#include "llvm/Support/InitLLVM.h"
Alexander Kornienko54dcb532018-03-26 13:54:17 +000025#include "llvm/Support/Process.h"
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000026
27using namespace llvm;
Daniel Jasperd89ae9d2015-09-23 08:30:47 +000028using clang::tooling::Replacements;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000029
30static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden);
31
Alexander Kornienko88a0d932013-05-10 18:12:00 +000032// Mark all our options with this category, everything else (except for -version
33// and -help) will be hidden.
Alexander Kornienko3bb8fbf2014-02-05 13:42:43 +000034static cl::OptionCategory ClangFormatCategory("Clang-format options");
Daniel Jasper9be2c5c2013-03-20 09:53:23 +000035
Alexander Kornienko88a0d932013-05-10 18:12:00 +000036static cl::list<unsigned>
37 Offsets("offset",
38 cl::desc("Format a range starting at this byte offset.\n"
39 "Multiple ranges can be formatted by specifying\n"
40 "several -offset and -length pairs.\n"
41 "Can only be used with one input file."),
42 cl::cat(ClangFormatCategory));
43static cl::list<unsigned>
44 Lengths("length",
45 cl::desc("Format a range of this length (in bytes).\n"
46 "Multiple ranges can be formatted by specifying\n"
47 "several -offset and -length pairs.\n"
48 "When only a single -offset is specified without\n"
49 "-length, clang-format will format up to the end\n"
50 "of the file.\n"
51 "Can only be used with one input file."),
52 cl::cat(ClangFormatCategory));
Alexander Kornienkoa49732f2013-07-18 22:54:56 +000053static cl::list<std::string>
Paul Hoada65cfe32019-10-07 16:53:35 +000054 LineRanges("lines",
55 cl::desc("<start line>:<end line> - format a range of\n"
56 "lines (both 1-based).\n"
57 "Multiple ranges can be formatted by specifying\n"
58 "several -lines arguments.\n"
59 "Can't be used with -offset and -length.\n"
60 "Can only be used with one input file."),
61 cl::cat(ClangFormatCategory));
Alexander Kornienko88a0d932013-05-10 18:12:00 +000062static cl::opt<std::string>
Eric Liub4adc912018-06-25 16:29:19 +000063 Style("style", cl::desc(clang::format::StyleOptionHelpDescription),
64 cl::init(clang::format::DefaultFormatStyle),
65 cl::cat(ClangFormatCategory));
Alexander Kornienkobc4ae442013-12-02 15:21:38 +000066static cl::opt<std::string>
Eric Liub4adc912018-06-25 16:29:19 +000067 FallbackStyle("fallback-style",
68 cl::desc("The name of the predefined style used as a\n"
69 "fallback in case clang-format is invoked with\n"
70 "-style=file, but can not find the .clang-format\n"
71 "file to use.\n"
72 "Use -fallback-style=none to skip formatting."),
73 cl::init(clang::format::DefaultFallbackStyle),
74 cl::cat(ClangFormatCategory));
Daniel Jaspere488f5d2013-09-13 13:40:24 +000075
Paul Hoada65cfe32019-10-07 16:53:35 +000076static cl::opt<std::string> AssumeFileName(
77 "assume-filename",
78 cl::desc("When reading from stdin, clang-format assumes this\n"
79 "filename to look for a style config file (with\n"
80 "-style=file) and to determine the language."),
81 cl::init("<stdin>"), cl::cat(ClangFormatCategory));
Daniel Jaspere488f5d2013-09-13 13:40:24 +000082
Alexander Kornienko88a0d932013-05-10 18:12:00 +000083static cl::opt<bool> Inplace("i",
84 cl::desc("Inplace edit <file>s, if specified."),
85 cl::cat(ClangFormatCategory));
86
87static cl::opt<bool> OutputXML("output-replacements-xml",
88 cl::desc("Output replacements as XML."),
89 cl::cat(ClangFormatCategory));
Alexander Kornienko49149672013-05-10 11:56:10 +000090static cl::opt<bool>
91 DumpConfig("dump-config",
Alexander Kornienko88a0d932013-05-10 18:12:00 +000092 cl::desc("Dump configuration options to stdout and exit.\n"
93 "Can be used with -style option."),
94 cl::cat(ClangFormatCategory));
Daniel Jasper2a250b82013-05-21 12:21:39 +000095static cl::opt<unsigned>
96 Cursor("cursor",
Alexander Kornienkod83adf32013-09-02 15:30:26 +000097 cl::desc("The position of the cursor when invoking\n"
98 "clang-format from an editor integration"),
Daniel Jasper2a250b82013-05-21 12:21:39 +000099 cl::init(0), cl::cat(ClangFormatCategory));
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000100
Daniel Jasperda446772015-11-16 12:38:56 +0000101static cl::opt<bool> SortIncludes(
102 "sort-includes",
103 cl::desc("If set, overrides the include sorting behavior determined by the "
104 "SortIncludes style flag"),
105 cl::cat(ClangFormatCategory));
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000106
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000107static cl::opt<bool>
108 Verbose("verbose", cl::desc("If set, shows the list of processed files"),
109 cl::cat(ClangFormatCategory));
110
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000111// Use --dry-run to match other LLVM tools when you mean do it but don't
112// actually do it
113static cl::opt<bool>
114 DryRun("dry-run",
115 cl::desc("If set, do not actually make the formatting changes"),
116 cl::cat(ClangFormatCategory));
117
118// Use -n as a common command as an alias for --dry-run. (git and make use -n)
119static cl::alias DryRunShort("n", cl::desc("Alias for --dry-run"),
120 cl::cat(ClangFormatCategory), cl::aliasopt(DryRun),
121 cl::NotHidden);
122
123// Emulate being able to turn on/off the warning.
124static cl::opt<bool>
125 WarnFormat("Wclang-format-violations",
126 cl::desc("Warnings about individual formatting changes needed. "
127 "Used only with --dry-run or -n"),
128 cl::init(true), cl::cat(ClangFormatCategory), cl::Hidden);
129
130static cl::opt<bool>
131 NoWarnFormat("Wno-clang-format-violations",
132 cl::desc("Do not warn about individual formatting changes "
133 "needed. Used only with --dry-run or -n"),
134 cl::init(false), cl::cat(ClangFormatCategory), cl::Hidden);
135
136static cl::opt<unsigned> ErrorLimit(
137 "ferror-limit",
138 cl::desc("Set the maximum number of clang-format errors to emit before "
139 "stopping (0 = no limit). Used only with --dry-run or -n"),
140 cl::init(0), cl::cat(ClangFormatCategory));
141
142static cl::opt<bool>
143 WarningsAsErrors("Werror",
144 cl::desc("If set, changes formatting warnings to errors"),
145 cl::cat(ClangFormatCategory));
146
147static cl::opt<bool>
148 ShowColors("fcolor-diagnostics",
149 cl::desc("If set, and on a color-capable terminal controls "
150 "whether or not to print diagnostics in color"),
151 cl::init(true), cl::cat(ClangFormatCategory), cl::Hidden);
152
153static cl::opt<bool>
154 NoShowColors("fno-color-diagnostics",
155 cl::desc("If set, and on a color-capable terminal controls "
156 "whether or not to print diagnostics in color"),
157 cl::init(false), cl::cat(ClangFormatCategory), cl::Hidden);
158
Alexander Kornienko88a0d932013-05-10 18:12:00 +0000159static cl::list<std::string> FileNames(cl::Positional, cl::desc("[<file> ...]"),
160 cl::cat(ClangFormatCategory));
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000161
162namespace clang {
163namespace format {
164
David Blaikie66cc07b2014-06-27 17:40:03 +0000165static FileID createInMemoryFile(StringRef FileName, MemoryBuffer *Source,
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000166 SourceManager &Sources, FileManager &Files,
Jonas Devliegherefc514902018-10-10 13:27:25 +0000167 llvm::vfs::InMemoryFileSystem *MemFS) {
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000168 MemFS->addFileNoOwn(FileName, 0, Source);
Harlan Haskins8d323d12019-08-01 21:31:56 +0000169 auto File = Files.getFile(FileName);
170 return Sources.createFileID(File ? *File : nullptr, SourceLocation(),
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000171 SrcMgr::C_User);
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000172}
173
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000174// Parses <start line>:<end line> input to a pair of line numbers.
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000175// Returns true on error.
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000176static bool parseLineRange(StringRef Input, unsigned &FromLine,
177 unsigned &ToLine) {
178 std::pair<StringRef, StringRef> LineRange = Input.split(':');
179 return LineRange.first.getAsInteger(0, FromLine) ||
180 LineRange.second.getAsInteger(0, ToLine);
181}
182
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000183static bool fillRanges(MemoryBuffer *Code,
184 std::vector<tooling::Range> &Ranges) {
Jonas Devliegherefc514902018-10-10 13:27:25 +0000185 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem(
186 new llvm::vfs::InMemoryFileSystem);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000187 FileManager Files(FileSystemOptions(), InMemoryFileSystem);
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000188 DiagnosticsEngine Diagnostics(
189 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
190 new DiagnosticOptions);
191 SourceManager Sources(Diagnostics, Files);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000192 FileID ID = createInMemoryFile("<irrelevant>", Code, Sources, Files,
193 InMemoryFileSystem.get());
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000194 if (!LineRanges.empty()) {
195 if (!Offsets.empty() || !Lengths.empty()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000196 errs() << "error: cannot use -lines with -offset/-length\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000197 return true;
198 }
199
200 for (unsigned i = 0, e = LineRanges.size(); i < e; ++i) {
201 unsigned FromLine, ToLine;
202 if (parseLineRange(LineRanges[i], FromLine, ToLine)) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000203 errs() << "error: invalid <start line>:<end line> pair\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000204 return true;
205 }
206 if (FromLine > ToLine) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000207 errs() << "error: start line should be less than end line\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000208 return true;
209 }
210 SourceLocation Start = Sources.translateLineCol(ID, FromLine, 1);
211 SourceLocation End = Sources.translateLineCol(ID, ToLine, UINT_MAX);
212 if (Start.isInvalid() || End.isInvalid())
213 return true;
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000214 unsigned Offset = Sources.getFileOffset(Start);
215 unsigned Length = Sources.getFileOffset(End) - Offset;
216 Ranges.push_back(tooling::Range(Offset, Length));
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000217 }
218 return false;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000219 }
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000220
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000221 if (Offsets.empty())
222 Offsets.push_back(0);
223 if (Offsets.size() != Lengths.size() &&
224 !(Offsets.size() == 1 && Lengths.empty())) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000225 errs() << "error: number of -offset and -length arguments must match.\n";
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000226 return true;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000227 }
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000228 for (unsigned i = 0, e = Offsets.size(); i != e; ++i) {
229 if (Offsets[i] >= Code->getBufferSize()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000230 errs() << "error: offset " << Offsets[i] << " is outside the file\n";
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000231 return true;
232 }
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000233 SourceLocation Start =
234 Sources.getLocForStartOfFile(ID).getLocWithOffset(Offsets[i]);
235 SourceLocation End;
236 if (i < Lengths.size()) {
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000237 if (Offsets[i] + Lengths[i] > Code->getBufferSize()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000238 errs() << "error: invalid length " << Lengths[i]
239 << ", offset + length (" << Offsets[i] + Lengths[i]
240 << ") is outside the file.\n";
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000241 return true;
242 }
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000243 End = Start.getLocWithOffset(Lengths[i]);
244 } else {
245 End = Sources.getLocForEndOfFile(ID);
246 }
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000247 unsigned Offset = Sources.getFileOffset(Start);
248 unsigned Length = Sources.getFileOffset(End) - Offset;
249 Ranges.push_back(tooling::Range(Offset, Length));
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000250 }
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000251 return false;
252}
253
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000254static void outputReplacementXML(StringRef Text) {
Daniel Jasperf39757d2015-10-15 18:39:31 +0000255 // FIXME: When we sort includes, we need to make sure the stream is correct
256 // utf-8.
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000257 size_t From = 0;
258 size_t Index;
Daniel Jasperf39757d2015-10-15 18:39:31 +0000259 while ((Index = Text.find_first_of("\n\r<&", From)) != StringRef::npos) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000260 outs() << Text.substr(From, Index - From);
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000261 switch (Text[Index]) {
262 case '\n':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000263 outs() << "&#10;";
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000264 break;
265 case '\r':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000266 outs() << "&#13;";
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000267 break;
Daniel Jasperf39757d2015-10-15 18:39:31 +0000268 case '<':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000269 outs() << "&lt;";
Daniel Jasperf39757d2015-10-15 18:39:31 +0000270 break;
271 case '&':
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000272 outs() << "&amp;";
Daniel Jasperf39757d2015-10-15 18:39:31 +0000273 break;
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000274 default:
275 llvm_unreachable("Unexpected character encountered!");
276 }
277 From = Index + 1;
278 }
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000279 outs() << Text.substr(From);
Manuel Klimekf54dcbc2013-12-03 09:46:06 +0000280}
281
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000282static void outputReplacementsXML(const Replacements &Replaces) {
283 for (const auto &R : Replaces) {
284 outs() << "<replacement "
285 << "offset='" << R.getOffset() << "' "
286 << "length='" << R.getLength() << "'>";
287 outputReplacementXML(R.getReplacementText());
288 outs() << "</replacement>\n";
289 }
290}
291
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000292static bool
293emitReplacementWarnings(const Replacements &Replaces, StringRef AssumedFileName,
294 const std::unique_ptr<llvm::MemoryBuffer> &Code) {
295 if (Replaces.empty()) {
296 return false;
297 }
298
299 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
300 DiagOpts->ShowColors = (ShowColors && !NoShowColors);
301
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000302 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
303 IntrusiveRefCntPtr<DiagnosticsEngine> Diags(
paulhoadec666032019-10-24 19:01:47 +0100304 new DiagnosticsEngine(DiagID, &*DiagOpts));
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000305
306 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem(
307 new llvm::vfs::InMemoryFileSystem);
308 FileManager Files(FileSystemOptions(), InMemoryFileSystem);
309 SourceManager Sources(*Diags, Files);
310 FileID FileID = createInMemoryFile(AssumedFileName, Code.get(), Sources,
311 Files, InMemoryFileSystem.get());
312
paulhoadec666032019-10-24 19:01:47 +0100313 FileManager &FileMgr = Sources.getFileManager();
314 llvm::ErrorOr<const FileEntry *> FileEntryPtr =
315 FileMgr.getFile(AssumedFileName);
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000316
317 unsigned Errors = 0;
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000318 if (WarnFormat && !NoWarnFormat) {
319 for (const auto &R : Replaces) {
paulhoadec666032019-10-24 19:01:47 +0100320 PresumedLoc PLoc = Sources.getPresumedLoc(
321 Sources.getLocForStartOfFile(FileID).getLocWithOffset(R.getOffset()));
322
323 SourceLocation LineBegin =
324 Sources.translateFileLineCol(FileEntryPtr.get(), PLoc.getLine(), 1);
325 SourceLocation NextLineBegin = Sources.translateFileLineCol(
326 FileEntryPtr.get(), PLoc.getLine() + 1, 1);
327
328 const char *StartBuf = Sources.getCharacterData(LineBegin);
329 const char *EndBuf = Sources.getCharacterData(NextLineBegin);
330
331 StringRef Line(StartBuf, (EndBuf - StartBuf) - 1);
332
333 SMDiagnostic Diags(
334 llvm::SourceMgr(), SMLoc(), AssumedFileName, PLoc.getLine(),
335 PLoc.getColumn(),
336 WarningsAsErrors ? SourceMgr::DiagKind::DK_Error
337 : SourceMgr::DiagKind::DK_Warning,
338 "code should be clang-formatted [-Wclang-format-violations]", Line,
339 ArrayRef<std::pair<unsigned, unsigned>>());
340
341 Diags.print(nullptr, llvm::errs(), (ShowColors && !NoShowColors));
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000342 Errors++;
343 if (ErrorLimit && Errors >= ErrorLimit)
344 break;
345 }
346 }
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000347 return WarningsAsErrors;
348}
349
350static void outputXML(const Replacements &Replaces,
351 const Replacements &FormatChanges,
352 const FormattingAttemptStatus &Status,
353 const cl::opt<unsigned> &Cursor,
354 unsigned CursorPosition) {
355 outs() << "<?xml version='1.0'?>\n<replacements "
356 "xml:space='preserve' incomplete_format='"
357 << (Status.FormatComplete ? "false" : "true") << "'";
358 if (!Status.FormatComplete)
359 outs() << " line='" << Status.Line << "'";
360 outs() << ">\n";
361 if (Cursor.getNumOccurrences() != 0)
362 outs() << "<cursor>" << FormatChanges.getShiftedCodePosition(CursorPosition)
363 << "</cursor>\n";
364
365 outputReplacementsXML(Replaces);
366 outs() << "</replacements>\n";
367}
368
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000369// Returns true on error.
Bill Wendlinge94f74f2013-11-09 00:23:58 +0000370static bool format(StringRef FileName) {
Nico Weber65da4572017-02-27 22:59:58 +0000371 if (!OutputXML && Inplace && FileName == "-") {
372 errs() << "error: cannot use -i when reading from stdin.\n";
373 return false;
374 }
375 // On Windows, overwriting a file with an open file mapping doesn't work,
376 // so read the whole file into memory when formatting in-place.
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000377 ErrorOr<std::unique_ptr<MemoryBuffer>> CodeOrErr =
Paul Hoada65cfe32019-10-07 16:53:35 +0000378 !OutputXML && Inplace ? MemoryBuffer::getFileAsStream(FileName)
379 : MemoryBuffer::getFileOrSTDIN(FileName);
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000380 if (std::error_code EC = CodeOrErr.getError()) {
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000381 errs() << EC.message() << "\n";
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000382 return true;
383 }
Rafael Espindola2d2b4202014-07-06 17:43:24 +0000384 std::unique_ptr<llvm::MemoryBuffer> Code = std::move(CodeOrErr.get());
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000385 if (Code->getBufferSize() == 0)
Daniel Jaspere8845ad2013-10-08 15:54:36 +0000386 return false; // Empty files are formatted correctly.
Owen Pan4ba52692019-05-08 14:11:12 +0000387
Owen Pan4ba52692019-05-08 14:11:12 +0000388 StringRef BufStr = Code->getBuffer();
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000389
paulhoad8fa5e982019-10-24 20:24:03 +0100390 const char *InvalidBOM = SrcMgr::ContentCache::getInvalidBOM(BufStr);
Owen Pan4ba52692019-05-08 14:11:12 +0000391
392 if (InvalidBOM) {
393 errs() << "error: encoding with unsupported byte order mark \""
394 << InvalidBOM << "\" detected";
395 if (FileName != "-")
396 errs() << " in file '" << FileName << "'";
397 errs() << ".\n";
398 return true;
399 }
400
Daniel Jasperd89ae9d2015-09-23 08:30:47 +0000401 std::vector<tooling::Range> Ranges;
402 if (fillRanges(Code.get(), Ranges))
Alexander Kornienkoa49732f2013-07-18 22:54:56 +0000403 return true;
Daniel Jasper85c472d2015-09-29 07:53:08 +0000404 StringRef AssumedFileName = (FileName == "-") ? AssumeFileName : FileName;
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000405
406 llvm::Expected<FormatStyle> FormatStyle =
Daniel Jasper03a04fe2016-12-12 12:42:29 +0000407 getStyle(Style, AssumedFileName, FallbackStyle, Code->getBuffer());
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000408 if (!FormatStyle) {
409 llvm::errs() << llvm::toString(FormatStyle.takeError()) << "\n";
410 return true;
411 }
Martin Probstfa37b182017-01-27 09:09:11 +0000412
Daniel Jasperda446772015-11-16 12:38:56 +0000413 if (SortIncludes.getNumOccurrences() != 0)
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000414 FormatStyle->SortIncludes = SortIncludes;
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000415 unsigned CursorPosition = Cursor;
Antonio Maiorano3adfb6a2017-01-17 00:12:27 +0000416 Replacements Replaces = sortIncludes(*FormatStyle, Code->getBuffer(), Ranges,
Daniel Jasperb68aabf2015-11-23 08:36:35 +0000417 AssumedFileName, &CursorPosition);
Eric Liu4f8d9942016-07-11 13:53:12 +0000418 auto ChangedCode = tooling::applyAllReplacements(Code->getBuffer(), Replaces);
419 if (!ChangedCode) {
420 llvm::errs() << llvm::toString(ChangedCode.takeError()) << "\n";
421 return true;
422 }
Eric Liua992afe2016-08-10 09:32:23 +0000423 // Get new affected ranges after sorting `#includes`.
424 Ranges = tooling::calculateRangesAfterReplacements(Replaces, Ranges);
Krasimir Georgievbcda54b2017-04-21 14:35:20 +0000425 FormattingAttemptStatus Status;
Paul Hoada65cfe32019-10-07 16:53:35 +0000426 Replacements FormatChanges =
427 reformat(*FormatStyle, *ChangedCode, Ranges, AssumedFileName, &Status);
Eric Liu40ef2fb2016-08-01 10:16:37 +0000428 Replaces = Replaces.merge(FormatChanges);
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000429 if (OutputXML || DryRun) {
430 if (DryRun) {
431 return emitReplacementWarnings(Replaces, AssumedFileName, Code);
432 } else {
433 outputXML(Replaces, FormatChanges, Status, Cursor, CursorPosition);
434 }
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000435 } else {
Jonas Devliegherefc514902018-10-10 13:27:25 +0000436 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem(
437 new llvm::vfs::InMemoryFileSystem);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000438 FileManager Files(FileSystemOptions(), InMemoryFileSystem);
Daniel Jasper867a9382015-09-30 13:59:29 +0000439 DiagnosticsEngine Diagnostics(
440 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
441 new DiagnosticOptions);
442 SourceManager Sources(Diagnostics, Files);
Benjamin Kramer2e2351a2015-10-06 10:04:08 +0000443 FileID ID = createInMemoryFile(AssumedFileName, Code.get(), Sources, Files,
444 InMemoryFileSystem.get());
Daniel Jasper867a9382015-09-30 13:59:29 +0000445 Rewriter Rewrite(Sources, LangOptions());
446 tooling::applyAllReplacements(Replaces, Rewrite);
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000447 if (Inplace) {
Nico Weber65da4572017-02-27 22:59:58 +0000448 if (Rewrite.overwriteChangedFiles())
Daniel Jasper867a9382015-09-30 13:59:29 +0000449 return true;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000450 } else {
Krasimir Georgievbcda54b2017-04-21 14:35:20 +0000451 if (Cursor.getNumOccurrences() != 0) {
Tobias Grossera7046002015-05-08 21:34:09 +0000452 outs() << "{ \"Cursor\": "
Eric Liu40ef2fb2016-08-01 10:16:37 +0000453 << FormatChanges.getShiftedCodePosition(CursorPosition)
Daniel Jasper622c72d2015-05-10 07:47:19 +0000454 << ", \"IncompleteFormat\": "
Krasimir Georgievbcda54b2017-04-21 14:35:20 +0000455 << (Status.FormatComplete ? "false" : "true");
456 if (!Status.FormatComplete)
457 outs() << ", \"Line\": " << Status.Line;
458 outs() << " }\n";
459 }
Daniel Jasper867a9382015-09-30 13:59:29 +0000460 Rewrite.getEditBuffer(ID).write(outs());
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000461 }
462 }
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000463 return false;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000464}
465
Paul Hoada65cfe32019-10-07 16:53:35 +0000466} // namespace format
467} // namespace clang
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000468
Dimitry Andric81c40422017-06-06 21:54:21 +0000469static void PrintVersion(raw_ostream &OS) {
Nico Weberb00d66e2014-01-07 16:27:35 +0000470 OS << clang::getClangToolFullVersion("clang-format") << '\n';
471}
472
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000473// Dump the configuration.
474static int dumpConfig() {
475 StringRef FileName;
476 std::unique_ptr<llvm::MemoryBuffer> Code;
477 if (FileNames.empty()) {
478 // We can't read the code to detect the language if there's no
479 // file name, so leave Code empty here.
480 FileName = AssumeFileName;
481 } else {
482 // Read in the code in case the filename alone isn't enough to
483 // detect the language.
484 ErrorOr<std::unique_ptr<MemoryBuffer>> CodeOrErr =
485 MemoryBuffer::getFileOrSTDIN(FileNames[0]);
486 if (std::error_code EC = CodeOrErr.getError()) {
487 llvm::errs() << EC.message() << "\n";
488 return 1;
489 }
490 FileName = (FileNames[0] == "-") ? AssumeFileName : FileNames[0];
491 Code = std::move(CodeOrErr.get());
492 }
493 llvm::Expected<clang::format::FormatStyle> FormatStyle =
494 clang::format::getStyle(Style, FileName, FallbackStyle,
495 Code ? Code->getBuffer() : "");
496 if (!FormatStyle) {
497 llvm::errs() << llvm::toString(FormatStyle.takeError()) << "\n";
498 return 1;
499 }
500 std::string Config = clang::format::configurationAsText(*FormatStyle);
501 outs() << Config << "\n";
502 return 0;
503}
504
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000505int main(int argc, const char **argv) {
Rui Ueyamae4b59a92018-04-13 20:57:57 +0000506 llvm::InitLLVM X(argc, argv);
Alexander Kornienko54dcb532018-03-26 13:54:17 +0000507
Chris Bieneman0a9f6072015-01-21 23:26:11 +0000508 cl::HideUnrelatedOptions(ClangFormatCategory);
Alexander Kornienko88a0d932013-05-10 18:12:00 +0000509
Nico Weberb00d66e2014-01-07 16:27:35 +0000510 cl::SetVersionPrinter(PrintVersion);
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000511 cl::ParseCommandLineOptions(
Rui Ueyamae4b59a92018-04-13 20:57:57 +0000512 argc, argv,
Paul Hoadcbb726d2019-03-21 13:09:22 +0000513 "A tool to format C/C++/Java/JavaScript/Objective-C/Protobuf/C# code.\n\n"
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000514 "If no arguments are specified, it formats the code from standard input\n"
515 "and writes the result to the standard output.\n"
Alexander Kornienkod83adf32013-09-02 15:30:26 +0000516 "If <file>s are given, it reformats the files. If -i is specified\n"
517 "together with <file>s, the files are edited in-place. Otherwise, the\n"
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000518 "result is written to the standard output.\n");
519
Rafael Espindola79d9a692017-09-08 00:01:26 +0000520 if (Help) {
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000521 cl::PrintHelpMessage();
Rafael Espindola79d9a692017-09-08 00:01:26 +0000522 return 0;
523 }
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000524
Alexander Kornienko49149672013-05-10 11:56:10 +0000525 if (DumpConfig) {
Paul Hoad6a1f7d62019-10-13 14:51:45 +0000526 return dumpConfig();
Alexander Kornienko49149672013-05-10 11:56:10 +0000527 }
528
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000529 bool Error = false;
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000530 if (FileNames.empty()) {
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000531 Error = clang::format::format("-");
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000532 return Error ? 1 : 0;
533 }
Paul Hoada65cfe32019-10-07 16:53:35 +0000534 if (FileNames.size() != 1 &&
535 (!Offsets.empty() || !Lengths.empty() || !LineRanges.empty())) {
Sylvestre Ledrud23dd6c2017-08-12 15:15:10 +0000536 errs() << "error: -offset, -length and -lines can only be used for "
537 "single file.\n";
538 return 1;
539 }
540 for (const auto &FileName : FileNames) {
541 if (Verbose)
542 errs() << "Formatting " << FileName << "\n";
543 Error |= clang::format::format(FileName);
Alexander Kornienko3fbee012013-04-24 12:46:44 +0000544 }
545 return Error ? 1 : 0;
Daniel Jasper9be2c5c2013-03-20 09:53:23 +0000546}