Issue570

Title fix style checks
Priority bug Status resolved
Superseder Nosy List florian, jendrik, malte
Assigned To jendrik Keywords
Optional summary

Created on 2015-07-28.15:44:32 by malte, last changed by jendrik.

Messages
msg4645 (view) Author: jendrik Date: 2015-10-05.15:59:09
Merged and pushed. I also updated the wiki and sent a short notice to downward-
dev.
msg4629 (view) Author: jendrik Date: 2015-09-29.23:30:57
I have taken a brief look at ClangFormat. It seems like a nice tool, but it is 
not as customizable as uncrustify and would therefore change many of the style 
conventions that we currently have. For the record, this is the .clang-format 
file that I used (uses YAML format). I have tried to adapt all available 
settings to the values we want and afterwards removed the ones that are 
identical to the LLVM default style.

"""
---
BasedOnStyle: LLVM
AccessModifierOffset: -4
AlignTrailingComments: false
AllowShortFunctionsOnASingleLine: Inline
BinPackParameters: false
ConstructorInitializerAllOnOneLineOrOnePerLine: true
IndentWidth: 4
MaxEmptyLinesToKeep: 2
...
"""

I also tried using a newer uncrustify version. Version 0.61 (the newest release) 
handles C++11 code much better than version 0.59 which we currently use. Version 
0.61 adds some configuration settings and doesn't destroy our syntax.

I created a branch with the new uncrustify settings, manually fixed some lambda 
definitions and an initializer list and afterwards uncrustified the touched 
files. I didn't uncrustify everything to avoid merge conflicts for now. 
Uncrustify preserves the lambda and initializer list syntax and uses the new 
C++11 template syntax and also correctly formats r-value references:

https://bitbucket.org/jendrikseipp/downward/pull-requests/36

Uncrustify 0.59 is the most recent version in any Ubuntu version (up to 15.10), 
so to use uncrustify 0.61, we would have to compile it ourselves. Luckily, this 
is very straightforward (./configure; make).

I'd say we should make the switch to uncrustify 0.61 and explain in the wiki how 
it can be compiled and installed.
msg4518 (view) Author: malte Date: 2015-07-28.15:44:32
(Classifying this as a "style bug".)

We currently have to live with stupid formatting (see e.g.
http://hg.fast-downward.org/rev/47b1535deaa4, especially the egregious examples
where we use {} as initializers) because our uncrustify setup doesn't really
understand C++11.

I see two main options:
1. Find out if a newer version of uncrustify addresses this and upgrade.
2. Switch to a different code layout tool. I think ClangFormat may be a
state-of-the-art alternative.
History
Date User Action Args
2015-10-05 15:59:09jendriksetstatus: chatting -> resolved
messages: + msg4645
2015-09-29 23:30:57jendriksetstatus: unread -> chatting
assignedto: jendrik
messages: + msg4629
2015-07-28 17:43:52jendriksetnosy: + jendrik
2015-07-28 15:56:20floriansetnosy: + florian
2015-07-28 15:44:32maltecreate