X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmidi-stream.cc;h=caeeae55c623570772b89113f7e9b68fc6311d58;hb=31653bf1d61a33ef8bc8c871d60c6b3452d04d28;hp=e6a2e35b3c83a3eec383e71a73a00dea5d8750e4;hpb=8309cbcd6660ea1f0b35abacbb424ddc4158e448;p=lilypond.git diff --git a/lily/midi-stream.cc b/lily/midi-stream.cc index e6a2e35b3c..caeeae55c6 100644 --- a/lily/midi-stream.cc +++ b/lily/midi-stream.cc @@ -1,12 +1,11 @@ // -// midistream.cc +// midi-stream.cc // -// source file of the LilyPond music typesetter +// source file of the GNU LilyPond music typesetter // -// (c) 1997 Jan Nieuwenhuizen +// (c) 1997--1998 Jan Nieuwenhuizen #include -#include #include "string.hh" #include "string-convert.hh" #include "main.hh" @@ -15,76 +14,65 @@ #include "midi-stream.hh" #include "debug.hh" -Midi_stream::Midi_stream( String filename_str, int tracks_i, int clocks_per_4_i ) +Midi_stream::Midi_stream (String filename_str) { - filename_str_ = filename_str; - tracks_i_ = tracks_i; - clocks_per_4_i_ = clocks_per_4_i; - os_p_ = 0; - open(); - header(); + filename_str_ = filename_str; + os_p_ = 0; + open (); } -Midi_stream::~Midi_stream() +Midi_stream::~Midi_stream () { - delete os_p_; + *os_p_ << flush; // ugh. Share with tex_stream. + if (!*os_p_) + { + warning (_ ("error syncing file (disk full?)")); + exit_status_i_ = 1; + } + delete os_p_; } Midi_stream& -Midi_stream::operator <<( String str ) +Midi_stream::operator << (String str) { - // still debugging... - if ( check_debug ) - str = String_convert::bin2hex_str( str ); - // string now 1.0.26-2 handles binary streaming - *os_p_ << str; - return *this; + *os_p_ << str; + return *this; } Midi_stream& -Midi_stream::operator <<( Midi_item const& mitem_c_r ) +Midi_stream::operator << (Midi_item const& mitem_c_r) { - mitem_c_r.output_midi( *this ); - if ( check_debug ) - *os_p_ << "\n"; - return *this; -} +// *this <silent_b ("Midistrings")) + { + str = String_convert::bin2hex_str (str) + "\n"; + // ugh, should have separate debugging output with Midi*::print routines + int i = str.index_i ("0a"); + while (i >= 0) + { + str[i] = '\n'; + str[i + 1] = '\t'; + i = str.index_i ("0a"); + } + } -Midi_stream& -Midi_stream::operator <<( int i ) -{ - // output binary string ourselves - *this << Midi_item::i2varint_str( i ); - return *this; + *os_p_ << str; + return *this; } -void -Midi_stream::header() +Midi_stream& +Midi_stream::operator << (int i) { -// *os_p_ << "% Creator: " << get_version(); -// *os_p_ << "% Automatically generated, at "; -// time_t t(time(0)); -// *os_p_ << ctime(&t); - -// 4D 54 68 64 MThd -// String str = "MThd"; -// 00 00 00 06 chunk length -// 00 01 format 1 -// 00 01 one track -// 00 60 96 per quarter-note - -// char const ch_C = "0000" "0006" "0001" "0001" "0060"; -// str += String_convert::hex2bin_str( ch_C ); -// *os_p_ << str; - -// *this << Midi_header( 1, 1, tempo_i_ ); - *this << Midi_header( 1, tracks_i_, clocks_per_4_i_ ); + // output binary string ourselves + *this << Midi_item::i2varint_str (i); + return *this; } void -Midi_stream::open() +Midi_stream::open () { - os_p_ = new ofstream( filename_str_ ); - if ( !*os_p_ ) - error ("can't open `" + filename_str_ + "\'" ); + os_p_ = new ofstream (filename_str_.ch_C (),ios::out|ios::bin); + if (!*os_p_) + error (_f ("can't open file: `%s\'", filename_str_)); }