selected Stripables now have a counter to indicate the order they were selected in
[ardour.git] / libs / ardour / ardour / source.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 */
19
20 #ifndef __ardour_source_h__
21 #define __ardour_source_h__
22
23 #include <string>
24 #include <set>
25
26 #include <glibmm/threads.h>
27
28 #include <boost/utility.hpp>
29 #include "pbd/statefuldestructible.h"
30
31 #include "ardour/ardour.h"
32 #include "ardour/session_object.h"
33 #include "ardour/data_type.h"
34
35 namespace ARDOUR {
36
37 class Session;
38
39 class LIBARDOUR_API Source : public SessionObject
40 {
41   public:
42         enum Flag {
43                 Writable = 0x1,
44                 CanRename = 0x2,
45                 Broadcast = 0x4,
46                 Removable = 0x8,
47                 RemovableIfEmpty = 0x10,
48                 RemoveAtDestroy = 0x20,
49                 NoPeakFile = 0x40,
50                 Destructive = 0x80,
51                 Empty = 0x100, /* used for MIDI only */
52                 RF64_RIFF = 0x200,
53         };
54
55         typedef Glib::Threads::Mutex::Lock Lock;
56
57         Source (Session&, DataType type, const std::string& name, Flag flags=Flag(0));
58         Source (Session&, const XMLNode&);
59
60         virtual ~Source ();
61
62         DataType type() { return _type; }
63
64         time_t timestamp() const { return _timestamp; }
65         void stamp (time_t when) { _timestamp = when; }
66
67         virtual bool       empty () const = 0;
68         virtual framecnt_t length (framepos_t pos) const = 0;
69         virtual void       update_length (framecnt_t cnt) = 0;
70
71         virtual framepos_t natural_position() const { return 0; }
72
73         void mark_for_remove();
74
75         virtual void mark_streaming_write_started (const Lock& lock) {}
76         virtual void mark_streaming_write_completed (const Lock& lock) = 0;
77
78         virtual void session_saved() {}
79
80         XMLNode& get_state ();
81         int set_state (const XMLNode&, int version);
82
83         bool         destructive() const       { return (_flags & Destructive); }
84         bool         writable () const;
85 #ifdef XXX_OLD_DESTRUCTIVE_API_XXX
86         virtual bool set_destructive (bool /*yn*/) { return false; }
87 #endif
88         virtual bool length_mutable() const    { return false; }
89
90         static PBD::Signal1<void,Source*>             SourceCreated;
91
92         bool has_been_analysed() const;
93         virtual bool can_be_analysed() const { return false; }
94         virtual void set_been_analysed (bool yn);
95         virtual bool check_for_analysis_data_on_disk();
96
97         PBD::Signal0<void> AnalysisChanged;
98
99         AnalysisFeatureList transients;
100         std::string get_transients_path() const;
101         int load_transients (const std::string&);
102
103         framepos_t    timeline_position() const { return _timeline_position; }
104         virtual void set_timeline_position (framepos_t pos);
105
106         void set_allow_remove_if_empty (bool yn);
107
108         Glib::Threads::Mutex& mutex() { return _lock; }
109         Flag         flags() const { return _flags; }
110
111         virtual void inc_use_count ();
112         virtual void dec_use_count ();
113         int  use_count() const { return g_atomic_int_get (const_cast<gint*>(&_use_count)); }
114         bool used() const { return use_count() > 0; }
115         uint32_t level() const { return _level; }
116
117         std::string ancestor_name() { return _ancestor_name.empty() ? name() : _ancestor_name; }
118         void set_ancestor_name(const std::string& name) { _ancestor_name = name; }
119
120   protected:
121         DataType            _type;
122         Flag                _flags;
123         time_t              _timestamp;
124         framepos_t          _timeline_position;
125         bool                _analysed;
126         mutable Glib::Threads::Mutex _lock;
127         mutable Glib::Threads::Mutex _analysis_lock;
128         gint                _use_count; /* atomic */
129         uint32_t            _level; /* how deeply nested is this source w.r.t a disk file */
130         std::string         _ancestor_name;
131
132   private:
133         void fix_writable_flags ();
134 };
135
136 }
137
138 #endif /* __ardour_source_h__ */