]> pd.if.org Git - pdclib.old/blob - Notes.txt
Merge
[pdclib.old] / Notes.txt
1 $Id$
2
3 Credits
4 =======
5
6 The vast majority of PDCLib is original work by me. I felt it was the only way
7 to ensure that the code was indeed free of third-party rights, and thus free to
8 be released into the Public Domain.
9
10 Another issue was that of coding style, quality and stability of the code, and
11 the urge to really understand every miniscule part of the code as to be able to
12 maintain it well once v1.0 has been released.
13
14 That is not to say there are no credits to be given. To the contrary:
15
16 Paul Edwards (author of the PDPCLIB), for inspirational code fragments, thanks.
17
18 P.J. Plauger (author of "The Standard C Library"), for a book without which I
19 would not have been able to create PDCLib at this quality, thanks.
20
21 Paul Bourke (author of mathlib), for allowing me access to a complete math
22 library under public domain terms so I could use it as a reference, thanks.
23
24 Peter ("Candy") Bindels (netizen of osdev.org), who located a copy of Cody
25 & Waite's "Software Manual for the Elementary Functions" for me and saved me
26 serious cash in the process, thanks.
27
28 Michael Moody, who contributed the generic implementation for <stdarg.h> to
29 the Public Domain which can now be found in <_PDCLIB_config.h>, thanks.
30
31 Rod Pemberton, for pointing out several flaws in early versions of PDCLib and
32 giving other valuable hints, thanks.
33
34 Brian Damgaard, for a very friendly exchange over the fine details of the
35 Quicksort algorithm and its implementation in PDCLib, thanks.
36
37 Rink Springer, for very precise bug reports including patches, and a heads-up
38 on the capabilities of PDCLib when I most needed it, thanks.
39
40 Everyone involved in the first, "public" attempt at PDCLib, for bearing with me
41 when I restarted from scratch, thanks.
42
43 Everyone bearing with me during the "stdio block", a period of many years in
44 which PDCLib received not a single update because I was stuck and could not
45 find the time and energy to work it out.
46
47 Lennart Frid�n and Sammy Nordstr�m, who have been great pals even after I sunk
48 some other project that had eaten countless hours of work between the three of
49 us, thanks.
50
51 My wife, daughter, and son for sharing husband and daddy with this strange
52 machine, thanks.
53
54
55 Style
56 =====
57
58 I followed a set of guidelines in creating PDCLib. If you find some piece that
59 does not adhere to them, that's a bug worth reporting. I mean it. I am a bit
60 obsessive when it comes to coding style. ;-)
61
62 - All the stuff that is not part of the standard specification is "hidden" in
63   the _PDCLIB_* namespace - functions, variables, macros, files, directories.
64   This is to make it easier to distinguish between what the standard dictates
65   and what I added to make PDCLib work.
66
67 - Any internal includes (i.e. those not specified by the standard) have their
68   header guards defined in the *including* file, for a tiny bit of compile-time
69   performance.
70
71 - I always try to minimize the use of local variables. Wherever possible I used
72   parameters passed by-value directly, and deferred declaration of locals to the
73   innermost block of statements, in hopes that it might reduce memory footprint
74   when the library is compiled with a compiler that is not that great at
75   optimization.
76
77 - Every function, every static data item that could possibly be shared, got its
78   own implementation file. This means the library itself is probably larger than
79   strictly necessary, and might take a couple of clock cycles longer to link,
80   but it reduces size of object files and executables.
81
82 - Where possible, I tried to share functionality between similar functions (as
83   can be seen in the atoi() and strtol() function families). This means one or
84   two additional function calls, but again reduces memory footprint and eases
85   maintenance of the library.
86
87 - Function arguments are named exactly as in the standard document.
88
89 - The standard is taken quite literally in places. For example, the default
90   implementations of memcpy() really copies char-wise. This runs contrary to
91   earlier claims of performance, but is consistent with the *letter* of the
92   standard, and you will probably use your compiler builtins (through a platform
93   overlay) anyhow.
94
95 - Every file has an Id tag, so that it is on file for *every* code file.
96
97 - PDCLib code has no bias towards POSIX; indeed the absence of POSIX tidbits is
98   one of its hallmarks. However, PDCLib also has no bias *against* POSIX, and
99   when one platform abstraction is as good as another, I chose the POSIX one for
100   sheer familiarity. (This is mainly referring to naming and parameter lists of
101   OS "glue" functions.)
102
103 - Identifiers are tersely named, but not cryptically abbreviated, and should be
104   intuitive enough to allow easy understanding of PDCLib inner workings.
105
106 - I disagree with the notion that good code needs no comments. Code tells you
107   *how*, but not the *why*, and you have to figure out the *what* yourself. So
108   I added comments to every nontrivial piece of code explaining my motives and
109   hopefully keeping overly ambitious editors from repeating my mistakes. The
110   header files especially should be self-documenting to the point of being a
111   suitable replacement for any library reference book you might be using.
112