add midi-bypass to re-configurable-i/o instruments
[ardour.git] / libs / evoral / src / SMF.cpp
index 8cc14290f7838e5fab467f612224a831b8e73c79..45109b50e57e01a7016ca1e630dc8438afe14fe7 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Evoral.
- * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008 David Robillard <http://drobilla.net>
  * Copyright (C) 2000-2008 Paul Davis
  * Author: Hans Baier
  *
  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <algorithm>
 #include <cassert>
 #include <cmath>
 #include <iostream>
 #include <stdint.h>
+
+#include <glib/gstdio.h>
+
 #include "libsmf/smf.h"
+
 #include "evoral/Event.hpp"
 #include "evoral/SMF.hpp"
 #include "evoral/midi_util.h"
-#include "pbd/file_manager.h"
+
+#ifdef COMPILER_MSVC
+extern double round(double x);
+#endif
 
 using namespace std;
 
@@ -33,22 +41,20 @@ namespace Evoral {
 
 SMF::~SMF()
 {
-       if (_smf) {
-               smf_delete(_smf);
-               _smf = 0;
-               _smf_track = 0;
-       }
+       close ();
 }
 
 uint16_t
 SMF::num_tracks() const
 {
-       return _smf->number_of_tracks;
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+       return _smf ? _smf->number_of_tracks : 0;
 }
 
 uint16_t
 SMF::ppqn() const
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
        return _smf->ppqn;
 }
 
@@ -58,6 +64,7 @@ SMF::ppqn() const
 int
 SMF::seek_to_track(int track)
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
        _smf_track = smf_get_track_by_number(_smf, track);
        if (_smf_track != NULL) {
                _smf_track->next_event_number = (_smf_track->number_of_events == 0) ? 0 : 1;
@@ -67,6 +74,28 @@ SMF::seek_to_track(int track)
        }
 }
 
+/** Attempt to open the SMF file just to see if it is valid.
+ *
+ * \return  true on success
+ *          false on failure
+ */
+bool
+SMF::test(const std::string& path)
+{
+       FILE* f = g_fopen(path.c_str(), "r");
+       if (f == 0) {
+               return false;
+       }
+
+       smf_t* test_smf = smf_load(f);
+       fclose(f);
+
+       const bool success = (test_smf != NULL);
+       smf_delete(test_smf);
+
+       return success;
+}
+
 /** Attempt to open the SMF file for reading and/or writing.
  *
  * \return  0 on success
@@ -76,26 +105,23 @@ SMF::seek_to_track(int track)
 int
 SMF::open(const std::string& path, int track) THROW_FILE_ERROR
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+
        assert(track >= 1);
        if (_smf) {
                smf_delete(_smf);
        }
 
-       _file_path = path;
-
-       PBD::StdioFileDescriptor d (_file_path, "r");
-       FILE* f = d.allocate ();
+       FILE* f = g_fopen(path.c_str(), "r");
        if (f == 0) {
                return -1;
-       }
-       
-       if ((_smf = smf_load (f)) == 0) {
+       } else if ((_smf = smf_load(f)) == 0) {
+               fclose(f);
                return -1;
-       }
-
-       if ((_smf_track = smf_get_track_by_number(_smf, track)) == 0) {
+       } else if ((_smf_track = smf_get_track_by_number(_smf, track)) == 0) {
+               fclose(f);
                return -2;
-        }
+       }
 
        //cerr << "Track " << track << " # events: " << _smf_track->number_of_events << endl;
        if (_smf_track->number_of_events == 0) {
@@ -106,6 +132,7 @@ SMF::open(const std::string& path, int track) THROW_FILE_ERROR
                _empty = false;
        }
 
+       fclose(f);
        return 0;
 }
 
@@ -119,17 +146,17 @@ SMF::open(const std::string& path, int track) THROW_FILE_ERROR
 int
 SMF::create(const std::string& path, int track, uint16_t ppqn) THROW_FILE_ERROR
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+
        assert(track >= 1);
        if (_smf) {
                smf_delete(_smf);
        }
 
-       _file_path = path;
-
        _smf = smf_new();
 
        if (_smf == NULL) {
-                return -1;
+               return -1;
        }
 
        if (smf_set_ppqn(_smf, ppqn) != 0) {
@@ -138,7 +165,9 @@ SMF::create(const std::string& path, int track, uint16_t ppqn) THROW_FILE_ERROR
 
        for (int i = 0; i < track; ++i) {
                _smf_track = smf_track_new();
-               assert(_smf_track);
+               if (!_smf_track) {
+                       return -2;
+               }
                smf_add_track(_smf, _smf_track);
        }
 
@@ -148,19 +177,20 @@ SMF::create(const std::string& path, int track, uint16_t ppqn) THROW_FILE_ERROR
 
        _smf_track->next_event_number = 0;
 
-        {
-                /* put a stub file on disk */
+       {
+               /* put a stub file on disk */
 
-                PBD::StdioFileDescriptor d (_file_path, "w+");
-                FILE* f = d.allocate ();
-                if (f == 0) {
-                        return -1;
-                }
-                
-                if (smf_save (_smf, f)) {
-                        return -1;
-                }
-        }
+               FILE* f = g_fopen (path.c_str(), "w+");
+               if (f == 0) {
+                       return -1;
+               }
+
+               if (smf_save (_smf, f)) {
+                       fclose (f);
+                       return -1;
+               }
+               fclose (f);
+       }
 
        _empty = true;
 
