developer.xml 6.33 KB
Newer Older
1
<?xml version='1.0' encoding="utf-8"?>
2 3 4
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
                      "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">

5 6 7
<book>
  <title>The Music Player Daemon - Developer's Manual</title>

8
  <chapter id="introduction">
9 10 11 12 13
    <title>Introduction</title>

    <para>
      This is a guide for those who wish to hack on the MPD source
      code.  MPD is an open project, and we are always happy about
14
      contributions.  So far, more than 150 people have contributed
15 16 17 18 19 20 21 22 23
      patches.
    </para>

    <para>
      This document is work in progress.  Most of it may be incomplete
      yet.  Please help!
    </para>
  </chapter>

24
  <chapter id="code_style">
25 26 27 28 29 30 31 32 33 34 35
    <title>Code Style</title>

    <itemizedlist>
      <listitem>
        <para>
          indent with tabs (width 8)
        </para>
      </listitem>

      <listitem>
        <para>
36 37
          don't write CPP when you can write C++: use inline
          functions and constexpr instead of macros
38 39 40
        </para>
      </listitem>

41 42 43 44 45 46
      <listitem>
        <para>
          comment your code, document your APIs
        </para>
      </listitem>

47 48
      <listitem>
        <para>
49
          the code should be C++14 compliant, and must compile with
50
          <application>GCC</application> 5.0 and
51
          <application>clang</application> 3.4
52 53 54
        </para>
      </listitem>

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
      <listitem>
        <para>
          report error conditions with C++ exceptions, preferable
          derived from <varname>std::runtime_error</varname>
        </para>
      </listitem>

      <listitem>
        <para>
          all code must be exception-safe
        </para>
      </listitem>

      <listitem>
        <para>
          classes and functions names use CamelCase; variables are
          lower-case with words separated by underscore
        </para>
      </listitem>

75 76 77 78 79
      <listitem>
        <para>
          Some example code:
        </para>

80
        <programlisting lang="C">static inline int
81
Foo(const char *abc, int xyz)
82
{
83
        if (abc == nullptr) {
84
                LogWarning("Foo happened!");
85 86 87 88 89 90 91 92 93 94
                return -1;
        }

        return xyz;
}
        </programlisting>
      </listitem>
    </itemizedlist>
  </chapter>

95
  <chapter id="hacking">
96 97
    <title>Hacking The Source</title>

98 99
    <para>
      MPD sources are managed in a git repository on <ulink
100
      url="https://github.com/MusicPlayerDaemon/">GitHub</ulink>.
101 102
    </para>

103 104 105 106
    <para>
      Always write your code against the latest git:
    </para>

107
    <programlisting>git clone git://github.com/MusicPlayerDaemon/MPD</programlisting>
108

109 110 111 112
    <para>
      If you already have a clone, update it:
    </para>

113
    <programlisting>git pull --rebase git://github.com/MusicPlayerDaemon/MPD master</programlisting>
114 115 116 117 118 119

    <para>
      You can do without "--rebase", but we recommend that you rebase
      your repository on the "master" repository all the time.
    </para>

120 121 122 123 124 125 126 127 128
    <para>
      Configure with the options <option>--enable-debug
      --enable-werror</option>.  Enable as many plugins as possible,
      to be sure that you don't break any disabled code.
    </para>

    <para>
      Don't mix several changes in one single patch.  Create a
      separate patch for every change.  Tools like
129 130 131
      <application>stgit</application> help you with that.  This way,
      we can review your patches more easily, and we can pick the
      patches we like most first.
132
    </para>
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177


    <section>
      <title> Basic stgit usage</title>

      <para>
        stgit allows you to create a set of patches and refine all of
        them: you can go back to any patch at any time, and re-edit it
        (both the code and the commit message). You can reorder
        patches and insert new patches at any position. It encourages
        creating separate patches for tiny changes.
      </para>

      <para>
        stgit needs to be initialized on a git repository: stg init
      </para>

      <para>
        Before you edit the code, create a patch: stg new
        my-patch-name (stgit now asks you for the commit message).
      </para>

      <para>
        Now edit the code. Once you're finished, you have to "refresh"
        the patch, i.e. your edits are incorporated into the patch you
        have created: stg refresh
      </para>

      <para>
        You may now continue editing the same patch, and refresh it as
        often as you like. Create more patches, edit and refresh them.
      </para>

      <para>
        To view the list of patches, type stg series. To go back to a
        specific patch, type stg goto my-patch-name; now you can
        re-edit it (don't forget stg refresh when you're finished with
        that patch).
      </para>

      <para>
        When the whole patch series is finished, convert stgit patches
        to git commits: stg commit
      </para>
    </section>
178 179
  </chapter>

180
  <chapter id="submitting_patches">
181 182 183 184
    <title>Submitting Patches</title>

    <para>
      Send your patches to the mailing list:
185 186 187
      <email>mpd-devel@musicpd.org</email> (<ulink
      url="http://mailman.blarg.de/listinfo/mpd-devel">subscribe
      here</ulink>)
188
    </para>
189 190

    <para>
191
      <command>git pull</command> requests are preferred.
192
    </para>
193
  </chapter>
194

195
  <chapter id="tools">
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
    <title>Development Tools</title>

    <section>
      <title>Clang Static Analyzer</title>

      <para>
        The <ulink url="http://clang-analyzer.llvm.org/">clang static
        analyzer</ulink> is a tool that helps find bugs.  To run it on
        the MPD code base, install LLVM and clang.  Configure MPD to
        use clang:
      </para>

      <programlisting>./configure --enable-debug CXX=clang++ CC=clang ...</programlisting>

      <para>
        It is recommended to use <option>--enable-debug</option>,
        because the analyzer takes advantage of
        <function>assert()</function> calls, which are only enabled in
        the debug build.
      </para>

      <para>
        Now run the analyzer:
      </para>

      <programlisting>scan-build --use-c++=clang++ --use-cc=clang make</programlisting>

      <para>
        The options <option>--use-c++</option> and
        <option>--use-cc</option> are necessary because it invokes
        <command>cc</command> for actually compiling the sources by
        default.  That breaks, because MPD requires a C99 compiler.
      </para>
    </section>
  </chapter>
231
</book>