merge from trunk
[ardour.git] / libs / ardour / ardour / audio_unit.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3         Written by Taybin Rutkin
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_audio_unit_h__
22 #define __ardour_audio_unit_h__
23
24 #include <stdint.h>
25
26 #include <list>
27 #include <set>
28 #include <string>
29 #include <vector>
30
31 #include <ardour/plugin.h>
32
33 #include <boost/shared_ptr.hpp>
34
35 class CAComponent;
36 class CAAudioUnit;
37 class CAComponentDescription;
38 struct AudioBufferList;
39
40 namespace ARDOUR {
41
42 class AudioEngine;
43 class Session;
44
45 class AUPlugin : public ARDOUR::Plugin
46 {
47   public:
48         AUPlugin (AudioEngine& engine, Session& session, CAComponent* comp);
49         virtual ~AUPlugin ();
50         
51         uint32_t unique_id () const;
52         const char * label () const;
53         const char * name () const { return _info->name.c_str(); }
54         const char * maker () const;
55         uint32_t parameter_count () const;
56         float default_value (uint32_t port);
57         jack_nframes_t latency () const;
58         void set_parameter (uint32_t which, float val);
59         float get_parameter (uint32_t which) const;
60     
61         int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const;
62         uint32_t nth_parameter (uint32_t which, bool& ok) const;
63         void activate ();
64         void deactivate ();
65         void set_block_size (jack_nframes_t nframes);
66     
67         int connect_and_run (vector<Sample*>& bufs, uint32_t maxbuf, int32_t& in, int32_t& out, jack_nframes_t nframes, jack_nframes_t offset);
68         std::set<uint32_t> automatable() const;
69         void store_state (ARDOUR::PluginState&);
70         void restore_state (ARDOUR::PluginState&);
71         string describe_parameter (uint32_t);
72         string state_node_name () const { return "audiounit"; }
73         void print_parameter (uint32_t, char*, uint32_t len) const;
74     
75         bool parameter_is_audio (uint32_t) const;
76         bool parameter_is_control (uint32_t) const;
77         bool parameter_is_input (uint32_t) const;
78         bool parameter_is_output (uint32_t) const;
79     
80         XMLNode& get_state();
81         int set_state(const XMLNode& node);
82         
83         bool save_preset (string name);
84         bool load_preset (const string preset_label);
85         std::vector<std::string> get_presets ();
86     
87         bool has_editor () const;
88         
89         CAAudioUnit* get_au () { return unit; }
90         CAComponent* get_comp () { return comp; }
91         
92   private:
93         CAComponent* comp;
94     CAAudioUnit* unit;
95
96         AudioBufferList* in_list;
97         AudioBufferList* out_list;
98
99         std::vector<std::pair<uint32_t, uint32_t> > parameter_map;
100 };
101
102 typedef boost::shared_ptr<AUPlugin> AUPluginPtr;
103
104 class AUPluginInfo : public PluginInfo {
105   public:       
106         AUPluginInfo () { };
107         ~AUPluginInfo ();
108
109         CAComponentDescription* desc;
110
111         static PluginInfoList discover ();
112         PluginPtr load (Session& session);
113
114   private:
115         static std::string get_name (CAComponentDescription&);
116         void setup_nchannels (CAComponentDescription&);
117 };
118
119 typedef boost::shared_ptr<AUPluginInfo> AUPluginInfoPtr;
120
121 } // namespace ARDOUR
122
123 #endif // __ardour_audio_unit_h__