use shared_ptr for all Playlist handling; cleanup works again
[ardour.git] / libs / ardour / named_selection.cc
1 /*
2     Copyright (C) 2003 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <pbd/failed_constructor.h>
22 #include <pbd/error.h>
23
24 #include <ardour/session.h>
25 #include <ardour/utils.h>
26 #include <ardour/playlist.h>
27 #include <ardour/named_selection.h>
28
29 #include "i18n.h"
30
31 using namespace ARDOUR;
32 using namespace PBD;
33
34 sigc::signal<void,NamedSelection*> NamedSelection::NamedSelectionCreated;
35
36 typedef std::list<boost::shared_ptr<Playlist> > PlaylistList;
37
38 NamedSelection::NamedSelection (string n, PlaylistList& l) 
39         : name (n)
40 {
41         playlists = l;
42         for (PlaylistList::iterator i = playlists.begin(); i != playlists.end(); ++i) {
43                 (*i)->use();
44         }
45         NamedSelectionCreated (this);
46 }
47
48 NamedSelection::NamedSelection (Session& session, const XMLNode& node)
49 {
50         XMLNode* lists_node;
51         const XMLProperty* property;
52
53         if ((property = node.property ("name")) == 0) {
54                 throw failed_constructor();
55         }
56
57         name = property->value();
58         
59         if ((lists_node = find_named_node (node, "Playlists")) == 0) {
60                 return;
61         }
62
63         XMLNodeList nlist = lists_node->children();
64         XMLNodeConstIterator niter;
65
66         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
67
68                 const XMLNode* plnode;
69                 string playlist_name;
70                 boost::shared_ptr<Playlist> playlist;
71
72                 plnode = *niter;
73
74                 if ((property = plnode->property ("name")) != 0) {
75                         if ((playlist = session.playlist_by_name (property->value())) != 0) {
76                                 playlist->use();
77                                 playlists.push_back (playlist);
78                         } else {
79                                 warning << string_compose (_("Chunk %1 uses an unknown playlist \"%2\""), name, property->value()) << endmsg;
80                         }
81                 } else {
82                         error << string_compose (_("Chunk %1 contains misformed playlist information"), name) << endmsg;
83                         throw failed_constructor();
84                 }
85         }
86
87         NamedSelectionCreated (this);
88 }
89
90 NamedSelection::~NamedSelection ()
91 {
92         for (PlaylistList::iterator i = playlists.begin(); i != playlists.end(); ++i) {
93                 (*i)->release();
94         }
95 }
96
97 int
98 NamedSelection::set_state (const XMLNode& node)
99 {
100         return 0;
101 }
102
103 XMLNode&
104 NamedSelection::get_state ()
105 {
106         XMLNode* root = new XMLNode ("NamedSelection");
107         XMLNode* child;
108
109         root->add_property ("name", name);
110         child = root->add_child ("Playlists");
111
112         for (PlaylistList::iterator i = playlists.begin(); i != playlists.end(); ++i) {
113                 XMLNode* plnode = new XMLNode ("Playlist");
114
115                 plnode->add_property ("name", (*i)->name());
116                 child->add_child_nocopy (*plnode);
117         }
118         
119         return *root;
120 }