/[svn]/linuxsampler/trunk/src/drivers/audio/AudioOutputDeviceJack.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/drivers/audio/AudioOutputDeviceJack.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 200 by schoenebeck, Tue Jul 13 22:04:16 2004 UTC revision 379 by persson, Sun Feb 13 18:02:29 2005 UTC
# Line 23  Line 23 
23  #include "AudioOutputDeviceJack.h"  #include "AudioOutputDeviceJack.h"
24  #include "AudioOutputDeviceFactory.h"  #include "AudioOutputDeviceFactory.h"
25    
26    #include <errno.h>
27    
28  #if HAVE_JACK  #if HAVE_JACK
29    
30    #ifndef HAVE_JACK_CLIENT_NAME_SIZE
31    #define jack_client_name_size() 33
32    #endif
33    
34  namespace LinuxSampler {  namespace LinuxSampler {
35    
36      REGISTER_AUDIO_OUTPUT_DRIVER(AudioOutputDeviceJack);      /// number of currently existing JACK audio output devices in LinuxSampler
37        static int existingJackDevices = 0;
38    
39    // *************** AudioChannelJack::ParameterName ***************
40    // *
41    
42        AudioOutputDeviceJack::AudioChannelJack::ParameterName::ParameterName(AudioChannelJack* pChannel) : AudioChannel::ParameterName(ToString(pChannel->ChannelNr)) {
43            this->pChannel = pChannel;
44        }
45    
46        void AudioOutputDeviceJack::AudioChannelJack::ParameterName::OnSetValue(String s) {
47            if (jack_port_set_name(pChannel->hJackPort, s.c_str())) throw AudioOutputException("Failed to rename JACK port");
48        }
49    
50    
51    
52    // *************** AudioChannelJack::ParameterJackBindings ***************
53    // *
54    
55        AudioOutputDeviceJack::AudioChannelJack::ParameterJackBindings::ParameterJackBindings(AudioChannelJack* pChannel) : DeviceRuntimeParameterStrings(std::vector<String>()) {
56            this->pChannel = pChannel;
57        }
58    
59        String AudioOutputDeviceJack::AudioChannelJack::ParameterJackBindings::Description() {
60            return "Bindings to other JACK clients";
61        }
62    
63        bool AudioOutputDeviceJack::AudioChannelJack::ParameterJackBindings::Fix() {
64            return false;
65        }
66    
67        std::vector<String> AudioOutputDeviceJack::AudioChannelJack::ParameterJackBindings::PossibilitiesAsString() {
68            const char** pPortNames = jack_get_ports(pChannel->pDevice->hJackClient, NULL, NULL, JackPortIsInput);
69            if (!pPortNames) return std::vector<String>();
70            std::vector<String> result;
71            for (int i = 0; pPortNames[i]; i++) result.push_back(pPortNames[i]);
72            //free(pPortNames); FIXME: pPortNames should be freed here
73            return result;
74        }
75    
76        void AudioOutputDeviceJack::AudioChannelJack::ParameterJackBindings::OnSetValue(std::vector<String> vS) {
77            // TODO: we should remove all existing bindings before we connect new ones here
78            String src_name = "LinuxSampler:" + ((DeviceRuntimeParameterString*)pChannel->Parameters["NAME"])->ValueAsString();
79            for (int i = 0; i < vS.size(); i++) {
80                String dst_name = vS[i];
81                int res = jack_connect(pChannel->pDevice->hJackClient, src_name.c_str(), dst_name.c_str());
82                if (res == EEXIST) throw AudioOutputException("Jack: Connection to port '" + dst_name + "' already established");
83                else if (res)      throw AudioOutputException("Jack: Cannot connect port '" + src_name + "' to port '" + dst_name + "'");
84            }
85        }
86    
87        String AudioOutputDeviceJack::AudioChannelJack::ParameterJackBindings::Name() {
88            return "JACK_BINDINGS";
89        }
90    
91    
92    
93    // *************** AudioChannelJack ***************
94    // *
95    
96        AudioOutputDeviceJack::AudioChannelJack::AudioChannelJack(uint ChannelNr, AudioOutputDeviceJack* pDevice) throw (AudioOutputException) : AudioChannel(ChannelNr, CreateJackPort(ChannelNr, pDevice), pDevice->uiMaxSamplesPerCycle) {
97            this->pDevice   = pDevice;
98            this->ChannelNr = ChannelNr;
99            Parameters["NAME"]          = new ParameterName(this);
100            Parameters["JACK_BINDINGS"] = new ParameterJackBindings(this);
101        }
102    
103        AudioOutputDeviceJack::AudioChannelJack::~AudioChannelJack() {
104            //TODO: delete JACK port
105        }
106    
107        float* AudioOutputDeviceJack::AudioChannelJack::CreateJackPort(uint ChannelNr, AudioOutputDeviceJack* pDevice) throw (AudioOutputException) {
108            String port_id = ToString(ChannelNr);
109            hJackPort = jack_port_register(pDevice->hJackClient, port_id.c_str(), JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
110            if (!hJackPort) throw AudioOutputException("Jack: Cannot register Jack output port.");
111            return (float*) jack_port_get_buffer(hJackPort, pDevice->uiMaxSamplesPerCycle);
112        }
113    
114    
115    
116    // *************** AudioOutputDeviceJack::ParameterName ***************
117    // *
118    
119        AudioOutputDeviceJack::ParameterName::ParameterName() : DeviceCreationParameterString() {
120            InitWithDefault(); // use default name
121        }
122    
123        AudioOutputDeviceJack::ParameterName::ParameterName(String s) throw (LinuxSamplerException) : DeviceCreationParameterString(s) {
124        }
125    
126        String AudioOutputDeviceJack::ParameterName::Description() {
127            return "Arbitrary JACK client name";
128        }
129    
130        bool AudioOutputDeviceJack::ParameterName::Fix() {
131            return true;
132        }
133    
134        bool AudioOutputDeviceJack::ParameterName::Mandatory() {
135            return false;
136        }
137    
138        std::map<String,DeviceCreationParameter*> AudioOutputDeviceJack::ParameterName::DependsAsParameters() {
139            return std::map<String,DeviceCreationParameter*>(); // no dependencies
140        }
141    
142        std::vector<String> AudioOutputDeviceJack::ParameterName::PossibilitiesAsString(std::map<String,String> Parameters) {
143            return std::vector<String>();
144        }
145    
146        optional<String> AudioOutputDeviceJack::ParameterName::DefaultAsString(std::map<String,String> Parameters) {
147            return (existingJackDevices) ? "LinuxSampler" + ToString(existingJackDevices) : "LinuxSampler";
148        }
149    
150        void AudioOutputDeviceJack::ParameterName::OnSetValue(String s) throw (LinuxSamplerException) {
151            // not possible, as parameter is fix
152        }
153    
154        String AudioOutputDeviceJack::ParameterName::Name() {
155            return "NAME";
156        }
157    
158      /* Common parameters for now they'll have to be registered here. */  
159      REGISTER_AUDIO_OUTPUT_DRIVER_PARAMETER(AudioOutputDeviceJack, ParameterActive);  
160      REGISTER_AUDIO_OUTPUT_DRIVER_PARAMETER(AudioOutputDeviceJack, ParameterSampleRate);  // *************** AudioOutputDeviceJack ***************
161      REGISTER_AUDIO_OUTPUT_DRIVER_PARAMETER(AudioOutputDeviceJack, ParameterChannels);  // *
162    
163      /**      /**
164       * Open and initialize connection to the JACK system.       * Open and initialize connection to the JACK system.
# Line 41  namespace LinuxSampler { Line 167  namespace LinuxSampler {
167       * @throws AudioOutputException  on error       * @throws AudioOutputException  on error
168       * @see AcquireChannels()       * @see AcquireChannels()
169       */       */
170      AudioOutputDeviceJack::AudioOutputDeviceJack(std::map<String,DeviceCreationParameter*> Parameters) : AudioOutputDevice(std::map<String,DeviceCreationParameter*>()) {      AudioOutputDeviceJack::AudioOutputDeviceJack(std::map<String,DeviceCreationParameter*> Parameters) : AudioOutputDevice(Parameters) {
171          if ((hJackClient = jack_client_new("LinuxSampler")) == 0)          if (((DeviceCreationParameterString*)Parameters["NAME"])->ValueAsString().size() >= jack_client_name_size())
172                throw LinuxSamplerException("JACK client name too long");
173    
174            if ((hJackClient = jack_client_new(((DeviceCreationParameterString*)Parameters["NAME"])->ValueAsString().c_str())) == 0)
175              throw AudioOutputException("Seems Jack server not running.");              throw AudioOutputException("Seems Jack server not running.");
176    
177            existingJackDevices++;
178    
179          jack_set_process_callback(hJackClient, __libjack_process_callback, this);          jack_set_process_callback(hJackClient, __libjack_process_callback, this);
180          jack_on_shutdown(hJackClient, __libjack_shutdown_callback, this);          jack_on_shutdown(hJackClient, __libjack_shutdown_callback, this);
181          if (jack_activate(hJackClient))          if (jack_activate(hJackClient))
# Line 52  namespace LinuxSampler { Line 183  namespace LinuxSampler {
183    
184          uiMaxSamplesPerCycle = jack_get_buffer_size(hJackClient);          uiMaxSamplesPerCycle = jack_get_buffer_size(hJackClient);
185    
186  #if 0          // create audio channels
187          // create amount of audio channels and jack output ports we need for autoconnect          AcquireChannels(((DeviceCreationParameterInt*)Parameters["CHANNELS"])->ValueAsInt());
188          for (uint p = 0; p < AutoConnectPorts; p++) {  
189              // create jack output port          // finally activate device if desired
190              std::stringstream portid; portid << "LinuxSampler:" << p;          if (((DeviceCreationParameterBool*)Parameters["ACTIVE"])->ValueAsBool()) Play();
             jack_port_t* newport;  
             if (newport = jack_port_register(hJackClient, portid.str().c_str(), JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0)) {  
                 hJackPorts.push_back(newport);  
             }  
             else throw AudioOutputException("Jack: Cannot register Jack output port.");  
   
             // create LS audio channel  
             std::stringstream chanid; chanid << "Jack:" << p;  
             Channels.push_back(new AudioChannel((float*) jack_port_get_buffer(newport, uiMaxSamplesPerCycle), uiMaxSamplesPerCycle, chanid.str()));  
   
             // autoconnect port  
             if (jack_connect(hJackClient, portid.str().c_str(), AutoConnectPortIDs[p].c_str())) {  
                 std::stringstream err; err << "Jack: Cannot auto connect port " << p;  
                 throw AudioOutputException(err.str());  
             }  
         }  
 #endif  
191      }      }
192    
193      AudioOutputDeviceJack::~AudioOutputDeviceJack() {      AudioOutputDeviceJack::~AudioOutputDeviceJack() {
         // destroy all audio channels  
         for (int c = 0; c < Channels.size(); c++) delete Channels[c];  
194          // destroy jack client          // destroy jack client
195          jack_client_close(hJackClient);          jack_client_close(hJackClient);
196            existingJackDevices--;
197      }      }
198    
199      /**      /**
# Line 110  namespace LinuxSampler { Line 223  namespace LinuxSampler {
223          csIsPlaying.PushAndUnlock(false);          csIsPlaying.PushAndUnlock(false);
224      }      }
225    
226      void AudioOutputDeviceJack::AcquireChannels(uint uiChannels) {      AudioChannel* AudioOutputDeviceJack::CreateChannel(uint ChannelNr) {
227          if (uiChannels > this->Channels.size()) {          return new AudioChannelJack(ChannelNr, this);
             for (int c = this->Channels.size(); c < uiChannels; c++) {  
                 // create new jack output port  
                 std::stringstream portid; portid << "LinuxSampler:" << c;  
                 jack_port_t* newport;  
                 if (newport = jack_port_register(hJackClient, portid.str().c_str(), JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0)) {  
                     hJackPorts.push_back(newport);  
                 }  
                 else throw AudioOutputException("Jack: Cannot register Jack output port.");  
   
                 // create LS audio channel  
                 std::stringstream chanid; chanid << "Jack:" << c;  
                 Channels.push_back(new AudioChannel((float*) jack_port_get_buffer(newport, uiMaxSamplesPerCycle), uiMaxSamplesPerCycle, chanid.str()));  
             }  
         }  
228      }      }
229    
230      uint AudioOutputDeviceJack::MaxSamplesPerCycle() {      uint AudioOutputDeviceJack::MaxSamplesPerCycle() {
# Line 137  namespace LinuxSampler { Line 236  namespace LinuxSampler {
236      }      }
237    
238      String AudioOutputDeviceJack::Name() {      String AudioOutputDeviceJack::Name() {
239          return "Jack";          return "JACK";
240      }      }
241    
242      String AudioOutputDeviceJack::Driver() {      String AudioOutputDeviceJack::Driver() {
# Line 149  namespace LinuxSampler { Line 248  namespace LinuxSampler {
248      }      }
249    
250      String AudioOutputDeviceJack::Version() {      String AudioOutputDeviceJack::Version() {
251         String s = "$Revision: 1.9 $";         String s = "$Revision: 1.16 $";
252         return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword         return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
253      }      }
254    

Legend:
Removed from v.200  
changed lines
  Added in v.379

  ViewVC Help
Powered by ViewVC