ardour
source.h
Go to the documentation of this file.
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>
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 
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  };
53 
55 
56  Source (Session&, DataType type, const std::string& name, Flag flags=Flag(0));
57  Source (Session&, const XMLNode&);
58 
59  virtual ~Source ();
60 
61  DataType type() { return _type; }
62 
63  time_t timestamp() const { return _timestamp; }
64  void stamp (time_t when) { _timestamp = when; }
65 
66  virtual bool empty () const = 0;
67  virtual framecnt_t length (framepos_t pos) const = 0;
68  virtual void update_length (framecnt_t cnt) = 0;
69 
70  virtual framepos_t natural_position() const { return 0; }
71 
72  void mark_for_remove();
73 
74  virtual void mark_streaming_write_started (const Lock& lock) {}
75  virtual void mark_streaming_write_completed (const Lock& lock) = 0;
76 
77  virtual void session_saved() {}
78 
79  XMLNode& get_state ();
80  int set_state (const XMLNode&, int version);
81 
82  bool destructive() const { return (_flags & Destructive); }
83  bool writable () const;
84  virtual bool set_destructive (bool /*yn*/) { return false; }
85  virtual bool length_mutable() const { return false; }
86 
87  static PBD::Signal1<void,Source*> SourceCreated;
88 
89  bool has_been_analysed() const;
90  virtual bool can_be_analysed() const { return false; }
91  virtual void set_been_analysed (bool yn);
92  virtual bool check_for_analysis_data_on_disk();
93 
94  PBD::Signal0<void> AnalysisChanged;
95 
97  std::string get_transients_path() const;
98  int load_transients (const std::string&);
99 
100  framepos_t timeline_position() const { return _timeline_position; }
101  virtual void set_timeline_position (framepos_t pos);
102 
103  void set_allow_remove_if_empty (bool yn);
104 
105  Glib::Threads::Mutex& mutex() { return _lock; }
106  Flag flags() const { return _flags; }
107 
108  virtual void inc_use_count ();
109  virtual void dec_use_count ();
110  int use_count() const { return g_atomic_int_get (const_cast<gint*>(&_use_count)); }
111  bool used() const { return use_count() > 0; }
112  uint32_t level() const { return _level; }
113 
114  std::string ancestor_name() { return _ancestor_name.empty() ? name() : _ancestor_name; }
115  void set_ancestor_name(const std::string& name) { _ancestor_name = name; }
116 
117  protected:
120  time_t _timestamp;
122  bool _analysed;
123  mutable Glib::Threads::Mutex _lock;
124  mutable Glib::Threads::Mutex _analysis_lock;
125  gint _use_count; /* atomic */
126  uint32_t _level; /* how deeply nested is this source w.r.t a disk file */
127  std::string _ancestor_name;
128 
129  private:
130  void fix_writable_flags ();
131 };
132 
133 }
134 
135 #endif /* __ardour_source_h__ */
Flag _flags
Definition: source.h:119
virtual bool length_mutable() const
Definition: source.h:85
Flag flags() const
Definition: source.h:106
PBD::Signal0< void > AnalysisChanged
Definition: source.h:94
Glib::Threads::Mutex::Lock Lock
Definition: source.h:54
void set_ancestor_name(const std::string &name)
Definition: source.h:115
time_t _timestamp
Definition: source.h:120
DataType type()
Definition: source.h:61
virtual void session_saved()
Definition: source.h:77
uint32_t level() const
Definition: source.h:112
Glib::Threads::Mutex _analysis_lock
Definition: source.h:124
framepos_t _timeline_position
Definition: source.h:121
std::string _ancestor_name
Definition: source.h:127
time_t timestamp() const
Definition: source.h:63
bool destructive() const
Definition: source.h:82
void stamp(time_t when)
Definition: source.h:64
virtual void mark_streaming_write_started(const Lock &lock)
Definition: source.h:74
bool _analysed
Definition: source.h:122
int64_t framecnt_t
Definition: types.h:76
gint _use_count
Definition: source.h:125
AnalysisFeatureList transients
Definition: source.h:96
std::list< framepos_t > AnalysisFeatureList
Definition: types.h:530
virtual bool can_be_analysed() const
Definition: source.h:90
Definition: amp.h:29
int64_t framepos_t
Definition: types.h:66
virtual bool set_destructive(bool)
Definition: source.h:84
#define LIBARDOUR_API
Glib::Threads::Mutex & mutex()
Definition: source.h:105
static PBD::Signal1< void, Source * > SourceCreated
Definition: source.h:87
const char * name
Writable
Definition: selectable.h:36
uint32_t _level
Definition: source.h:126
Definition: xml++.h:95
DataType _type
Definition: source.h:118
framepos_t timeline_position() const
Definition: source.h:100
bool used() const
Definition: source.h:111
std::string ancestor_name()
Definition: source.h:114
int use_count() const
Definition: source.h:110
Glib::Threads::Mutex _lock
Definition: source.h:123
virtual framepos_t natural_position() const
Definition: source.h:70
LIBARDOUR_API PBD::PropertyDescriptor< framecnt_t > length
Definition: region.cc:64