Prompter now prevents blank strings or unaltered names & now has a horizontal orienta...
[ardour.git] / gtk2_ardour / sfdb_ui.cc
1 /*
2     Copyright (C) 2005 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
22 #include <map>
23 #include <cerrno>
24
25 #include <gtkmm/box.h>
26 #include <gtkmm/stock.h>
27
28 #include <pbd/basename.h>
29
30 #include <gtkmm2ext/utils.h>
31
32 #include <ardour/audio_library.h>
33 #include <ardour/audioregion.h>
34 #include <ardour/externalsource.h>
35
36 #include "ardour_ui.h"
37 #include "gui_thread.h"
38 #include "prompter.h"
39 #include "sfdb_ui.h"
40 #include "utils.h"
41
42 #include "i18n.h"
43
44 using namespace ARDOUR;
45 using namespace std;
46
47 string length2string (const int32_t frames, const float sample_rate);
48
49 SoundFileBox::SoundFileBox ()
50         :
51         _session(0),
52         current_pid(0),
53         fields(Gtk::ListStore::create(label_columns)),
54         main_box (false, 3),
55         top_box (true, 4),
56         bottom_box (true, 4),
57         play_btn(_("Play")),
58         stop_btn(_("Stop")),
59         add_field_btn(_("Add Field...")),
60         remove_field_btn(_("Remove Field"))
61 {
62         set_name (X_("SoundFileBox"));
63         border_frame.set_label (_("Soundfile Info"));
64         border_frame.add (main_box);
65
66         pack_start (border_frame);
67         set_border_width (4);
68
69         main_box.set_border_width (4);
70
71         main_box.pack_start(length, false, false);
72         main_box.pack_start(format, false, false);
73         main_box.pack_start(channels, false, false);
74         main_box.pack_start(samplerate, false, false);
75         main_box.pack_start(field_view, true, true);
76         main_box.pack_start(top_box, false, false);
77         main_box.pack_start(bottom_box, false, false);
78
79         field_view.set_model (fields);
80         field_view.set_size_request(200, 150);
81         field_view.append_column (_("Field"), label_columns.field);
82         field_view.append_column_editable (_("Value"), label_columns.data);
83
84         top_box.set_homogeneous(true);
85         top_box.pack_start(add_field_btn);
86         top_box.pack_start(remove_field_btn);
87
88         remove_field_btn.set_sensitive(false);
89
90         bottom_box.set_homogeneous(true);
91         bottom_box.pack_start(play_btn);
92         bottom_box.pack_start(stop_btn);
93
94         play_btn.signal_clicked().connect (mem_fun (*this, &SoundFileBox::play_btn_clicked));
95         stop_btn.signal_clicked().connect (mem_fun (*this, &SoundFileBox::stop_btn_clicked));
96
97         add_field_btn.signal_clicked().connect
98                         (mem_fun (*this, &SoundFileBox::add_field_clicked));
99         remove_field_btn.signal_clicked().connect
100                         (mem_fun (*this, &SoundFileBox::remove_field_clicked));
101
102         field_view.get_selection()->signal_changed().connect (mem_fun (*this, &SoundFileBox::field_selected));
103         Library->fields_changed.connect (mem_fun (*this, &SoundFileBox::setup_fields));
104
105         show_all();
106         stop_btn.hide();
107 }
108
109 void
110 SoundFileBox::set_session(Session* s)
111 {
112         _session = s;
113
114         if (!_session) {
115                 play_btn.set_sensitive(false);
116         } else {
117                 _session->AuditionActive.connect(mem_fun (*this, &SoundFileBox::audition_status_changed));
118         }
119 }
120
121 bool
122 SoundFileBox::setup_labels (string filename) 
123 {
124         path = filename;
125
126         string error_msg;
127         if(!ExternalSource::get_soundfile_info (filename, sf_info, error_msg)) {
128                 return false;
129         }
130
131         length.set_alignment (0.0f, 0.0f);
132         length.set_text (string_compose("Length: %1", length2string(sf_info.length, sf_info.samplerate)));
133
134         format.set_alignment (0.0f, 0.0f);
135         format.set_text (sf_info.format_name);
136
137         channels.set_alignment (0.0f, 0.0f);
138         channels.set_text (string_compose("Channels: %1", sf_info.channels));
139
140         samplerate.set_alignment (0.0f, 0.0f);
141         samplerate.set_text (string_compose("Samplerate: %1", sf_info.samplerate));
142
143         setup_fields ();
144
145         return true;
146 }
147
148 void
149 SoundFileBox::setup_fields ()
150 {
151         ENSURE_GUI_THREAD(mem_fun (*this, &SoundFileBox::setup_fields));
152
153         fields->clear ();
154
155         vector<string> field_list;
156         Library->get_fields(field_list);
157
158         vector<string>::iterator i;
159         Gtk::TreeModel::iterator iter;
160         Gtk::TreeModel::Row row;
161         for (i = field_list.begin(); i != field_list.end(); ++i) {
162                 if (!(*i == _("channels") || *i == _("samplerate") ||
163                         *i == _("resolution") || *i == _("format"))) {
164                         iter = fields->append();
165                         row = *iter;
166
167                         string value = Library->get_field(path, *i);
168                         row[label_columns.field] = *i;
169                         row[label_columns.data]  = value;
170                 }
171         }
172 }
173
174 void
175 SoundFileBox::play_btn_clicked ()
176 {
177         if (!_session) {
178                 return;
179         }
180
181         _session->cancel_audition();
182
183         if (access(path.c_str(), R_OK)) {
184                 warning << string_compose(_("Could not read file: %1 (%2)."), path, strerror(errno)) << endmsg;
185                 return;
186         }
187
188         static std::map<string, AudioRegion*> region_cache;
189
190         if (region_cache.find (path) == region_cache.end()) {
191                 AudioRegion::SourceList srclist;
192                 ExternalSource* sfs;
193
194                 for (int n = 0; n < sf_info.channels; ++n) {
195                         try {
196                                 sfs = ExternalSource::create (path+":"+string_compose("%1", n), false);
197                                 srclist.push_back(sfs);
198
199                         } catch (failed_constructor& err) {
200                                 error << _("Could not access soundfile: ") << path << endmsg;
201                                 return;
202                         }
203                 }
204
205                 if (srclist.empty()) {
206                         return;
207                 }
208
209                 string result;
210                 _session->region_name (result, PBD::basename(srclist[0]->name()), false);
211                 AudioRegion* a_region = new AudioRegion(srclist, 0, srclist[0]->length(), result, 0, Region::DefaultFlags, false);
212                 region_cache[path] = a_region;
213         }
214
215         play_btn.hide();
216         stop_btn.show();
217
218         _session->audition_region(*region_cache[path]);
219 }
220
221 void
222 SoundFileBox::stop_btn_clicked ()
223 {
224         if (_session) {
225                 _session->cancel_audition();
226                 play_btn.show();
227                 stop_btn.hide();
228         }
229 }
230
231 void
232 SoundFileBox::add_field_clicked ()
233 {
234     ArdourPrompter prompter (true);
235     string name;
236
237     prompter.set_prompt (_("Name for Field"));
238     prompter.add_button (Gtk::Stock::ADD, Gtk::RESPONSE_ACCEPT);
239     prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
240
241     switch (prompter.run ()) {
242                 case Gtk::RESPONSE_ACCEPT:
243                 prompter.get_result (name);
244                         if (name.length()) {
245                                 Library->add_field (name);
246                                 Library->save_changes ();
247                         }
248                 break;
249
250             default:
251                 break;
252     }
253 }
254
255 void
256 SoundFileBox::remove_field_clicked ()
257 {
258         field_view.get_selection()->selected_foreach_iter(mem_fun(*this, &SoundFileBox::delete_row));
259
260         Library->save_changes ();
261 }
262
263 void
264 SoundFileBox::delete_row (const Gtk::TreeModel::iterator& iter)
265 {
266         Gtk::TreeModel::Row row = *iter;
267
268         Library->remove_field(row[label_columns.field]);
269 }
270
271 void
272 SoundFileBox::audition_status_changed (bool active)
273 {
274         ENSURE_GUI_THREAD(bind (mem_fun (*this, &SoundFileBox::audition_status_changed), active));
275         
276         if (!active) {
277                 stop_btn_clicked ();
278         }
279 }
280
281 void
282 SoundFileBox::field_selected ()
283 {
284         if (field_view.get_selection()->count_selected_rows()) {
285                 remove_field_btn.set_sensitive(true);
286         } else {
287                 remove_field_btn.set_sensitive(false);
288         }
289 }
290
291 SoundFileBrowser::SoundFileBrowser (string title)
292         : ArdourDialog (title, false),
293           chooser (Gtk::FILE_CHOOSER_ACTION_OPEN)
294 {
295         get_vbox()->pack_start(chooser);
296         chooser.set_preview_widget(preview);
297         chooser.set_select_multiple (true);
298
299         chooser.signal_update_preview().connect(mem_fun(*this, &SoundFileBrowser::update_preview));
300 }
301
302 void
303 SoundFileBrowser::set_session (Session* s)
304 {
305         preview.set_session(s);
306 }
307
308 void
309 SoundFileBrowser::update_preview ()
310 {
311         chooser.set_preview_widget_active(preview.setup_labels(chooser.get_filename()));
312 }
313
314 SoundFileChooser::SoundFileChooser (string title)
315         :
316         SoundFileBrowser(title)
317 {
318         add_button (Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
319         add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
320         show_all ();
321 }
322
323 static const char *import_mode_strings[] = {
324         X_("Add to Region list"),
325         X_("Add as new Track(s)"),
326         X_("Add to selected Track(s)"),
327         0
328 };
329
330 vector<string> SoundFileOmega::mode_strings;
331
332 SoundFileOmega::SoundFileOmega (string title)
333         : SoundFileBrowser (title),
334           split_check (_("Split Channels"))
335 {
336         if (mode_strings.empty()) {
337                 mode_strings = internationalize (import_mode_strings);
338         }
339
340         ARDOUR_UI::instance()->tooltips().set_tip(split_check, 
341                         _("Create a region for each channel"));
342
343         Gtk::Button* btn = add_button (_("Embed"), ResponseEmbed);
344         ARDOUR_UI::instance()->tooltips().set_tip(*btn, 
345                         _("Link to an external file"));
346
347         btn = add_button (_("Import"), ResponseImport);
348         ARDOUR_UI::instance()->tooltips().set_tip(*btn, 
349                         _("Copy a file to the session folder"));
350
351         add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE);
352
353         Gtk::HBox *box = manage (new Gtk::HBox());
354
355         Gtkmm2ext::set_popdown_strings (mode_combo, mode_strings);
356
357         set_mode (Editing::ImportAsRegion);
358
359         box->pack_start (split_check);
360         box->pack_start (mode_combo);
361
362         mode_combo.signal_changed().connect (mem_fun (*this, &SoundFileOmega::mode_changed));
363
364         chooser.set_extra_widget (*box);
365         
366         show_all ();
367 }
368
369 bool
370 SoundFileOmega::get_split ()
371 {
372         return split_check.get_active();
373 }
374
375 vector<Glib::ustring>
376 SoundFileOmega::get_paths ()
377 {
378         return chooser.get_filenames();
379 }
380
381 void
382 SoundFileOmega::set_mode (Editing::ImportMode mode)
383 {
384         mode_combo.set_active_text (mode_strings[(int)mode]);
385
386         switch (mode) {
387         case Editing::ImportAsRegion:
388                 split_check.set_sensitive (true);
389                 break;
390         case Editing::ImportAsTrack:
391                 split_check.set_sensitive (true);
392                 break;
393         case Editing::ImportToTrack:
394                 split_check.set_sensitive (false);
395                 break;
396         }
397 }
398
399 Editing::ImportMode
400 SoundFileOmega::get_mode ()
401 {
402         vector<string>::iterator i;
403         uint32_t n;
404         string str = mode_combo.get_active_text ();
405
406         for (n = 0, i = mode_strings.begin (); i != mode_strings.end(); ++i, ++n) {
407                 if (str == (*i)) {
408                         break;
409                 }
410         }
411
412         if (i == mode_strings.end()) {
413                 fatal << string_compose (_("programming error: %1"), X_("unknown import mode string")) << endmsg;
414                 /*NOTREACHED*/
415         }
416
417         return (Editing::ImportMode) (n);
418 }
419
420 void
421 SoundFileOmega::mode_changed ()
422 {
423         Editing::ImportMode mode = get_mode();
424
425         switch (mode) {
426         case Editing::ImportAsRegion:
427                 split_check.set_sensitive (true);
428                 break;
429         case Editing::ImportAsTrack:
430                 split_check.set_sensitive (true);
431                 break;
432         case Editing::ImportToTrack:
433                 split_check.set_sensitive (false);
434                 break;
435         }
436 }