speed-up smf_track_delete() from O(N^2) to O(n)
[ardour.git] / libs / evoral / evoral / SMF.hpp
1 /* This file is part of Evoral.
2  * Copyright(C) 2008 David Robillard <http://drobilla.net>
3  * Copyright(C) 2000-2008 Paul Davis
4  * Author: Hans Baier
5  *
6  * Evoral is free software; you can redistribute it and/or modify it under the
7  * terms of the GNU General Public License as published by the Free Software
8  * Foundation; either version 2 of the License, or(at your option) any later
9  * version.
10  *
11  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 #ifndef EVORAL_SMF_HPP
21 #define EVORAL_SMF_HPP
22
23 #include <glibmm/threads.h>
24
25 #include "evoral/visibility.h"
26 #include "evoral/types.hpp"
27
28 struct smf_struct;
29 struct smf_track_struct;
30 typedef smf_struct smf_t;
31 typedef smf_track_struct smf_track_t;
32
33 namespace Evoral {
34
35 #define THROW_FILE_ERROR throw(FileError)
36
37 /** Standard Midi File.
38  * Currently only tempo-based time of a given PPQN is supported.
39  */
40 class LIBEVORAL_API SMF {
41 public:
42         class FileError : public std::exception {
43         public:
44                 FileError (std::string const & n) : _file_name (n) {}
45                 ~FileError () throw () {}
46                 const char* what() const throw() { return "Unknown SMF error"; }
47                 std::string file_name () const { return _file_name; }
48         private:
49                 std::string _file_name;
50         };
51
52         SMF() : _smf(0), _smf_track(0), _empty(true) {};
53         virtual ~SMF();
54
55         static bool test(const std::string& path);
56         int  open(const std::string& path, int track=1) THROW_FILE_ERROR;
57         // XXX 19200 = 10 * Timecode::BBT_Time::ticks_per_beat
58         int  create(const std::string& path, int track=1, uint16_t ppqn=19200) THROW_FILE_ERROR;
59         void close() THROW_FILE_ERROR;
60
61         void seek_to_start() const;
62         int  seek_to_track(int track);
63
64         int read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf, event_id_t* note_id) const;
65
66         uint16_t num_tracks() const;
67         uint16_t ppqn()       const;
68         bool     is_empty()   const { return _empty; }
69
70         void begin_write();
71         void append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, event_id_t note_id);
72         void end_write(std::string const &) THROW_FILE_ERROR;
73
74         void flush() {};
75
76         double round_to_file_precision (double val) const;
77
78 private:
79         smf_t*       _smf;
80         smf_track_t* _smf_track;
81         bool         _empty; ///< true iff file contains(non-empty) events
82         mutable Glib::Threads::Mutex _smf_lock;
83 };
84
85 }; /* namespace Evoral */
86
87 #endif /* EVORAL_SMF_HPP */
88