]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/contributor/programming-work.itexi
Merge branch 'web-experimental' into lilypond/translation
[lilypond.git] / Documentation / contributor / programming-work.itexi
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @node Programming work
3 @chapter Programming work
4
5 @menu
6 * Overview of LilyPond architecture::
7 * LilyPond programming languages::
8 * Programming without compiling::
9 * Finding functions::
10 * Code style::
11 * Debugging LilyPond::
12 * Tracing object relationships::
13 * Adding or modifying features::
14 * Iterator tutorial::
15 * Engraver tutorial::
16 * Callback tutorial::
17 * LilyPond scoping::
18 * LilyPond miscellany::
19 @end menu
20
21 @node Overview of LilyPond architecture
22 @section Overview of LilyPond architecture
23
24 LilyPond processes the input file into graphical and musical output in a
25 number of stages.  This process, along with the types of routines that
26 accomplish the various stages of the process, is described in this section.  A
27 more complete description of the LilyPond architecture and internal program
28 execution is found in Erik Sandberg's
29 @uref{http://lilypond.org/web/images/thesis-erik-sandberg.pdf, master's
30 thesis}.
31
32 The first stage of LilyPond processing is @emph{parsing}.  In the parsing
33 process, music expressions in LilyPond input format are converted to music
34 expressions in Scheme format.  In Scheme format, a music expression is a list
35 in tree form, with nodes that indicate the relationships between various music
36 events.  The LilyPond parser is written in Bison.
37
38 The second stage of LilyPond processing is @emph{iterating}.  Iterating
39 assigns each music event to a context, which is the environment in which the
40 music will be finally engraved.  The context is responsible for all further
41 processing of the music.  It is during the iteration stage that contexts are
42 created as necessary to ensure that every note has a Voice type context (e.g.
43 Voice, TabVoice, DrumVoice, CueVoice, MensuralVoice, VaticanaVoice,
44 GregorianTranscriptionVoice), that the Voice type contexts exist in
45 appropriate Staff type contexts, and that parallel Staff type contexts exist
46 in StaffGroup type contexts.  In addition, during the iteration stage each
47 music event is assigned a moment, or a time in the music when the event
48 begins.
49
50 Each type of music event has an associated iterator.  Iterators are defined in
51 @file{*-iterator.cc}.  During iteration, an
52 event's iterator is called to deliver that music event to the appropriate
53 context(s).
54
55 The final stage of LilyPond processing is @emph{translation}.  During
56 translation, music events are prepared for graphical or midi output.  The
57 translation step is accomplished by the polymorphic base class Translator
58 through its two derived classes: Engraver (for graphical output) and
59 Performer (for midi output).
60
61 Translators are defined in C++ files named @file{*-engraver.cc}
62 and @file{*-performer.cc}.
63 Much of the work of translating is handled by Scheme functions,
64 which is one of the keys to LilyPond's exceptional flexibility.
65
66 @sourceimage{architecture-diagram,,,png}
67
68
69 @node LilyPond programming languages
70 @section LilyPond programming languages
71
72 Programming in LilyPond is done in a variety of programming languages.  Each
73 language is used for a specific purpose or purposes.  This section describes
74 the languages used and provides links to reference manuals and tutorials for
75 the relevant language.
76
77 @subsection C++
78
79 The core functionality of LilyPond is implemented in C++.
80
81 C++ is so ubiquitous that it is difficult to identify either a reference
82 manual or a tutorial.  Programmers unfamiliar with C++ will need to spend some
83 time to learn the language before attempting to modify the C++ code.
84
85 The C++ code calls Scheme/GUILE through the GUILE interface, which is
86 documented in the
87 @uref{http://www.gnu.org/software/guile/manual/html_node/index.html, GUILE
88   Reference Manual}.
89
90 @subsection Flex
91
92 The LilyPond lexer is implemented in Flex, an implementation of the Unix lex
93 lexical analyser generator.  Resources for Flex can be found
94 @uref{http://flex.sourceforge.net/, here}.
95
96 @subsection GNU Bison
97
98 The LilyPond parser is implemented in Bison, a GNU parser generator.  The
99 Bison homepage is found at @uref{http://www.gnu.org/software/bison/,
100 gnu.org}.  The manual (which includes both a reference and tutorial) is
101 @uref{http://www.gnu.org/software/bison/manual/index.html, available} in a
102 variety of formats.
103
104 @subsection GNU Make
105
106 GNU Make is used to control the compiling process and to build the
107 documentation and the website.  GNU Make documentation is available at
108 @uref{http://www.gnu.org/software/make/manual/, the GNU website}.
109
110 @subsection GUILE or Scheme
111
112 GUILE is the dialect of Scheme that is used as LilyPond's extension language.
113 Many extensions to LilyPond are written entirely in GUILE.  The
114 @uref{http://www.gnu.org/software/guile/manual/html_node/index.html,
115 GUILE Reference Manual} is available online.
116
117 @uref{http://mitpress.mit.edu/sicp/full-text/book/book.html, Structure and
118 Interpretation of Computer Programs}, a popular textbook used to teach
119 programming in Scheme is available in its entirety online.
120
121 An introduction to Guile/Scheme as used in LilyPond can be found in the
122 @rextend{Scheme tutorial}.
123
124 @subsection MetaFont
125
126 MetaFont is used to create the music fonts used by LilyPond.  A MetaFont
127 tutorial is available at @uref{http://metafont.tutorial.free.fr/, the
128 METAFONT tutorial page}.
129
130 @subsection PostScript
131
132 PostScript is used to generate graphical output.  A brief PostScript tutorial
133 is @uref{http://local.wasp.uwa.edu.au/~pbourke/dataformats/postscript/,
134 available online}.  The
135 @uref{http://www.adobe.com/devnet/postscript/pdfs/PLRM.pdf, PostScript Language
136 Reference} is available online in PDF format.
137
138 @subsection Python
139
140 Python is used for XML2ly and is used for building the documentation and the
141 website.
142
143 Python documentation is available at @uref{http://www.python.org/doc/,
144 python.org}.
145
146 @node Programming without compiling
147 @section Programming without compiling
148
149 Much of the development work in LilyPond takes place by changing @file{*.ly} or
150 @file{*.scm} files.  These changes can be made without compiling LilyPond.  Such
151 changes are described in this section.
152
153
154 @subsection Modifying distribution files
155
156 Much of LilyPond is written in Scheme or LilyPond input files.  These
157 files are interpreted when the program is run, rather than being compiled
158 when the program is built, and are present in all LilyPond distributions.
159 You will find @file{.ly} files in the @file{ly/} directory and the Scheme files in the
160 @file{scm/} directory.  Both Scheme files and @file{.ly} files can be modified and
161 saved with any text editor.  It's probably wise to make a backup copy of
162 your files before you modify them, although you can reinstall if the
163 files become corrupted.
164
165 Once you've modified the files, you can test the changes just by running
166 LilyPond on some input file.  It's a good idea to create a file that
167 demonstrates the feature you're trying to add.  This file will eventually
168 become a regression test and will be part of the LilyPond distribution.
169
170 @subsection Desired file formatting
171
172 Files that are part of the LilyPond distribution have Unix-style line
173 endings (LF), rather than DOS (CR+LF) or MacOS 9 and earlier (CR).  Make
174 sure you use the necessary tools to ensure that Unix-style line endings are
175 preserved in the patches you create.
176
177 Tab characters should not be included in files for distribution.  All
178 indentation should be done with spaces.  Most editors have settings to
179 allow the setting of tab stops and ensuring that no tab characters are
180 included in the file.
181
182 Scheme files and LilyPond files should be written according to standard
183 style guidelines.  Scheme file guidelines can be found at
184 @uref{http://community.schemewiki.org/?scheme-style}.  Following these
185 guidelines will make your code easier to read.  Both you and others that
186 work on your code will be glad you followed these guidelines.
187
188 For LilyPond files, you should follow the guidelines for LilyPond snippets
189 in the documentation.  You can find these guidelines at
190 @ref{Texinfo introduction and usage policy}.
191
192 @node Finding functions
193 @section Finding functions
194
195 When making changes or fixing bugs in LilyPond, one of the initial
196 challenges is finding out where in the code tree the functions to
197 be modified live.  With nearly 3000 files in the source tree,
198 trial-and-error searching is generally ineffective.  This section
199 describes a process for finding interesting code.
200
201 @subsection Using the ROADMAP
202
203 The file ROADMAP is located in the main directory of the lilypond source.
204 ROADMAP lists all of the directories in the LilyPond source tree, along
205 with a brief description of the kind of files found in each directory.
206 This can be a very helpful tool for deciding which directories to search
207 when looking for a function.
208
209
210 @subsection Using grep to search
211
212 Having identified a likely subdirectory to search, the grep utility can
213 be used to search for a function name.  The format of the grep command is
214
215 @example
216 grep -i functionName subdirectory/*
217 @end example
218
219 This command will search all the contents of the directory subdirectory/
220 and display every line in any of the files that contains
221 functionName.  The @code{-i} option makes @command{grep} ignore
222 case -- this can be very useful if you are not yet familiar with
223 our capitalization conventions.
224
225 The most likely directories to grep for function names are @file{scm/} for
226 scheme files, ly/ for lilypond input (@file{*.ly}) files, and @file{lily/} for C++
227 files.
228
229
230 @subsection Using git grep to search
231
232 If you have used git to obtain the source, you have access to a
233 powerful tool to search for functions.  The command:
234
235 @example
236 git grep functionName
237 @end example
238
239 will search through all of the files that are present in the git
240 repository looking for functionName.  It also presents the results
241 of the search using @code{less}, so the results are displayed one page
242 at a time.
243
244 @subsection Searching on the git repository at Savannah
245
246 You can also use the equivalent of git grep on the Savannah server.
247
248 @itemize
249
250 @item
251 Go to http://git.sv.gnu.org/gitweb/?p=lilypond.git
252
253 @item
254 In the pulldown box that says commit, select grep.
255
256 @item
257 Type functionName in the search box, and hit enter/return
258
259 @end itemize
260
261 This will initiate a search of the remote git repository.
262
263
264 @node Code style
265 @section Code style
266
267 This section describes style guidelines for LilyPond
268 source code.
269
270 @menu
271 * Languages::
272 * Filenames::
273 * Indentation::
274 * Naming conventions::
275 * Broken code::
276 * Code comments::
277 * Handling errors::
278 * Localization::
279 @end menu
280
281
282 @node Languages
283 @subsection Languages
284
285 C++ and Python are preferred.  Python code should use PEP 8.
286
287
288 @node Filenames
289 @subsection Filenames
290
291 Definitions of classes that are only accessed via pointers (*) or
292 references (&) shall not be included as include files.
293
294 @verbatim
295    filenames
296
297         ".hh"   Include files
298              ".cc"      Implementation files
299              ".icc"     Inline definition files
300              ".tcc"     non inline Template defs
301
302    in emacs:
303
304              (setq auto-mode-alist
305                    (append '(("\\.make$" . makefile-mode)
306                         ("\\.cc$" . c++-mode)
307                         ("\\.icc$" . c++-mode)
308                         ("\\.tcc$" . c++-mode)
309                         ("\\.hh$" . c++-mode)
310                         ("\\.pod$" . text-mode)
311                         )
312                       auto-mode-alist))
313 @end verbatim
314
315 The class Class_name is coded in @q{class-name.*}
316
317
318 @node Indentation
319 @subsection Indentation
320
321 Standard GNU coding style is used.  In emacs:
322
323 @verbatim
324              (add-hook 'c++-mode-hook
325                   '(lambda() (c-set-style "gnu")
326                      ))
327 @end verbatim
328
329 If you like using font-lock, you can also add this to your
330 @q{.emacs}:
331
332 @verbatim
333              (setq font-lock-maximum-decoration t)
334              (setq c++-font-lock-keywords-3
335                    (append
336                     c++-font-lock-keywords-3
337                     '(("\\b\\(a-zA-Z_?+_\\)\\b" 1 font-lock-variable-name-face) ("\\b\\(A-Z?+a-z_?+\\)\\b" 1 font-lock-type-face))
338                     ))
339 @end verbatim
340
341 Some source files may not currently have proper indenting.  If this
342 is the case, it is desirable to fix the improper indenting when the
343 file is modified, with the hope of continually improving the code.
344
345
346 @subheading Indenting files with fixcc.py
347
348 LilyPond provides a python script that will correct the indentation
349 on a c++ file:
350
351 @example
352 scripts/auxiliar/fixcc.py lily/my-test-file.cc
353 @end example
354
355 Be sure you replace @file{my-test-file.cc} with the name of the file
356 that you edited.
357
358 If you are editing a file that contains an ADD_TRANSLATOR or ADD_INTERFACE
359 macro, the fixcc.py script will move the final parenthesis up one line
360 from where it should be.  Please check the end of the file before
361 you run fixcc.py, and then put the final parenthesis and semicolon
362 back on a line by themselves.
363
364
365 @subheading Indenting files with emacs in script mode
366
367 @c email to wl@gnu.org when I get here.
368
369 @warning{this is pending some confirmation on -devel.  July 2009 -gp}
370
371 Command-line script to format stuff with emacs:
372
373 @example
374 #!/bin/sh
375 emacs $1 -batch --eval '(indent-region (point-min) (point-max) nil)' -f save-buffer
376 @end example
377
378 (that's all on one line)
379
380 Save it as a shell script, then run on the file(s) you modified.
381
382
383 @subheading Indenting with vim
384
385 Although emacs indentation is the LilyPond standard, acceptable
386 indentation can usually be accomplished with vim.  Some hints for
387 vim are as follows:
388
389 A workable .vimrc:
390
391 @verbatim
392 set cindent
393 set smartindent
394 set autoindent
395 set expandtab
396 set softtabstop=2
397 set shiftwidth=2
398 filetype plugin indent on
399 set incsearch
400 set ignorecase smartcase
401 set hlsearch
402 set confirm
403 set statusline=%F%m%r%h%w\ %{&ff}\ %Y\ [ASCII=\%03.3b]\ [HEX=\%02.2B]\ %04l,%04v\ %p%%\ [LEN=%L]
404 set laststatus=2
405 set number
406 " Remove trailing whitespace on write
407 autocmd BufWritePre * :%s/\s\+$//e
408 @end verbatim
409
410 With this .vimrc, files can be reindented automatically by highlighting
411 the lines to be indented in visual mode (use V to enter visual mode)
412 and pressing =.
413
414 A scheme.vim file will help improve the indentation.  This one
415 was suggested by Patrick McCarty.  It should be saved in
416 ~/.vim/after/syntax/scheme.vim.
417
418 @verbatim
419 " Additional Guile-specific 'forms'
420 syn keyword schemeSyntax define-public define*-public
421 syn keyword schemeSyntax define* lambda* let-keywords*
422 syn keyword schemeSyntax defmacro defmacro* define-macro
423 syn keyword schemeSyntax defmacro-public defmacro*-public
424 syn keyword schemeSyntax use-modules define-module
425 syn keyword schemeSyntax define-method define-class
426
427 " Additional LilyPond-specific 'forms'
428 syn keyword schemeSyntax define-markup-command define-markup-list-command
429 syn keyword schemeSyntax define-safe-public define-music-function
430 syn keyword schemeSyntax def-grace-function
431
432 " All of the above should influence indenting too
433 set lw+=define-public,define*-public
434 set lw+=define*,lambda*,let-keywords*
435 set lw+=defmacro,defmacro*,define-macro
436 set lw+=defmacro-public,defmacro*-public
437 set lw+=use-modules,define-module
438 set lw+=define-method,define-class
439 set lw+=define-markup-command,define-markup-list-command
440 set lw+=define-safe-public,define-music-function
441 set lw+=def-grace-function
442
443 " These forms should not influence indenting
444 set lw-=if
445 set lw-=set!
446
447 " Try to highlight all ly: procedures
448 syn match schemeFunc "ly:[^) ]\+"
449 @end verbatim
450
451
452 @node Naming conventions
453 @subsection Naming Conventions
454
455 Naming conventions have been established for LilyPond
456 source code.
457
458 @subheading Classes and Types
459
460 Classes begin with an uppercase letter, and words
461 in class names are separated with @code{_}:
462
463 @verbatim
464 This_is_a_class
465 @end verbatim
466
467 @subheading Members
468
469 Member variable names end with an underscore:
470
471 @verbatim
472 Type Class::member_
473 @end verbatim
474
475 @subheading Macros
476
477 Macro names should be written in uppercase completely,
478 with words separated by @code{_}:
479
480 @verbatim
481 THIS_IS_A_MACRO
482 @end verbatim
483
484 @subheading Variables
485
486 Variable names should be complete words, rather than abbreviations.
487 For example, it is preferred to use @code{thickness} rather than
488 @code{th} or @code{t}.
489
490 Multi-word variable names in C++ should have the words separated
491 by the underscore character (@q{_}):
492
493 @verbatim
494 cxx_multiword_variable
495 @end verbatim
496
497 Multi-word variable names in Scheme should have the words separated
498 by a hyphen (@q{-}):
499
500 @verbatim
501 scheme-multiword-variable
502 @end verbatim
503
504 @node Broken code
505 @subsection Broken code
506
507 Do not write broken code.  This includes hardwired dependencies,
508 hardwired constants, slow algorithms and obvious limitations.  If
509 you can not avoid it, mark the place clearly, and add a comment
510 explaining shortcomings of the code.
511
512 Ideally, the comment marking the shortcoming would include
513 TODO, so that it is marked for future fixing.
514
515 We reject broken-in-advance on principle.
516
517
518 @node Code comments
519 @subsection Code comments
520
521 Comments may not be needed if descriptive variable names are used
522 in the code and the logic is straightforward.  However, if the
523 logic is difficult to follow, and particularly if non-obvious
524 code has been included to resolve a bug, a comment describing
525 the logic and/or the need for the non-obvious code should be included.
526
527 There are instances where the current code could be commented better.
528 If significant time is required to understand the code as part of
529 preparing a patch, it would be wise to add comments reflecting your
530 understanding to make future work easier.
531
532
533 @node Handling errors
534 @subsection Handling errors
535
536 As a general rule, you should always try to continue computations,
537 even if there is some kind of error.  When the program stops, it
538 is often very hard for a user to pinpoint what part of the input
539 causes an error.  Finding the culprit is much easier if there is
540 some viewable output.
541
542 So functions and methods do not return errorcodes, they never
543 crash, but report a programming_error and try to carry on.
544
545 Error and warning messages need to be localized.
546
547
548 @node Localization
549 @subsection Localization
550
551 This document provides some guidelines to help programmers write
552 proper user
553 messages.  To help translations, user messages must follow
554 uniform conventions.  Follow these rules when coding for LilyPond.
555 Hopefully, this can be replaced by general GNU guidelines in the
556 future.  Even better would be to have an English (en_BR, en_AM)
557 guide helping programmers writing consistent messages for all GNU
558 programs.
559
560 Non-preferred messages are marked with `+'.  By convention,
561 ungrammatical examples are marked with `*'.  However, such ungrammatical
562 examples may still be preferred.
563
564 @itemize
565
566 @item
567 Every message to the user should be localized (and thus be marked
568 for localization).  This includes warning and error messages.
569
570 @item
571 Do not localize/gettextify:
572
573 @itemize
574 @item
575 `programming_error ()'s
576
577 @item
578 `programming_warning ()'s
579
580 @item
581 debug strings
582
583 @item
584 output strings (PostScript, TeX, etc.)
585
586 @end itemize
587
588 @item
589 Messages to be localized must be encapsulated in `_ (STRING)' or
590 `_f (FORMAT, ...)'. E.g.:
591
592 @example
593 warning (_ ("need music in a score"));
594 error (_f ("cannot open file: `%s'", file_name));
595 @end example
596
597 In some rare cases you may need to call `gettext ()' by hand.  This
598 happens when you pre-define (a list of) string constants for later
599 use.  In that case, you'll probably also need to mark these string
600 constants for translation, using `_i (STRING)'.  The `_i' macro is
601 a no-op, it only serves as a marker for `xgettext'.
602
603 @example
604 char const* messages[] = @{
605   _i ("enable debugging output"),
606   _i ("ignore lilypond version"),
607   0
608 @};
609
610 void
611 foo (int i)
612 @{
613   puts (gettext (messages i));
614 @}
615 @end example
616
617 See also @file{flower/getopt-long.cc} and @file{lily/main.cc}.
618
619 @item
620 Do not use leading or trailing whitespace in messages.  If you need
621 whitespace to be printed, prepend or append it to the translated
622 message
623
624 @example
625 message ("Calculating line breaks..." + " ");
626 @end example
627
628 @item
629 Error or warning messages displayed with a file name and line
630 number never start with a capital, eg,
631
632 @example
633 foo.ly: 12: not a duration: 3
634 @end example
635
636 Messages containing a final verb, or a gerund (`-ing'-form) always
637 start with a capital.  Other (simpler) messages start with a
638 lowercase letter
639
640 @example
641 Processing foo.ly...
642 `foo': not declared.
643 Not declaring: `foo'.
644 @end example
645
646 @item
647 Avoid abbreviations or short forms, use `cannot' and `do not'
648 rather than `can't' or `don't'
649 To avoid having a number of different messages for the same
650 situation, well will use quoting like this `"message: `%s'"' for all
651 strings.  Numbers are not quoted:
652
653 @example
654 _f ("cannot open file: `%s'", name_str)
655 _f ("cannot find character number: %d", i)
656 @end example
657
658 @item
659 Think about translation issues.  In a lot of cases, it is better to
660 translate a whole message.  English grammar must not be imposed on the
661 translator.  So, instead of
662
663 @example
664 stem at  + moment.str () +  does not fit in beam
665 @end example
666
667 have
668
669 @example
670 _f ("stem at %s does not fit in beam", moment.str ())
671 @end example
672
673 @item
674 Split up multi-sentence messages, whenever possible.  Instead of
675
676 @example
677 warning (_f ("out of tune!  Can't find: `%s'", "Key_engraver"));
678 warning (_f ("cannot find font `%s', loading default", font_name));
679 @end example
680
681 rather say:
682
683 @example
684 warning (_ ("out of tune:"));
685 warning (_f ("cannot find: `%s', "Key_engraver"));
686 warning (_f ("cannot find font: `%s', font_name));
687 warning (_f ("Loading default font"));
688 @end example
689
690 @item
691 If you must have multiple-sentence messages, use full punctuation.
692 Use two spaces after end of sentence punctuation.  No punctuation
693 (esp. period) is used at the end of simple messages.
694
695 @example
696 _f ("Non-matching braces in text `%s', adding braces", text)
697 _ ("Debug output disabled.  Compiled with NPRINT.")
698 _f ("Huh?  Not a Request: `%s'.  Ignoring.", request)
699 @end example
700
701 @item
702 Do not modularize too much; words frequently cannot be translated
703 without context.  It is probably safe to treat most occurrences of
704 words like stem, beam, crescendo as separately translatable words.
705
706 @item
707 When translating, it is preferable to put interesting information
708 at the end of the message, rather than embedded in the middle.
709 This especially applies to frequently used messages, even if this
710 would mean sacrificing a bit of eloquency.  This holds for original
711 messages too, of course.
712
713 @example
714 en: cannot open: `foo.ly'
715 +   nl: kan `foo.ly' niet openen (1)
716 kan niet openen: `foo.ly'*   (2)
717 niet te openen: `foo.ly'*    (3)
718 @end example
719
720
721 The first nl message, although grammatically and stylistically
722 correct, is not friendly for parsing by humans (even if they speak
723 dutch).  I guess we would prefer something like (2) or (3).
724
725 @item
726 Do not run make po/po-update with GNU gettext < 0.10.35
727
728 @end itemize
729
730
731
732 @node Debugging LilyPond
733 @section Debugging LilyPond
734
735 The most commonly used tool for debugging LilyPond is the GNU
736 debugger gdb.  The gdb tool is used for investigating and debugging
737 core Lilypond code written in C++.  Another tool is available for
738 debugging Scheme code using the Guile debugger.  This section
739 describes how to use both gdb and the Guile Debugger.
740
741 @menu
742 * Debugging overview::
743 * Debugging C++ code::
744 * Debugging Scheme code::
745 @end menu
746
747 @node Debugging overview
748 @subsection Debugging overview
749
750 Using a debugger simplifies troubleshooting in at least two ways.
751
752 First, breakpoints can be set to pause execution at any desired point.
753 Then, when execution has paused, debugger commands can be issued to
754 explore the values of various variables or to execute functions.
755
756 Second, the debugger can display a stack trace, which shows the
757 sequence in which functions have been called and the arguments
758 passed to the called functions.
759
760 @node Debugging C++ code
761 @subsection Debugging C++ code
762
763 The GNU debugger, gdb, is the principal tool for debugging C++ code.
764
765 @subheading Compiling LilyPond for use with gdb
766
767 In order to use gdb with LilyPond, it is necessary to compile
768 LilyPond with debugging information.  This is accomplished by running
769 the following commands in the main LilyPond source directory.
770
771 @example
772 ./configure  --disable-optimising
773 make
774 @end example
775
776 This will create a version of LilyPond containing debugging
777 information that will allow the debugger to tie the source code
778 to the compiled code.
779
780 You should not do @var{make install} if you want to use a debugger
781 with LilyPond.  The @var{make install} command will strip debugging
782 information from the LilyPond binary.
783
784 @subheading Typical gdb usage
785
786 Once you have compiled the Lilypond image with the necessary
787 debugging information it will have been written to a location in a
788 subfolder of your current working directory:
789
790 @example
791 out/bin/lilypond
792 @end example
793
794 This is important as you will need to let gdb know where to find the
795 image containing the symbol tables.  You can invoke gdb from the
796 command line using the following:
797
798 @example
799 gdb out/bin/lilypond
800 @end example
801 @noindent
802 This loads the LilyPond symbol tables into gdb.  Then, to run
803 LilyPond on @file{test.ly} under the debugger, enter the following:
804
805 @example
806 run test.ly
807 @end example
808
809 @noindent
810 at the gdb prompt.
811
812 As an alternative to running gdb at the command line you may try
813 a graphical interface to gdb such as ddd:
814
815 @example
816 ddd out/bin/lilypond
817 @end example
818
819 You can also use sets of standard gdb commands stored in a .gdbinit
820 file (see next section).
821
822 @subheading Typical .gdbinit files
823
824 The behavior of gdb can be readily customized through the use of a
825 @var{.gdbinit} file.  A @var{.gdbinit} file is a file named
826 @var{.gdbinit} (notice the @qq{.} at the beginning of the file name)
827 that is placed in a user's home directory.
828
829 The @var{.gdbinit} file below is from Han-Wen.  It sets breakpoints
830 for all errors and defines functions for displaying scheme objects
831 (ps), grobs (pgrob), and parsed music expressions (pmusic).
832
833 @example
834 file lily/out/lilypond
835 b programming_error
836 b Grob::programming_error
837
838 define ps
839    print ly_display_scm($arg0)
840 end
841 define pgrob
842   print ly_display_scm($arg0->self_scm_)
843   print ly_display_scm($arg0->mutable_property_alist_)
844   print ly_display_scm($arg0->immutable_property_alist_)
845   print ly_display_scm($arg0->object_alist_)
846 end
847 define pmusic
848   print ly_display_scm($arg0->self_scm_)
849   print ly_display_scm($arg0->mutable_property_alist_)
850   print ly_display_scm($arg0->immutable_property_alist_)
851 end
852 @end example
853
854 @node Debugging Scheme code
855 @subsection Debugging Scheme code
856
857 Scheme code can be developed using the Guile command line
858 interpreter @code{top-repl}.  You can either investigate
859 interactively using just Guile or you can use the debugging
860 tools available within Guile.
861
862 @subheading Using Guile interactively with LilyPond
863
864 In order to experiment with Scheme programming in the LilyPond
865 environment, it is necessary to have a Guile interpreter that
866 has all the LilyPond modules loaded.  This requires the following
867 steps.
868
869 First, define a Scheme symbol for the active module in the @file{.ly} file:
870
871 @example
872 #(module-define! (resolve-module '(guile-user))
873                  'lilypond-module (current-module))
874 @end example
875
876 Now place a Scheme function in the @file{.ly} file that gives an
877 interactive Guile prompt:
878
879 @example
880 #(top-repl)
881 @end example
882
883 When the @file{.ly} file is compiled, this causes the compilation to be
884 interrupted and an interactive guile prompt to appear.  Once the
885 guile prompt appears, the LilyPond active module must be set as the
886 current guile module:
887
888 @example
889 guile> (set-current-module lilypond-module)
890 @end example
891
892 You can demonstrate these commands are operating properly by typing the name
893 of a LilyPond public scheme function to check it has been defined:
894
895 @example
896 guile> fret-diagram-verbose-markup
897 #<procedure fret-diagram-verbose-markup (layout props marking-list)>
898 @end example
899
900 If the LilyPond module has not been correctly loaded, an error
901 message will be generated:
902
903 @example
904 guile> fret-diagram-verbose-markup
905 ERROR: Unbound variable: fret-diagram-verbose-markup
906 ABORT: (unbound-variable)
907 @end example
908
909 Once the module is properly loaded, any valid LilyPond Scheme
910 expression can be entered at the interactive prompt.
911
912 After the investigation is complete, the interactive guile
913 interpreter can be exited:
914
915 @example
916 guile> (quit)
917 @end example
918
919 The compilation of the @file{.ly} file will then continue.
920
921 @subheading Using the Guile debugger
922
923 To set breakpoints and/or enable tracing in Scheme functions, put
924
925 @example
926 \include "guile-debugger.ly"
927 @end example
928
929 in your input file after any scheme procedures you have defined in
930 that file.  This will invoke the Guile command-line after having set
931 up the environment for the debug command-line.  When your input file
932 is processed, a guile prompt will be displayed.  You may now enter
933 commands to set up breakpoints and enable tracing by the Guile debugger.
934
935 @subheading Using breakpoints
936
937 At the guile prompt, you can set breakpoints with
938 the @code{set-break!} procedure:
939
940 @example
941 guile> (set-break! my-scheme-procedure)
942 @end example
943
944 Once you have set the desired breakpoints, you exit the guile repl frame
945 by typing:
946
947 @example
948 guile> (quit)
949 @end example
950
951 Then, when one of the scheme routines for which you have set
952 breakpoints is entered, guile will interrupt execution in a debug
953 frame.  At this point you will have access to Guile debugging
954 commands.  For a listing of these commands, type:
955
956 @example
957 debug> help
958 @end example
959
960 Alternatively you may code the breakpoints in your Lilypond source
961 file using a command such as:
962
963 @example
964 #(set-break! my-scheme-procedure)
965 @end example
966
967 immediately after the @code{\include} statement.  In this case the
968 breakpoint will be set straight after you enter the @code{(quit)}
969 command at the guile prompt.
970
971 Embedding breakpoint commands like this is particularly useful if
972 you want to look at how the Scheme procedures in the @file{.scm}
973 files supplied with LilyPond work.  To do this, edit the file in
974 the relevant directory to add this line near the top:
975
976 @example
977 (use-modules (scm guile-debugger))
978 @end example
979
980 Now you can set a breakpoint after the procedure you are interested
981 in has been declared.  For example, if you are working on routines
982 called by @var{print-book-with} in @file{lily-library.scm}:
983
984 @example
985 (define (print-book-with parser book process-procedure)
986   (let* ((paper (ly:parser-lookup parser '$defaultpaper))
987          (layout (ly:parser-lookup parser '$defaultlayout))
988          (outfile-name (get-outfile-name parser)))
989     (process-procedure book paper layout outfile-name)))
990
991 (define-public (print-book-with-defaults parser book)
992   (print-book-with parser book ly:book-process))
993
994 (define-public (print-book-with-defaults-as-systems parser book)
995   (print-book-with parser book ly:book-process-to-systems))
996
997 @end example
998
999 At this point in the code you could add this to set a breakpoint at
1000 print-book-with:
1001
1002 @example
1003 (set-break! print-book-with)
1004 @end example
1005
1006 @subheading Tracing procedure calls and evaluator steps
1007
1008 Two forms of trace are available:
1009
1010 @example
1011 (set-trace-call! my-scheme-procedure)
1012 @end example
1013
1014 and
1015
1016 @example
1017 (set-trace-subtree! my-scheme-procedure)
1018 @end example
1019
1020 @code{set-trace-call!} causes Scheme to log a line to the standard
1021 output to show when the procedure is called and when it exits.
1022
1023 @code{set-trace-subtree!} traces every step the Scheme evaluator
1024 performs in evaluating the procedure.
1025
1026 @node Tracing object relationships
1027 @section Tracing object relationships
1028
1029 Understanding the LilyPond source often boils down to figuring out what
1030 is happening to the Grobs.  Where (and why) are they being created,
1031 modified and destroyed? Tracing Lily through a debugger in order to
1032 identify these relationships can be time-consuming and tedious.
1033
1034 In order to simplify this process, a facility has been added to
1035 display the grobs that are created and the properties that are set
1036 and modified.  Although it can be complex to get set up, once set up
1037 it easily provides detailed information about the life of grobs
1038 in the form of a network graph.
1039
1040 Each of the steps necessary to use the graphviz utility
1041 is described below.
1042
1043 @enumerate
1044
1045 @item Installing graphviz
1046
1047 In order to create the graph of the object relationships, it is
1048 first necessary to install Graphviz.  graphviz is available for a
1049 number of different platforms:
1050
1051 @example
1052 @uref{http://www.graphviz.org/Download..php}
1053 @end example
1054
1055 @item Modifying config.make
1056
1057 In order for the Graphviz tool to work, config.make must be modified.
1058 It is probably a good idea to first save a copy of config.make under
1059 a different name.  Then, edit config.make by removing every occurrence
1060 of @code{-DNDEBUG}.
1061
1062 @item Rebuilding LilyPond
1063
1064 The executable code of LilyPond must be rebuilt from scratch:
1065
1066 @example
1067 make -C lily clean && make -C lily
1068 @end example
1069
1070 @item Create a graphviz-compatible @file{.ly} file
1071
1072 In order to use the graphviz utility, the @file{.ly} file must include
1073 @file{ly/graphviz-init.ly}, and should then specify the
1074 grobs and symbols that should be tracked.  An example of this
1075 is found in @file{input/regression/graphviz.ly}.
1076
1077 @item Run lilypond with output sent to a log file
1078
1079 The Graphviz data is sent to stderr by lilypond, so it is
1080 necessary to redirect stderr to a logfile:
1081
1082 @example
1083 lilypond graphviz.ly 2> graphviz.log
1084 @end example
1085
1086 @item Edit the logfile
1087
1088 The logfile has standard lilypond output, as well as the Graphviz
1089 output data.  Delete everything from the beginning of the file
1090 up to but not including the first occurrence of @code{digraph}.
1091
1092 Also, delete the final liypond message about successs from the end
1093 of the file.
1094
1095 @item Process the logfile with @code{dot}
1096
1097 The directed graph is created from the log file with the program
1098 @code{dot}:
1099
1100 @example
1101 dot -Tpdf graphviz.log > graphviz.pdf
1102 @end example
1103
1104 @end enumerate
1105
1106 The pdf file can then be viewed with any pdf viewer.
1107
1108 When compiled without @code{-DNDEBUG}, lilypond may run slower
1109 than normal.  The original configuration can be restored by either
1110 renaming the saved copy of @code{config.make} or rerunning
1111 @code{configure}.  Then rebuild lilypond with
1112
1113 @example
1114 make -C lily clean && make -C lily
1115 @end example
1116
1117
1118 @node Adding or modifying features
1119 @section Adding or modifying features
1120
1121 When a new feature is to be added to LilyPond, it is necessary to
1122 ensure that the feature is properly integrated to maintain
1123 its long-term support.  This section describes the steps necessary
1124 for feature addition and modification.
1125
1126
1127 @menu
1128 * Write the code::
1129 * Write regression tests::
1130 * Write convert-ly rule::
1131 * Automatically update documentation::
1132 * Manually update documentation::
1133 * Edit changes.tely::
1134 * Verify successful build::
1135 * Verify regression tests::
1136 * Post patch for comments::
1137 * Push patch::
1138 * Closing the issues::
1139 @end menu
1140
1141 @node Write the code
1142 @subsection Write the code
1143
1144 You should probably create a new git branch for writing the code, as that
1145 will separate it from the master branch and allow you to continue
1146 to work on small projects related to master.
1147
1148 Please be sure to follow the rules for programming style discussed
1149 earlier in this chapter.
1150
1151
1152 @node Write regression tests
1153 @subsection Write regression tests
1154
1155 In order to demonstrate that the code works properly, you will
1156 need to write one or more regression tests.  These tests are
1157 typically @file{.ly} files that are found in @file{input/regression}.
1158
1159 Regression tests should be as brief as possible to demonstrate the
1160 functionality of the code.
1161
1162 Regression tests should generally cover one issue per test.  Several
1163 short, single-issue regression tests are preferred to a single, long,
1164 multiple-issue regression test.
1165
1166 Use existing regression tests as templates to demonstrate the type of
1167 header information that should be included in a regression test.
1168
1169
1170 @node Write convert-ly rule
1171 @subsection Write convert-ly rule
1172
1173 If the modification changes the input syntax, a convert-ly rule
1174 should be written to automatically update input files from older
1175 versions.
1176
1177 convert-ly rules are found in python/convertrules.py
1178
1179 If possible, the convert-ly rule should allow automatic updating
1180 of the file.  In some cases, this will not be possible, so the
1181 rule will simply point out to the user that the feature needs
1182 manual correction.
1183
1184 @subsubheading Updating version numbers
1185
1186 If a development release occurs between you writing your patch and
1187 having it approved+pushed, you will need to update the version
1188 numbers in your tree.  This can be done with:
1189
1190 @example
1191 scripts/auxiliar/update-patch-version old.version.number new.version.number
1192 @end example
1193
1194 It will change all files in git, so use with caution and examine
1195 the resulting diff.
1196
1197
1198 @node Automatically update documentation
1199 @subsection Automatically update documentation
1200
1201 @command{convert-ly} should be used to update the documentation,
1202 the snippets, and the regression tests.  This not only makes the
1203 necessary syntax changes, it also tests the @command{convert-ly}
1204 rules.
1205
1206 The automatic updating is performed by moving to the top-level
1207 source directory, then running:
1208
1209 @example
1210 scripts/auxiliar/update-with-convert-ly.sh
1211 @end example
1212
1213 If you did an out-of-tree build, pass in the relative path:
1214
1215 @example
1216 BUILD_DIR=../build-lilypond/ scripts/auxiliar/update-with-convert-ly.sh
1217 @end example
1218
1219
1220 @node Manually update documentation
1221 @subsection Manually update documentation
1222
1223 Where the convert-ly rule is not able to automatically update the inline
1224 lilypond code in the documentation (i.e. if a NOT_SMART rule is used), the
1225 documentation must be manually updated.  The inline snippets that require
1226 changing must be changed in the English version of the docs and all
1227 translated versions.  If the inline code is not changed in the
1228 translated documentation, the old snippets will show up in the
1229 English version of the documentation.
1230
1231 Where the convert-ly rule is not able to automatically update snippets
1232 in Documentation/snippets/, those snippets must be manually updated.
1233 Those snippets should be copied to Documentation/snippets/new.  The
1234 comments at the top of the snippet describing its automatic generation
1235 should be removed.  All translated texidoc strings should be removed.
1236 The comment @qq{% begin verbatim} should be removed.  The syntax of
1237 the snippet should then be manually edited.
1238
1239 Where snippets in Documentation/snippets are made obsolete, the snippet
1240 should be copied to Documentation/snippets/new.  The comments and
1241 texidoc strings should be removed as described above.  Then the body
1242 of the snippet should be changed to:
1243
1244 @example
1245 \markup @{
1246   This snippet is deprecated as of version X.Y.Z and
1247   will be removed from the documentation.
1248 @}
1249 @end example
1250
1251 @noindent
1252 where X.Y.Z is the version number for which the convert-ly rule was
1253 written.
1254
1255 Update the snippet files by running:
1256
1257 @example
1258 scripts/auxiliar/makelsr.py
1259 @end example
1260
1261 Where the convert-ly rule is not able to automatically update regression
1262 tests, the regression tests in input/regression should be manually
1263 edited.
1264
1265 Although it is not required, it is helpful if the developer
1266 can write relevant material for inclusion in the Notation
1267 Reference.  If the developer does not feel qualified to write
1268 the documentation, a documentation editor will be able to
1269 write it from the regression tests.  The text that is added to
1270 or removed from the documentation should be changed only in
1271 the English version.
1272
1273
1274 @node Edit changes.tely
1275 @subsection Edit changes.tely
1276
1277 An entry should be added to Documentation/changes.tely to describe
1278 the feature changes to be implemented.  This is especially important
1279 for changes that change input file syntax.
1280
1281 Hints for changes.tely entries are given at the top of the file.
1282
1283 New entries in changes.tely go at the top of the file.
1284
1285 The changes.tely entry should be written to show how the new change
1286 improves LilyPond, if possible.
1287
1288
1289 @node Verify successful build
1290 @subsection Verify successful build
1291
1292 When the changes have been made, successful completion must be
1293 verified by doing
1294
1295 @example
1296 make all
1297 make doc
1298 @end example
1299
1300 When these commands complete without error, the patch is
1301 considered to function successfully.
1302
1303 Developers on Windows who are unable to build LilyPond should
1304 get help from a Linux or OSX developer to do the make tests.
1305
1306
1307 @node Verify regression tests
1308 @subsection Verify regression tests
1309
1310 In order to avoid breaking LilyPond, it is important to verify that
1311 the regression tests succeed, and that no unwanted changes are
1312 introduced into the output.  This process is described in
1313 @ref{Regtest comparison}.
1314
1315 @subheading Typical developer's edit/compile/test cycle
1316
1317 TODO: is @code{[-j@var{X} CPU_COUNT=@var{X}]} useful for
1318 @code{test-baseline}, @code{check}, @code{clean},
1319 @code{test-redo}?  Neil Puttock says it is useful for
1320 everything but @code{clean}, which is disk-limited.
1321 Need to check formally.
1322
1323 @itemize
1324 @item
1325 Initial test:
1326
1327 @example
1328 make [-j@var{X}]
1329 make test-baseline
1330 make [-j@var{X} CPU_COUNT=@var{X}] check
1331 @end example
1332
1333 @item
1334 Edit/compile/test cycle:
1335
1336 @example
1337 @emph{## edit source files, then...}
1338
1339 make clean                    @emph{## only if needed (see below)}
1340 make [-j@var{X}]                    @emph{## only if needed (see below)}
1341 make test-redo                @emph{## redo files differing from baseline}
1342 make [-j@var{X} CPU_COUNT=@var{X}] check  @emph{## CPU_COUNT here?}
1343 @end example
1344
1345 @item
1346 Reset:
1347
1348 @example
1349 make test-clean
1350 @end example
1351 @end itemize
1352
1353 If you modify any source files that have to be compiled (such as
1354 @file{.cc} or @file{.hh} files in @file{flower/} or @file{lily/}),
1355 then you must run @command{make} before @command{make test-redo},
1356 so @command{make} can compile the modified files and relink all
1357 the object files.  If you only modify files which are interpreted,
1358 like those in the @file{scm/} and @file{ly/} directories, then
1359 @command{make} is not needed before @command{make test-redo}.
1360
1361 TODO:  Fix the following paragraph.  You can do @command{rm mf/out/*}
1362 instead of make clean, and you can probably do
1363 @command{make -C  mf/ clean} as well, but I haven't checked it -- cds
1364
1365 Also, if you modify any font definitions in the @file{mf/}
1366 directory then you must run @command{make clean} and
1367 @command{make} before running @command{make test-redo}.  This will
1368 recompile everything, whether modified or not, and takes a lot
1369 longer.
1370
1371 Running @command{make@tie{}check} will leave an HTML page
1372 @file{out/test-results/index.html}.  This page shows all the
1373 important differences that your change introduced, whether in the
1374 layout, MIDI, performance or error reporting.
1375
1376
1377
1378
1379 @node Post patch for comments
1380 @subsection Post patch for comments
1381
1382 See @ref{Uploading a patch for review}.
1383
1384
1385 @node Push patch
1386 @subsection Push patch
1387
1388 Once all the comments have been addressed, the patch can be pushed.
1389
1390 If the author has push privileges, the author will push the patch.
1391 Otherwise, a developer with push privileges will push the patch.
1392
1393
1394 @node Closing the issues
1395 @subsection Closing the issues
1396
1397 Once the patch has been pushed, all the relevant issues should be
1398 closed.
1399
1400 On Rietveld, the author should log in an close the issue either by
1401 using the @q{Edit Issue} link, or by clicking the circled x icon
1402 to the left of the issue name.
1403
1404 If the changes were in response to a feature request on the Google
1405 issue tracker for LilyPond, the author should change the status to
1406 Fixed and a tag @q{fixed_x_y_z} should be added, where the patch was
1407 fixed in version x.y.z.  If
1408 the author does not have privileges to change the status, an email
1409 should be sent to bug-lilypond requesting the BugMeister to change
1410 the status.
1411
1412
1413 @node Iterator tutorial
1414 @section Iterator tutorial
1415
1416 TODO -- this is a placeholder for a tutorial on iterators
1417
1418 Iterators are routines written in C++ that process music expressions
1419 and sent the music events to the appropriate engravers and/or
1420 performers.
1421
1422
1423 @node Engraver tutorial
1424 @section Engraver tutorial
1425
1426 Engravers are C++ classes that catch music events and
1427 create the appropriate grobs for display on the page.  Though the
1428 majority of engravers are responsible for the creation of a single grob,
1429 in some cases (e.g. @code{New_fingering_engraver}), several different grobs
1430 may be created.
1431
1432 Engravers listen for events and acknowledge grobs.  Events are passed to
1433 the engraver in time-step order during the iteration phase.  Grobs are
1434 made available to the engraver when they are created by other engravers
1435 during the iteration phase.
1436
1437
1438 @menu
1439 * Useful methods for information processing::
1440 * Translation process::
1441 * Preventing garbage collection for SCM member variables::
1442 * Listening to music events::
1443 * Acknowledging grobs::
1444 * Engraver declaration/documentation::
1445 @end menu
1446
1447 @node Useful methods for information processing
1448 @subsection Useful methods for information processing
1449
1450 An engraver inherits the following public methods from the Translator
1451 base class, which can be used to process listened events and acknowledged
1452 grobs:
1453
1454 @itemize
1455 @item @code{virtual void initialize ()}
1456 @item @code{void start_translation_timestep ()}
1457 @item @code{void process_music ()}
1458 @item @code{void process_acknowledged ()}
1459 @item @code{void stop_translation_timestep ()}
1460 @item @code{virtual void finalize ()}
1461 @end itemize
1462
1463 These methods are listed in order of translation time, with
1464 @code{initialize ()} and @code{finalize ()} bookending the whole
1465 process.  @code{initialize ()} can be used for one-time initialization
1466 of context properties before translation starts, whereas
1467 @code{finalize ()} is often used to tie up loose ends at the end of
1468 translation: for example, an unterminated spanner might be completed
1469 automatically or reported with a warning message.
1470
1471
1472 @node Translation process
1473 @subsection Translation process
1474
1475 At each timestep in the music, translation proceeds by calling the
1476 following methods in turn:
1477
1478 @code{start_translation_timestep ()} is called before any user
1479 information enters the translators, i.e., no property operations
1480 (\set, \override, etc.) or events have been processed yet.
1481
1482 @code{process_music ()} and @code{process_acknowledged ()} are called
1483 after all events in the current time step have been heard, or all
1484 grobs in the current time step have been acknowledged.  The latter
1485 tends to be used exclusively with engravers which only acknowledge
1486 grobs, whereas the former is the default method for main processing
1487 within engravers.
1488
1489 @code{stop_translation_timestep ()} is called after all user
1490 information has been processed prior to beginning the translation for
1491 the next timestep.
1492
1493
1494 @node Preventing garbage collection for SCM member variables
1495 @subsection Preventing garbage collection for SCM member variables
1496
1497 In certain cases, an engraver might need to ensure private Scheme
1498 variables (with type SCM) do not get swept away by Guile's garbage
1499 collector: for example, a cache of the previous key signature which
1500 must persist between timesteps.  The method
1501 @code{virtual derived_mark () const} can be used in such cases:
1502
1503 @example
1504 Engraver_name::derived_mark ()
1505 @{
1506   scm_gc_mark (private_scm_member_)
1507 @}
1508 @end example
1509
1510
1511 @node Listening to music events
1512 @subsection Listening to music events
1513
1514 External interfaces to the engraver are implemented by protected
1515 macros including one or more of the following:
1516
1517 @itemize
1518 @item @code{DECLARE_TRANSLATOR_LISTENER (event_name)}
1519 @item @code{IMPLEMENT_TRANSLATOR_LISTENER (Engraver_name, event_name)}
1520 @end itemize
1521
1522 @noindent
1523 where @var{event_name} is the type of event required to provide the
1524 input the engraver needs and @var{Engraver_name} is the name of the
1525 engraver.
1526
1527 Following declaration of a listener, the method is implemented as follows:
1528
1529 @example
1530 IMPLEMENT_TRANSLATOR_LISTENER (Engraver_name, event_name)
1531 void
1532 Engraver_name::listen_event_name (Stream event *event)
1533 @{
1534   ...body of listener method...
1535 @}
1536 @end example
1537
1538
1539 @node Acknowledging grobs
1540 @subsection Acknowledging grobs
1541
1542 Some engravers also need information from grobs as they are created
1543 and as they terminate.  The mechanism and methods to obtain this
1544 information are set up by the macros:
1545
1546 @itemize
1547 @item @code{DECLARE_ACKNOWLEDGER (grob_interface)}
1548 @item @code{DECLARE_END_ACKNOWLEDGER (grob_interface)}
1549 @end itemize
1550
1551 where @var{grob_interface} is an interface supported by the
1552 grob(s) which should be acknowledged.  For example, the following
1553 code would declare acknowledgers for a @code{NoteHead} grob (via the
1554 @code{note-head-interface}) and any grobs which support the
1555 @code{side-position-interface}:
1556
1557 @example
1558 @code{DECLARE_ACKNOWLEDGER (note_head)}
1559 @code{DECLARE_ACKNOWLEDGER (side_position)}
1560 @end example
1561
1562 The @code{DECLARE_END_ACKNOWLEDGER ()} macro sets up a spanner-specific
1563 acknowledger which will be called whenever a spanner ends.
1564
1565 Following declaration of an acknowledger, the method is coded as follows:
1566
1567 @example
1568 void
1569 Engraver_name::acknowledge_interface_name (Grob_info info)
1570 @{
1571   ...body of acknowledger method...
1572 @}
1573 @end example
1574
1575
1576 @node Engraver declaration/documentation
1577 @subsection Engraver declaration/documentation
1578
1579 An engraver must have a public macro
1580
1581 @itemize
1582 @item @code{TRANSLATOR_DECLARATIONS (Engraver_name)}
1583 @end itemize
1584
1585 @noindent
1586 where @code{Engraver_name} is the name of the engraver.  This
1587 defines the common variables and methods used by every engraver.
1588
1589 At the end of the engraver file, one or both of the following
1590 macros are generally called to document the engraver in the
1591 Internals Reference:
1592
1593 @itemize
1594 @item @code{ADD_ACKNOWLEDGER (Engraver_name, grob_interface)}
1595 @item @code{ADD_TRANSLATOR (Engraver_name, Engraver_doc,
1596     Engraver_creates, Engraver_reads, Engraver_writes)}
1597 @end itemize
1598
1599 @noindent
1600 where @code{Engraver_name} is the name of the engraver, @code{grob_interface}
1601 is the name of the interface that will be acknowledged,
1602 @code{Engraver_doc} is a docstring for the engraver,
1603 @code{Engraver_creates} is the set of grobs created by the engraver,
1604 @code{Engraver_reads} is the set of properties read by the engraver,
1605 and @code{Engraver_writes} is the set of properties written by
1606 the engraver.
1607
1608 The @code{ADD_ACKNOWLEDGER} and @code{ADD_TRANSLATOR} macros use a
1609 non-standard indentation system.  Each interface, grob, read property,
1610 and write property is on its own line, and the closing parenthesis
1611 and semicolon for the macro all occupy a separate line beneath the final
1612 interface or write property.  See existing engraver files for more
1613 information.
1614
1615
1616 @node Callback tutorial
1617 @section Callback tutorial
1618
1619 TODO -- This is a placeholder for a tutorial on callback functions.
1620
1621 @node LilyPond scoping
1622 @section LilyPond scoping
1623
1624 The Lilypond language has a concept of scoping, i.e. you can do
1625
1626 @example
1627 foo = 1
1628
1629 #(begin
1630    (display (+ foo 2)))
1631 @end example
1632
1633 @noindent with @code{\paper}, @code{\midi} and @code{\header} being
1634 nested scope inside the @file{.ly} file-level scope.  @w{@code{foo = 1}}
1635 is translated in to a scheme variable definition.
1636
1637 This implemented using modules, with each scope being an anonymous
1638 module that imports its enclosing scope's module.
1639
1640 Lilypond's core, loaded from @file{.scm} files, is usually placed in the
1641 @code{lily} module, outside the @file{.ly} level.  In the case of
1642
1643 @example
1644 lilypond a.ly b.ly
1645 @end example
1646
1647 @noindent
1648 we want to reuse the built-in definitions, without changes effected in
1649 user-level @file{a.ly} leaking into the processing of @file{b.ly}.
1650
1651 The user-accessible definition commands have to take care to avoid
1652 memory leaks that could occur when running multiple files.  All
1653 information belonging to user-defined commands and markups is stored in
1654 a manner that allows it to be garbage-collected when the module is
1655 dispersed, either by being stored module-locally, or in weak hash
1656 tables.
1657
1658 @node LilyPond miscellany
1659 @section LilyPond miscellany
1660
1661 This is a place to dump information that may be of use to developers
1662 but doesn't yet have a proper home.  Ideally, the length of this section
1663 would become zero as items are moved to other homes.
1664
1665
1666 @menu
1667 * Spacing algorithms::
1668 * Info from Han-Wen email::
1669 * Music functions and GUILE debugging::
1670 @end menu
1671
1672 @node Spacing algorithms
1673 @subsection Spacing algorithms
1674
1675 Here is information from an email exchange about spacing algorithms.
1676
1677 On Thu, 2010-02-04 at 15:33 -0500, Boris Shingarov wrote:
1678 I am experimenting with some modifications to the line breaking code,
1679 and I am stuck trying to understand how some of it works.  So far my
1680 understanding is that Simple_spacer operates on a vector of Grobs, and
1681 it is a well-known Constrained-QP problem (rods = constraints, springs
1682 = quadratic function to minimize).  What I don't understand is, if the
1683 spacer operates at the level of Grobs, which are built at an earlier
1684 stage in the pipeline, how are the changes necessitated by differences
1685 in line breaking, taken into account?  in other words, if I take the
1686 last measure of a line and place it on the next line, it is not just a
1687 matter of literally moving that graphic to where the start of the next
1688 line is, but I also need to draw a clef, key signature, and possibly
1689 other fundamental things -- but at that stage in the rendering
1690 pipeline, is it not too late??
1691
1692 Joe Neeman answered:
1693
1694 We create lots of extra grobs (eg. a BarNumber at every bar line) but
1695 most of them are not drawn.  See the break-visibility property in
1696 item-interface.
1697
1698
1699 @node Info from Han-Wen email
1700 @subsection Info from Han-Wen email
1701
1702 In 2004, Douglas Linhardt decided to try starting a document that would
1703 explain LilyPond architecture and design principles.  The material below
1704 is extracted from that email, which can be found at
1705 @uref{http://thread.gmane.org/gmane.comp.gnu.lilypond.devel/2992}.
1706 The headings reflect questions from Doug or comments from Han-Wen;
1707 the body text are Han-Wen's answers.
1708
1709 @subheading Figuring out how things work.
1710
1711 I must admit that when I want to know how a program works, I use grep
1712 and emacs and dive into the source code.  The comments and the code
1713 itself are usually more revealing than technical documents.
1714
1715 @subheading What's a grob, and how is one used?
1716
1717 Graphical object - they are created from within engravers, either as
1718 Spanners (derived class) -slurs, beams- or Items (also a derived
1719 class) -notes, clefs, etc.
1720
1721 There are two other derived classes System (derived from Spanner,
1722 containing a "line of music") and Paper_column (derived from Item, it
1723 contains all items that happen at the same moment).  They are separate
1724 classes because they play a special role in the linebreaking process.
1725
1726 @subheading What's a smob, and how is one used?
1727
1728 A C(++) object that is encapsulated so it can be used as a Scheme
1729 object.  See GUILE info, "19.3 Defining New Types (Smobs)"
1730
1731 @@subheading When is each C++ class constructed and used
1732
1733 @itemize
1734
1735 @item
1736 Music classes
1737
1738 In the parser.yy see the macro calls MAKE_MUSIC_BY_NAME().
1739
1740 @item
1741 Contexts
1742
1743 Constructed during "interpreting" phase.
1744
1745 @item
1746 Engravers
1747
1748 Executive branch of Contexts, plugins that create grobs, usually one
1749 engraver per grob type.  Created  together with context.
1750
1751 @item
1752 Layout Objects
1753
1754 = grobs
1755
1756 @item
1757 Grob Interfaces
1758
1759 These are not C++ classes per se.  The idea of a Grob interface hasn't
1760 crystallized well.  ATM, an interface is a symbol, with a bunch of grob
1761 properties.  They are not objects that are created or destroyed.
1762
1763 @item
1764 Iterators
1765
1766 Objects that walk through different music classes, and deliver events
1767 in a synchronized way, so that notes that play together are processed
1768 at the same moment and (as a result) end up on the same horizontal position.
1769
1770 Created during interpreting phase.
1771
1772 BTW, the entry point for interpreting is ly:run-translator
1773 (ly_run_translator on the C++ side)
1774
1775 @end itemize
1776
1777 @subheading Can you get to Context properties from a Music object?
1778
1779 You can create music object with a Scheme function that reads context
1780 properties (the \applycontext syntax).  However, that function is
1781 executed during Interpreting, so you can not really get Context
1782 properties from Music objects, since music objects are not directly
1783 connected to Contexts.  That connection is made by the  Music_iterators
1784
1785 @subheading Can you get to Music properties from a Context object?
1786
1787 Yes, if you are given the music object within a Context
1788 object.  Normally, the music objects enter Contexts in synchronized
1789 fashion, and the synchronization is done by Music_iterators.
1790
1791 @subheading What is the relationship between C++ classes and Scheme objects?
1792
1793 Smobs are C++ objects in Scheme.  Scheme objects (lists, functions) are
1794 manipulated from C++ as well using the GUILE C function interface
1795 (prefix: scm_)
1796
1797 @subheading How do Scheme procedures get called from C++ functions?
1798
1799 scm_call_*, where * is an integer from 0 to 4.
1800 Also scm_c_eval_string (), scm_eval ()
1801
1802 @subheading How do C++ functions get called from Scheme procedures?
1803
1804 Export a C++ function to Scheme with LY_DEFINE.
1805
1806 @subheading What is the flow of control in the program?
1807
1808 Good question.  Things used to be clear-cut, but we have Scheme
1809 and SMOBs now, which means that interactions do not follow a very
1810 rigid format anymore.  See below for an overview, though.
1811
1812 @subheading Does the parser make Scheme procedure calls or C++ function calls?
1813
1814 Both.  And the Scheme calls can call C++ and vice versa.  It's nested,
1815 with the SCM datatype as lubrication between the interactions
1816
1817 (I think the word "lubrication" describes the process better than the
1818 traditional word "glue")
1819
1820 @subheading How do the front-end and back-end get started?
1821
1822 Front-end: a file is parsed, the rest follows from that.  Specifically,
1823
1824 Parsing leads to a Music + Music_output_def object (see parser.yy,
1825 definition of toplevel_expression )
1826
1827 A Music + Music_output_def object leads to a Global_context object (see
1828 ly_run_translator ())
1829
1830 During interpreting, Global_context + Music leads to a bunch of
1831 Contexts (see Global_translator::run_iterator_on_me ()).
1832
1833 After interpreting, Global_context contains a Score_context (which
1834 contains staves, lyrics etc.) as a child.  Score_context::get_output ()
1835 spews a Music_output object (either a Paper_score object for notation
1836 or Performance object for MIDI).
1837
1838 The Music_output object is the entry point for the backend (see
1839 ly_render_output ()).
1840
1841 The main steps of the backend itself are in
1842
1843 @itemize
1844
1845 @item
1846 @file{paper-score.cc} , Paper_score::process_
1847
1848 @item
1849 @file{system.cc} , System::get_lines()
1850
1851 @item
1852 The step, where things go from grobs to output, is in
1853 System::get_line(): each grob delivers a Stencil (a Device
1854 independent output description), which is interpreted by our
1855 outputting backends (@file{scm/output-tex.scm} and
1856 @file{scm/output-ps.scm}) to produce TeX and PS.
1857
1858 @end itemize
1859
1860 Interactions between grobs and putting things into .tex and .ps files
1861 have gotten a little more complex lately.  Jan has implemented
1862 page-breaking, so now the backend also involves Paper_book,
1863 Paper_lines and other things.  This area is still heavily in flux, and
1864 perhaps not something you should want to look at.
1865
1866 @subheading How do the front-end and back-end communicate?
1867
1868 There is no communication from backend to front-end.  From front-end to
1869 backend is simply the program flow: music + definitions gives
1870 contexts, contexts yield output, after processing, output is written
1871 to disk.
1872
1873 @subheading Where is the functionality associated with KEYWORDs?
1874
1875 See @file{my-lily-lexer.cc} (keywords, there aren't that many)
1876 and @file{ly/*.ly} (most of the other backslashed @code{/\words} are identifiers)
1877
1878 @subheading What Contexts/Properties/Music/etc. are available when they are processed?
1879
1880 What do you mean exactly with this question?
1881
1882 See @file{ly/engraver-init.ly} for contexts,
1883 see @file{scm/define-*.scm} for other objects.
1884
1885 @subheading How do you decide if something is a Music, Context, or Grob property?
1886 Why is part-combine-status a Music property when it seems (IMO)
1887 to be related to the Staff context?
1888
1889 The Music_iterators and Context communicate through two channels
1890
1891 Music_iterators can set and read context properties, idem for
1892 Engravers and Contexts
1893
1894 Music_iterators can send "synthetic" music events (which aren't in
1895 the input) to a context.  These are caught by Engravers.  This is
1896 mostly a one way communication channel.
1897
1898 part-combine-status is part of such a synthetic event, used by
1899 Part_combine_iterator to communicate with Part_combine_engraver.
1900
1901
1902 @subheading Deciding between context and music properties
1903
1904 I'm adding a property to affect how \autochange works.  It seems to
1905 me that it should be a context property, but the Scheme autochange
1906 procedure has a Music argument.  Does this mean I should use
1907 a Music property?
1908
1909 \autochange is one of these extra strange beasts: it requires
1910 look-ahead to decide when to change staves.  This is achieved by
1911 running the interpreting step twice (see
1912 @file{scm/part-combiner.scm} , at the bottom), and
1913 storing the result of the first step (where to switch
1914 staves) in a Music property.  Since you want to influence that
1915 where-to-switch list, your must affect the code in
1916 make-autochange-music (@file{scm/part-combiner.scm}).
1917 That code is called directly from the parser and there are no
1918 official "parsing properties" yet, so there is no generic way
1919 to tune \autochange.  We would have to invent something new
1920 for this, or add a separate argument,
1921
1922 @example
1923     \autochange #around-central-C ..music..
1924 @end example
1925
1926 @noindent
1927 where around-central-C is some function that is called from
1928 make-autochange-music.
1929
1930 @subheading More on context and music properties
1931
1932 From Neil Puttock, in response to a question about transposition:
1933
1934 Context properties (using \set & \unset) are tied to engravers: they
1935 provide information relevant to the generation of graphical objects.
1936
1937 Since transposition occurs at the music interpretation stage, it has
1938 no direct connection with engravers: the pitch of a note is fixed
1939 before a notehead is created.  Consider the following minimal snippet:
1940
1941 @example
1942 @{ c' @}
1943 @end example
1944
1945 This generates (simplified) a NoteEvent, with its pitch and duration
1946 as event properties,
1947
1948 @example
1949 (make-music
1950   'NoteEvent
1951   'duration
1952   (ly:make-duration 2 0 1 1)
1953   'pitch
1954   (ly:make-pitch 0 0 0)
1955 @end example
1956
1957 which the Note_heads_engraver hears.  It passes this information on to
1958 the NoteHead grob it creates from the event, so the head's correct
1959 position and duration-log can be determined once it's ready for
1960 printing.
1961
1962 If we transpose the snippet,
1963
1964 @example
1965 \transpose c d @{ c' @}
1966 @end example
1967
1968 the pitch is changed before it reaches the engraver (in fact, it
1969 happens just after the parsing stage with the creation of a
1970 TransposedMusic music object):
1971
1972 @example
1973 (make-music
1974  'NoteEvent
1975  'duration
1976  (ly:make-duration 2 0 1 1)
1977  'pitch
1978  (ly:make-pitch 0 1 0)
1979 @end example
1980
1981 You can see an example of a music property relevant to transposition:
1982 untransposable.
1983
1984 @example
1985 \transpose c d @{ c'2 \withMusicProperty #'untransposable ##t c' @}
1986 @end example
1987
1988 -> the second c' remains untransposed.
1989
1990 Take a look at @file{lily/music.cc} to see where the transposition takes place.
1991
1992
1993 @subheading How do I tell about the execution environment?
1994
1995 I get lost figuring out what environment the code I'm looking at is in when it
1996 executes.  I found both the C++ and Scheme autochange code.  Then I was trying
1997 to figure out where the code got called from.  I finally figured out that the
1998 Scheme procedure was called before the C++ iterator code, but it took me a
1999 while to figure that out, and I still didn't know who did the calling in the
2000 first place.  I only know a little bit about Flex and Bison, so reading those
2001 files helped only a little bit.
2002
2003 @emph{Han-Wen:} GDB can be of help here.  Set a breakpoint in C++, and run.  When you
2004 hit the breakpoint, do a backtrace.  You can inspect Scheme objects
2005 along the way by doing
2006
2007 @example
2008 p ly_display_scm(obj)
2009 @end example
2010
2011 this will display OBJ through GUILE.
2012
2013 @node Music functions and GUILE debugging
2014 @subsection Music functions and GUILE debugging
2015
2016 Ian Hulin was trying to do some debugging in music functions, and
2017 came up with the following question
2018
2019 HI all,
2020 I'm working on the Guile Debugger Stuff, and would like to try
2021 debugging a music function definition such as:
2022
2023 @example
2024 conditionalMark = #(define-music-function (parser location) ()
2025     #@{ \tag #'instrumental-part @{\mark \default@}  #@} )
2026 @end example
2027
2028 It appears conditionalMark does not get set up as an
2029 equivalent of a Scheme
2030
2031 @example
2032 (define conditionalMark = define-music-function(parser location () ...
2033 @end example
2034
2035 @noindent
2036 although something gets defined because Scheme apparently recognizes
2037
2038 @example
2039 #(set-break! conditionalMark)
2040 @end example
2041
2042 @noindent
2043 later on in the file without signalling any Guile errors.
2044
2045 However the breakpoint trap is never encountered as
2046 define-music-function passed things on to ly:make-music-function,
2047 which is really C++ code ly_make_music_function, so Guile never
2048 finds out about the breakpoint.
2049
2050 Han-Wen answered as follows:
2051
2052 You can see the definition by doing
2053
2054 @example
2055 #(display conditionalMark)
2056 @end example
2057
2058 noindent
2059 inside the @file{.ly} file.
2060
2061 The breakpoint failing may have to do with the call sequence.  See
2062 @file{parser.yy}, run_music_function().  The function is called directly from
2063 C++, without going through the GUILE evaluator, so I think that is why
2064 there is no debugger trap.