More work on track import and some cleaning up of ElementImporter interface
[ardour.git] / libs / ardour / ardour / audio_track_importer.h
1 /*
2     Copyright (C) 2008 Paul Davis
3     Author: Sakari Bergen
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_track_importer_h__
22 #define __ardour_audio_track_importer_h__
23
24 #include <list>
25
26 #include <pbd/xml++.h>
27 #include <pbd/id.h>
28
29 #include <ardour/element_importer.h>
30 #include <ardour/element_import_handler.h>
31
32 namespace ARDOUR {
33
34 class AudioPlaylistImportHandler;
35 class AudioPlaylistImporter;
36
37 class AudioTrackImportHandler : public ElementImportHandler
38 {
39   public:
40         AudioTrackImportHandler (XMLTree const & source, Session & session, AudioPlaylistImportHandler & pl_handler);
41         virtual ~AudioTrackImportHandler () {}
42         virtual string get_info () const;
43
44   private:
45         AudioPlaylistImportHandler & pl_handler;
46 };
47
48
49 class AudioTrackImporter : public ElementImporter
50 {
51   public:
52         AudioTrackImporter (XMLTree const & source,
53                             Session & session,
54                             AudioTrackImportHandler & track_handler,
55                             XMLNode const & node,
56                             AudioPlaylistImportHandler & pl_handler);
57
58         string get_info () const;
59
60   protected:
61         bool _prepare_move ();
62         void _cancel_move ();
63         void _move ();
64
65   private:
66
67         typedef boost::shared_ptr<AudioPlaylistImporter> PlaylistPtr;
68         typedef std::list<PlaylistPtr> PlaylistList;
69
70         bool parse_route_xml ();
71         bool parse_io ();
72         
73         bool parse_processor (XMLNode & node);
74         bool parse_controllable (XMLNode & node);
75         bool parse_automation (XMLNode & node);
76         bool rate_convert_events (XMLNode & node);
77         
78         AudioTrackImportHandler & track_handler;
79         XMLNode xml_track;
80         
81         PBD::ID old_ds_id;
82         PBD::ID new_ds_id;
83         
84         PlaylistList playlists;
85         AudioPlaylistImportHandler & pl_handler;
86 };
87
88 } // namespace ARDOUR
89
90 #endif