Add Import from session -functionality
[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
42 class AudioPlaylistImportHandler : public ElementImportHandler
43 {
44   public:
45         AudioPlaylistImportHandler (XMLTree const & source, Session & session, AudioRegionImportHandler & region_handler, const char * nodename = "Playlists");
46         virtual ~AudioPlaylistImportHandler () {}
47         virtual string get_info () const;
48         
49         void get_regions (XMLNode const & node, ElementList & list);
50         void update_region_id (XMLProperty* id_prop);
51         
52   protected:
53         AudioRegionImportHandler & region_handler;
54 };
55
56 class UnusedAudioPlaylistImportHandler : public AudioPlaylistImportHandler
57 {
58   public:
59         UnusedAudioPlaylistImportHandler (XMLTree const & source, Session & session, AudioRegionImportHandler & region_handler) :
60                 AudioPlaylistImportHandler (source, session, region_handler, X_("UnusedPlaylists")) { }
61         string get_info () const { return _("Audio Playlists (unused)"); }
62 };
63
64 class AudioPlaylistImporter : public ElementImporter
65 {
66   public:
67         AudioPlaylistImporter (XMLTree const & source, Session & session, AudioPlaylistImportHandler & handler, XMLNode const & node);
68
69         string get_info () const;
70         bool prepare_move ();
71         void cancel_move ();
72         void move ();
73         
74         void set_diskstream (PBD::ID const & id);
75
76   private:
77         typedef std::list<boost::shared_ptr<AudioRegionImporter> > RegionList;
78
79         AudioPlaylistImportHandler & handler;
80         XMLNode xml_playlist;
81         PBD::ID diskstream_id;
82         RegionList regions;
83 };
84
85 } // namespace ARDOUR
86
87 #endif