]> git.donarmstrong.com Git - lilypond.git/blob - lily/unpure-pure-container.cc
Issue 4400: Rework LY_DECLARE_SMOB_PROC to declare a member function
[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 (&Unpure_pure_call::call, 2, 0, 1)
31   SCM call (SCM arg1, SCM arg2, SCM rest)
32   {
33     return scm_apply_0 (scm1 (),
34                         scm_call_2 (ly_lily_module_constant ("drop-right"),
35                                     scm_cons2 (arg1, arg2, rest),
36                                     scm_from_int (2)));
37   }
38 };
39
40 SCM
41 Unpure_pure_container::pure_part () const
42 {
43   return SCM_UNBNDP (scm2 ())
44     ? Unpure_pure_call::make_smob (scm1 ())
45     : scm2 ();
46 }
47
48 const char Unpure_pure_container::type_p_name_[] = "ly:unpure-pure-container?";
49
50 LY_DEFINE (ly_make_unpure_pure_container, "ly:make-unpure-pure-container",
51            1, 1, 0, (SCM unpure, SCM pure),
52            "Make an unpure-pure container.  @var{unpure} should be an unpure"
53            " expression, and @var{pure} should be a pure expression.  If @var{pure}"
54            " is omitted, the value of @var{unpure} will be used twice,"
55            " except that a callback is given two extra arguments"
56            " that are ignored for the sake of pure calculations.")
57 {
58   return Unpure_pure_container::make_smob (unpure, pure);
59 }
60
61 LY_DEFINE (ly_unpure_pure_container_unpure_part, "ly:unpure-pure-container-unpure-part",
62            1, 0, 0, (SCM pc),
63            "Return the unpure part of @var{pc}.")
64 {
65   LY_ASSERT_SMOB (Unpure_pure_container, pc, 1);
66   return Unpure_pure_container::unsmob (pc)->unpure_part ();
67 }
68
69 LY_DEFINE (ly_unpure_pure_container_pure_part, "ly:unpure-pure-container-pure-part",
70            1, 0, 0, (SCM pc),
71            "Return the pure part of @var{pc}.")
72 {
73   LY_ASSERT_SMOB (Unpure_pure_container, pc, 1);
74   return Unpure_pure_container::unsmob (pc)->pure_part ();
75 }
76
77 int
78 Unpure_pure_container::print_smob (SCM port, scm_print_state *)
79 {
80   scm_puts ("#<unpure-pure-container ", port);
81   scm_display (unpure_part (), port);
82   if (!is_unchanging ())
83     {
84       scm_puts (" ", port);
85       scm_display (pure_part (), port);
86     }
87   scm_puts (" >", port);
88   return 1;
89 }