@@ -170,6 +200,8 @@ SMF::create(const std::string& path, int track, uint16_t ppqn) THROW_FILE_ERROR
 void
 SMF::close() THROW_FILE_ERROR
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+
        if (_smf) {
                smf_delete(_smf);
                _smf = 0;
@@ -180,7 +212,12 @@ SMF::close() THROW_FILE_ERROR
 void
 SMF::seek_to_start() const
 {
-       _smf_track->next_event_number = 1;
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+       if (_smf_track) {
+               _smf_track->next_event_number = std::min(_smf_track->number_of_events, (size_t)1);
+       } else {
+               cerr << "WARNING: SMF seek_to_start() with no track" << endl;
+       }
 }
 
 /** Read an event from the current position in file.
@@ -203,39 +240,41 @@ SMF::seek_to_start() const
 int
 SMF::read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf, event_id_t* note_id) const
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+
        smf_event_t* event;
 
        assert(delta_t);
        assert(size);
        assert(buf);
-        assert(note_id);
+       assert(note_id);
 
        if ((event = smf_track_get_next_event(_smf_track)) != NULL) {
 
                *delta_t = event->delta_time_pulses;
 
                if (smf_event_is_metadata(event)) {
-                        *note_id = -1; // "no note id in this meta-event */
-
-                        if (event->midi_buffer[1] == 0x7f) { // Sequencer-specific
-
-                                uint32_t evsize;
-                                uint32_t lenlen;
-                                
-                                if (smf_extract_vlq (&event->midi_buffer[2], event->midi_buffer_length-2, &evsize, &lenlen) == 0) {
-                                
-                                        if (event->midi_buffer[2+lenlen] == 0x99 &&  // Evoral
-                                            event->midi_buffer[3+lenlen] == 0x1) { // Evoral Note ID
-                                                
-                                                uint32_t id;
-                                                uint32_t idlen;
-                                                
-                                                if (smf_extract_vlq (&event->midi_buffer[4+lenlen], event->midi_buffer_length-(4+lenlen), &id, &idlen) == 0) {
-                                                        *note_id = id;
-                                                }
-                                        }
-                                }
-                        }
+                       *note_id = -1; // "no note id in this meta-event */
+
+                       if (event->midi_buffer[1] == 0x7f) { // Sequencer-specific
+
+                               uint32_t evsize;
+                               uint32_t lenlen;
+
+                               if (smf_extract_vlq (&event->midi_buffer[2], event->midi_buffer_length-2, &evsize, &lenlen) == 0) {
+
+                                       if (event->midi_buffer[2+lenlen] == 0x99 &&  // Evoral
+                                           event->midi_buffer[3+lenlen] == 0x1) { // Evoral Note ID
+
+                                               uint32_t id;
+                                               uint32_t idlen;
+
+                                               if (smf_extract_vlq (&event->midi_buffer[4+lenlen], event->midi_buffer_length-(4+lenlen), &id, &idlen) == 0) {
+                                                       *note_id = id;
+                                               }
+                                       }
+                               }
+                       }
                        return 0; /* this is a meta-event */
                }
 
@@ -248,13 +287,22 @@ SMF::read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf, event_id_t* no
                }
                memcpy(*buf, event->midi_buffer, size_t(event_size));
                *size = event_size;
+               if (((*buf)[0] & 0xF0) == 0x90 && (*buf)[2] == 0) {
+                       /* normalize note on with velocity 0 to proper note off */
+                       (*buf)[0] = 0x80 | ((*buf)[0] & 0x0F);  /* note off */
+                       (*buf)[2] = 0x40;  /* default velocity */
+               }
 
