]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/midi-stream.cc
* Documentation/user/lilypond.tely: Add dir entries for
[lilypond.git] / lily / midi-stream.cc
index 359d83183419c1a4ba10752fc30fb7baecb35d0b..95f956dea51ce5bb9a7367f07d41a7d6772b3eb9 100644 (file)
@@ -3,57 +3,65 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c)  1997--2002 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
-#include <fstream.h>
-#include "paper-stream.hh"
+
+#include "stream.hh"
 #include "string.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 "scm-option.hh"
 
 Midi_stream::Midi_stream (String filename)
 {
-  filename_str_ = filename;
-  os_p_ = open_file_stream (filename, ios::out|ios::bin);
+  filename_string_ = filename;
+  os_ = open_file_stream (filename, std::ios::out|std::ios::binary);
 }
 
 Midi_stream::~Midi_stream ()
 {
-  close_file_stream (os_p_);
+  close_file_stream (os_);
 }
 
 Midi_stream&
 Midi_stream::operator << (String str)
 {
-  *os_p_ << str;
+  Byte * b = str.get_bytes ();
+  for (int sz = str.length (); sz--;)
+    *os_ << *b ++;
   return *this;
 }
 
 Midi_stream&
 Midi_stream::operator << (Midi_item const& midi_c_r)
 {
-  String str = midi_c_r.str ();
+  String str = midi_c_r.string ();
 
 
   if (midi_debug_global_b)
     {
-     str = String_convert::bin2hex_str (str) + "\n";
+     str = String_convert::bin2hex (str) + "\n";
     // ugh, should have separate debugging output with Midi*::print routines
-    int i = str.index_i ("0a");
+    int i = str.index ("0a");
     while (i >= 0)
       {
         str[i] = '\n';
         str[i + 1] = '\t';
-       i = str.index_i ("0a");
+       i = str.index ("0a");
       }
     }
-
-  *os_p_ << str;
+  else
+    {
+      Byte * b = str.get_bytes ();
+      for (int sz = str.length (); sz--;)
+       *os_ << *b++;
+    }
+  
   return *this;
 }
 
@@ -61,7 +69,7 @@ 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;
 }