More work on track import and some cleaning up of ElementImporter interface
[ardour.git] / libs / ardour / ardour / audio_playlist_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_playlist_importer_h__
22 #define __ardour_audio_playlist_importer_h__
23
24 #include <list>
25
26 #include <boost/shared_ptr.hpp>
27
28 #include <pbd/xml++.h>
29 #include <pbd/id.h>
30
31 #include <ardour/element_importer.h>
32 #include <ardour/element_import_handler.h>
33 #include <ardour/types.h>
34
35 #include "i18n.h"
36
37 namespace ARDOUR {
38
39 class AudioRegionImportHandler;
40 class AudioRegionImporter;
41 class AudioPlaylistImporter;
42
43 class AudioPlaylistImportHandler : public ElementImportHandler
44 {
45   public:
46         typedef boost::shared_ptr<AudioPlaylistImporter> PlaylistPtr;
47         typedef std::list<PlaylistPtr> PlaylistList;
48
49         AudioPlaylistImportHandler (XMLTree const & source, Session & session, AudioRegionImportHandler & region_handler, const char * nodename = "Playlists");
50         virtual ~AudioPlaylistImportHandler () {}
51         virtual string get_info () const;
52         
53         void get_regions (XMLNode const & node, ElementList & list) const;
54         void update_region_id (XMLProperty* id_prop);
55
56         void playlists_by_diskstream (PBD::ID const & id, PlaylistList & list) const;
57         
58   protected:
59         AudioRegionImportHandler & region_handler;
60 };
61
62 class UnusedAudioPlaylistImportHandler : public AudioPlaylistImportHandler
63 {
64   public:
65         UnusedAudioPlaylistImportHandler (XMLTree const & source, Session & session, AudioRegionImportHandler & region_handler) :
66                 AudioPlaylistImportHandler (source, session, region_handler, X_("UnusedPlaylists")) { }
67         string get_info () const { return _("Audio Playlists (unused)"); }
68 };
69
70 class AudioPlaylistImporter : public ElementImporter
71 {
72   public:
73         AudioPlaylistImporter (XMLTree const & source, Session & session, AudioPlaylistImportHandler & handler, XMLNode const & node);
74         AudioPlaylistImporter (AudioPlaylistImporter const & other);
75
76         string get_info () const;
77         
78         void set_diskstream (PBD::ID const & id);
79         PBD::ID const & orig_diskstream () const { return orig_diskstream_id; }
80
81   protected:
82         bool _prepare_move ();
83         void _cancel_move ();
84         void _move ();
85
86   private:
87         typedef std::list<boost::shared_ptr<AudioRegionImporter> > RegionList;
88
89         void populate_region_list ();
90
91         AudioPlaylistImportHandler & handler;
92         XMLNode const & orig_node;
93         XMLNode xml_playlist;
94         PBD::ID orig_diskstream_id;
95         PBD::ID diskstream_id;
96         RegionList regions;
97 };
98
99 } // namespace ARDOUR
100
101 #endif