Fix for compiling on gcc4.
[ardour.git] / libs / ardour / ardour / audio_library.h
1 /*
2     Copyright (C) 2003 Paul Davis
3     Author: 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     $Id$
20 */
21
22 #ifndef __ardour_audio_library_h__
23 #define __ardour_audio_library_h__
24
25 #include <string>
26 #include <map>
27 #include <vector>
28
29 #include <sigc++/signal.h>
30
31 #include <pbd/stateful.h>
32
33 using std::vector;
34 using std::string;
35 using std::map;
36
37 namespace ARDOUR {
38
39 class AudioLibrary : public Stateful
40 {
41   public:
42         AudioLibrary ();
43         ~AudioLibrary ();
44
45         XMLNode& get_state (void);
46         int set_state (const XMLNode&);
47
48         void set_paths (vector<string> paths);
49         vector<string> get_paths ();
50         void scan_paths ();
51
52         void add_member (string member);
53         void remove_member (string uri);
54
55         void search_members_and (vector<string>& results, 
56                                                          const map<string,string>& fields);
57         void search_members_or (vector<string>& results, 
58                                                         const map<string,string>& fields);
59
60         void add_field (string field);
61         void get_fields (vector<string>& fields);
62         void remove_field (string field);
63         string get_field (string uri, string field);
64         void set_field (string uri, string field, string literal);
65         string get_label (string uri);
66         void set_label (string uri, string name);
67
68         void save_changes();
69
70         sigc::signal<void> fields_changed;
71         
72   private:
73         vector<string> sfdb_paths;
74
75         string field_uri (string name);
76
77         bool is_rdf_type (string uri, string type);
78         void remove_uri (string uri);
79
80         string src;
81         
82         void initialize_db();
83         void compact_vector (vector<string>& vec);
84         bool safe_file_extension (string);
85 };
86
87 extern AudioLibrary* Library;
88
89 } // ARDOUR namespace
90
91 #endif // __ardour_audio_library_h__