various fixes to MidiRegionView selection handling, key handling, drawing of ghost...
[ardour2.git] / libs / evoral / evoral / SMF.hpp
blob063ae69f095a378b76332fe80f75d6abe50559ce
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
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.
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.
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
20 #ifndef EVORAL_SMF_HPP
21 #define EVORAL_SMF_HPP
23 #include <cassert>
24 #include "evoral/types.hpp"
26 struct smf_struct;
27 struct smf_track_struct;
28 typedef smf_struct smf_t;
29 typedef smf_track_struct smf_track_t;
31 namespace Evoral {
33 #define THROW_FILE_ERROR throw(FileError)
35 /** Standard Midi File.
36 * Currently only tempo-based time of a given PPQN is supported.
38 class SMF {
39 public:
40 class FileError : public std::exception {
41 const char* what() const throw() { return "Unknown SMF error"; }
44 SMF() : _smf(0), _smf_track(0), _empty(true) {};
45 virtual ~SMF();
47 int open(const std::string& path, int track=1) THROW_FILE_ERROR;
48 int create(const std::string& path, int track=1, uint16_t ppqn=19200) THROW_FILE_ERROR;
49 void close() THROW_FILE_ERROR;
51 const std::string& file_path() const { return _file_path; };
53 void seek_to_start() const;
54 int seek_to_track(int track);
56 int read_event(uint32_t* delta_t, uint32_t* size, uint8_t** buf, event_id_t* note_id) const;
58 uint16_t num_tracks() const;
59 uint16_t ppqn() const;
60 bool is_empty() const { return _empty; }
62 void begin_write();
63 void append_event_delta(uint32_t delta_t, uint32_t size, const uint8_t* buf, event_id_t note_id);
64 void end_write() THROW_FILE_ERROR;
66 void flush() {};
68 double round_to_file_precision (double val) const;
70 protected:
71 void set_path (const std::string& p);
73 private:
74 std::string _file_path;
75 smf_t* _smf;
76 smf_track_t* _smf_track;
77 bool _empty; ///< true iff file contains(non-empty) events
80 }; /* namespace Evoral */
82 #endif /* EVORAL_SMF_HPP */