Difference between revisions of "Cpp Coding Standards"

From Apache OpenOffice Wiki
Jump to: navigation, search
(Separating headlines from ids.)
m (sorting)
Line 57: Line 57:
  
 
=== Topics in Alphabetical Order ===
 
=== Topics in Alphabetical Order ===
* [[/Class Design|Class Design]] (CLSDESIGN)
 
 
* [[/Class Construction, Destruction and Copying|Class Construction, Destruction and Copying]] (CLSINIT)
 
* [[/Class Construction, Destruction and Copying|Class Construction, Destruction and Copying]] (CLSINIT)
 +
* [[/Class Design|Class Design]] (CLSDESIGN)
 
* [[/Code Documentation|Code Documentation]] (CODEDOCU)
 
* [[/Code Documentation|Code Documentation]] (CODEDOCU)
 +
* [[/Code Format|Code Format]] (FORMAT)
 
* [[/Design|Design]] (DESIGN)
 
* [[/Design|Design]] (DESIGN)
 +
* [[/Development Process|Development Process]] (PROCESS)
 
* [[/Encapsulation|Encapsulation]] (ENC)
 
* [[/Encapsulation|Encapsulation]] (ENC)
 
* [[/Error Handling|Error Handling]] (ERR)  
 
* [[/Error Handling|Error Handling]] (ERR)  
* [[/Code Format|Code Format]] (FORMAT)
 
 
* [[/Function Design|Function Design]] (FDESIGN)  
 
* [[/Function Design|Function Design]] (FDESIGN)  
 
* [[/Function Implementation|Function Implementation]] (FIMPL)  
 
* [[/Function Implementation|Function Implementation]] (FIMPL)  
 
* [[/General Coding|General Coding]] (GEN)  
 
* [[/General Coding|General Coding]] (GEN)  
 
* [[/Header Files|Header Files]] (HEADERS)
 
* [[/Header Files|Header Files]] (HEADERS)
* [[/Virtual Classes|Virtual Classes]] (VIRTUAL)
 
 
* [[/Interfaces|Interfaces]] (IFC)
 
* [[/Interfaces|Interfaces]] (IFC)
* [[/Principles|Principles]] (PRINC)
 
 
* [[/Obsolete Habits|Obsolete Habits]] (OBSOLETE)  
 
* [[/Obsolete Habits|Obsolete Habits]] (OBSOLETE)  
* [[/Development Process|Development Process]] (PROCESS)
+
* [[/Principles|Principles]] (PRINC)
 
* [[/Security|Security]] (SECURITY)
 
* [[/Security|Security]] (SECURITY)
 
* [[/STL|The C++ Standard Template Library]] (STL)
 
* [[/STL|The C++ Standard Template Library]] (STL)
 
* [[/Type Safety|Type Safety]] (TYPE)  
 
* [[/Type Safety|Type Safety]] (TYPE)  
 +
* [[/Virtual Classes|Virtual Classes]] (VIRTUAL)
 
----
 
----
 
[[Category:Coding Standards]]
 
[[Category:Coding Standards]]

Revision as of 11:07, 28 November 2006

Purpose

Coding standards are a part of defect prevention. They gather rules, advice and best practices for developing software, especially the code writing part. Here are listed some ideas what such standards could be for developing with C++ and within the OpenOffice.org project.

Standards and Reviews

Coding standards and reviews are related. Reviews help getting to know standards and bringing them into the real life of the code. Reviews also help to improve standards and disclose needed changes.

The standards are parted into topics. Each topic is intended to cover an area that is small enough to be the focus of a code review session. The summary of rules regarding one topic should not cover more than "one page" of paper or on screen. This way one topic's summary can be printed out and be used as checklist when studying code.

Most times a summary alone is not enough to understand and discuss a rule, also there are exceptions and hints for realization. So, for each rule there will be a separate wiki page to discuss it.

Identifying Rules

Ids enable to make notes about rules (e.g. during reviews) and help when talking about them. Because items may be added or sorted out, such ids are not just cardinal numbers, but strings that do not change, when other items are added or removed. Each topic has an id, and each rule within the topic has an id itself.

Example: FDESIGN:OneTask is the rule with the id "OneTask" which belongs to the topic Function Design with the id "FDESIGN".


Topics by Problem Domain

Topics may appear at multiple domains.

Middle- and Lowlevel Design

Classes

Functions and Implementation Generally

Preferred vs. Discarded Types and Habits

Files, Formatting, Documentation

Principles and Process


Topics in Alphabetical Order


Personal tools