]> git.donarmstrong.com Git - lilypond.git/blob - lily/global-context-scheme.cc
*** empty log message ***
[lilypond.git] / lily / global-context-scheme.cc
1 /*
2   global-context-scheme.cc -- implement Global_context bindings
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "warn.hh"
10 #include "music-output.hh"
11 #include "output-def.hh"
12 #include "music-iterator.hh"
13 #include "music.hh"
14 #include "cpu-timer.hh"
15 #include "global-context.hh"
16 #include "object-key.hh"
17 #include "main.hh"
18
19 LY_DEFINE (ly_format_output, "ly:format-output",
20            2, 0, 0, (SCM context, SCM outname),
21            "Given a Global context in its final state, "
22            "process it and return the (rendered) result.")
23 {
24   Global_context *g = dynamic_cast<Global_context *> (unsmob_context (context));
25   SCM_ASSERT_TYPE (g, context, SCM_ARG1, __FUNCTION__, "Global context");
26   SCM_ASSERT_TYPE (scm_is_string (outname), outname, SCM_ARG2, __FUNCTION__, "output file name");
27
28   Music_output *output = g->get_output ();
29   progress_indication ("\n");
30   /* ugh, midi still wants outname  */
31   return output->process (ly_scm2string (outname));
32 }
33
34 LY_DEFINE (ly_run_translator, "ly:run-translator",
35            2, 1, 0, (SCM mus, SCM output_def, SCM key),
36            "Process @var{mus} according to @var{output_def}. \n"
37            "An interpretation context is set up,\n"
38            "and @var{mus} is interpreted with it.  \n"
39            "The context is returned in its final state.\n"
40
41            "\n\nOptionally, this routine takes an Object-key to\n"
42            "to uniquely identify the Score block containing it.\n")
43 {
44   Output_def *odef = unsmob_output_def (output_def);
45   Music *music = unsmob_music (mus);
46
47   if (!music
48       || !music->get_length ().to_bool ())
49     {
50       warning (_ ("no music found in score"));
51       return SCM_BOOL_F;
52     }
53
54   SCM_ASSERT_TYPE (music, mus, SCM_ARG1, __FUNCTION__, "Music");
55   SCM_ASSERT_TYPE (odef, output_def, SCM_ARG2, __FUNCTION__,
56                    "Output definition");
57
58   Cpu_timer timer;
59
60   Global_context *trans = new Global_context (odef, music->get_length (), unsmob_key (key));
61   if (!trans)
62     {
63       programming_error ("no toplevel translator");
64       return SCM_BOOL_F;
65     }
66
67   message (_ ("Interpreting music... "));
68
69   SCM protected_iter = Music_iterator::get_static_get_iterator (music);
70   Music_iterator *iter = unsmob_iterator (protected_iter);
71   iter->init_translator (music, trans);
72
73   iter->construct_children ();
74
75   if (!iter->ok ())
76     {
77       warning (_ ("no music found in score"));
78       /* todo: should throw exception. */
79       return SCM_BOOL_F;
80     }
81
82   trans->run_iterator_on_me (iter);
83   iter->quit ();
84   scm_remember_upto_here_1 (protected_iter);
85   trans->finish ();
86
87   if (be_verbose_global)
88     message (_f ("elapsed time: %.2f seconds", timer.read ()));
89
90   return scm_gc_unprotect_object (trans->self_scm ());
91 }