blob: 7fc66167f08d72e27ccd15eab8b4bb4a2ee7d4d8 [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;
Daniel Jasper1d82b1a2013-10-11 19:45:02 +0000694 case '\r':
695 case '\f':
696 case '\v':
697 Column = 0;
698 break;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000699 case ' ':
700 ++Column;
701 break;
702 case '\t':
Alexander Kornienko0b62cc32013-09-05 14:08:34 +0000703 Column += Style.TabWidth - Column % Style.TabWidth;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000704 break;
Daniel Jasper1d82b1a2013-10-11 19:45:02 +0000705 case '\\':
706 ++Column;
707 if (i + 1 == e || (FormatTok->TokenText[i + 1] != '\r' &&
708 FormatTok->TokenText[i + 1] != '\n'))
709 FormatTok->Type = TT_ImplicitStringLiteral;
710 break;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000711 default:
Daniel Jasper1d82b1a2013-10-11 19:45:02 +0000712 FormatTok->Type = TT_ImplicitStringLiteral;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000713 ++Column;
714 break;
715 }
716 }
717
Daniel Jasper1d82b1a2013-10-11 19:45:02 +0000718 if (FormatTok->Type == TT_ImplicitStringLiteral)
719 break;
Manuel Klimek96e888b2013-05-28 11:55:06 +0000720 WhitespaceLength += FormatTok->Tok.getLength();
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000721
Daniel Jasper561211d2013-07-16 20:28:33 +0000722 readRawToken(*FormatTok);
Manuel Klimekd4397b92013-01-04 23:34:14 +0000723 }
Manuel Klimek95419382013-01-07 07:56:50 +0000724
Manuel Klimekd4397b92013-01-04 23:34:14 +0000725 // In case the token starts with escaped newlines, we want to
726 // take them into account as whitespace - this pattern is quite frequent
727 // in macro definitions.
Manuel Klimekd4397b92013-01-04 23:34:14 +0000728 // FIXME: Add a more explicit test.
Daniel Jasper561211d2013-07-16 20:28:33 +0000729 while (FormatTok->TokenText.size() > 1 && FormatTok->TokenText[0] == '\\' &&
730 FormatTok->TokenText[1] == '\n') {
Manuel Klimek96e888b2013-05-28 11:55:06 +0000731 // FIXME: ++FormatTok->NewlinesBefore is missing...
Manuel Klimekad3094b2013-05-23 10:56:37 +0000732 WhitespaceLength += 2;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000733 Column = 0;
Daniel Jasper561211d2013-07-16 20:28:33 +0000734 FormatTok->TokenText = FormatTok->TokenText.substr(2);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000735 }
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000736
737 FormatTok->WhitespaceRange = SourceRange(
738 WhitespaceStart, WhitespaceStart.getLocWithOffset(WhitespaceLength));
739
Manuel Klimekc41e8192013-08-29 15:21:40 +0000740 FormatTok->OriginalColumn = Column;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000741
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000742 TrailingWhitespace = 0;
743 if (FormatTok->Tok.is(tok::comment)) {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000744 // FIXME: Add the trimmed whitespace to Column.
Daniel Jasper561211d2013-07-16 20:28:33 +0000745 StringRef UntrimmedText = FormatTok->TokenText;
Alexander Kornienko51bb5d92013-09-06 17:24:54 +0000746 FormatTok->TokenText = FormatTok->TokenText.rtrim(" \t\v\f");
Daniel Jasper561211d2013-07-16 20:28:33 +0000747 TrailingWhitespace = UntrimmedText.size() - FormatTok->TokenText.size();
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000748 } else if (FormatTok->Tok.is(tok::raw_identifier)) {
Daniel Jasper561211d2013-07-16 20:28:33 +0000749 IdentifierInfo &Info = IdentTable.get(FormatTok->TokenText);
Manuel Klimek96e888b2013-05-28 11:55:06 +0000750 FormatTok->Tok.setIdentifierInfo(&Info);
751 FormatTok->Tok.setKind(Info.getTokenID());
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000752 } else if (FormatTok->Tok.is(tok::greatergreater)) {
Manuel Klimek96e888b2013-05-28 11:55:06 +0000753 FormatTok->Tok.setKind(tok::greater);
Daniel Jasper561211d2013-07-16 20:28:33 +0000754 FormatTok->TokenText = FormatTok->TokenText.substr(0, 1);
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000755 GreaterStashed = true;
756 }
757
Alexander Kornienko54e6c9d2013-06-07 17:45:07 +0000758 // Now FormatTok is the next non-whitespace token.
Alexander Kornienko00895102013-06-05 14:09:10 +0000759
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000760 StringRef Text = FormatTok->TokenText;
761 size_t FirstNewlinePos = Text.find('\n');
Alexander Kornienko6f6154c2013-09-10 12:29:48 +0000762 if (FirstNewlinePos == StringRef::npos) {
763 // FIXME: ColumnWidth actually depends on the start column, we need to
764 // take this into account when the token is moved.
765 FormatTok->ColumnWidth =
766 encoding::columnWidthWithTabs(Text, Column, Style.TabWidth, Encoding);
767 Column += FormatTok->ColumnWidth;
768 } else {
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000769 FormatTok->IsMultiline = true;
Alexander Kornienko6f6154c2013-09-10 12:29:48 +0000770 // FIXME: ColumnWidth actually depends on the start column, we need to
771 // take this into account when the token is moved.
772 FormatTok->ColumnWidth = encoding::columnWidthWithTabs(
773 Text.substr(0, FirstNewlinePos), Column, Style.TabWidth, Encoding);
774
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000775 // The last line of the token always starts in column 0.
776 // Thus, the length can be precomputed even in the presence of tabs.
777 FormatTok->LastLineColumnWidth = encoding::columnWidthWithTabs(
778 Text.substr(Text.find_last_of('\n') + 1), 0, Style.TabWidth,
779 Encoding);
Alexander Kornienko6f6154c2013-09-10 12:29:48 +0000780 Column = FormatTok->LastLineColumnWidth;
Alexander Kornienko4b762a92013-09-02 13:58:14 +0000781 }
Alexander Kornienko83a7dcd2013-09-10 09:38:25 +0000782
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000783 return FormatTok;
784 }
785
Manuel Klimek96e888b2013-05-28 11:55:06 +0000786 FormatToken *FormatTok;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000787 bool GreaterStashed;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000788 unsigned Column;
Manuel Klimekde008c02013-05-27 15:23:34 +0000789 unsigned TrailingWhitespace;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000790 Lexer &Lex;
791 SourceManager &SourceMgr;
Manuel Klimekc41e8192013-08-29 15:21:40 +0000792 FormatStyle &Style;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000793 IdentifierTable IdentTable;
Alexander Kornienko00895102013-06-05 14:09:10 +0000794 encoding::Encoding Encoding;
Manuel Klimek96e888b2013-05-28 11:55:06 +0000795 llvm::SpecificBumpPtrAllocator<FormatToken> Allocator;
796 SmallVector<FormatToken *, 16> Tokens;
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000797
Daniel Jasper561211d2013-07-16 20:28:33 +0000798 void readRawToken(FormatToken &Tok) {
799 Lex.LexFromRawLexer(Tok.Tok);
800 Tok.TokenText = StringRef(SourceMgr.getCharacterData(Tok.Tok.getLocation()),
801 Tok.Tok.getLength());
Daniel Jasper561211d2013-07-16 20:28:33 +0000802 // For formatting, treat unterminated string literals like normal string
803 // literals.
804 if (Tok.is(tok::unknown) && !Tok.TokenText.empty() &&
805 Tok.TokenText[0] == '"') {
806 Tok.Tok.setKind(tok::string_literal);
807 Tok.IsUnterminatedLiteral = true;
808 }
Alexander Kornienko469a21b2012-12-07 16:15:44 +0000809 }
810};
811
Daniel Jasperbac016b2012-12-03 18:12:45 +0000812class Formatter : public UnwrappedLineConsumer {
813public:
Daniel Jaspercaf42a32013-05-15 08:14:19 +0000814 Formatter(const FormatStyle &Style, Lexer &Lex, SourceManager &SourceMgr,
Daniel Jasperbac016b2012-12-03 18:12:45 +0000815 const std::vector<CharSourceRange> &Ranges)
Daniel Jaspercaf42a32013-05-15 08:14:19 +0000816 : Style(Style), Lex(Lex), SourceMgr(SourceMgr),
Alexander Kornienko73d845c2013-09-11 12:25:57 +0000817 Whitespaces(SourceMgr, Style, inputUsesCRLF(Lex.getBuffer())),
818 Ranges(Ranges), Encoding(encoding::detectEncoding(Lex.getBuffer())) {
Daniel Jasper9637dda2013-07-15 14:33:14 +0000819 DEBUG(llvm::dbgs() << "File encoding: "
820 << (Encoding == encoding::Encoding_UTF8 ? "UTF8"
821 : "unknown")
822 << "\n");
Alexander Kornienko00895102013-06-05 14:09:10 +0000823 }
Daniel Jasperbac016b2012-12-03 18:12:45 +0000824
Daniel Jasper567dcf92013-09-05 09:29:45 +0000825 virtual ~Formatter() {
826 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
827 delete AnnotatedLines[i];
828 }
Daniel Jasper567dcf92013-09-05 09:29:45 +0000829 }
Daniel Jasperaccb0b02012-12-04 21:05:31 +0000830
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000831 tooling::Replacements format() {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000832 FormatTokenLexer Tokens(Lex, SourceMgr, Style, Encoding);
Manuel Klimek96e888b2013-05-28 11:55:06 +0000833
834 UnwrappedLineParser Parser(Style, Tokens.lex(), *this);
Manuel Klimek67d080d2013-04-12 14:13:36 +0000835 bool StructuralError = Parser.parse();
Alexander Kornienko00895102013-06-05 14:09:10 +0000836 TokenAnnotator Annotator(Style, Tokens.getIdentTable().get("in"));
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000837 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000838 Annotator.annotate(*AnnotatedLines[i]);
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000839 }
840 deriveLocalStyle();
841 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000842 Annotator.calculateFormattingInformation(*AnnotatedLines[i]);
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000843 }
Daniel Jasper5999f762013-04-09 17:46:55 +0000844
Daniel Jasperb77d7412013-09-06 07:54:20 +0000845 Annotator.setCommentLineLevels(AnnotatedLines);
Daniel Jasper5999f762013-04-09 17:46:55 +0000846
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000847 std::vector<int> IndentForLevel;
848 bool PreviousLineWasTouched = false;
Daniel Jasper63cfb892013-10-06 11:40:08 +0000849 const AnnotatedLine *PreviousLine = NULL;
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000850 bool FormatPPDirective = false;
Daniel Jasperb77d7412013-09-06 07:54:20 +0000851 for (SmallVectorImpl<AnnotatedLine *>::iterator I = AnnotatedLines.begin(),
852 E = AnnotatedLines.end();
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000853 I != E; ++I) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000854 const AnnotatedLine &TheLine = **I;
Manuel Klimekb3987012013-05-29 14:47:47 +0000855 const FormatToken *FirstTok = TheLine.First;
856 int Offset = getIndentOffset(*TheLine.First);
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000857
858 // Check whether this line is part of a formatted preprocessor directive.
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000859 if (FirstTok->HasUnescapedNewline)
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000860 FormatPPDirective = false;
861 if (!FormatPPDirective && TheLine.InPPDirective &&
862 (touchesLine(TheLine) || touchesPPDirective(I + 1, E)))
863 FormatPPDirective = true;
864
Daniel Jasper1fb8d882013-05-14 09:30:02 +0000865 // Determine indent and try to merge multiple unwrapped lines.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000866 while (IndentForLevel.size() <= TheLine.Level)
867 IndentForLevel.push_back(-1);
868 IndentForLevel.resize(TheLine.Level + 1);
Daniel Jasper1fb8d882013-05-14 09:30:02 +0000869 unsigned Indent = getIndent(IndentForLevel, TheLine.Level);
870 if (static_cast<int>(Indent) + Offset >= 0)
871 Indent += Offset;
872 tryFitMultipleLinesInOne(Indent, I, E);
873
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000874 bool WasMoved = PreviousLineWasTouched && FirstTok->NewlinesBefore == 0;
Manuel Klimekb3987012013-05-29 14:47:47 +0000875 if (TheLine.First->is(tok::eof)) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000876 if (PreviousLineWasTouched) {
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000877 unsigned NewLines = std::min(FirstTok->NewlinesBefore, 1u);
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +0000878 Whitespaces.replaceWhitespace(*TheLine.First, NewLines,
879 /*IndentLevel=*/0, /*Spaces=*/0,
880 /*TargetColumn=*/0);
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000881 }
882 } else if (TheLine.Type != LT_Invalid &&
Daniel Jasper89b3a7f2013-05-10 13:00:49 +0000883 (WasMoved || FormatPPDirective || touchesLine(TheLine))) {
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000884 unsigned LevelIndent = getIndent(IndentForLevel, TheLine.Level);
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000885 if (FirstTok->WhitespaceRange.isValid() &&
Manuel Klimek67d080d2013-04-12 14:13:36 +0000886 // Insert a break even if there is a structural error in case where
887 // we break apart a line consisting of multiple unwrapped lines.
Manuel Klimekdcb3f2a2013-05-28 13:42:28 +0000888 (FirstTok->NewlinesBefore == 0 || !StructuralError)) {
Daniel Jasper63cfb892013-10-06 11:40:08 +0000889 formatFirstToken(*TheLine.First, PreviousLine, Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000890 TheLine.InPPDirective);
Manuel Klimek67d080d2013-04-12 14:13:36 +0000891 } else {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000892 Indent = LevelIndent = FirstTok->OriginalColumn;
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000893 }
Daniel Jasper567dcf92013-09-05 09:29:45 +0000894 ContinuationIndenter Indenter(Style, SourceMgr, Whitespaces, Encoding,
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000895 BinPackInconclusiveFunctions);
896
897 // If everything fits on a single line, just put it there.
898 unsigned ColumnLimit = Style.ColumnLimit;
Daniel Jasper567dcf92013-09-05 09:29:45 +0000899 AnnotatedLine *NextLine = *(I + 1);
900 if ((I + 1) != E && NextLine->InPPDirective &&
901 !NextLine->First->HasUnescapedNewline)
902 ColumnLimit = getColumnLimit(TheLine.InPPDirective);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000903
Daniel Jasper567dcf92013-09-05 09:29:45 +0000904 if (TheLine.Last->TotalLength + Indent <= ColumnLimit) {
Daniel Jasperb77d7412013-09-06 07:54:20 +0000905 LineState State =
906 Indenter.getInitialState(Indent, &TheLine, /*DryRun=*/false);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000907 while (State.NextToken != NULL)
908 Indenter.addTokenToState(State, false, false);
909 } else if (Style.ColumnLimit == 0) {
910 NoColumnLimitFormatter Formatter(&Indenter);
Daniel Jasper567dcf92013-09-05 09:29:45 +0000911 Formatter.format(Indent, &TheLine);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000912 } else {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000913 UnwrappedLineFormatter Formatter(&Indenter, &Whitespaces, Style,
914 TheLine);
915 Formatter.format(Indent);
Daniel Jasper6b2afe42013-08-16 11:20:30 +0000916 }
917
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000918 IndentForLevel[TheLine.Level] = LevelIndent;
919 PreviousLineWasTouched = true;
920 } else {
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000921 // Format the first token if necessary, and notify the WhitespaceManager
922 // about the unchanged whitespace.
Manuel Klimekb3987012013-05-29 14:47:47 +0000923 for (const FormatToken *Tok = TheLine.First; Tok != NULL;
924 Tok = Tok->Next) {
925 if (Tok == TheLine.First &&
926 (Tok->NewlinesBefore > 0 || Tok->IsFirst)) {
Manuel Klimekc41e8192013-08-29 15:21:40 +0000927 unsigned LevelIndent = Tok->OriginalColumn;
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000928 // Remove trailing whitespace of the previous line if it was
929 // touched.
930 if (PreviousLineWasTouched || touchesEmptyLineBefore(TheLine)) {
Daniel Jasper63cfb892013-10-06 11:40:08 +0000931 formatFirstToken(*Tok, PreviousLine, LevelIndent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000932 TheLine.InPPDirective);
933 } else {
Manuel Klimekb3987012013-05-29 14:47:47 +0000934 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000935 }
Daniel Jasper1fb8d882013-05-14 09:30:02 +0000936
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000937 if (static_cast<int>(LevelIndent) - Offset >= 0)
938 LevelIndent -= Offset;
939 if (Tok->isNot(tok::comment))
940 IndentForLevel[TheLine.Level] = LevelIndent;
941 } else {
Manuel Klimekb3987012013-05-29 14:47:47 +0000942 Whitespaces.addUntouchableToken(*Tok, TheLine.InPPDirective);
Manuel Klimeke573c3f2013-05-22 12:51:29 +0000943 }
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000944 }
945 // If we did not reformat this unwrapped line, the column at the end of
946 // the last token is unchanged - thus, we can calculate the end of the
947 // last token.
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000948 PreviousLineWasTouched = false;
949 }
Daniel Jasper63cfb892013-10-06 11:40:08 +0000950 PreviousLine = *I;
Alexander Kornienkoe74de282013-03-13 14:41:29 +0000951 }
952 return Whitespaces.generateReplacements();
953 }
954
955private:
Alexander Kornienko73d845c2013-09-11 12:25:57 +0000956 static bool inputUsesCRLF(StringRef Text) {
957 return Text.count('\r') * 2 > Text.count('\n');
958 }
959
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000960 void deriveLocalStyle() {
961 unsigned CountBoundToVariable = 0;
962 unsigned CountBoundToType = 0;
963 bool HasCpp03IncompatibleFormat = false;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000964 bool HasBinPackedFunction = false;
965 bool HasOnePerLineFunction = false;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000966 for (unsigned i = 0, e = AnnotatedLines.size(); i != e; ++i) {
Daniel Jasper567dcf92013-09-05 09:29:45 +0000967 if (!AnnotatedLines[i]->First->Next)
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000968 continue;
Daniel Jasper567dcf92013-09-05 09:29:45 +0000969 FormatToken *Tok = AnnotatedLines[i]->First->Next;
Manuel Klimekb3987012013-05-29 14:47:47 +0000970 while (Tok->Next) {
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000971 if (Tok->Type == TT_PointerOrReference) {
Manuel Klimekb3987012013-05-29 14:47:47 +0000972 bool SpacesBefore =
973 Tok->WhitespaceRange.getBegin() != Tok->WhitespaceRange.getEnd();
974 bool SpacesAfter = Tok->Next->WhitespaceRange.getBegin() !=
975 Tok->Next->WhitespaceRange.getEnd();
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000976 if (SpacesBefore && !SpacesAfter)
977 ++CountBoundToVariable;
978 else if (!SpacesBefore && SpacesAfter)
979 ++CountBoundToType;
980 }
981
Daniel Jasper29f123b2013-02-08 15:28:42 +0000982 if (Tok->Type == TT_TemplateCloser &&
Manuel Klimekb3987012013-05-29 14:47:47 +0000983 Tok->Previous->Type == TT_TemplateCloser &&
984 Tok->WhitespaceRange.getBegin() == Tok->WhitespaceRange.getEnd())
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000985 HasCpp03IncompatibleFormat = true;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +0000986
987 if (Tok->PackingKind == PPK_BinPacked)
988 HasBinPackedFunction = true;
989 if (Tok->PackingKind == PPK_OnePerLine)
990 HasOnePerLineFunction = true;
991
Manuel Klimekb3987012013-05-29 14:47:47 +0000992 Tok = Tok->Next;
Daniel Jasper8ff690a2013-02-06 14:22:40 +0000993 }
994 }
995 if (Style.DerivePointerBinding) {
996 if (CountBoundToType > CountBoundToVariable)
997 Style.PointerBindsToType = true;
998 else if (CountBoundToType < CountBoundToVariable)
999 Style.PointerBindsToType = false;
1000 }
1001 if (Style.Standard == FormatStyle::LS_Auto) {
1002 Style.Standard = HasCpp03IncompatibleFormat ? FormatStyle::LS_Cpp11
1003 : FormatStyle::LS_Cpp03;
1004 }
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001005 BinPackInconclusiveFunctions =
1006 HasBinPackedFunction || !HasOnePerLineFunction;
Daniel Jasper8ff690a2013-02-06 14:22:40 +00001007 }
1008
Manuel Klimek547d5db2013-02-08 17:38:27 +00001009 /// \brief Get the indent of \p Level from \p IndentForLevel.
1010 ///
1011 /// \p IndentForLevel must contain the indent for the level \c l
1012 /// at \p IndentForLevel[l], or a value < 0 if the indent for
1013 /// that level is unknown.
Daniel Jasperfc759082013-02-14 14:26:07 +00001014 unsigned getIndent(const std::vector<int> IndentForLevel, unsigned Level) {
Manuel Klimek547d5db2013-02-08 17:38:27 +00001015 if (IndentForLevel[Level] != -1)
1016 return IndentForLevel[Level];
Manuel Klimek52635ff2013-02-08 19:53:32 +00001017 if (Level == 0)
1018 return 0;
Manuel Klimek07a64ec2013-05-13 08:42:42 +00001019 return getIndent(IndentForLevel, Level - 1) + Style.IndentWidth;
Manuel Klimek547d5db2013-02-08 17:38:27 +00001020 }
1021
1022 /// \brief Get the offset of the line relatively to the level.
1023 ///
1024 /// For example, 'public:' labels in classes are offset by 1 or 2
1025 /// characters to the left from their level.
Manuel Klimekb3987012013-05-29 14:47:47 +00001026 int getIndentOffset(const FormatToken &RootToken) {
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001027 if (RootToken.isAccessSpecifier(false) || RootToken.isObjCAccessSpecifier())
Manuel Klimek547d5db2013-02-08 17:38:27 +00001028 return Style.AccessModifierOffset;
1029 return 0;
1030 }
1031
Manuel Klimek517e8942013-01-11 17:54:10 +00001032 /// \brief Tries to merge lines into one.
1033 ///
1034 /// This will change \c Line and \c AnnotatedLine to contain the merged line,
1035 /// if possible; note that \c I will be incremented when lines are merged.
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001036 void tryFitMultipleLinesInOne(unsigned Indent,
Daniel Jasperb77d7412013-09-06 07:54:20 +00001037 SmallVectorImpl<AnnotatedLine *>::iterator &I,
1038 SmallVectorImpl<AnnotatedLine *>::iterator E) {
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001039 // We can never merge stuff if there are trailing line comments.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001040 AnnotatedLine *TheLine = *I;
1041 if (TheLine->Last->Type == TT_LineComment)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001042 return;
1043
Daniel Jaspere05dc6d2013-07-24 13:10:59 +00001044 if (Indent > Style.ColumnLimit)
1045 return;
1046
Daniel Jaspera4d46212013-02-28 11:05:57 +00001047 unsigned Limit = Style.ColumnLimit - Indent;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001048 // If we already exceed the column limit, we set 'Limit' to 0. The different
1049 // tryMerge..() functions can then decide whether to still do merging.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001050 Limit = TheLine->Last->TotalLength > Limit
1051 ? 0
1052 : Limit - TheLine->Last->TotalLength;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001053
Daniel Jasper567dcf92013-09-05 09:29:45 +00001054 if (I + 1 == E || (*(I + 1))->Type == LT_Invalid)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001055 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001056
Daniel Jasper567dcf92013-09-05 09:29:45 +00001057 if (TheLine->Last->is(tok::l_brace)) {
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001058 tryMergeSimpleBlock(I, E, Limit);
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001059 } else if (Style.AllowShortIfStatementsOnASingleLine &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001060 TheLine->First->is(tok::kw_if)) {
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001061 tryMergeSimpleControlStatement(I, E, Limit);
1062 } else if (Style.AllowShortLoopsOnASingleLine &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001063 TheLine->First->isOneOf(tok::kw_for, tok::kw_while)) {
Daniel Jasperf11bbb92013-05-16 12:12:21 +00001064 tryMergeSimpleControlStatement(I, E, Limit);
Daniel Jasper567dcf92013-09-05 09:29:45 +00001065 } else if (TheLine->InPPDirective && (TheLine->First->HasUnescapedNewline ||
1066 TheLine->First->IsFirst)) {
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001067 tryMergeSimplePPDirective(I, E, Limit);
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001068 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001069 }
1070
Daniel Jasperb77d7412013-09-06 07:54:20 +00001071 void tryMergeSimplePPDirective(SmallVectorImpl<AnnotatedLine *>::iterator &I,
1072 SmallVectorImpl<AnnotatedLine *>::iterator E,
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001073 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001074 if (Limit == 0)
1075 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001076 AnnotatedLine &Line = **I;
1077 if (!(*(I + 1))->InPPDirective || (*(I + 1))->First->HasUnescapedNewline)
Daniel Jasper2b9c10b2013-01-14 15:52:06 +00001078 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001079 if (I + 2 != E && (*(I + 2))->InPPDirective &&
1080 !(*(I + 2))->First->HasUnescapedNewline)
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001081 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001082 if (1 + (*(I + 1))->Last->TotalLength > Limit)
Daniel Jasper3f8cdbf2013-01-16 10:41:46 +00001083 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001084 join(Line, **(++I));
Daniel Jaspere0b15ea2013-01-14 15:40:57 +00001085 }
1086
Daniel Jasperb77d7412013-09-06 07:54:20 +00001087 void
1088 tryMergeSimpleControlStatement(SmallVectorImpl<AnnotatedLine *>::iterator &I,
1089 SmallVectorImpl<AnnotatedLine *>::iterator E,
1090 unsigned Limit) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001091 if (Limit == 0)
1092 return;
Manuel Klimekd3a247c2013-08-07 19:20:45 +00001093 if (Style.BreakBeforeBraces == FormatStyle::BS_Allman &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001094 (*(I + 1))->First->is(tok::l_brace))
Manuel Klimekd3a247c2013-08-07 19:20:45 +00001095 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001096 if ((*(I + 1))->InPPDirective != (*I)->InPPDirective ||
1097 ((*(I + 1))->InPPDirective && (*(I + 1))->First->HasUnescapedNewline))
Manuel Klimek4c128122013-01-18 14:46:43 +00001098 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001099 AnnotatedLine &Line = **I;
Daniel Jasper55b08e72013-01-16 07:02:34 +00001100 if (Line.Last->isNot(tok::r_paren))
1101 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001102 if (1 + (*(I + 1))->Last->TotalLength > Limit)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001103 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001104 if ((*(I + 1))->First->isOneOf(tok::semi, tok::kw_if, tok::kw_for,
1105 tok::kw_while) ||
1106 (*(I + 1))->First->Type == TT_LineComment)
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001107 return;
1108 // Only inline simple if's (no nested if or else).
Manuel Klimekb3987012013-05-29 14:47:47 +00001109 if (I + 2 != E && Line.First->is(tok::kw_if) &&
Daniel Jasper567dcf92013-09-05 09:29:45 +00001110 (*(I + 2))->First->is(tok::kw_else))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001111 return;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001112 join(Line, **(++I));
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001113 }
1114
Daniel Jasperb77d7412013-09-06 07:54:20 +00001115 void tryMergeSimpleBlock(SmallVectorImpl<AnnotatedLine *>::iterator &I,
1116 SmallVectorImpl<AnnotatedLine *>::iterator E,
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001117 unsigned Limit) {
Daniel Jasper5be59ba2013-05-15 14:09:55 +00001118 // No merging if the brace already is on the next line.
1119 if (Style.BreakBeforeBraces != FormatStyle::BS_Attach)
1120 return;
1121
Manuel Klimek517e8942013-01-11 17:54:10 +00001122 // First, check that the current line allows merging. This is the case if
1123 // we're not in a control flow statement and the last token is an opening
1124 // brace.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001125 AnnotatedLine &Line = **I;
Manuel Klimekb3987012013-05-29 14:47:47 +00001126 if (Line.First->isOneOf(tok::kw_if, tok::kw_while, tok::kw_do, tok::r_brace,
1127 tok::kw_else, tok::kw_try, tok::kw_catch,
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001128 tok::kw_for,
Manuel Klimekb3987012013-05-29 14:47:47 +00001129 // This gets rid of all ObjC @ keywords and methods.
1130 tok::at, tok::minus, tok::plus))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001131 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001132
Daniel Jasper567dcf92013-09-05 09:29:45 +00001133 FormatToken *Tok = (*(I + 1))->First;
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001134 if (Tok->is(tok::r_brace) && !Tok->MustBreakBefore &&
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001135 (Tok->getNextNonComment() == NULL ||
1136 Tok->getNextNonComment()->is(tok::semi))) {
Daniel Jasperf11a7052013-02-21 21:33:55 +00001137 // We merge empty blocks even if the line exceeds the column limit.
Daniel Jasper729a7432013-02-11 12:36:37 +00001138 Tok->SpacesRequiredBefore = 0;
Daniel Jasperf11a7052013-02-21 21:33:55 +00001139 Tok->CanBreakBefore = true;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001140 join(Line, **(I + 1));
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001141 I += 1;
Daniel Jasper8893b8a2013-05-31 14:56:20 +00001142 } else if (Limit != 0 && Line.First->isNot(tok::kw_namespace)) {
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001143 // Check that we still have three lines and they fit into the limit.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001144 if (I + 2 == E || (*(I + 2))->Type == LT_Invalid ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001145 !nextTwoLinesFitInto(I, Limit))
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001146 return;
Manuel Klimek517e8942013-01-11 17:54:10 +00001147
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001148 // Second, check that the next line does not contain any braces - if it
1149 // does, readability declines when putting it into a single line.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001150 if ((*(I + 1))->Last->Type == TT_LineComment || Tok->MustBreakBefore)
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001151 return;
1152 do {
Alexander Kornienkoe74de282013-03-13 14:41:29 +00001153 if (Tok->isOneOf(tok::l_brace, tok::r_brace))
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001154 return;
Manuel Klimekb3987012013-05-29 14:47:47 +00001155 Tok = Tok->Next;
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001156 } while (Tok != NULL);
Manuel Klimek517e8942013-01-11 17:54:10 +00001157
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001158 // Last, check that the third line contains a single closing brace.
Daniel Jasper567dcf92013-09-05 09:29:45 +00001159 Tok = (*(I + 2))->First;
Alexander Kornienko0bdc6432013-07-04 14:47:51 +00001160 if (Tok->getNextNonComment() != NULL || Tok->isNot(tok::r_brace) ||
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001161 Tok->MustBreakBefore)
1162 return;
1163
Daniel Jasper567dcf92013-09-05 09:29:45 +00001164 join(Line, **(I + 1));
1165 join(Line, **(I + 2));
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001166 I += 2;
Manuel Klimek517e8942013-01-11 17:54:10 +00001167 }
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001168 }
1169
Daniel Jasperb77d7412013-09-06 07:54:20 +00001170 bool nextTwoLinesFitInto(SmallVectorImpl<AnnotatedLine *>::iterator I,
Daniel Jasperfeb18f52013-01-14 14:14:23 +00001171 unsigned Limit) {
Daniel Jasper567dcf92013-09-05 09:29:45 +00001172 return 1 + (*(I + 1))->Last->TotalLength + 1 +
1173 (*(I + 2))->Last->TotalLength <=
Manuel Klimek2f1ac412013-01-21 16:42:44 +00001174 Limit;
Manuel Klimek517e8942013-01-11 17:54:10 +00001175 }
1176
Daniel Jasper995e8202013-01-14 13:08:07 +00001177 void join(AnnotatedLine &A, const AnnotatedLine &B) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001178 assert(!A.Last->Next);
1179 assert(!B.First->Previous);
1180 A.Last->Next = B.First;
1181 B.First->Previous = A.Last;
1182 unsigned LengthA = A.Last->TotalLength + B.First->SpacesRequiredBefore;
1183 for (FormatToken *Tok = B.First; Tok; Tok = Tok->Next) {
1184 Tok->TotalLength += LengthA;
1185 A.Last = Tok;
Daniel Jasper995e8202013-01-14 13:08:07 +00001186 }
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001187 }
1188
Daniel Jasper6f21a982013-03-13 07:49:51 +00001189 bool touchesRanges(const CharSourceRange &Range) {
Daniel Jasperf3023542013-03-07 20:50:00 +00001190 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1191 if (!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),
1192 Ranges[i].getBegin()) &&
1193 !SourceMgr.isBeforeInTranslationUnit(Ranges[i].getEnd(),
1194 Range.getBegin()))
1195 return true;
1196 }
1197 return false;
1198 }
1199
1200 bool touchesLine(const AnnotatedLine &TheLine) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001201 const FormatToken *First = TheLine.First;
1202 const FormatToken *Last = TheLine.Last;
Daniel Jasper84f5ddf2013-05-14 10:31:09 +00001203 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001204 First->WhitespaceRange.getBegin().getLocWithOffset(
1205 First->LastNewlineOffset),
Alexander Kornienko2c2f7292013-09-16 20:20:49 +00001206 Last->getStartOfNonWhitespace().getLocWithOffset(
1207 Last->TokenText.size() - 1));
Daniel Jasperf3023542013-03-07 20:50:00 +00001208 return touchesRanges(LineRange);
1209 }
1210
Daniel Jasperb77d7412013-09-06 07:54:20 +00001211 bool touchesPPDirective(SmallVectorImpl<AnnotatedLine *>::iterator I,
1212 SmallVectorImpl<AnnotatedLine *>::iterator E) {
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001213 for (; I != E; ++I) {
Daniel Jasper567dcf92013-09-05 09:29:45 +00001214 if ((*I)->First->HasUnescapedNewline)
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001215 return false;
Daniel Jasper567dcf92013-09-05 09:29:45 +00001216 if (touchesLine(**I))
Daniel Jasper89b3a7f2013-05-10 13:00:49 +00001217 return true;
1218 }
1219 return false;
1220 }
1221
Daniel Jasperf3023542013-03-07 20:50:00 +00001222 bool touchesEmptyLineBefore(const AnnotatedLine &TheLine) {
Manuel Klimekb3987012013-05-29 14:47:47 +00001223 const FormatToken *First = TheLine.First;
Daniel Jasperf3023542013-03-07 20:50:00 +00001224 CharSourceRange LineRange = CharSourceRange::getCharRange(
Manuel Klimekad3094b2013-05-23 10:56:37 +00001225 First->WhitespaceRange.getBegin(),
1226 First->WhitespaceRange.getBegin().getLocWithOffset(
1227 First->LastNewlineOffset));
Daniel Jasperf3023542013-03-07 20:50:00 +00001228 return touchesRanges(LineRange);
Manuel Klimekf9ea2ed2013-01-10 19:49:59 +00001229 }
1230
1231 virtual void consumeUnwrappedLine(const UnwrappedLine &TheLine) {
Daniel Jasper567dcf92013-09-05 09:29:45 +00001232 AnnotatedLines.push_back(new AnnotatedLine(TheLine));
Daniel Jasperbac016b2012-12-03 18:12:45 +00001233 }
1234
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001235 /// \brief Add a new line and the required indent before the first Token
1236 /// of the \c UnwrappedLine if there was no structural parsing error.
1237 /// Returns the indent level of the \c UnwrappedLine.
Manuel Klimekb3987012013-05-29 14:47:47 +00001238 void formatFirstToken(const FormatToken &RootToken,
Daniel Jasper63cfb892013-10-06 11:40:08 +00001239 const AnnotatedLine *PreviousLine, unsigned Indent,
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001240 bool InPPDirective) {
Daniel Jasper1a1ce832013-01-29 11:27:30 +00001241 unsigned Newlines =
Manuel Klimekb3987012013-05-29 14:47:47 +00001242 std::min(RootToken.NewlinesBefore, Style.MaxEmptyLinesToKeep + 1);
Daniel Jasper15f33f02013-06-03 16:16:41 +00001243 // Remove empty lines before "}" where applicable.
1244 if (RootToken.is(tok::r_brace) &&
1245 (!RootToken.Next ||
1246 (RootToken.Next->is(tok::semi) && !RootToken.Next->Next)))
1247 Newlines = std::min(Newlines, 1u);
Manuel Klimekb3987012013-05-29 14:47:47 +00001248 if (Newlines == 0 && !RootToken.IsFirst)
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001249 Newlines = 1;
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001250
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001251 // Insert extra new line before access specifiers.
Daniel Jasper63cfb892013-10-06 11:40:08 +00001252 if (PreviousLine && PreviousLine->Last->isOneOf(tok::semi, tok::r_brace) &&
Manuel Klimekb3987012013-05-29 14:47:47 +00001253 RootToken.isAccessSpecifier() && RootToken.NewlinesBefore == 1)
Manuel Klimeke573c3f2013-05-22 12:51:29 +00001254 ++Newlines;
Alexander Kornienko94b748f2013-03-27 17:08:02 +00001255
Daniel Jasper63cfb892013-10-06 11:40:08 +00001256 // Remove empty lines after access specifiers.
1257 if (PreviousLine && PreviousLine->First->isAccessSpecifier())
1258 Newlines = std::min(1u, Newlines);
1259
Manuel Klimekb3987012013-05-29 14:47:47 +00001260 Whitespaces.replaceWhitespace(
Alexander Kornienko3d9ffcf2013-09-27 16:14:22 +00001261 RootToken, Newlines, Indent / Style.IndentWidth, Indent, Indent,
Manuel Klimekb3987012013-05-29 14:47:47 +00001262 InPPDirective && !RootToken.HasUnescapedNewline);
Manuel Klimek3f8c7f32013-01-10 18:45:26 +00001263 }
1264
Daniel Jasper567dcf92013-09-05 09:29:45 +00001265 unsigned getColumnLimit(bool InPPDirective) const {
1266 // In preprocessor directives reserve two chars for trailing " \"
1267 return Style.ColumnLimit - (InPPDirective ? 2 : 0);
1268 }
1269
Daniel Jasperbac016b2012-12-03 18:12:45 +00001270 FormatStyle Style;
1271 Lexer &Lex;
1272 SourceManager &SourceMgr;
Daniel Jasperdcc2a622013-01-18 08:44:07 +00001273 WhitespaceManager Whitespaces;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001274 std::vector<CharSourceRange> Ranges;
Daniel Jasperb77d7412013-09-06 07:54:20 +00001275 SmallVector<AnnotatedLine *, 16> AnnotatedLines;
Alexander Kornienko00895102013-06-05 14:09:10 +00001276
1277 encoding::Encoding Encoding;
Daniel Jasperc7bd68f2013-07-10 14:02:49 +00001278 bool BinPackInconclusiveFunctions;
Daniel Jasperbac016b2012-12-03 18:12:45 +00001279};
1280
Craig Topper83f81d72013-06-30 22:29:28 +00001281} // end anonymous namespace
1282
Alexander Kornienko70ce7882013-04-15 14:28:00 +00001283tooling::Replacements reformat(const FormatStyle &Style, Lexer &Lex,
1284 SourceManager &SourceMgr,
Daniel Jaspercaf42a32013-05-15 08:14:19 +00001285 std::vector<CharSourceRange> Ranges) {
1286 Formatter formatter(Style, Lex, SourceMgr, Ranges);
Daniel Jasperbac016b2012-12-03 18:12:45 +00001287 return formatter.format();
1288}
1289
Daniel Jasper8a999452013-05-16 10:40:07 +00001290tooling::Replacements reformat(const FormatStyle &Style, StringRef Code,
1291 std::vector<tooling::Range> Ranges,
1292 StringRef FileName) {
1293 FileManager Files((FileSystemOptions()));
1294 DiagnosticsEngine Diagnostics(
1295 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
1296 new DiagnosticOptions);
1297 SourceManager SourceMgr(Diagnostics, Files);
1298 llvm::MemoryBuffer *Buf = llvm::MemoryBuffer::getMemBuffer(Code, FileName);
1299 const clang::FileEntry *Entry =
1300 Files.getVirtualFile(FileName, Buf->getBufferSize(), 0);
1301 SourceMgr.overrideFileContents(Entry, Buf);
1302 FileID ID =
1303 SourceMgr.createFileID(Entry, SourceLocation(), clang::SrcMgr::C_User);
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001304 Lexer Lex(ID, SourceMgr.getBuffer(ID), SourceMgr,
1305 getFormattingLangOpts(Style.Standard));
Daniel Jasper8a999452013-05-16 10:40:07 +00001306 SourceLocation StartOfFile = SourceMgr.getLocForStartOfFile(ID);
1307 std::vector<CharSourceRange> CharRanges;
1308 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1309 SourceLocation Start = StartOfFile.getLocWithOffset(Ranges[i].getOffset());
1310 SourceLocation End = Start.getLocWithOffset(Ranges[i].getLength());
1311 CharRanges.push_back(CharSourceRange::getCharRange(Start, End));
1312 }
1313 return reformat(Style, Lex, SourceMgr, CharRanges);
1314}
1315
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001316LangOptions getFormattingLangOpts(FormatStyle::LanguageStandard Standard) {
Daniel Jasper46ef8522013-01-10 13:08:12 +00001317 LangOptions LangOpts;
1318 LangOpts.CPlusPlus = 1;
Alexander Kornienkoa1753f42013-06-28 12:51:24 +00001319 LangOpts.CPlusPlus11 = Standard == FormatStyle::LS_Cpp03 ? 0 : 1;
Daniel Jasperb64eca02013-03-22 10:01:29 +00001320 LangOpts.LineComment = 1;
Daniel Jasper46ef8522013-01-10 13:08:12 +00001321 LangOpts.Bool = 1;
1322 LangOpts.ObjC1 = 1;
1323 LangOpts.ObjC2 = 1;
1324 return LangOpts;
1325}
1326
Edwin Vanef4e12c82013-09-30 13:31:48 +00001327const char *StyleOptionHelpDescription =
1328 "Coding style, currently supports:\n"
1329 " LLVM, Google, Chromium, Mozilla, WebKit.\n"
1330 "Use -style=file to load style configuration from\n"
1331 ".clang-format file located in one of the parent\n"
1332 "directories of the source file (or current\n"
1333 "directory for stdin).\n"
1334 "Use -style=\"{key: value, ...}\" to set specific\n"
1335 "parameters, e.g.:\n"
1336 " -style=\"{BasedOnStyle: llvm, IndentWidth: 8}\"";
1337
1338FormatStyle getStyle(StringRef StyleName, StringRef FileName) {
1339 // Fallback style in case the rest of this function can't determine a style.
1340 StringRef FallbackStyle = "LLVM";
1341 FormatStyle Style;
1342 getPredefinedStyle(FallbackStyle, &Style);
1343
1344 if (StyleName.startswith("{")) {
1345 // Parse YAML/JSON style from the command line.
1346 if (llvm::error_code ec = parseConfiguration(StyleName, &Style)) {
1347 llvm::errs() << "Error parsing -style: " << ec.message()
1348 << ", using " << FallbackStyle << " style\n";
1349 }
1350 return Style;
1351 }
1352
1353 if (!StyleName.equals_lower("file")) {
1354 if (!getPredefinedStyle(StyleName, &Style))
1355 llvm::errs() << "Invalid value for -style, using " << FallbackStyle
1356 << " style\n";
1357 return Style;
1358 }
1359
1360 SmallString<128> Path(FileName);
1361 llvm::sys::fs::make_absolute(Path);
1362 for (StringRef Directory = Path;
1363 !Directory.empty();
1364 Directory = llvm::sys::path::parent_path(Directory)) {
1365 if (!llvm::sys::fs::is_directory(Directory))
1366 continue;
1367 SmallString<128> ConfigFile(Directory);
1368
1369 llvm::sys::path::append(ConfigFile, ".clang-format");
1370 DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n");
1371 bool IsFile = false;
1372 // Ignore errors from is_regular_file: we only need to know if we can read
1373 // the file or not.
1374 llvm::sys::fs::is_regular_file(Twine(ConfigFile), IsFile);
1375
1376 if (!IsFile) {
1377 // Try _clang-format too, since dotfiles are not commonly used on Windows.
1378 ConfigFile = Directory;
1379 llvm::sys::path::append(ConfigFile, "_clang-format");
1380 DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n");
1381 llvm::sys::fs::is_regular_file(Twine(ConfigFile), IsFile);
1382 }
1383
1384 if (IsFile) {
1385 OwningPtr<llvm::MemoryBuffer> Text;
1386 if (llvm::error_code ec = llvm::MemoryBuffer::getFile(ConfigFile, Text)) {
1387 llvm::errs() << ec.message() << "\n";
1388 continue;
1389 }
1390 if (llvm::error_code ec = parseConfiguration(Text->getBuffer(), &Style)) {
1391 llvm::errs() << "Error reading " << ConfigFile << ": " << ec.message()
1392 << "\n";
1393 continue;
1394 }
1395 DEBUG(llvm::dbgs() << "Using configuration file " << ConfigFile << "\n");
1396 return Style;
1397 }
1398 }
1399 llvm::errs() << "Can't find usable .clang-format, using " << FallbackStyle
1400 << " style\n";
1401 return Style;
1402}
1403
Daniel Jaspercd162382013-01-07 13:26:07 +00001404} // namespace format
1405} // namespace clang