Preliminary (read: kludgey) MIDI import support.
[ardour.git] / libs / ardour / ardour / source.h
1 /*
2     Copyright (C) 2000 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_source_h__
21 #define __ardour_source_h__
22
23 #include <string>
24 #include <set>
25
26 #include <sigc++/signal.h>
27
28 #include <pbd/statefuldestructible.h> 
29
30 #include <ardour/ardour.h>
31 #include <ardour/session_object.h>
32 #include <ardour/data_type.h>
33 #include <ardour/readable.h>
34
35 namespace ARDOUR {
36
37 class Session;
38 class Playlist;
39
40 class Source : public SessionObject, public ARDOUR::Readable
41 {
42   public:
43         Source (Session&, const std::string& name, DataType type);
44         Source (Session&, const XMLNode&);
45         
46         virtual ~Source ();
47         
48         DataType type() { return _type; }
49
50         time_t timestamp() const { return _timestamp; }
51         void stamp (time_t when) { _timestamp = when; }
52         
53         nframes_t length() const { return _length; }
54         
55         virtual Glib::ustring path() const = 0;
56
57         virtual nframes_t natural_position() const { return 0; }
58
59         virtual void mark_for_remove() = 0;
60         virtual void mark_streaming_write_started () {}
61         virtual void mark_streaming_write_completed () = 0;
62
63         virtual void session_saved() {}
64         
65         XMLNode& get_state ();
66         int set_state (const XMLNode&);
67         
68         virtual bool destructive()    const { return false; }
69         virtual bool length_mutable() const { return false; }
70         
71         void use () { _in_use++; }
72         void disuse () { if (_in_use) { _in_use--; } }
73         
74         void add_playlist (boost::shared_ptr<ARDOUR::Playlist>);
75         void remove_playlist (boost::weak_ptr<ARDOUR::Playlist>);
76
77         uint32_t used() const;
78
79         static sigc::signal<void,Source*>             SourceCreated;
80         sigc::signal<void,boost::shared_ptr<Source> > Switched;
81
82         bool has_been_analysed() const;
83         virtual bool can_be_analysed() const { return false; } 
84         virtual void set_been_analysed (bool yn);
85         virtual bool check_for_analysis_data_on_disk();
86
87         sigc::signal<void> AnalysisChanged;
88         
89         AnalysisFeatureList transients;
90         std::string get_transients_path() const;
91         int load_transients (const std::string&);
92         
93         void update_length (nframes_t pos, nframes_t cnt);
94
95   protected:
96         DataType            _type;
97         time_t              _timestamp;
98         nframes_t           _length;
99         bool                _analysed;
100         mutable Glib::Mutex _analysis_lock;
101         Glib::Mutex         _playlist_lock;
102         
103         typedef std::map<boost::shared_ptr<ARDOUR::Playlist>, uint32_t > PlaylistMap;
104         PlaylistMap _playlists;
105
106   private:
107         uint32_t _in_use;
108 };
109
110 }
111
112 #endif /* __ardour_source_h__ */