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