blob: 129c119532efb72d254c628ed1ff9115619634bd [file] [log] [blame]
Daniel Jasperbac016b2012-12-03 18:12:45 +00001//===--- Format.cpp - Format C++ code -------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9///
10/// \file
11/// \brief This file implements functions declared in Format.h. This will be
12/// split into separate files as we go.
13///
Daniel Jasperbac016b2012-12-03 18:12:45 +000014//===----------------------------------------------------------------------===//
15
Manuel Klimekca547db2013-01-16 14:55:28 +000016#define DEBUG_TYPE "format-formatter"
17
Daniel Jasper6b2afe42013-08-16 11:20:30 +000018#include "ContinuationIndenter.h"
Daniel Jasper32d28ee2013-01-29 21:01:14 +000019#include "TokenAnnotator.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "UnwrappedLineParser.h"
Alexander Kornienko70ce7882013-04-15 14:28:00 +000021#include "WhitespaceManager.h"
Daniel Jasper8a999452013-05-16 10:40:07 +000022#include "clang/Basic/Diagnostic.h"
Chandler Carruthb99083e2013-01-02 10:28:36 +000023#include "clang/Basic/SourceManager.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000024#include "clang/Format/Format.h"
Daniel Jasperbac016b2012-12-03 18:12:45 +000025#include "clang/Lex/Lexer.h"
Alexander Kornienko5262dd92013-03-27 11:52:18 +000026#include "llvm/ADT/STLExtras.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000027#include "llvm/Support/Allocator.h"
Manuel Klimekca547db2013-01-16 14:55:28 +000028#include "llvm/Support/Debug.h"
Alexander Kornienkod71ec162013-05-07 15:32:14 +000029#include "llvm/Support/YAMLTraits.h"
Edwin Vanef4e12c82013-09-30 13:31:48 +000030#include "llvm/Support/Path.h"
Manuel Klimek32a2fd72013-02-13 10:46:36 +000031#include <queue>
Daniel Jasper8822d3a2012-12-04 13:02:32 +000032#include <string>
33
Alexander Kornienkod71ec162013-05-07 15:32:14 +000034namespace llvm {
35namespace yaml {
36template <>
37struct ScalarEnumerationTraits<clang::format::FormatStyle::LanguageStandard> {
Manuel Klimek44135b82013-05-13 12:51:40 +000038 static void enumeration(IO &IO,
39 clang::format::FormatStyle::LanguageStandard &Value) {
Alexander Kornienko9321e872013-09-04 14:09:13 +000040 IO.enumCase(Value, "Cpp03", clang::format::FormatStyle::LS_Cpp03);
Manuel Klimek44135b82013-05-13 12:51:40 +000041 IO.enumCase(Value, "C++03", clang::format::FormatStyle::LS_Cpp03);
Alexander Kornienko9321e872013-09-04 14:09:13 +000042 IO.enumCase(Value, "Cpp11", clang::format::FormatStyle::LS_Cpp11);
Manuel Klimek44135b82013-05-13 12:51:40 +000043 IO.enumCase(Value, "C++11", clang::format::FormatStyle::LS_Cpp11);
44 IO.enumCase(Value, "Auto", clang::format::FormatStyle::LS_Auto);
45 }
46};
47
Daniel Jasper1fb8d882013-05-14 09:30:02 +000048template <>
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +000049struct ScalarEnumerationTraits<clang::format::FormatStyle::UseTabStyle> {
50 static void
51 enumeration(IO &IO, clang::format::FormatStyle::UseTabStyle &Value) {
52 IO.enumCase(Value, "Never", clang::format::FormatStyle::UT_Never);
53 IO.enumCase(Value, "false", clang::format::FormatStyle::UT_Never);
54 IO.enumCase(Value, "Always", clang::format::FormatStyle::UT_Always);
55 IO.enumCase(Value, "true", clang::format::FormatStyle::UT_Always);
56 IO.enumCase(Value, "ForIndentation",
57 clang::format::FormatStyle::UT_ForIndentation);
58 }
59};
60
61template <>
Manuel Klimek44135b82013-05-13 12:51:40 +000062struct ScalarEnumerationTraits<clang::format::FormatStyle::BraceBreakingStyle> {
63 static void
64 enumeration(IO &IO, clang::format::FormatStyle::BraceBreakingStyle &Value) {
65 IO.enumCase(Value, "Attach", clang::format::FormatStyle::BS_Attach);
66 IO.enumCase(Value, "Linux", clang::format::FormatStyle::BS_Linux);
67 IO.enumCase(Value, "Stroustrup", clang::format::FormatStyle::BS_Stroustrup);
Manuel Klimeke4907052013-08-02 21:31:59 +000068 IO.enumCase(Value, "Allman", clang::format::FormatStyle::BS_Allman);
Alexander Kornienkod71ec162013-05-07 15:32:14 +000069 }
70};
71
Daniel Jaspereff18b92013-07-31 23:16:02 +000072template <>
73struct ScalarEnumerationTraits<
74 clang::format::FormatStyle::NamespaceIndentationKind> {
75 static void
76 enumeration(IO &IO,
77 clang::format::FormatStyle::NamespaceIndentationKind &Value) {
78 IO.enumCase(Value, "None", clang::format::FormatStyle::NI_None);
79 IO.enumCase(Value, "Inner", clang::format::FormatStyle::NI_Inner);
80 IO.enumCase(Value, "All", clang::format::FormatStyle::NI_All);
81 }
82};
83
Alexander Kornienkod71ec162013-05-07 15:32:14 +000084template <> struct MappingTraits<clang::format::FormatStyle> {
85 static void mapping(llvm::yaml::IO &IO, clang::format::FormatStyle &Style) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000086 if (IO.outputting()) {
Alexander Kornienko4e65c982013-09-02 16:39:23 +000087 StringRef StylesArray[] = { "LLVM", "Google", "Chromium",
88 "Mozilla", "WebKit" };
Alexander Kornienkodd256312013-05-10 11:56:10 +000089 ArrayRef<StringRef> Styles(StylesArray);
90 for (size_t i = 0, e = Styles.size(); i < e; ++i) {
91 StringRef StyleName(Styles[i]);
Alexander Kornienko885f87b2013-05-19 00:53:30 +000092 clang::format::FormatStyle PredefinedStyle;
93 if (clang::format::getPredefinedStyle(StyleName, &PredefinedStyle) &&
94 Style == PredefinedStyle) {
Alexander Kornienkodd256312013-05-10 11:56:10 +000095 IO.mapOptional("# BasedOnStyle", StyleName);
96 break;
97 }
98 }
99 } else {
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000100 StringRef BasedOnStyle;
101 IO.mapOptional("BasedOnStyle", BasedOnStyle);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000102 if (!BasedOnStyle.empty())
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000103 if (!clang::format::getPredefinedStyle(BasedOnStyle, &Style)) {
104 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle));
105 return;
106 }
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000107 }
108
109 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset);
Daniel Jasper6315fec2013-08-13 10:58:30 +0000110 IO.mapOptional("ConstructorInitializerIndentWidth",
111 Style.ConstructorInitializerIndentWidth);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000112 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlinesLeft);
Daniel Jasper893ea8d2013-07-31 23:55:15 +0000113 IO.mapOptional("AlignTrailingComments", Style.AlignTrailingComments);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000114 IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine",
115 Style.AllowAllParametersOfDeclarationOnNextLine);
116 IO.mapOptional("AllowShortIfStatementsOnASingleLine",
117 Style.AllowShortIfStatementsOnASingleLine);
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000118 IO.mapOptional("AllowShortLoopsOnASingleLine",
119 Style.AllowShortLoopsOnASingleLine);
Daniel Jasperbbc87762013-05-29 12:07:31 +0000120 IO.mapOptional("AlwaysBreakTemplateDeclarations",
121 Style.AlwaysBreakTemplateDeclarations);
Alexander Kornienko56312022013-07-04 12:02:44 +0000122 IO.mapOptional("AlwaysBreakBeforeMultilineStrings",
123 Style.AlwaysBreakBeforeMultilineStrings);
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000124 IO.mapOptional("BreakBeforeBinaryOperators",
125 Style.BreakBeforeBinaryOperators);
126 IO.mapOptional("BreakConstructorInitializersBeforeComma",
127 Style.BreakConstructorInitializersBeforeComma);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000128 IO.mapOptional("BinPackParameters", Style.BinPackParameters);
129 IO.mapOptional("ColumnLimit", Style.ColumnLimit);
130 IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine",
131 Style.ConstructorInitializerAllOnOneLineOrOnePerLine);
132 IO.mapOptional("DerivePointerBinding", Style.DerivePointerBinding);
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000133 IO.mapOptional("ExperimentalAutoDetectBinPacking",
134 Style.ExperimentalAutoDetectBinPacking);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000135 IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels);
136 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep);
Daniel Jaspereff18b92013-07-31 23:16:02 +0000137 IO.mapOptional("NamespaceIndentation", Style.NamespaceIndentation);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000138 IO.mapOptional("ObjCSpaceBeforeProtocolList",
139 Style.ObjCSpaceBeforeProtocolList);
Alexander Kornienko2785b9a2013-06-07 16:02:52 +0000140 IO.mapOptional("PenaltyBreakComment", Style.PenaltyBreakComment);
141 IO.mapOptional("PenaltyBreakString", Style.PenaltyBreakString);
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000142 IO.mapOptional("PenaltyBreakFirstLessLess",
143 Style.PenaltyBreakFirstLessLess);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000144 IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter);
145 IO.mapOptional("PenaltyReturnTypeOnItsOwnLine",
146 Style.PenaltyReturnTypeOnItsOwnLine);
147 IO.mapOptional("PointerBindsToType", Style.PointerBindsToType);
148 IO.mapOptional("SpacesBeforeTrailingComments",
149 Style.SpacesBeforeTrailingComments);
Daniel Jasperb5dc3f42013-07-16 18:22:10 +0000150 IO.mapOptional("Cpp11BracedListStyle", Style.Cpp11BracedListStyle);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000151 IO.mapOptional("Standard", Style.Standard);
Manuel Klimek07a64ec2013-05-13 08:42:42 +0000152 IO.mapOptional("IndentWidth", Style.IndentWidth);
Alexander Kornienko0b62cc32013-09-05 14:08:34 +0000153 IO.mapOptional("TabWidth", Style.TabWidth);
Manuel Klimek7c9a93e2013-05-13 09:22:11 +0000154 IO.mapOptional("UseTab", Style.UseTab);
Manuel Klimek44135b82013-05-13 12:51:40 +0000155 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces);
Manuel Klimeka9a7f102013-06-21 17:25:42 +0000156 IO.mapOptional("IndentFunctionDeclarationAfterType",
157 Style.IndentFunctionDeclarationAfterType);
Daniel Jasper7df56bf2013-08-20 12:36:34 +0000158 IO.mapOptional("SpacesInParentheses", Style.SpacesInParentheses);
Daniel Jasper34f3d052013-08-21 08:39:01 +0000159 IO.mapOptional("SpaceInEmptyParentheses", Style.SpaceInEmptyParentheses);
Daniel Jasper7df56bf2013-08-20 12:36:34 +0000160 IO.mapOptional("SpacesInCStyleCastParentheses",
161 Style.SpacesInCStyleCastParentheses);
162 IO.mapOptional("SpaceAfterControlStatementKeyword",
163 Style.SpaceAfterControlStatementKeyword);
Daniel Jasper9b4de852013-09-25 15:15:02 +0000164 IO.mapOptional("SpaceBeforeAssignmentOperators",
165 Style.SpaceBeforeAssignmentOperators);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000166 }
167};
168}
169}
170
Daniel Jasperbac016b2012-12-03 18:12:45 +0000171namespace clang {
172namespace format {
173
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000174void setDefaultPenalties(FormatStyle &Style) {
Daniel Jasperf5461782013-08-28 10:03:58 +0000175 Style.PenaltyBreakComment = 60;
Daniel Jasper9637dda2013-07-15 14:33:14 +0000176 Style.PenaltyBreakFirstLessLess = 120;
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000177 Style.PenaltyBreakString = 1000;
178 Style.PenaltyExcessCharacter = 1000000;
179}
180
Daniel Jasperbac016b2012-12-03 18:12:45 +0000181FormatStyle getLLVMStyle() {
182 FormatStyle LLVMStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000183 LLVMStyle.AccessModifierOffset = -2;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000184 LLVMStyle.AlignEscapedNewlinesLeft = false;
Daniel Jasper893ea8d2013-07-31 23:55:15 +0000185 LLVMStyle.AlignTrailingComments = true;
Daniel Jasperf1579602013-01-29 16:03:49 +0000186 LLVMStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000187 LLVMStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000188 LLVMStyle.AllowShortLoopsOnASingleLine = false;
Alexander Kornienko56312022013-07-04 12:02:44 +0000189 LLVMStyle.AlwaysBreakBeforeMultilineStrings = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000190 LLVMStyle.AlwaysBreakTemplateDeclarations = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000191 LLVMStyle.BinPackParameters = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000192 LLVMStyle.BreakBeforeBinaryOperators = false;
193 LLVMStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
194 LLVMStyle.BreakConstructorInitializersBeforeComma = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000195 LLVMStyle.ColumnLimit = 80;
196 LLVMStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = false;
Daniel Jasper6315fec2013-08-13 10:58:30 +0000197 LLVMStyle.ConstructorInitializerIndentWidth = 4;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000198 LLVMStyle.Cpp11BracedListStyle = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000199 LLVMStyle.DerivePointerBinding = false;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000200 LLVMStyle.ExperimentalAutoDetectBinPacking = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000201 LLVMStyle.IndentCaseLabels = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000202 LLVMStyle.IndentFunctionDeclarationAfterType = false;
203 LLVMStyle.IndentWidth = 2;
Alexander Kornienko0b62cc32013-09-05 14:08:34 +0000204 LLVMStyle.TabWidth = 8;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000205 LLVMStyle.MaxEmptyLinesToKeep = 1;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000206 LLVMStyle.NamespaceIndentation = FormatStyle::NI_None;
Nico Weber5f500df2013-01-10 20:12:55 +0000207 LLVMStyle.ObjCSpaceBeforeProtocolList = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000208 LLVMStyle.PointerBindsToType = false;
209 LLVMStyle.SpacesBeforeTrailingComments = 1;
210 LLVMStyle.Standard = FormatStyle::LS_Cpp03;
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +0000211 LLVMStyle.UseTab = FormatStyle::UT_Never;
Daniel Jasper7df56bf2013-08-20 12:36:34 +0000212 LLVMStyle.SpacesInParentheses = false;
213 LLVMStyle.SpaceInEmptyParentheses = false;
214 LLVMStyle.SpacesInCStyleCastParentheses = false;
215 LLVMStyle.SpaceAfterControlStatementKeyword = true;
Daniel Jasper9b4de852013-09-25 15:15:02 +0000216 LLVMStyle.SpaceBeforeAssignmentOperators = true;
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000217
218 setDefaultPenalties(LLVMStyle);
219 LLVMStyle.PenaltyReturnTypeOnItsOwnLine = 60;
220
Daniel Jasperbac016b2012-12-03 18:12:45 +0000221 return LLVMStyle;
222}
223
224FormatStyle getGoogleStyle() {
225 FormatStyle GoogleStyle;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000226 GoogleStyle.AccessModifierOffset = -1;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000227 GoogleStyle.AlignEscapedNewlinesLeft = true;
Daniel Jasper893ea8d2013-07-31 23:55:15 +0000228 GoogleStyle.AlignTrailingComments = true;
Daniel Jasperf1579602013-01-29 16:03:49 +0000229 GoogleStyle.AllowAllParametersOfDeclarationOnNextLine = true;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000230 GoogleStyle.AllowShortIfStatementsOnASingleLine = true;
Daniel Jasper1bee0732013-05-23 18:05:18 +0000231 GoogleStyle.AllowShortLoopsOnASingleLine = true;
Alexander Kornienko56312022013-07-04 12:02:44 +0000232 GoogleStyle.AlwaysBreakBeforeMultilineStrings = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000233 GoogleStyle.AlwaysBreakTemplateDeclarations = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000234 GoogleStyle.BinPackParameters = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000235 GoogleStyle.BreakBeforeBinaryOperators = false;
236 GoogleStyle.BreakBeforeBraces = FormatStyle::BS_Attach;
237 GoogleStyle.BreakConstructorInitializersBeforeComma = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000238 GoogleStyle.ColumnLimit = 80;
239 GoogleStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
Daniel Jasper6315fec2013-08-13 10:58:30 +0000240 GoogleStyle.ConstructorInitializerIndentWidth = 4;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000241 GoogleStyle.Cpp11BracedListStyle = true;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000242 GoogleStyle.DerivePointerBinding = true;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000243 GoogleStyle.ExperimentalAutoDetectBinPacking = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000244 GoogleStyle.IndentCaseLabels = true;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000245 GoogleStyle.IndentFunctionDeclarationAfterType = true;
246 GoogleStyle.IndentWidth = 2;
Alexander Kornienko0b62cc32013-09-05 14:08:34 +0000247 GoogleStyle.TabWidth = 8;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000248 GoogleStyle.MaxEmptyLinesToKeep = 1;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000249 GoogleStyle.NamespaceIndentation = FormatStyle::NI_None;
Nico Weber5f500df2013-01-10 20:12:55 +0000250 GoogleStyle.ObjCSpaceBeforeProtocolList = false;
Alexander Kornienkofb594862013-05-06 14:11:27 +0000251 GoogleStyle.PointerBindsToType = true;
252 GoogleStyle.SpacesBeforeTrailingComments = 2;
253 GoogleStyle.Standard = FormatStyle::LS_Auto;
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +0000254 GoogleStyle.UseTab = FormatStyle::UT_Never;
Daniel Jasper7df56bf2013-08-20 12:36:34 +0000255 GoogleStyle.SpacesInParentheses = false;
256 GoogleStyle.SpaceInEmptyParentheses = false;
257 GoogleStyle.SpacesInCStyleCastParentheses = false;
258 GoogleStyle.SpaceAfterControlStatementKeyword = true;
Daniel Jasper9b4de852013-09-25 15:15:02 +0000259 GoogleStyle.SpaceBeforeAssignmentOperators = true;
Daniel Jasperfaec47b2013-07-11 20:41:21 +0000260
261 setDefaultPenalties(GoogleStyle);
262 GoogleStyle.PenaltyReturnTypeOnItsOwnLine = 200;
263
Daniel Jasperbac016b2012-12-03 18:12:45 +0000264 return GoogleStyle;
265}
266
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000267FormatStyle getChromiumStyle() {
268 FormatStyle ChromiumStyle = getGoogleStyle();
Daniel Jasperf1579602013-01-29 16:03:49 +0000269 ChromiumStyle.AllowAllParametersOfDeclarationOnNextLine = false;
Daniel Jasper94d6ad72013-04-24 13:46:00 +0000270 ChromiumStyle.AllowShortIfStatementsOnASingleLine = false;
Daniel Jasperf11bbb92013-05-16 12:12:21 +0000271 ChromiumStyle.AllowShortLoopsOnASingleLine = false;
Daniel Jasperfaab0d32013-02-27 09:47:53 +0000272 ChromiumStyle.BinPackParameters = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000273 ChromiumStyle.DerivePointerBinding = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000274 ChromiumStyle.Standard = FormatStyle::LS_Cpp03;
Daniel Jasper6f5bb2c2013-01-14 16:24:39 +0000275 return ChromiumStyle;
276}
277
Alexander Kornienkofb594862013-05-06 14:11:27 +0000278FormatStyle getMozillaStyle() {
279 FormatStyle MozillaStyle = getLLVMStyle();
280 MozillaStyle.AllowAllParametersOfDeclarationOnNextLine = false;
281 MozillaStyle.ConstructorInitializerAllOnOneLineOrOnePerLine = true;
282 MozillaStyle.DerivePointerBinding = true;
283 MozillaStyle.IndentCaseLabels = true;
284 MozillaStyle.ObjCSpaceBeforeProtocolList = false;
285 MozillaStyle.PenaltyReturnTypeOnItsOwnLine = 200;
286 MozillaStyle.PointerBindsToType = true;
287 return MozillaStyle;
288}
289
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000290FormatStyle getWebKitStyle() {
291 FormatStyle Style = getLLVMStyle();
Daniel Jaspereff18b92013-07-31 23:16:02 +0000292 Style.AccessModifierOffset = -4;
Daniel Jasper893ea8d2013-07-31 23:55:15 +0000293 Style.AlignTrailingComments = false;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000294 Style.BreakBeforeBinaryOperators = true;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000295 Style.BreakBeforeBraces = FormatStyle::BS_Stroustrup;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000296 Style.BreakConstructorInitializersBeforeComma = true;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000297 Style.ColumnLimit = 0;
Daniel Jaspere8b10d32013-07-26 16:56:36 +0000298 Style.IndentWidth = 4;
Daniel Jaspereff18b92013-07-31 23:16:02 +0000299 Style.NamespaceIndentation = FormatStyle::NI_Inner;
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000300 Style.PointerBindsToType = true;
301 return Style;
302}
303
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000304bool getPredefinedStyle(StringRef Name, FormatStyle *Style) {
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000305 if (Name.equals_lower("llvm"))
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000306 *Style = getLLVMStyle();
307 else if (Name.equals_lower("chromium"))
308 *Style = getChromiumStyle();
309 else if (Name.equals_lower("mozilla"))
310 *Style = getMozillaStyle();
311 else if (Name.equals_lower("google"))
312 *Style = getGoogleStyle();
Daniel Jaspere05dc6d2013-07-24 13:10:59 +0000313 else if (Name.equals_lower("webkit"))
314 *Style = getWebKitStyle();
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000315 else
316 return false;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000317
Alexander Kornienko885f87b2013-05-19 00:53:30 +0000318 return true;
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000319}
320
321llvm::error_code parseConfiguration(StringRef Text, FormatStyle *Style) {
Alexander Kornienko107db3c2013-05-20 15:18:01 +0000322 if (Text.trim().empty())
323 return llvm::make_error_code(llvm::errc::invalid_argument);
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000324 llvm::yaml::Input Input(Text);
325 Input >> *Style;
326 return Input.error();
327}
328
329std::string configurationAsText(const FormatStyle &Style) {
330 std::string Text;
331 llvm::raw_string_ostream Stream(Text);
332 llvm::yaml::Output Output(Stream);
333 // We use the same mapping method for input and output, so we need a non-const
334 // reference here.
335 FormatStyle NonConstStyle = Style;
336 Output << NonConstStyle;
Alexander Kornienko2b6acb62013-05-13 12:56:35 +0000337 return Stream.str();
Alexander Kornienkod71ec162013-05-07 15:32:14 +0000338}
339
Craig Topper83f81d72013-06-30 22:29:28 +0000340namespace {
341
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000342class NoColumnLimitFormatter {
343public:
Daniel Jasper34f3d052013-08-21 08:39:01 +0000344 NoColumnLimitFormatter(ContinuationIndenter *Indenter) : Indenter(Indenter) {}
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000345
346 /// \brief Formats the line starting at \p State, simply keeping all of the
347 /// input's line breaking decisions.
Daniel Jasper567dcf92013-09-05 09:29:45 +0000348 void format(unsigned FirstIndent, const AnnotatedLine *Line) {
Daniel Jasperb77d7412013-09-06 07:54:20 +0000349 LineState State =
350 Indenter->getInitialState(FirstIndent, Line, /*DryRun=*/false);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000351 while (State.NextToken != NULL) {
352 bool Newline =
353 Indenter->mustBreak(State) ||
354 (Indenter->canBreak(State) && State.NextToken->NewlinesBefore > 0);
355 Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
356 }
357 }
Daniel Jasper34f3d052013-08-21 08:39:01 +0000358
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000359private:
360 ContinuationIndenter *Indenter;
361};
362
Daniel Jasperbac016b2012-12-03 18:12:45 +0000363class UnwrappedLineFormatter {
364public:
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000365 UnwrappedLineFormatter(ContinuationIndenter *Indenter,
Daniel Jasper567dcf92013-09-05 09:29:45 +0000366 WhitespaceManager *Whitespaces,
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000367 const FormatStyle &Style, const AnnotatedLine &Line)
Daniel Jasper567dcf92013-09-05 09:29:45 +0000368 : Indenter(Indenter), Whitespaces(Whitespaces), Style(Style), Line(Line),
369 Count(0) {}
Daniel Jasperbac016b2012-12-03 18:12:45 +0000370
Daniel Jasper567dcf92013-09-05 09:29:45 +0000371 /// \brief Formats an \c UnwrappedLine and returns the penalty.
372 ///
373 /// If \p DryRun is \c false, directly applies the changes.
374 unsigned format(unsigned FirstIndent, bool DryRun = false) {
Daniel Jasperb77d7412013-09-06 07:54:20 +0000375 LineState State = Indenter->getInitialState(FirstIndent, &Line, DryRun);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000376
Daniel Jasperce3d1a62013-02-08 08:22:00 +0000377 // If the ObjC method declaration does not fit on a line, we should format
378 // it with one arg per line.
379 if (Line.Type == LT_ObjCMethodDecl)
380 State.Stack.back().BreakBeforeParameter = true;
381
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000382 // Find best solution in solution space.
Daniel Jasper567dcf92013-09-05 09:29:45 +0000383 return analyzeSolutionSpace(State, DryRun);
Daniel Jasperbac016b2012-12-03 18:12:45 +0000384 }
385
386private:
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000387 /// \brief An edge in the solution space from \c Previous->State to \c State,
388 /// inserting a newline dependent on the \c NewLine.
389 struct StateNode {
390 StateNode(const LineState &State, bool NewLine, StateNode *Previous)
Daniel Jasperf11a7052013-02-21 21:33:55 +0000391 : State(State), NewLine(NewLine), Previous(Previous) {}
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000392 LineState State;
393 bool NewLine;
394 StateNode *Previous;
395 };
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000396
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000397 /// \brief A pair of <penalty, count> that is used to prioritize the BFS on.
398 ///
399 /// In case of equal penalties, we want to prefer states that were inserted
400 /// first. During state generation we make sure that we insert states first
401 /// that break the line as late as possible.
402 typedef std::pair<unsigned, unsigned> OrderedPenalty;
403
404 /// \brief An item in the prioritized BFS search queue. The \c StateNode's
405 /// \c State has the given \c OrderedPenalty.
406 typedef std::pair<OrderedPenalty, StateNode *> QueueItem;
407
408 /// \brief The BFS queue type.
409 typedef std::priority_queue<QueueItem, std::vector<QueueItem>,
410 std::greater<QueueItem> > QueueType;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000411
412 /// \brief Analyze the entire solution space starting from \p InitialState.
Daniel Jasperbac016b2012-12-03 18:12:45 +0000413 ///
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000414 /// This implements a variant of Dijkstra's algorithm on the graph that spans
415 /// the solution space (\c LineStates are the nodes). The algorithm tries to
416 /// find the shortest path (the one with lowest penalty) from \p InitialState
Daniel Jasper567dcf92013-09-05 09:29:45 +0000417 /// to a state where all tokens are placed. Returns the penalty.
418 ///
419 /// If \p DryRun is \c false, directly applies the changes.
420 unsigned analyzeSolutionSpace(LineState &InitialState, bool DryRun = false) {
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000421 std::set<LineState> Seen;
422
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000423 // Insert start element into queue.
Daniel Jasperfc759082013-02-14 14:26:07 +0000424 StateNode *Node =
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000425 new (Allocator.Allocate()) StateNode(InitialState, false, NULL);
426 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
427 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000428
Daniel Jasper567dcf92013-09-05 09:29:45 +0000429 unsigned Penalty = 0;
430
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000431 // While not empty, take first element and follow edges.
432 while (!Queue.empty()) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000433 Penalty = Queue.top().first.first;
Daniel Jasperfc759082013-02-14 14:26:07 +0000434 StateNode *Node = Queue.top().second;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000435 if (Node->State.NextToken == NULL) {
Alexander Kornienkodd256312013-05-10 11:56:10 +0000436 DEBUG(llvm::dbgs() << "\n---\nPenalty for line: " << Penalty << "\n");
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000437 break;
Daniel Jasper01786732013-02-04 07:21:18 +0000438 }
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000439 Queue.pop();
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000440
Daniel Jasper54b4e442013-05-22 05:27:42 +0000441 // Cut off the analysis of certain solutions if the analysis gets too
442 // complex. See description of IgnoreStackForComparison.
443 if (Count > 10000)
444 Node->State.IgnoreStackForComparison = true;
445
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000446 if (!Seen.insert(Node->State).second)
447 // State already examined with lower penalty.
448 continue;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000449
Nico Weber27268772013-06-26 00:30:14 +0000450 addNextStateToQueue(Penalty, Node, /*NewLine=*/false);
451 addNextStateToQueue(Penalty, Node, /*NewLine=*/true);
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000452 }
453
454 if (Queue.empty())
455 // We were unable to find a solution, do nothing.
456 // FIXME: Add diagnostic?
Daniel Jasper567dcf92013-09-05 09:29:45 +0000457 return 0;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000458
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000459 // Reconstruct the solution.
Daniel Jasper567dcf92013-09-05 09:29:45 +0000460 if (!DryRun)
461 reconstructPath(InitialState, Queue.top().second);
462
Alexander Kornienkodd256312013-05-10 11:56:10 +0000463 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
464 DEBUG(llvm::dbgs() << "---\n");
Daniel Jasper567dcf92013-09-05 09:29:45 +0000465
466 return Penalty;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000467 }
468
469 void reconstructPath(LineState &State, StateNode *Current) {
Manuel Klimek9c333b92013-05-29 15:10:11 +0000470 std::deque<StateNode *> Path;
471 // We do not need a break before the initial token.
472 while (Current->Previous) {
473 Path.push_front(Current);
474 Current = Current->Previous;
475 }
476 for (std::deque<StateNode *>::iterator I = Path.begin(), E = Path.end();
477 I != E; ++I) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000478 unsigned Penalty = 0;
479 formatChildren(State, (*I)->NewLine, /*DryRun=*/false, Penalty);
480 Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false);
481
Manuel Klimek9c333b92013-05-29 15:10:11 +0000482 DEBUG({
483 if ((*I)->NewLine) {
Daniel Jasperd4a03db2013-08-22 15:00:41 +0000484 llvm::dbgs() << "Penalty for placing "
Manuel Klimek9c333b92013-05-29 15:10:11 +0000485 << (*I)->Previous->State.NextToken->Tok.getName() << ": "
Daniel Jasperd4a03db2013-08-22 15:00:41 +0000486 << Penalty << "\n";
Manuel Klimek9c333b92013-05-29 15:10:11 +0000487 }
488 });
Manuel Klimek9c333b92013-05-29 15:10:11 +0000489 }
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000490 }
491
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000492 /// \brief Add the following state to the analysis queue \c Queue.
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000493 ///
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000494 /// Assume the current state is \p PreviousNode and has been reached with a
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000495 /// penalty of \p Penalty. Insert a line break if \p NewLine is \c true.
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000496 void addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode,
497 bool NewLine) {
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000498 if (NewLine && !Indenter->canBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000499 return;
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000500 if (!NewLine && Indenter->mustBreak(PreviousNode->State))
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000501 return;
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000502
503 StateNode *Node = new (Allocator.Allocate())
504 StateNode(PreviousNode->State, NewLine, PreviousNode);
Daniel Jasper567dcf92013-09-05 09:29:45 +0000505 if (!formatChildren(Node->State, NewLine, /*DryRun=*/true, Penalty))
506 return;
507
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000508 Penalty += Indenter->addTokenToState(Node->State, NewLine, true);
Manuel Klimek32a2fd72013-02-13 10:46:36 +0000509
510 Queue.push(QueueItem(OrderedPenalty(Penalty, Count), Node));
511 ++Count;
Daniel Jasper68ef0df2013-02-01 11:00:45 +0000512 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000513
Daniel Jasper1a925bc2013-09-05 10:48:50 +0000514 /// \brief If the \p State's next token is an r_brace closing a nested block,
515 /// format the nested block before it.
Daniel Jasper567dcf92013-09-05 09:29:45 +0000516 ///
517 /// Returns \c true if all children could be placed successfully and adapts
518 /// \p Penalty as well as \p State. If \p DryRun is false, also directly
519 /// creates changes using \c Whitespaces.
520 ///
521 /// The crucial idea here is that children always get formatted upon
522 /// encountering the closing brace right after the nested block. Now, if we
523 /// are currently trying to keep the "}" on the same line (i.e. \p NewLine is
524 /// \c false), the entire block has to be kept on the same line (which is only
525 /// possible if it fits on the line, only contains a single statement, etc.
526 ///
527 /// If \p NewLine is true, we format the nested block on separate lines, i.e.
528 /// break after the "{", format all lines with correct indentation and the put
529 /// the closing "}" on yet another new line.
530 ///
531 /// This enables us to keep the simple structure of the
532 /// \c UnwrappedLineFormatter, where we only have two options for each token:
533 /// break or don't break.
534 bool formatChildren(LineState &State, bool NewLine, bool DryRun,
535 unsigned &Penalty) {
536 const FormatToken &LBrace = *State.NextToken->Previous;
537 if (LBrace.isNot(tok::l_brace) || LBrace.BlockKind != BK_Block ||
538 LBrace.Children.size() == 0)
Daniel Jasper1a925bc2013-09-05 10:48:50 +0000539 // The previous token does not open a block. Nothing to do. We don't
540 // assert so that we can simply call this function for all tokens.
Daniel Jasper2f0a0202013-09-06 08:54:24 +0000541 return true;
Daniel Jasper567dcf92013-09-05 09:29:45 +0000542
543 if (NewLine) {
544 unsigned ParentIndent = State.Stack.back().Indent;
545 for (SmallVector<AnnotatedLine *, 1>::const_iterator
546 I = LBrace.Children.begin(),
547 E = LBrace.Children.end();
548 I != E; ++I) {
549 unsigned Indent =
Daniel Jasper57981202013-09-13 09:20:45 +0000550 ParentIndent + ((*I)->Level - Line.Level - 1) * Style.IndentWidth;
Daniel Jasper14e25c02013-09-08 14:07:57 +0000551 if (!DryRun) {
552 unsigned Newlines = std::min((*I)->First->NewlinesBefore,
553 Style.MaxEmptyLinesToKeep + 1);
554 Newlines = std::max(1u, Newlines);
Daniel Jasper567dcf92013-09-05 09:29:45 +0000555 Whitespaces->replaceWhitespace(
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +0000556 *(*I)->First, Newlines, (*I)->Level, /*Spaces=*/Indent,
Daniel Jasper567dcf92013-09-05 09:29:45 +0000557 /*StartOfTokenColumn=*/Indent, Line.InPPDirective);
Daniel Jasper14e25c02013-09-08 14:07:57 +0000558 }
Daniel Jasper567dcf92013-09-05 09:29:45 +0000559 UnwrappedLineFormatter Formatter(Indenter, Whitespaces, Style, **I);
560 Penalty += Formatter.format(Indent, DryRun);
561 }
562 return true;
563 }
564
565 if (LBrace.Children.size() > 1)
566 return false; // Cannot merge multiple statements into a single line.
567
568 // We can't put the closing "}" on a line with a trailing comment.
569 if (LBrace.Children[0]->Last->isTrailingComment())
570 return false;
571
572 if (!DryRun) {
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +0000573 Whitespaces->replaceWhitespace(
574 *LBrace.Children[0]->First,
575 /*Newlines=*/0, /*IndentLevel=*/1, /*Spaces=*/1,
576 /*StartOfTokenColumn=*/State.Column, State.Line->InPPDirective);
Daniel Jasper14e25c02013-09-08 14:07:57 +0000577 UnwrappedLineFormatter Formatter(Indenter, Whitespaces, Style,
578 *LBrace.Children[0]);
579 Penalty += Formatter.format(State.Column + 1, DryRun);
Daniel Jasper567dcf92013-09-05 09:29:45 +0000580 }
581
582 State.Column += 1 + LBrace.Children[0]->Last->TotalLength;
583 return true;
584 }
585
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000586 ContinuationIndenter *Indenter;
Daniel Jasper567dcf92013-09-05 09:29:45 +0000587 WhitespaceManager *Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000588 FormatStyle Style;
Daniel Jasper995e8202013-01-14 13:08:07 +0000589 const AnnotatedLine &Line;
Manuel Klimek62a48fb2013-02-13 10:54:19 +0000590
591 llvm::SpecificBumpPtrAllocator<StateNode> Allocator;
592 QueueType Queue;
593 // Increasing count of \c StateNode items we have created. This is used
594 // to create a deterministic order independent of the container.
595 unsigned Count;
Daniel Jasperbac016b2012-12-03 18:12:45 +0000596};
597
Manuel Klimek96e888b2013-05-28 11:55:06 +0000598class FormatTokenLexer {
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000599public:
Manuel Klimekc41e8192013-08-29 15:21:40 +0000600 FormatTokenLexer(Lexer &Lex, SourceManager &SourceMgr, FormatStyle &Style,
Alexander Kornienko00895102013-06-05 14:09:10 +0000601 encoding::Encoding Encoding)
Manuel Klimekc41e8192013-08-29 15:21:40 +0000602 : FormatTok(NULL), GreaterStashed(false), Column(0),
603 TrailingWhitespace(0), Lex(Lex), SourceMgr(SourceMgr), Style(Style),
604 IdentTable(getFormattingLangOpts()), Encoding(Encoding) {
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000605 Lex.SetKeepWhitespaceMode(true);
606 }
607
Manuel Klimek96e888b2013-05-28 11:55:06 +0000608 ArrayRef<FormatToken *> lex() {
609 assert(Tokens.empty());
610 do {
611 Tokens.push_back(getNextToken());
Alexander Kornienko2c2f7292013-09-16 20:20:49 +0000612 maybeJoinPreviousTokens();
Manuel Klimek96e888b2013-05-28 11:55:06 +0000613 } while (Tokens.back()->Tok.isNot(tok::eof));
614 return Tokens;
615 }
616
617 IdentifierTable &getIdentTable() { return IdentTable; }
618
619private:
Alexander Kornienko2c2f7292013-09-16 20:20:49 +0000620 void maybeJoinPreviousTokens() {
621 if (Tokens.size() < 4)
622 return;
623 FormatToken *Last = Tokens.back();
624 if (!Last->is(tok::r_paren))
625 return;
626
627 FormatToken *String = Tokens[Tokens.size() - 2];
628 if (!String->is(tok::string_literal) || String->IsMultiline)
629 return;
630
631 if (!Tokens[Tokens.size() - 3]->is(tok::l_paren))
632 return;
633
634 FormatToken *Macro = Tokens[Tokens.size() - 4];
635 if (Macro->TokenText != "_T")
636 return;
637
638 const char *Start = Macro->TokenText.data();
639 const char *End = Last->TokenText.data() + Last->TokenText.size();
640 String->TokenText = StringRef(Start, End - Start);
641 String->IsFirst = Macro->IsFirst;
642 String->LastNewlineOffset = Macro->LastNewlineOffset;
643 String->WhitespaceRange = Macro->WhitespaceRange;
644 String->OriginalColumn = Macro->OriginalColumn;
645 String->ColumnWidth = encoding::columnWidthWithTabs(
646 String->TokenText, String->OriginalColumn, Style.TabWidth, Encoding);
647
648 Tokens.pop_back();
649 Tokens.pop_back();
650 Tokens.pop_back();
651 Tokens.back() = String;
652 }
653
Manuel Klimek96e888b2013-05-28 11:55:06 +0000654 FormatToken *getNextToken() {
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000655 if (GreaterStashed) {
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000656 // Create a synthesized second '>' token.
Manuel Klimekc41e8192013-08-29 15:21:40 +0000657 // FIXME: Increment Column and set OriginalColumn.
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000658 Token Greater = FormatTok->Tok;
659 FormatTok = new (Allocator.Allocate()) FormatToken;
660 FormatTok->Tok = Greater;
Manuel Klimekad3094b2013-05-23 10:56:37 +0000661 SourceLocation GreaterLocation =
Manuel Klimek96e888b2013-05-28 11:55:06 +0000662 FormatTok->Tok.getLocation().getLocWithOffset(1);
663 FormatTok->WhitespaceRange =
664 SourceRange(GreaterLocation, GreaterLocation);
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000665 FormatTok->TokenText = ">";
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000666 FormatTok->ColumnWidth = 1;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000667 GreaterStashed = false;
668 return FormatTok;
669 }
670
Manuel Klimek96e888b2013-05-28 11:55:06 +0000671 FormatTok = new (Allocator.Allocate()) FormatToken;
Daniel Jasper561211d2013-07-16 20:28:33 +0000672 readRawToken(*FormatTok);
Manuel Klimekde008c02013-05-27 15:23:34 +0000673 SourceLocation WhitespaceStart =
Manuel Klimek96e888b2013-05-28 11:55:06 +0000674 FormatTok->Tok.getLocation().getLocWithOffset(-TrailingWhitespace);
Manuel Klimekad3094b2013-05-23 10:56:37 +0000675 if (SourceMgr.getFileOffset(WhitespaceStart) == 0)
Manuel Klimek96e888b2013-05-28 11:55:06 +0000676 FormatTok->IsFirst = true;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000677
678 // Consume and record whitespace until we find a significant token.
Manuel Klimekde008c02013-05-27 15:23:34 +0000679 unsigned WhitespaceLength = TrailingWhitespace;
Manuel Klimek96e888b2013-05-28 11:55:06 +0000680 while (FormatTok->Tok.is(tok::unknown)) {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000681 for (int i = 0, e = FormatTok->TokenText.size(); i != e; ++i) {
682 switch (FormatTok->TokenText[i]) {
683 case '\n':
684 ++FormatTok->NewlinesBefore;
685 // FIXME: This is technically incorrect, as it could also
686 // be a literal backslash at the end of the line.
Alexander Kornienko73d845c2013-09-11 12:25:57 +0000687 if (i == 0 || (FormatTok->TokenText[i - 1] != '\\' &&
688 (FormatTok->TokenText[i - 1] != '\r' || i == 1 ||
689 FormatTok->TokenText[i - 2] != '\\')))
Manuel Klimekc41e8192013-08-29 15:21:40 +0000690 FormatTok->HasUnescapedNewline = true;
691 FormatTok->LastNewlineOffset = WhitespaceLength + i + 1;
692 Column = 0;
693 break;
694 case ' ':
695 ++Column;
696 break;
697 case '\t':
Alexander Kornienko0b62cc32013-09-05 14:08:34 +0000698 Column += Style.TabWidth - Column % Style.TabWidth;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000699 break;
700 default:
701 ++Column;
702 break;
703 }
704 }
705
Manuel Klimek96e888b2013-05-28 11:55:06 +0000706 WhitespaceLength += FormatTok->Tok.getLength();
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000707
Daniel Jasper561211d2013-07-16 20:28:33 +0000708 readRawToken(*FormatTok);
Manuel Klimekd4397b92013-01-04 23:34:14 +0000709 }
Manuel Klimek95419382013-01-07 07:56:50 +0000710
Manuel Klimekd4397b92013-01-04 23:34:14 +0000711 // In case the token starts with escaped newlines, we want to
712 // take them into account as whitespace - this pattern is quite frequent
713 // in macro definitions.
Manuel Klimekd4397b92013-01-04 23:34:14 +0000714 // FIXME: Add a more explicit test.
Daniel Jasper561211d2013-07-16 20:28:33 +0000715 while (FormatTok->TokenText.size() > 1 && FormatTok->TokenText[0] == '\\' &&
716 FormatTok->TokenText[1] == '\n') {
Manuel Klimek96e888b2013-05-28 11:55:06 +0000717 // FIXME: ++FormatTok->NewlinesBefore is missing...
Manuel Klimekad3094b2013-05-23 10:56:37 +0000718 WhitespaceLength += 2;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000719 Column = 0;
Daniel Jasper561211d2013-07-16 20:28:33 +0000720 FormatTok->TokenText = FormatTok->TokenText.substr(2);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000721 }
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000722
723 FormatTok->WhitespaceRange = SourceRange(
724 WhitespaceStart, WhitespaceStart.getLocWithOffset(WhitespaceLength));
725
Manuel Klimekc41e8192013-08-29 15:21:40 +0000726 FormatTok->OriginalColumn = Column;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000727
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000728 TrailingWhitespace = 0;
729 if (FormatTok->Tok.is(tok::comment)) {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000730 // FIXME: Add the trimmed whitespace to Column.
Daniel Jasper561211d2013-07-16 20:28:33 +0000731 StringRef UntrimmedText = FormatTok->TokenText;
Alexander Kornienko51bb5d92013-09-06 17:24:54 +0000732 FormatTok->TokenText = FormatTok->TokenText.rtrim(" \t\v\f");
Daniel Jasper561211d2013-07-16 20:28:33 +0000733 TrailingWhitespace = UntrimmedText.size() - FormatTok->TokenText.size();
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000734 } else if (FormatTok->Tok.is(tok::raw_identifier)) {
Daniel Jasper561211d2013-07-16 20:28:33 +0000735 IdentifierInfo &Info = IdentTable.get(FormatTok->TokenText);
Manuel Klimek96e888b2013-05-28 11:55:06 +0000736 FormatTok->Tok.setIdentifierInfo(&Info);
737 FormatTok->Tok.setKind(Info.getTokenID());
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000738 } else if (FormatTok->Tok.is(tok::greatergreater)) {
Manuel Klimek96e888b2013-05-28 11:55:06 +0000739 FormatTok->Tok.setKind(tok::greater);
Daniel Jasper561211d2013-07-16 20:28:33 +0000740 FormatTok->TokenText = FormatTok->TokenText.substr(0, 1);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000741 GreaterStashed = true;
742 }
743
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000744 // Now FormatTok is the next non-whitespace token.
Alexander Kornienko00895102013-06-05 14:09:10 +0000745
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000746 StringRef Text = FormatTok->TokenText;
747 size_t FirstNewlinePos = Text.find('\n');
Alexander Kornienko6f6154c2013-09-10 12:29:48 +0000748 if (FirstNewlinePos == StringRef::npos) {
749 // FIXME: ColumnWidth actually depends on the start column, we need to
750 // take this into account when the token is moved.
751 FormatTok->ColumnWidth =
752 encoding::columnWidthWithTabs(Text, Column, Style.TabWidth, Encoding);
753 Column += FormatTok->ColumnWidth;
754 } else {
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000755 FormatTok->IsMultiline = true;
Alexander Kornienko6f6154c2013-09-10 12:29:48 +0000756 // FIXME: ColumnWidth actually depends on the start column, we need to
757 // take this into account when the token is moved.
758 FormatTok->ColumnWidth = encoding::columnWidthWithTabs(
759 Text.substr(0, FirstNewlinePos), Column, Style.TabWidth, Encoding);
760
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000761 // The last line of the token always starts in column 0.
762 // Thus, the length can be precomputed even in the presence of tabs.
763 FormatTok->LastLineColumnWidth = encoding::columnWidthWithTabs(
764 Text.substr(Text.find_last_of('\n') + 1), 0, Style.TabWidth,
765 Encoding);
Alexander Kornienko6f6154c2013-09-10 12:29:48 +0000766 Column = FormatTok->LastLineColumnWidth;
Alexander Kornienko4b762a92013-09-02 13:58:14 +0000767 }
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000768
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000769 return FormatTok;
770 }
771
Manuel Klimek96e888b2013-05-28 11:55:06 +0000772 FormatToken *FormatTok;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000773 bool GreaterStashed;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000774 unsigned Column;
Manuel Klimekde008c02013-05-27 15:23:34 +0000775 unsigned TrailingWhitespace;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000776 Lexer &Lex;
777 SourceManager &SourceMgr;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000778 FormatStyle &Style;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000779 IdentifierTable IdentTable;
Alexander Kornienko00895102013-06-05 14:09:10 +0000780 encoding::Encoding Encoding;
Manuel Klimek96e888b2013-05-28 11:55:06 +0000781 llvm::SpecificBumpPtrAllocator<FormatToken> Allocator;
782 SmallVector<FormatToken *, 16> Tokens;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000783
Daniel Jasper561211d2013-07-16 20:28:33 +0000784 void readRawToken(FormatToken &Tok) {
785 Lex.LexFromRawLexer(Tok.Tok);
786 Tok.TokenText = StringRef(SourceMgr.getCharacterData(Tok.Tok.getLocation()),
787 Tok.Tok.getLength());
Daniel Jasper561211d2013-07-16 20:28:33 +0000788 // For formatting, treat unterminated string literals like normal string
789 // literals.
790 if (Tok.is(tok::unknown) && !Tok.TokenText.empty() &&
791 Tok.TokenText[0] == '"') {
792 Tok.Tok.setKind(tok::string_literal);
793 Tok.IsUnterminatedLiteral = true;
794 }
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000795 }
796};
797
Daniel Jasperbac016b2012-12-03 18:12:45 +0000798class Formatter : public UnwrappedLineConsumer {
799public:
Daniel Jaspercaf42a32013-05-15 08:14:19 +0000800 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +0000801 const std::vector<CharSourceRange> &Ranges)
Daniel Jaspercaf42a32013-05-15 08:14:19 +0000802 : Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko73d845c2013-09-11 12:25:57 +0000803 Whitespaces(SourceMgr, Style, inputUsesCRLF(Lex.getBuffer())),
804 Ranges(Ranges), Encoding(encoding::detectEncoding(Lex.getBuffer())) {
Daniel Jasper9637dda2013-07-15 14:33:14 +0000805 DEBUG(llvm::dbgs() << "File encoding: "
806 << (Encoding == encoding::Encoding_UTF8 ? "UTF8"
807 : "unknown")
808 << "\n");
Alexander Kornienko00895102013-06-05 14:09:10 +0000809 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000810
Daniel Jasper567dcf92013-09-05 09:29:45 +0000811 virtual ~Formatter() {
812 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
813 delete AnnotatedLines[i];
814 }
Daniel Jasper567dcf92013-09-05 09:29:45 +0000815 }
Daniel Jasperaccb0b02012-12-04 21:05:31 +0000816
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000817 tooling::Replacements format() {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000818 FormatTokenLexer Tokens(Lex, SourceMgr, Style, Encoding);
Manuel Klimek96e888b2013-05-28 11:55:06 +0000819
820 UnwrappedLineParser Parser(Style, Tokens.lex(), *this);
Manuel Klimek67d080d2013-04-12 14:13:36 +0000821 bool StructuralError = Parser.parse();
Alexander Kornienko00895102013-06-05 14:09:10 +0000822 TokenAnnotator Annotator(Style, Tokens.getIdentTable().get("in"));
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000823 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000824 Annotator.annotate(*AnnotatedLines[i]);
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000825 }
826 deriveLocalStyle();
827 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000828 Annotator.calculateFormattingInformation(*AnnotatedLines[i]);
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000829 }
Daniel Jasper5999f762013-04-09 17:46:55 +0000830
Daniel Jasperb77d7412013-09-06 07:54:20 +0000831 Annotator.setCommentLineLevels(AnnotatedLines);
Daniel Jasper5999f762013-04-09 17:46:55 +0000832
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000833 std::vector<int> IndentForLevel;
834 bool PreviousLineWasTouched = false;
Daniel Jasper63cfb892013-10-06 11:40:08 +0000835 const AnnotatedLine *PreviousLine = NULL;
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000836 bool FormatPPDirective = false;
Daniel Jasperb77d7412013-09-06 07:54:20 +0000837 for (SmallVectorImpl<AnnotatedLine *>::iterator I = AnnotatedLines.begin(),
838 E = AnnotatedLines.end();
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000839 I != E; ++I) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000840 const AnnotatedLine &TheLine = **I;
Manuel Klimekb3987012013-05-29 14:47:47 +0000841 const FormatToken *FirstTok = TheLine.First;
842 int Offset = getIndentOffset(*TheLine.First);
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000843
844 // Check whether this line is part of a formatted preprocessor directive.
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000845 if (FirstTok->HasUnescapedNewline)
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000846 FormatPPDirective = false;
847 if (!FormatPPDirective && TheLine.InPPDirective &&
848 (touchesLine(TheLine) || touchesPPDirective(I + 1, E)))
849 FormatPPDirective = true;
850
Daniel Jasper1fb8d882013-05-14 09:30:02 +0000851 // Determine indent and try to merge multiple unwrapped lines.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000852 while (IndentForLevel.size() <= TheLine.Level)
853 IndentForLevel.push_back(-1);
854 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper1fb8d882013-05-14 09:30:02 +0000855 unsigned Indent = getIndent(IndentForLevel, TheLine.Level);
856 if (static_cast<int>(Indent) + Offset >= 0)
857 Indent += Offset;
858 tryFitMultipleLinesInOne(Indent, I, E);
859
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000860 bool WasMoved = PreviousLineWasTouched && FirstTok->NewlinesBefore == 0;
Manuel Klimekb3987012013-05-29 14:47:47 +0000861 if (TheLine.First->is(tok::eof)) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000862 if (PreviousLineWasTouched) {
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000863 unsigned NewLines = std::min(FirstTok->NewlinesBefore, 1u);
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +0000864 Whitespaces.replaceWhitespace(*TheLine.First, NewLines,
865 /*IndentLevel=*/0, /*Spaces=*/0,
866 /*TargetColumn=*/0);
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000867 }
868 } else if (TheLine.Type != LT_Invalid &&
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000869 (WasMoved || FormatPPDirective || touchesLine(TheLine))) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000870 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000871 if (FirstTok->WhitespaceRange.isValid() &&
Manuel Klimek67d080d2013-04-12 14:13:36 +0000872 // Insert a break even if there is a structural error in case where
873 // we break apart a line consisting of multiple unwrapped lines.
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000874 (FirstTok->NewlinesBefore == 0 || !StructuralError)) {
Daniel Jasper63cfb892013-10-06 11:40:08 +0000875 formatFirstToken(*TheLine.First, PreviousLine, Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000876 TheLine.InPPDirective);
Manuel Klimek67d080d2013-04-12 14:13:36 +0000877 } else {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000878 Indent = LevelIndent = FirstTok->OriginalColumn;
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000879 }
Daniel Jasper567dcf92013-09-05 09:29:45 +0000880 ContinuationIndenter Indenter(Style, SourceMgr, Whitespaces, Encoding,
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000881 BinPackInconclusiveFunctions);
882
883 // If everything fits on a single line, just put it there.
884 unsigned ColumnLimit = Style.ColumnLimit;
Daniel Jasper567dcf92013-09-05 09:29:45 +0000885 AnnotatedLine *NextLine = *(I + 1);
886 if ((I + 1) != E && NextLine->InPPDirective &&
887 !NextLine->First->HasUnescapedNewline)
888 ColumnLimit = getColumnLimit(TheLine.InPPDirective);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000889
Daniel Jasper567dcf92013-09-05 09:29:45 +0000890 if (TheLine.Last->TotalLength + Indent <= ColumnLimit) {
Daniel Jasperb77d7412013-09-06 07:54:20 +0000891 LineState State =
892 Indenter.getInitialState(Indent, &TheLine, /*DryRun=*/false);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000893 while (State.NextToken != NULL)
894 Indenter.addTokenToState(State, false, false);
895 } else if (Style.ColumnLimit == 0) {
896 NoColumnLimitFormatter Formatter(&Indenter);
Daniel Jasper567dcf92013-09-05 09:29:45 +0000897 Formatter.format(Indent, &TheLine);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000898 } else {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000899 UnwrappedLineFormatter Formatter(&Indenter, &Whitespaces, Style,
900 TheLine);
901 Formatter.format(Indent);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000902 }
903
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000904 IndentForLevel[TheLine.Level] = LevelIndent;
905 PreviousLineWasTouched = true;
906 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000907 // Format the first token if necessary, and notify the WhitespaceManager
908 // about the unchanged whitespace.
Manuel Klimekb3987012013-05-29 14:47:47 +0000909 for (const FormatToken *Tok = TheLine.First; Tok != NULL;
910 Tok = Tok->Next) {
911 if (Tok == TheLine.First &&
912 (Tok->NewlinesBefore > 0 || Tok->IsFirst)) {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000913 unsigned LevelIndent = Tok->OriginalColumn;
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000914 // Remove trailing whitespace of the previous line if it was
915 // touched.
916 if (PreviousLineWasTouched || touchesEmptyLineBefore(TheLine)) {
Daniel Jasper63cfb892013-10-06 11:40:08 +0000917 formatFirstToken(*Tok, PreviousLine, LevelIndent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000918 TheLine.InPPDirective);
919 } else {
Manuel Klimekb3987012013-05-29 14:47:47 +0000920 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000921 }
Daniel Jasper1fb8d882013-05-14 09:30:02 +0000922
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000923 if (static_cast<int>(LevelIndent) - Offset >= 0)
924 LevelIndent -= Offset;
925 if (Tok->isNot(tok::comment))
926 IndentForLevel[TheLine.Level] = LevelIndent;
927 } else {
Manuel Klimekb3987012013-05-29 14:47:47 +0000928 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000929 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000930 }
931 // If we did not reformat this unwrapped line, the column at the end of
932 // the last token is unchanged - thus, we can calculate the end of the
933 // last token.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000934 PreviousLineWasTouched = false;
935 }
Daniel Jasper63cfb892013-10-06 11:40:08 +0000936 PreviousLine = *I;
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000937 }
938 return Whitespaces.generateReplacements();
939 }
940
941private:
Alexander Kornienko73d845c2013-09-11 12:25:57 +0000942 static bool inputUsesCRLF(StringRef Text) {
943 return Text.count('\r') * 2 > Text.count('\n');
944 }
945
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000946 void deriveLocalStyle() {
947 unsigned CountBoundToVariable = 0;
948 unsigned CountBoundToType = 0;
949 bool HasCpp03IncompatibleFormat = false;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000950 bool HasBinPackedFunction = false;
951 bool HasOnePerLineFunction = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000952 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000953 if (!AnnotatedLines[i]->First->Next)
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000954 continue;
Daniel Jasper567dcf92013-09-05 09:29:45 +0000955 FormatToken *Tok = AnnotatedLines[i]->First->Next;
Manuel Klimekb3987012013-05-29 14:47:47 +0000956 while (Tok->Next) {
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000957 if (Tok->Type == TT_PointerOrReference) {
Manuel Klimekb3987012013-05-29 14:47:47 +0000958 bool SpacesBefore =
959 Tok->WhitespaceRange.getBegin() != Tok->WhitespaceRange.getEnd();
960 bool SpacesAfter = Tok->Next->WhitespaceRange.getBegin() !=
961 Tok->Next->WhitespaceRange.getEnd();
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000962 if (SpacesBefore && !SpacesAfter)
963 ++CountBoundToVariable;
964 else if (!SpacesBefore && SpacesAfter)
965 ++CountBoundToType;
966 }
967
Daniel Jasper29f123b2013-02-08 15:28:42 +0000968 if (Tok->Type == TT_TemplateCloser &&
Manuel Klimekb3987012013-05-29 14:47:47 +0000969 Tok->Previous->Type == TT_TemplateCloser &&
970 Tok->WhitespaceRange.getBegin() == Tok->WhitespaceRange.getEnd())
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000971 HasCpp03IncompatibleFormat = true;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000972
973 if (Tok->PackingKind == PPK_BinPacked)
974 HasBinPackedFunction = true;
975 if (Tok->PackingKind == PPK_OnePerLine)
976 HasOnePerLineFunction = true;
977
Manuel Klimekb3987012013-05-29 14:47:47 +0000978 Tok = Tok->Next;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000979 }
980 }
981 if (Style.DerivePointerBinding) {
982 if (CountBoundToType > CountBoundToVariable)
983 Style.PointerBindsToType = true;
984 else if (CountBoundToType < CountBoundToVariable)
985 Style.PointerBindsToType = false;
986 }
987 if (Style.Standard == FormatStyle::LS_Auto) {
988 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
989 : FormatStyle::LS_Cpp03;
990 }
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000991 BinPackInconclusiveFunctions =
992 HasBinPackedFunction || !HasOnePerLineFunction;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000993 }
994
Manuel Klimek547d5db2013-02-08 17:38:27 +0000995 /// \brief Get the indent of \p Level from \p IndentForLevel.
996 ///
997 /// \p IndentForLevel must contain the indent for the level \c l
998 /// at \p IndentForLevel[l], or a value < 0 if the indent for
999 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001000 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001001 if (IndentForLevel[Level] != -1)
1002 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001003 if (Level == 0)
1004 return 0;
Manuel Klimek07a64ec2013-05-13 08:42:42 +00001005 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001006 }
1007
1008 /// \brief Get the offset of the line relatively to the level.
1009 ///
1010 /// For example, 'public:' labels in classes are offset by 1 or 2
1011 /// characters to the left from their level.
Manuel Klimekb3987012013-05-29 14:47:47 +00001012 int getIndentOffset(const FormatToken &RootToken) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001013 if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier())
Manuel Klimek547d5db2013-02-08 17:38:27 +00001014 return Style.AccessModifierOffset;
1015 return 0;
1016 }
1017
Manuel Klimek517e8942013-01-11 17:54:10 +00001018 /// \brief Tries to merge lines into one.
1019 ///
1020 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1021 /// if possible; note that \c I will be incremented when lines are merged.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001022 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasperb77d7412013-09-06 07:54:20 +00001023 SmallVectorImpl<AnnotatedLine *>::iterator &I,
1024 SmallVectorImpl<AnnotatedLine *>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001025 // We can never merge stuff if there are trailing line comments.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001026 AnnotatedLine *TheLine = *I;
1027 if (TheLine->Last->Type == TT_LineComment)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001028 return;
1029
Daniel Jaspere05dc6d2013-07-24 13:10:59 +00001030 if (Indent > Style.ColumnLimit)
1031 return;
1032
Daniel Jaspera4d46212013-02-28 11:05:57 +00001033 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001034 // If we already exceed the column limit, we set 'Limit' to 0. The different
1035 // tryMerge..() functions can then decide whether to still do merging.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001036 Limit = TheLine->Last->TotalLength > Limit
1037 ? 0
1038 : Limit - TheLine->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001039
Daniel Jasper567dcf92013-09-05 09:29:45 +00001040 if (I + 1 == E || (*(I + 1))->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001041 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001042
Daniel Jasper567dcf92013-09-05 09:29:45 +00001043 if (TheLine->Last->is(tok::l_brace)) {
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001044 tryMergeSimpleBlock(I, E, Limit);
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001045 } else if (Style.AllowShortIfStatementsOnASingleLine &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001046 TheLine->First->is(tok::kw_if)) {
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001047 tryMergeSimpleControlStatement(I, E, Limit);
1048 } else if (Style.AllowShortLoopsOnASingleLine &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001049 TheLine->First->isOneOf(tok::kw_for, tok::kw_while)) {
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001050 tryMergeSimpleControlStatement(I, E, Limit);
Daniel Jasper567dcf92013-09-05 09:29:45 +00001051 } else if (TheLine->InPPDirective && (TheLine->First->HasUnescapedNewline ||
1052 TheLine->First->IsFirst)) {
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001053 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001054 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001055 }
1056
Daniel Jasperb77d7412013-09-06 07:54:20 +00001057 void tryMergeSimplePPDirective(SmallVectorImpl<AnnotatedLine *>::iterator &I,
1058 SmallVectorImpl<AnnotatedLine *>::iterator E,
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001059 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001060 if (Limit == 0)
1061 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001062 AnnotatedLine &Line = **I;
1063 if (!(*(I + 1))->InPPDirective || (*(I + 1))->First->HasUnescapedNewline)
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001064 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001065 if (I + 2 != E && (*(I + 2))->InPPDirective &&
1066 !(*(I + 2))->First->HasUnescapedNewline)
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001067 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001068 if (1 + (*(I + 1))->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001069 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001070 join(Line, **(++I));
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001071 }
1072
Daniel Jasperb77d7412013-09-06 07:54:20 +00001073 void
1074 tryMergeSimpleControlStatement(SmallVectorImpl<AnnotatedLine *>::iterator &I,
1075 SmallVectorImpl<AnnotatedLine *>::iterator E,
1076 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001077 if (Limit == 0)
1078 return;
Manuel Klimekd3a247c2013-08-07 19:20:45 +00001079 if (Style.BreakBeforeBraces == FormatStyle::BS_Allman &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001080 (*(I + 1))->First->is(tok::l_brace))
Manuel Klimekd3a247c2013-08-07 19:20:45 +00001081 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001082 if ((*(I + 1))->InPPDirective != (*I)->InPPDirective ||
1083 ((*(I + 1))->InPPDirective && (*(I + 1))->First->HasUnescapedNewline))
Manuel Klimek4c128122013-01-18 14:46:43 +00001084 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001085 AnnotatedLine &Line = **I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001086 if (Line.Last->isNot(tok::r_paren))
1087 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001088 if (1 + (*(I + 1))->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001089 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001090 if ((*(I + 1))->First->isOneOf(tok::semi, tok::kw_if, tok::kw_for,
1091 tok::kw_while) ||
1092 (*(I + 1))->First->Type == TT_LineComment)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001093 return;
1094 // Only inline simple if's (no nested if or else).
Manuel Klimekb3987012013-05-29 14:47:47 +00001095 if (I + 2 != E && Line.First->is(tok::kw_if) &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001096 (*(I + 2))->First->is(tok::kw_else))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001097 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001098 join(Line, **(++I));
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001099 }
1100
Daniel Jasperb77d7412013-09-06 07:54:20 +00001101 void tryMergeSimpleBlock(SmallVectorImpl<AnnotatedLine *>::iterator &I,
1102 SmallVectorImpl<AnnotatedLine *>::iterator E,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001103 unsigned Limit) {
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001104 // No merging if the brace already is on the next line.
1105 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach)
1106 return;
1107
Manuel Klimek517e8942013-01-11 17:54:10 +00001108 // First, check that the current line allows merging. This is the case if
1109 // we're not in a control flow statement and the last token is an opening
1110 // brace.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001111 AnnotatedLine &Line = **I;
Manuel Klimekb3987012013-05-29 14:47:47 +00001112 if (Line.First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace,
1113 tok::kw_else, tok::kw_try, tok::kw_catch,
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001114 tok::kw_for,
Manuel Klimekb3987012013-05-29 14:47:47 +00001115 // This gets rid of all ObjC @ keywords and methods.
1116 tok::at, tok::minus, tok::plus))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001117 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001118
Daniel Jasper567dcf92013-09-05 09:29:45 +00001119 FormatToken *Tok = (*(I + 1))->First;
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001120 if (Tok->is(tok::r_brace) && !Tok->MustBreakBefore &&
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001121 (Tok->getNextNonComment() == NULL ||
1122 Tok->getNextNonComment()->is(tok::semi))) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001123 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001124 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001125 Tok->CanBreakBefore = true;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001126 join(Line, **(I + 1));
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001127 I += 1;
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001128 } else if (Limit != 0 && Line.First->isNot(tok::kw_namespace)) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001129 // Check that we still have three lines and they fit into the limit.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001130 if (I + 2 == E || (*(I + 2))->Type == LT_Invalid ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001131 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001132 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001133
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001134 // Second, check that the next line does not contain any braces - if it
1135 // does, readability declines when putting it into a single line.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001136 if ((*(I + 1))->Last->Type == TT_LineComment || Tok->MustBreakBefore)
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001137 return;
1138 do {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001139 if (Tok->isOneOf(tok::l_brace, tok::r_brace))
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001140 return;
Manuel Klimekb3987012013-05-29 14:47:47 +00001141 Tok = Tok->Next;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001142 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001143
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001144 // Last, check that the third line contains a single closing brace.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001145 Tok = (*(I + 2))->First;
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001146 if (Tok->getNextNonComment() != NULL || Tok->isNot(tok::r_brace) ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001147 Tok->MustBreakBefore)
1148 return;
1149
Daniel Jasper567dcf92013-09-05 09:29:45 +00001150 join(Line, **(I + 1));
1151 join(Line, **(I + 2));
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001152 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001153 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001154 }
1155
Daniel Jasperb77d7412013-09-06 07:54:20 +00001156 bool nextTwoLinesFitInto(SmallVectorImpl<AnnotatedLine *>::iterator I,
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001157 unsigned Limit) {
Daniel Jasper567dcf92013-09-05 09:29:45 +00001158 return 1 + (*(I + 1))->Last->TotalLength + 1 +
1159 (*(I + 2))->Last->TotalLength <=
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001160 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001161 }
1162
Daniel Jasper995e8202013-01-14 13:08:07 +00001163 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001164 assert(!A.Last->Next);
1165 assert(!B.First->Previous);
1166 A.Last->Next = B.First;
1167 B.First->Previous = A.Last;
1168 unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore;
1169 for (FormatToken *Tok = B.First; Tok; Tok = Tok->Next) {
1170 Tok->TotalLength += LengthA;
1171 A.Last = Tok;
Daniel Jasper995e8202013-01-14 13:08:07 +00001172 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001173 }
1174
Daniel Jasper6f21a982013-03-13 07:49:51 +00001175 bool touchesRanges(const CharSourceRange &Range) {
Daniel Jasperf3023542013-03-07 20:50:00 +00001176 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1177 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),
1178 Ranges[i].getBegin()) &&
1179 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1180 Range.getBegin()))
1181 return true;
1182 }
1183 return false;
1184 }
1185
1186 bool touchesLine(const AnnotatedLine &TheLine) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001187 const FormatToken *First = TheLine.First;
1188 const FormatToken *Last = TheLine.Last;
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001189 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001190 First->WhitespaceRange.getBegin().getLocWithOffset(
1191 First->LastNewlineOffset),
Alexander Kornienko2c2f7292013-09-16 20:20:49 +00001192 Last->getStartOfNonWhitespace().getLocWithOffset(
1193 Last->TokenText.size() - 1));
Daniel Jasperf3023542013-03-07 20:50:00 +00001194 return touchesRanges(LineRange);
1195 }
1196
Daniel Jasperb77d7412013-09-06 07:54:20 +00001197 bool touchesPPDirective(SmallVectorImpl<AnnotatedLine *>::iterator I,
1198 SmallVectorImpl<AnnotatedLine *>::iterator E) {
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001199 for (; I != E; ++I) {
Daniel Jasper567dcf92013-09-05 09:29:45 +00001200 if ((*I)->First->HasUnescapedNewline)
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001201 return false;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001202 if (touchesLine(**I))
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001203 return true;
1204 }
1205 return false;
1206 }
1207
Daniel Jasperf3023542013-03-07 20:50:00 +00001208 bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001209 const FormatToken *First = TheLine.First;
Daniel Jasperf3023542013-03-07 20:50:00 +00001210 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001211 First->WhitespaceRange.getBegin(),
1212 First->WhitespaceRange.getBegin().getLocWithOffset(
1213 First->LastNewlineOffset));
Daniel Jasperf3023542013-03-07 20:50:00 +00001214 return touchesRanges(LineRange);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001215 }
1216
1217 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jasper567dcf92013-09-05 09:29:45 +00001218 AnnotatedLines.push_back(new AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001219 }
1220
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001221 /// \brief Add a new line and the required indent before the first Token
1222 /// of the \c UnwrappedLine if there was no structural parsing error.
1223 /// Returns the indent level of the \c UnwrappedLine.
Manuel Klimekb3987012013-05-29 14:47:47 +00001224 void formatFirstToken(const FormatToken &RootToken,
Daniel Jasper63cfb892013-10-06 11:40:08 +00001225 const AnnotatedLine *PreviousLine, unsigned Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001226 bool InPPDirective) {
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001227 unsigned Newlines =
Manuel Klimekb3987012013-05-29 14:47:47 +00001228 std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Daniel Jasper15f33f02013-06-03 16:16:41 +00001229 // Remove empty lines before "}" where applicable.
1230 if (RootToken.is(tok::r_brace) &&
1231 (!RootToken.Next ||
1232 (RootToken.Next->is(tok::semi) && !RootToken.Next->Next)))
1233 Newlines = std::min(Newlines, 1u);
Manuel Klimekb3987012013-05-29 14:47:47 +00001234 if (Newlines == 0 && !RootToken.IsFirst)
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001235 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001236
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001237 // Insert extra new line before access specifiers.
Daniel Jasper63cfb892013-10-06 11:40:08 +00001238 if (PreviousLine && PreviousLine->Last->isOneOf(tok::semi, tok::r_brace) &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001239 RootToken.isAccessSpecifier() && RootToken.NewlinesBefore == 1)
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001240 ++Newlines;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001241
Daniel Jasper63cfb892013-10-06 11:40:08 +00001242 // Remove empty lines after access specifiers.
1243 if (PreviousLine && PreviousLine->First->isAccessSpecifier())
1244 Newlines = std::min(1u, Newlines);
1245
Manuel Klimekb3987012013-05-29 14:47:47 +00001246 Whitespaces.replaceWhitespace(
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +00001247 RootToken, Newlines, Indent / Style.IndentWidth, Indent, Indent,
Manuel Klimekb3987012013-05-29 14:47:47 +00001248 InPPDirective && !RootToken.HasUnescapedNewline);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001249 }
1250
Daniel Jasper567dcf92013-09-05 09:29:45 +00001251 unsigned getColumnLimit(bool InPPDirective) const {
1252 // In preprocessor directives reserve two chars for trailing " \"
1253 return Style.ColumnLimit - (InPPDirective ? 2 : 0);
1254 }
1255
Daniel Jasperbac016b2012-12-03 18:12:45 +00001256 FormatStyle Style;
1257 Lexer &Lex;
1258 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001259 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001260 std::vector<CharSourceRange> Ranges;
Daniel Jasperb77d7412013-09-06 07:54:20 +00001261 SmallVector<AnnotatedLine *, 16> AnnotatedLines;
Alexander Kornienko00895102013-06-05 14:09:10 +00001262
1263 encoding::Encoding Encoding;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001264 bool BinPackInconclusiveFunctions;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001265};
1266
Craig Topper83f81d72013-06-30 22:29:28 +00001267} // end anonymous namespace
1268
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001269tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
1270 SourceManager &SourceMgr,
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001271 std::vector<CharSourceRange> Ranges) {
1272 Formatter formatter(Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001273 return formatter.format();
1274}
1275
Daniel Jasper8a999452013-05-16 10:40:07 +00001276tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
1277 std::vector<tooling::Range> Ranges,
1278 StringRef FileName) {
1279 FileManager Files((FileSystemOptions()));
1280 DiagnosticsEngine Diagnostics(
1281 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
1282 new DiagnosticOptions);
1283 SourceManager SourceMgr(Diagnostics, Files);
1284 llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName);
1285 const clang::FileEntry *Entry =
1286 Files.getVirtualFile(FileName, Buf->getBufferSize(), 0);
1287 SourceMgr.overrideFileContents(Entry, Buf);
1288 FileID ID =
1289 SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User);
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001290 Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr,
1291 getFormattingLangOpts(Style.Standard));
Daniel Jasper8a999452013-05-16 10:40:07 +00001292 SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID);
1293 std::vector<CharSourceRange> CharRanges;
1294 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1295 SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset());
1296 SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength());
1297 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
1298 }
1299 return reformat(Style, Lex, SourceMgr, CharRanges);
1300}
1301
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001302LangOptions getFormattingLangOpts(FormatStyle::LanguageStandard Standard) {
Daniel Jasper46ef8522013-01-10 13:08:12 +00001303 LangOptions LangOpts;
1304 LangOpts.CPlusPlus = 1;
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001305 LangOpts.CPlusPlus11 = Standard == FormatStyle::LS_Cpp03 ? 0 : 1;
Daniel Jasperb64eca02013-03-22 10:01:29 +00001306 LangOpts.LineComment = 1;
Daniel Jasper46ef8522013-01-10 13:08:12 +00001307 LangOpts.Bool = 1;
1308 LangOpts.ObjC1 = 1;
1309 LangOpts.ObjC2 = 1;
1310 return LangOpts;
1311}
1312
Edwin Vanef4e12c82013-09-30 13:31:48 +00001313const char *StyleOptionHelpDescription =
1314 "Coding style, currently supports:\n"
1315 " LLVM, Google, Chromium, Mozilla, WebKit.\n"
1316 "Use -style=file to load style configuration from\n"
1317 ".clang-format file located in one of the parent\n"
1318 "directories of the source file (or current\n"
1319 "directory for stdin).\n"
1320 "Use -style=\"{key: value, ...}\" to set specific\n"
1321 "parameters, e.g.:\n"
1322 " -style=\"{BasedOnStyle: llvm, IndentWidth: 8}\"";
1323
1324FormatStyle getStyle(StringRef StyleName, StringRef FileName) {
1325 // Fallback style in case the rest of this function can't determine a style.
1326 StringRef FallbackStyle = "LLVM";
1327 FormatStyle Style;
1328 getPredefinedStyle(FallbackStyle, &Style);
1329
1330 if (StyleName.startswith("{")) {
1331 // Parse YAML/JSON style from the command line.
1332 if (llvm::error_code ec = parseConfiguration(StyleName, &Style)) {
1333 llvm::errs() << "Error parsing -style: " << ec.message()
1334 << ", using " << FallbackStyle << " style\n";
1335 }
1336 return Style;
1337 }
1338
1339 if (!StyleName.equals_lower("file")) {
1340 if (!getPredefinedStyle(StyleName, &Style))
1341 llvm::errs() << "Invalid value for -style, using " << FallbackStyle
1342 << " style\n";
1343 return Style;
1344 }
1345
1346 SmallString<128> Path(FileName);
1347 llvm::sys::fs::make_absolute(Path);
1348 for (StringRef Directory = Path;
1349 !Directory.empty();
1350 Directory = llvm::sys::path::parent_path(Directory)) {
1351 if (!llvm::sys::fs::is_directory(Directory))
1352 continue;
1353 SmallString<128> ConfigFile(Directory);
1354
1355 llvm::sys::path::append(ConfigFile, ".clang-format");
1356 DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n");
1357 bool IsFile = false;
1358 // Ignore errors from is_regular_file: we only need to know if we can read
1359 // the file or not.
1360 llvm::sys::fs::is_regular_file(Twine(ConfigFile), IsFile);
1361
1362 if (!IsFile) {
1363 // Try _clang-format too, since dotfiles are not commonly used on Windows.
1364 ConfigFile = Directory;
1365 llvm::sys::path::append(ConfigFile, "_clang-format");
1366 DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n");
1367 llvm::sys::fs::is_regular_file(Twine(ConfigFile), IsFile);
1368 }
1369
1370 if (IsFile) {
1371 OwningPtr<llvm::MemoryBuffer> Text;
1372 if (llvm::error_code ec = llvm::MemoryBuffer::getFile(ConfigFile, Text)) {
1373 llvm::errs() << ec.message() << "\n";
1374 continue;
1375 }
1376 if (llvm::error_code ec = parseConfiguration(Text->getBuffer(), &Style)) {
1377 llvm::errs() << "Error reading " << ConfigFile << ": " << ec.message()
1378 << "\n";
1379 continue;
1380 }
1381 DEBUG(llvm::dbgs() << "Using configuration file " << ConfigFile << "\n");
1382 return Style;
1383 }
1384 }
1385 llvm::errs() << "Can't find usable .clang-format, using " << FallbackStyle
1386 << " style\n";
1387 return Style;
1388}
1389
Daniel Jaspercd162382013-01-07 13:26:07 +00001390} // namespace format
1391} // namespace clang