Merged with trunk R992.
[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         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 (nframes_t nframes);
66     
67         int connect_and_run (BufferSet& bufs, uint32_t& in, uint32_t& out, nframes_t nframes, nframes_t offset);
68         
69         std::set<uint32_t> automatable() const;
70         void store_state (ARDOUR::PluginState&);
71         void restore_state (ARDOUR::PluginState&);
72         string describe_parameter (uint32_t);
73         string state_node_name () const { return "audiounit"; }
74         void print_parameter (uint32_t, char*, uint32_t len) const;
75     
76         bool parameter_is_audio (uint32_t) const;
77         bool parameter_is_control (uint32_t) const;
78         bool parameter_is_input (uint32_t) const;
79         bool parameter_is_output (uint32_t) const;
80     
81         XMLNode& get_state();
82         int set_state(const XMLNode& node);
83         
84         bool save_preset (string name);
85         bool load_preset (const string preset_label);
86         std::vector<std::string> get_presets ();
87     
88         bool has_editor () const;
89         
90         CAAudioUnit* get_au () { return unit; }
91         CAComponent* get_comp () { return comp; }
92         
93   private:
94         CAComponent* comp;
95     CAAudioUnit* unit;
96
97         AudioBufferList* in_list;
98         AudioBufferList* out_list;
99
100         std::vector<std::pair<uint32_t, uint32_t> > parameter_map;
101 };
102
103 typedef boost::shared_ptr<AUPlugin> AUPluginPtr;
104
105 class AUPluginInfo : public PluginInfo {
106   public:       
107         AUPluginInfo () { };
108         ~AUPluginInfo ();
109
110         CAComponentDescription* desc;
111
112         static PluginInfoList discover ();
113         PluginPtr load (Session& session);
114
115   private:
116         static std::string get_name (CAComponentDescription&);
117         void setup_nchannels (CAComponentDescription&);
118 };
119
120 typedef boost::shared_ptr<AUPluginInfo> AUPluginInfoPtr;
121
122 } // namespace ARDOUR
123
124 #endif // __ardour_audio_unit_h__