home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09961.iso / ftp / CVS.TAR / cvs-1.8.1 / HACKING < prev    next >
Text File  |  1996-07-30  |  4KB  |  103 lines

  1. How to write code for CVS
  2.  
  3. * Compiler options
  4.  
  5. If you are using GCC, you'll want to configure with -Wall, which can
  6. detect many programming errors.  This is not the default because it
  7. might cause spurious warnings, but at least on some machines, there
  8. should be no spurious warnings.  For example:
  9.  
  10.     $ CFLAGS="-g -Wall" ./configure
  11.  
  12. Configure is not very good at remembering this setting; it will get
  13. wiped out whenever you do a ./config.status --recheck, so you'll need
  14. to use:
  15.  
  16.     $ CFLAGS="-g -Wall" ./config.status --recheck
  17.  
  18. * Indentation style
  19.  
  20. CVS mostly uses a consistent indentation style which looks like this:
  21.  
  22. void
  23. foo (arg)
  24.     char *arg;
  25. {
  26.     if (arg != NULL)
  27.     {
  28.     bar (arg);
  29.     baz (arg);
  30.     }
  31. }
  32.  
  33. The file cvs-format.el contains settings for emacs and the NEWS file
  34. contains a set of options for the indent program which I haven't tried
  35. but which are correct as far as I know.  You will find some code which
  36. does not conform to this indentation style; the plan is to reindent it
  37. as those sections of the code are changed (one function at a time,
  38. perhaps).
  39.  
  40. In a submitted patch it is acceptable to refrain from changing the
  41. indentation of large blocks of code to minimize the size of the patch;
  42. the person checking in such a patch should reindent it.
  43.  
  44. * Portability
  45.  
  46. If it is in ANSI C and it is in SunOS4 (using /bin/cc), generally it
  47. is OK to use it without ifdefs (for example, assert() and void * as
  48. long as you add more casts to and from void * than ANSI requires.  But
  49. not function prototypes).  Such constructs are generally portable
  50. enough, including to NT, OS/2, VMS, etc.
  51.  
  52. * Run-time behaviors
  53.  
  54. Use assert() to check "can't happen" conditions internal to CVS.  We
  55. realize that there are functions in CVS which instead return NULL or
  56. some such value (thus confusing the meaning of such a returned value),
  57. but we want to fix that code.  Of course, bad input data, a corrupt
  58. repository, bad options, etc., should always print a real error
  59. message instead.
  60.  
  61. * Coding standards in general
  62.  
  63. Generally speaking the GNU coding standards are mostly used by CVS
  64. (but see the exceptions mentioned above, such as indentation style,
  65. and perhaps an exception or two we haven't mentioned).  This is the
  66. file standards.text at the GNU FTP sites.
  67.  
  68. * Submitting patches
  69.  
  70. Please include a ChangeLog entry (see the GNU coding standards for
  71. information on writing one) with patches.  Include a description of
  72. what the patch does (sometimes the ChangeLog entry and/or comments in
  73. the code are appropriate for this, but not always)--patches should not
  74. be checked in unless there is some reason for them, and the
  75. description may be helpful if there is a better way to solve the
  76. problem.  In addition to the ChangeLog entry, there should be a change
  77. to the NEWS file in the case of a new feature.
  78.  
  79. If you solve several unrelated problems, submit a separate
  80. patch for each one.  Patches should be tested before submission.  Use
  81. context diffs or unidiffs for patches.
  82.  
  83. Note that all submitted changes may be distributed under the terms of
  84. the GNU Public License, so if you don't like this, don't submit them.
  85. Submit changes to bug-cvs@prep.ai.mit.edu.
  86.  
  87. Generally speaking if you follow the guidelines in this file you can
  88. expect a yes or no answer about whether your patch is accepted.  But
  89. even in this case there is no guarantee because wading through a bunch
  90. of submissions can be time consuming, and noone has volunteered to
  91. offer any such guarantee.  If you don't receive an answer one way or
  92. another within a month, feel free to ask what the status is.  You can,
  93. if you wish, distribute your patch on mailing lists or newsgroups, if
  94. you want to make it available before it gets merged.
  95.  
  96. * What is the schedule for the next release?
  97.  
  98. There isn't one.  That is, upcoming releases are not announced (or
  99. even hinted at, really) until the feature freeze which is
  100. approximately 2 weeks before the final release (at this time test
  101. releases start appearing and are announced on info-cvs).  This is
  102. intentional, to avoid a last minute rush to get new features in.
  103.