]> git.donarmstrong.com Git - lilypond.git/blob - lily/unpure-pure-container.cc
Run grand replace for 2015.
[lilypond.git] / lily / unpure-pure-container.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2011--2015 Mike Solomon <mike@mikesolomon.org>
5
6
7   LilyPond is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   LilyPond is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
19 */
20 #include "unpure-pure-container.hh"
21
22 #include "grob.hh"
23
24 // Reroutes a call to the contained function after dropping last two
25 // arguments.  Used for applying an "unpure" function in a "pure"
26 // context.
27 class Unpure_pure_call : public Smob1<Unpure_pure_call>
28 {
29 public:
30   LY_DECLARE_SMOB_PROC (2, 0, 1, (SCM self, SCM arg1, SCM arg2, SCM rest))
31   {
32     return scm_apply_0 (Unpure_pure_call::unsmob (self)->scm1 (),
33                         scm_call_2 (ly_lily_module_constant ("drop-right"),
34                                     scm_cons2 (arg1, arg2, rest),
35                                     scm_from_int (2)));
36   }
37 };
38
39 SCM
40 Unpure_pure_container::pure_part () const
41 {
42   return SCM_UNBNDP (scm2 ())
43     ? Unpure_pure_call::make_smob (scm1 ())
44     : scm2 ();
45 }
46
47 const char Unpure_pure_container::type_p_name_[] = "ly:unpure-pure-container?";
48
49 LY_DEFINE (ly_make_unpure_pure_container, "ly:make-unpure-pure-container",
50            1, 1, 0, (SCM unpure, SCM pure),
51            "Make an unpure-pure container.  @var{unpure} should be an unpure"
52            " expression, and @var{pure} should be a pure expression.  If @var{pure}"
53            " is omitted, the value of @var{unpure} will be used twice,"
54            " except that a callback is given two extra arguments"
55            " that are ignored for the sake of pure calculations.")
56 {
57   return Unpure_pure_container::make_smob (unpure, pure);
58 }
59
60 LY_DEFINE (ly_unpure_pure_container_unpure_part, "ly:unpure-pure-container-unpure-part",
61            1, 0, 0, (SCM pc),
62            "Return the unpure part of @var{pc}.")
63 {
64   LY_ASSERT_SMOB (Unpure_pure_container, pc, 1);
65   return Unpure_pure_container::unsmob (pc)->unpure_part ();
66 }
67
68 LY_DEFINE (ly_unpure_pure_container_pure_part, "ly:unpure-pure-container-pure-part",
69            1, 0, 0, (SCM pc),
70            "Return the pure part of @var{pc}.")
71 {
72   LY_ASSERT_SMOB (Unpure_pure_container, pc, 1);
73   return Unpure_pure_container::unsmob (pc)->pure_part ();
74 }
75
76 int
77 Unpure_pure_container::print_smob (SCM port, scm_print_state *)
78 {
79   scm_puts ("#<unpure-pure-container ", port);
80   scm_display (unpure_part (), port);
81   if (!is_unchanging ())
82     {
83       scm_puts (" ", port);
84       scm_display (pure_part (), port);
85     }
86   scm_puts (" >", port);
87   return 1;
88 }