-               assert(midi_event_is_valid(*buf, *size));
+               if (!midi_event_is_valid(*buf, *size)) {
+                       cerr << "WARNING: SMF ignoring illegal MIDI event" << endl;
+                       *size = 0;
+                       return -1;
+               }
 
                /* printf("SMF::read_event @ %u: ", *delta_t);
-               for (size_t i = 0; i < *size; ++i) {
-                       printf("%X ", (*buf)[i]);
-               } printf("\n") */
+                  for (size_t i = 0; i < *size; ++i) {
+                  printf("%X ", (*buf)[i]);
+                  } printf("\n") */
 
                return event_size;
        } else {
@@ -265,14 +313,16 @@ SMF::read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf, event_id_t* no
 void
 SMF::append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, event_id_t note_id)
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+
        if (size == 0) {
                return;
        }
 
        /* printf("SMF::append_event_delta @ %u:", delta_t);
-       for (size_t i = 0; i < size; ++i) {
-               printf("%X ", buf[i]);
-       } printf("\n"); */
+          for (size_t i = 0; i < size; ++i) {
+          printf("%X ", buf[i]);
+          } printf("\n"); */
 
        if (!midi_event_is_valid(buf, size)) {
                cerr << "WARNING: SMF ignoring illegal MIDI event" << endl;
@@ -281,8 +331,8 @@ SMF::append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, eve
 
        smf_event_t* event;
 
-        /* XXX july 2010: currently only store event ID's for notes, program changes and bank changes
-         */
+       /* XXX july 2010: currently only store event ID's for notes, program changes and bank changes
+        */
 
        uint8_t const c = buf[0] & 0xf0;
        bool const store_id = (
@@ -290,39 +340,42 @@ SMF::append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, eve
                c == MIDI_CMD_NOTE_OFF ||
                c == MIDI_CMD_PGM_CHANGE ||
                (c == MIDI_CMD_CONTROL && (buf[1] == MIDI_CTL_MSB_BANK || buf[1] == MIDI_CTL_LSB_BANK))
-               );
+                              );
 
        if (store_id && note_id >= 0) {
-                int idlen;
-                int lenlen;
-                uint8_t idbuf[16];
-                uint8_t lenbuf[16];
+               int idlen;
+               int lenlen;
+               uint8_t idbuf[16];
+               uint8_t lenbuf[16];
 
-                event = smf_event_new ();
-                assert(event != NULL);
+               event = smf_event_new ();
+               assert(event != NULL);
 
-                /* generate VLQ representation of note ID */
-                idlen = smf_format_vlq (idbuf, sizeof(idbuf), note_id);
+               /* generate VLQ representation of note ID */
+               idlen = smf_format_vlq (idbuf, sizeof(idbuf), note_id);
 
-                /* generate VLQ representation of meta event length,
-                   which is the idlen + 2 bytes (Evoral type ID plus Note ID type)
-                */
+               /* generate VLQ representation of meta event length,
+                  which is the idlen + 2 bytes (Evoral type ID plus Note ID type)
+               */
 
-                lenlen = smf_format_vlq (lenbuf, sizeof(lenbuf), idlen+2);
+               lenlen = smf_format_vlq (lenbuf, sizeof(lenbuf), idlen+2);
 
-                event->midi_buffer_length = 2 + lenlen + 2 + idlen;
-                event->midi_buffer = new uint8_t[event->midi_buffer_length];
+               event->midi_buffer_length = 2 + lenlen + 2 + idlen;
+               /* this should be allocated by malloc(3) because libsmf will
+                  call free(3) on it
+               */
+               event->midi_buffer = (uint8_t*) malloc (sizeof(uint8_t) * event->midi_buffer_length);
 
-                event->midi_buffer[0] = 0xff; // Meta-event
-                event->midi_buffer[1] = 0x7f; // Sequencer-specific
-                memcpy (&event->midi_buffer[2], lenbuf, lenlen);
-                event->midi_buffer[2+lenlen] = 0x99; // Evoral type ID
-                event->midi_buffer[3+lenlen] = 0x1;  // Evoral type Note ID
-                memcpy (&event->midi_buffer[4+lenlen], idbuf, idlen);
+               event->midi_buffer[0] = 0xff; // Meta-event
+               event->midi_buffer[1] = 0x7f; // Sequencer-specific
+               memcpy (&event->midi_buffer[2], lenbuf, lenlen);
+               event->midi_buffer[2+lenlen] = 0x99; // Evoral type ID
+               event->midi_buffer[3+lenlen] = 0x1;  // Evoral type Note ID
+               memcpy (&event->midi_buffer[4+lenlen], idbuf, idlen);
 
-                assert(_smf_track);
-                smf_track_add_event_delta_pulses(_smf_track, event, 0);
-        } 
+               assert(_smf_track);
+               smf_track_add_event_delta_pulses(_smf_track, event, 0);
+       }
 
        event = smf_event_new_from_pointer(buf, size);
        assert(event != NULL);
@@ -335,6 +388,8 @@ SMF::append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, eve
 void
 SMF::begin_write()
 {
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+
        assert(_smf_track);
        smf_track_delete(_smf_track);
 
@@ -346,17 +401,25 @@ SMF::begin_write()
 }
 
 void
-SMF::end_write() THROW_FILE_ERROR
+SMF::end_write(string const & path) THROW_FILE_ERROR
 {
-       PBD::StdioFileDescriptor d (_file_path, "w+");
-       FILE* f = d.allocate ();
+       Glib::Threads::Mutex::Lock lm (_smf_lock);
+
+       if (!_smf) {
+               return;
+       }
+
+       FILE* f = g_fopen (path.c_str(), "w+");
        if (f == 0) {
-               throw FileError ();
+               throw FileError (path);
        }
 
        if (smf_save(_smf, f) != 0) {
-               throw FileError();
+               fclose(f);
+               throw FileError (path);
        }
+
+       fclose(f);
 }
 
 double
@@ -367,10 +430,4 @@ SMF::round_to_file_precision (double val) const
        return round (val * div) / div;
 }
 
-void
-SMF::set_path (const std::string& p)
-{
-        _file_path = p;
-}
-
 } // namespace Evoral