重新格式化 C++ 大括号而不改变缩进?
我们希望使 C++ 大括号样式更加一致。 现在,我们的代码包含以下内容的组合:
if (cond)
{
// ...
}
else
{
// ...
}
...以及:
if (cond) {
// ...
} else {
// ...
}
我们希望专门使用后一种样式。
但是,我们不想更改代码的缩进。 我尝试过使用 astyle、bcpp、GNU indent 和 Uncrustify(并且我查看了 GreatCode 的命令行选项)。 不幸的是,这些工具中的每一个都坚持重新缩进我们的代码,并且它们中的大多数都非常严重地破坏了 C++ 构造函数初始值设定项列表和预处理器宏。
是否有任何 C++ 代码美化器可以修复大括号,同时保留缩进? 它不一定是一种预先存在的工具——如果您知道如何使用一些疯狂的 Perl 语句来完成此操作,那也很好。 谢谢你!
更新:是的,我们知道这将使阅读旧代码的差异变得困难。 这是一项拖延已久的代码清理工作,我们认为一致格式的日常优势胜过任何版本控制困难。
We would like to make our C++ brace style more consistent. Right now, our code contains a mix of:
if (cond)
{
// ...
}
else
{
// ...
}
...and:
if (cond) {
// ...
} else {
// ...
}
We want to use the latter style exclusively.
However, we don't want to change the indentation of our code. I've tried using astyle, bcpp, GNU indent and Uncrustify (and I've looked at the command-line options for GreatCode). Unfortunately, each of these tools insists on reindenting our code, and most of them mangle C++ constructor initializer lists and preprocessor macros pretty badly.
Are there any C++ code beautifiers which can fix braces while leaving indentation alone? It doesn't have to be a pre-existing tool--if you know how to do this using some crazy Perl one-liner, that's also good. Thank you!
Update: Yes, we aware that this will make it hard to read diffs against older code. This is a long-postponed code cleanup, and we've decided that the day-to-day advantages of consistent formatting outweigh any version-control difficulties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这是一个 Perl 语句,应该可以满足您的要求。
它将这个: 变成
这样:
Here's a Perl one-liner that should do what you want.
It turns this:
into this:
在这样做之前,你真的应该三思而后行。 它将完全破坏源代码控制系统在更改时的修订历史记录。 您正在使用源代码控制系统,不是吗?
You really should think twice, and probably thrice, before doing this. It will completely destroy your source code control system's revision history at the point of change. You are using a source code control system, aren't you?
这首先破坏了
}; <空白> else
到} else
,然后从中删除行尾 <空白> {
。要将其应用到源代码树,请使用
find
和xargs
:This first mangles
} <eol> <whitespace> else
to} else
, then removes end-of-lines from<eol> <whitespace> {
.To apply this to a source tree, use
find
andxargs
:UNIX 命令缩进 (http://en.wikipedia.org/wiki/Indent_(Unix) )(可用于 GNU 的 PC)有一百万个选项,可以根据您的喜好自定义重新格式化。
The UNIX command Indent (http://en.wikipedia.org/wiki/Indent_(Unix)) (Available for PCs from GNU) has a million options to customize the reformating exactly as you like.
难道一手简单的正则表达式就不能解决问题吗? 就像 (\).?\n.?\{) -> (\) \{) 删除右括号和左大括号之间的空格。
Wouldn't a hand full of simple regexs do the trick? Like (\).?\n.?\{) -> (\) \{) to delete the space between a closing bracket and an opening curly bracket.
我过去解决过这样的问题,首先运行 astyle 之类的工具来完成我们想要的 95% 的工作,然后在结果上编写 Perl 或 Python 脚本来完成剩余的 5%。 尝试一下,了解正则表达式总是一个好习惯。 :)
I've tackled problems like this in the past by first running some tool like astyle to do 95% of what we wanted, and then writing a Perl or Python script over the result to finish the remaining 5%. Try it, it's always good practice to know your regular expressions. :)