summaryrefslogtreecommitdiffstats
path: root/HACKING
blob: 140b11c749b43ebc112251d7f3af1050aa447435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
Contributing to pacman
======================

In addition to this file, please read 'submitting-patches' and
'translation-help' in the same directory for additional info on contributing.

Coding style
------------

1.  All code should be indented with tabs. (Ignore the use of only spaces in
    this file) By default, source files contain the following VIM modeline:

      /* vim: set ts=2 sw=2 noet: */

2.  When opening new blocks such as 'while', 'if', or 'for', leave the opening
    brace on the same line as the beginning of the codeblock. The closing brace
    gets its own line (the only exception being 'else'). Do not use extra
    spaces around the parentheses of the block. ALWAYS use opening/closing
    braces, even if it's just a one-line block. This reduces future error when
    blocks are expanded beyond one line.

    for(lp = list; lp; lp = lp->next) {
      newlist = _alpm_list_add(newlist, strdup(lp->data));
    }

    while(it) {
      ptr = it->next;
      if(fn) {
        fn(it->data);
      } else {
        return(1);
      }
      free(it);
      it = ptr;
    }

3.  When declaring a new function, put the opening and closing braces on their
    own line. Also, when declaring a pointer, do not put a space between the
    asterisk and the variable name.

    alpm_list_t *alpm_list_add(alpm_list_t *list, void *data)
    {
      alpm_list_t *ptr, *lp;

      ptr = list;
     if(ptr == NULL) {
     ...
    }

4.  Comments should be ANSI-C89 compliant. That means no "// Comment" style;
    use only "/* Comment */" style.

    /* This is a comment */
       NOT
    // This is a comment

5.  Return statements should be written like a function call.

    return(0);
       NOT
    return 0;

6.  The sizeof() operator should accept a type, not a value. (TODO: in certain
    cases, it may be better- should this be a set guideline? Read "The Practice
    of Programming")

    sizeof(alpm_list_t);
       NOT
    sizeof(*mylist);

7.  When using strcmp() (or any function that returns 0 on success) in a
    conditional statement, use != 0 or == 0 and not the negation (!) operator.
    It reads much cleaner for humans (using a negative to check for success is
    confusing) and the compiler will treat it correctly anyway.

    if(strcmp(a, b) == 0)
       NOT
    if(!strcmp(a, b))


Other Concerns
--------------

Currently our #include usage is in messy shape, but this is no reason to
continue down this messy path. When adding an include to a file, follow this
general pattern, including blank lines:

#include "config.h"

#include <standardheader.h>
#include <another.h>
#include <...>

Follow this with some more headers, depending on whether the file is in libalpm
or pacman proper. For libalpm:

/* libalpm */
#include "yourfile.h"
#include "alpm_list.h"
#include "anythingelse.h"

For pacman:

#include <alpm.h>
#include <alpm_list.h>

/* pacman */
#include "yourfile.h"
#include "anythingelse.h"

vim: set ts=2 sw=2 et: