~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/ardour/ardour/audio_track_importer.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 std::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
        ~AudioTrackImporter ();
 
58
 
 
59
        std::string get_info () const;
 
60
 
 
61
  protected:
 
62
        bool _prepare_move ();
 
63
        void _cancel_move ();
 
64
        void _move ();
 
65
 
 
66
  private:
 
67
 
 
68
        typedef boost::shared_ptr<AudioPlaylistImporter> PlaylistPtr;
 
69
        typedef std::list<PlaylistPtr> PlaylistList;
 
70
 
 
71
        bool parse_route_xml ();
 
72
        bool parse_io ();
 
73
 
 
74
        bool parse_processor (XMLNode & node);
 
75
        bool parse_controllable (XMLNode & node);
 
76
        bool parse_automation (XMLNode & node);
 
77
        bool rate_convert_events (XMLNode & node);
 
78
 
 
79
        AudioTrackImportHandler & track_handler;
 
80
        XMLNode xml_track;
 
81
 
 
82
        PBD::ID old_ds_id;
 
83
        PBD::ID new_ds_id;
 
84
 
 
85
        PlaylistList playlists;
 
86
        AudioPlaylistImportHandler & pl_handler;
 
87
};
 
88
 
 
89
} // namespace ARDOUR
 
90
 
 
91
#endif