From f89819bbdb5b6b56285dd405b4e322b6c83b084f Mon Sep 17 00:00:00 2001 From: "Vladimir Golovnev (Glassez)" Date: Tue, 5 Apr 2016 22:47:05 +0300 Subject: [PATCH] Fix coding style rules Closes #5075 --- CODING_GUIDELINES.md | 79 ++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 47 deletions(-) diff --git a/CODING_GUIDELINES.md b/CODING_GUIDELINES.md index 534cf476a..ec018be2c 100644 --- a/CODING_GUIDELINES.md +++ b/CODING_GUIDELINES.md @@ -29,8 +29,10 @@ class MyOtherClass { public: //code + protected: //code + private: //code }; @@ -87,10 +89,14 @@ default: } ``` -#### d. single-line blocks (lambdas, initializer lists etc.) #### +#### d. Brace enclosed initializers #### +Unlike single-line functions, you must not insert spaces between the brackets and concluded expressions.
+But you must insert a space between the variable name and initializer. ```c++ - {} // empty - space before { - { body } // spaces around { and before } +Class obj {}; // empty +Class obj {expr}; +Class obj {expr1, /*...,*/ exprN}; +QVariantMap map {{"key1", 5}, {"key2", 10}}; ``` ### 2. If blocks ### @@ -173,11 +179,11 @@ All names should be camelCased. #### a. Type names and namespaces #### Type names and namespaces start with Upper case letter (except POD types). ```c++ -class ClassName {} +class ClassName {}; -struct StructName {} +struct StructName {}; -enum EnumName {} +enum EnumName {}; typedef QList SomeList; @@ -211,47 +217,18 @@ a += "b" + "d"; ``` -* Initializers - -We allow brace enclosed initializers only for aggregates and arrays/containers.
-Brace enclosed initializer MUST be used with equality sign if it follows the variable declaration.
-Brace enclosed initializer MUST be additionally enclosed in parentheses if it is used in constructor initialization list.
-Some valid use cases: -```c++ -// aggregate -Person john = { "John", "Smith", 21 }; -Person *john = new Person { "John", "Smith", 21 }; - -// array -int array[] = { 1, 2, 3, 4 }; - -// container -QHash map = { - { "key1", "value1" }, - { "key2", "value2" } -); - -// member array -SomeClass::SomeClass(BaseClass *parent) - : BaseClass(parent) - , m_someArrayMember({ 1, 2, 3, 4 }) -{ -} - -// return from function -Person getPersonByName(const QString &name) -{ - // do something - return { name, surname, age }; -} - -// function argument -doSomething({ name, surname, age }, someOtherArg); -``` - * **auto** keyword -We allow the use of the **auto** keyword only where it doesn't break the readability of the code (i.e. either we can gather enough information about the type from the right part of the expression, or we do not need to know the exact type), or where it is strictly necessary (for example, to compute the type of a lambda, etc.).
+We allow the use of the **auto** keyword only where it is strictly necessary +(for example, to declare a lambda object, etc.), or where it **enhances** the readability of the code. +Declarations for which one can gather enough information about the object interface (type) from its name +or the usage pattern (an iterator or a loop variable are good examples of clear patterns) +or the right part of the expression nicely fit here.
+
+When weighing whether to use an auto-typed variable please think about potential reviewers of your code, +who will read it as a plain diff (on github.com, for instance). Please make sure that such reviewers can +understand the code completely and without excessive effort.
+
Some valid use cases: ```c++ template @@ -274,9 +251,17 @@ auto spinBox = static_cast(sender()); * Space around operations eg `a = b + c` or `a=b+c`: -Before and after the assignment there should be a space. One exception could be: for loops. +Before and after the assignment and other binary (and ternary) operators there should be a space.
+There should not be a space between increment/decrement and its operand.
+Some valid use cases: ```c++ -for (int a=0; a