X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpaper-outputter.cc;h=5ba03e95c78ee2e9a26477d5e30513f62ce038f5;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=809b8dbd78946c1e8790fcee4c6b616e38dc5165;hpb=61bba8a98a53e424054b26d63ead26b0696ea29d;p=lilypond.git diff --git a/lily/paper-outputter.cc b/lily/paper-outputter.cc index 809b8dbd78..5ba03e95c7 100644 --- a/lily/paper-outputter.cc +++ b/lily/paper-outputter.cc @@ -1,48 +1,59 @@ /* - paper-outputter.cc -- implement Paper_outputter + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1997--2015 Han-Wen Nienhuys + Jan Nieuwenhuizen - (c) 1997--2004 Han-Wen Nienhuys - Jan Nieuwenhuizen + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ -#include -#include +#include "paper-outputter.hh" + +#include +#include + +using namespace std; -#include "array.hh" #include "dimensions.hh" #include "file-name.hh" #include "font-metric.hh" -#include "input-smob.hh" -#include "lily-guile.hh" +#include "input.hh" #include "lily-version.hh" -#include "ly-module.hh" #include "main.hh" #include "output-def.hh" #include "paper-book.hh" -#include "paper-outputter.hh" #include "paper-system.hh" #include "scm-hash.hh" -#include "stencil.hh" #include "string-convert.hh" #include "warn.hh" -#include "ly-smobs.icc" - -Paper_outputter::Paper_outputter (String filename, String format) +Paper_outputter::Paper_outputter (SCM port, const string &format) { - file_ = SCM_EOL; + file_ = port; output_module_ = SCM_EOL; smobify_self (); - - filename_ = filename; - file_ = scm_open_file (scm_makfrom0str (filename.to_str0 ()), - scm_makfrom0str ("w")); - String module_name = "scm output-" + format; - output_module_ = scm_c_resolve_module (module_name.to_str0 ()); + string module_name = "scm output-" + format; + output_module_ = scm_c_resolve_module (module_name.c_str ()); + + /* + Enable errors for undefined stencil routines if + -dwarning-as-error is specified; else enable warnings. + */ + SCM proc = ly_lily_module_constant ("backend-testing"); + scm_call_1 (proc, output_module_); } Paper_outputter::~Paper_outputter () @@ -50,29 +61,23 @@ Paper_outputter::~Paper_outputter () } -IMPLEMENT_SMOBS (Paper_outputter); -IMPLEMENT_DEFAULT_EQUAL_P (Paper_outputter); - SCM -Paper_outputter::mark_smob (SCM x) +Paper_outputter::mark_smob () { - Paper_outputter *p = (Paper_outputter*) SCM_CELL_WORD_1(x); - scm_gc_mark (p->output_module_); - return p->file_; + scm_gc_mark (output_module_); + return file_; } -int -Paper_outputter::print_smob (SCM x, SCM p, scm_print_state*) +SCM +Paper_outputter::file () const { - (void) x; - scm_puts ("#", p); - return 1; + return file_; } SCM Paper_outputter::dump_string (SCM scm) { - return scm_display (scm, file_); + return scm_display (scm, file ()); } SCM @@ -81,59 +86,47 @@ Paper_outputter::scheme_to_string (SCM scm) return scm_eval (scm, output_module_); } -void -Paper_outputter::output_scheme (SCM scm) -{ - dump_string (scheme_to_string (scm)); -} - -LY_DEFINE (ly_paper_outputter_dump, "ly:paper-outputter-dump", - 2, 0, 0, (SCM outputter, SCM arg), - "Dump ARG on OUTPUTTER\n.") +SCM +Paper_outputter::module () const { - Paper_outputter *po = unsmob_outputter (outputter); - SCM_ASSERT_TYPE (po, outputter, SCM_ARG1, __FUNCTION__, "Paper_outputter"); - po->output_scheme (arg); - return SCM_UNSPECIFIED; + return output_module_; } -void -Paper_outputter::output_stencil (Stencil stil) +SCM +Paper_outputter::output_scheme (SCM scm) { - ly_interpret_stencil (stil.expr (), - ly_scheme_function ("ly:paper-outputter-dump"), - smobify_self (), - ly_offset2scm (Offset (0, 0))); + SCM str = scheme_to_string (scm); + if (scm_is_string (str)) + dump_string (str); + return str; } -Paper_outputter * -get_paper_outputter (String outname, String f) +SCM +paper_outputter_dump (void *po, SCM x) { - progress_indication (_f ("paper output to `%s'...", - outname == "-" ? String ("") : outname)); - return new Paper_outputter (outname, f); + Paper_outputter *me = (Paper_outputter *) po; + return me->output_scheme (x); } -/* FIXME: why is output_* wrapper called dump? */ -LY_DEFINE (ly_outputter_dump_stencil, "ly:outputter-dump-stencil", - 2, 0, 0, (SCM outputter, SCM stencil), - "Dump stencil @var{expr} onto @var{outputter}.") +void +Paper_outputter::output_stencil (Stencil stil) { - Paper_outputter *po = unsmob_outputter (outputter); - Stencil *st = unsmob_stencil (stencil); - SCM_ASSERT_TYPE (po, outputter, SCM_ARG1, __FUNCTION__, "Paper_outputter"); - SCM_ASSERT_TYPE (st, stencil, SCM_ARG1, __FUNCTION__, "Paper_outputter"); - po->output_stencil (*st); - return SCM_UNSPECIFIED; + interpret_stencil_expression (stil.expr (), paper_outputter_dump, + (void *) this, Offset (0, 0)); } -LY_DEFINE (ly_outputter_dump_string, "ly:outputter-dump-string", - 2, 0, 0, (SCM outputter, SCM str), - "Dump @var{str} onto @var{outputter}.") +void +Paper_outputter::close () { - Paper_outputter *po = unsmob_outputter (outputter); - SCM_ASSERT_TYPE (po, outputter, SCM_ARG1, __FUNCTION__, "Paper_outputter"); - SCM_ASSERT_TYPE (ly_c_string_p (str), str, SCM_ARG1, __FUNCTION__, "Paper_outputter"); - - return po->dump_string (str); + if (scm_port_p (file_) == SCM_BOOL_T) + { + scm_close_port (file_); + /* + Remove the "warning" definitions for missing stencil + expressions so that we start fresh with the next \book + block. --pmccarty + */ + SCM proc = ly_lily_module_constant ("remove-stencil-warnings"); + scm_call_1 (proc, output_module_); + } }