add new control protocol related files
[ardour.git] / libs / ardour / ardour / seqsource.h
1 /*
2     Copyright (C) 2000 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 #ifndef __playlist_seqsource_h__ 
22 #define __playlist_seqsource_h__
23
24 #include <string>
25
26 #include "edl.h"
27
28 namespace EDL {
29
30 class PlaylistSource : public Source {
31   public:
32         PlaylistSource (Playlist&);
33         ~PlaylistSource ();
34
35         const gchar * const id() { return playlist.name().c_str(); }
36         uint32_t length() { return playlist.length(); }
37         uint32_t read (Source::Data *dst, uint32_t start, uint32_t cnt) {
38                 return playlist.read (dst, start, cnt, false);
39         }
40         uint32_t write (Source::Data *src, uint32_t where, uint32_t cnt) {
41                 return playlist.write (src, where, cnt);
42         }
43
44 //      int read_peaks (peak_data_t *, uint32_t npeaks, uint32_t start, uint32_t cnt);
45 //      int build_peak (uint32_t first_frame, uint32_t cnt);
46
47   protected:
48
49   private:
50         Playlist& playlist;
51 };
52
53 }; /* namespace EDL */
54
55 #endif /* __playlist_seqsource_h__ */