X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmidi-stream.cc;h=ffe5196b637c94b88a50ee2becf0acbade54ba02;hb=bbd89dfe7865636f9fb1eccf9326db4831f632e8;hp=0521e87c756537bd54d7075da9af731bcef7ef3c;hpb=2862b1027f316a2f0444fa92e441ee28acf7a463;p=lilypond.git diff --git a/lily/midi-stream.cc b/lily/midi-stream.cc index 0521e87c75..ffe5196b63 100644 --- a/lily/midi-stream.cc +++ b/lily/midi-stream.cc @@ -1,68 +1,75 @@ -// -// midistream.cc -// -// source file of the GNU LilyPond music typesetter -// -// (c) 1997 Jan Nieuwenhuizen +/* + midi-stream.cc -- implement Midi_stream -#include -#include -#include "string.hh" + source file of the GNU LilyPond music typesetter + + (c) 1997--2005 Jan Nieuwenhuizen +*/ + +#include "midi-stream.hh" + +#include +using namespace std; + +#include "stream.hh" #include "string-convert.hh" #include "main.hh" #include "misc.hh" #include "midi-item.hh" -#include "midi-stream.hh" -#include "debug.hh" +#include "warn.hh" +#include "program-option.hh" -Midi_stream::Midi_stream (String filename_str) +Midi_stream::Midi_stream (String file_name) { - filename_str_ = filename_str; - os_p_ = 0; - open(); + file_name_string_ = file_name; + out_file_ = fopen (file_name.to_str0 (), "wb"); + if (!out_file_) + error (_f ("can't open for write: %s: %s", file_name, strerror (errno))); } -Midi_stream::~Midi_stream() +Midi_stream::~Midi_stream () { - delete os_p_; + fclose (out_file_); } -Midi_stream& -Midi_stream::operator <<(String str) +Midi_stream & +Midi_stream::operator << (String str) { - if (check_debug) - str = String_convert::bin2hex_str (str); - - *os_p_ << str; + size_t sz = sizeof (Byte); + size_t n = str.length (); + size_t written = fwrite (str.get_bytes (), + sz, n, out_file_); - if (check_debug) - *os_p_ << "\n"; + if (written != sz * n) + warning (_ ("can't write to file: `%s'")); return *this; } -Midi_stream& -Midi_stream::operator <<(Midi_item const& mitem_c_r) +Midi_stream & +Midi_stream::operator << (Midi_item const &midi_c_r) { -// *this << mitem_c_r.str(); - mitem_c_r.output (this); - if (check_debug) - *os_p_ << "\n"; - return *this; + String str = midi_c_r.to_string (); + + // ugh, should have separate debugging output with Midi*::print routines + if (do_midi_debugging_global) + { + str = String_convert::bin2hex (str) + "\n"; + for (int i = str.index ("0a"); i >= 0; i = str.index ("0a")) + { + str[i] = '\n'; + str[i + 1] = '\t'; + } + } + + return operator << (str); } -Midi_stream& -Midi_stream::operator <<(int i) +Midi_stream & +Midi_stream::operator << (int i) { // output binary string ourselves - *this << Midi_item::i2varint_str (i); + *this << Midi_item::i2varint_string (i); return *this; } -void -Midi_stream::open() -{ - os_p_ = new ofstream (filename_str_); - if (!*os_p_) - error ("can't open `" + filename_str_ + "\'"); -}