X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Faudiosource.h;h=08c879d92646ee8a60492f26ed845cbfe8a67503;hb=90172686b92b53cc5ab1d60c0e6daecb65d17d3d;hp=d11b8296948436341048a4477af9cbcb7681eb1b;hpb=859e9106e72a7908fa093d946111d148223225a0;p=ardour.git diff --git a/libs/ardour/ardour/audiosource.h b/libs/ardour/ardour/audiosource.h index d11b829694..08c879d926 100644 --- a/libs/ardour/ardour/audiosource.h +++ b/libs/ardour/ardour/audiosource.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000 Paul Davis + Copyright (C) 2000 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,78 +20,70 @@ #ifndef __ardour_audio_source_h__ #define __ardour_audio_source_h__ -#include -#include - #include #include #include #include -#include - -#include +#include -#include -#include -#include -#include - -using std::list; -using std::vector; +#include "ardour/source.h" +#include "ardour/ardour.h" +#include "ardour/readable.h" +#include "pbd/file_manager.h" +#include "pbd/stateful.h" +#include "pbd/xml++.h" namespace ARDOUR { -class AudioSource : public Source, public boost::enable_shared_from_this +class AudioSource : virtual public Source, + public ARDOUR::Readable, + public boost::enable_shared_from_this { public: - AudioSource (Session&, Glib::ustring name); + AudioSource (Session&, std::string name); AudioSource (Session&, const XMLNode&); virtual ~AudioSource (); - nframes64_t readable_length() const { return _length; } - uint32_t n_channels() const { return 1; } + framecnt_t readable_length() const { return _length; } + uint32_t n_channels() const { return 1; } - virtual nframes_t available_peaks (double zoom) const; + bool empty() const; + framecnt_t length (framepos_t pos) const; + void update_length (framepos_t pos, framecnt_t cnt); - /* stopgap until nframes_t becomes nframes64_t. this function is needed by the Readable interface */ + virtual framecnt_t available_peaks (double zoom) const; - virtual nframes64_t read (Sample *dst, nframes64_t start, nframes64_t cnt, int channel) const { - /* XXX currently ignores channel, assuming that source is always mono, which - historically has been true. - */ - return read (dst, (nframes_t) start, (nframes_t) cnt); - } - - virtual nframes_t read (Sample *dst, nframes_t start, nframes_t cnt) const; - virtual nframes_t write (Sample *src, nframes_t cnt); + virtual framecnt_t read (Sample *dst, framepos_t start, framecnt_t cnt, int channel=0) const; + virtual framecnt_t write (Sample *src, framecnt_t cnt); virtual float sample_rate () const = 0; - virtual void mark_for_remove() = 0; - virtual void mark_streaming_write_completed () {} + virtual void mark_streaming_write_completed (); virtual bool can_truncate_peaks() const { return true; } - void set_captured_for (Glib::ustring str) { _captured_for = str; } - Glib::ustring captured_for() const { return _captured_for; } + void set_captured_for (std::string str) { _captured_for = str; } + std::string captured_for() const { return _captured_for; } uint32_t read_data_count() const { return _read_data_count; } uint32_t write_data_count() const { return _write_data_count; } + void dec_read_data_count(nframes_t); - int read_peaks (PeakData *peaks, nframes_t npeaks, nframes_t start, nframes_t cnt, double samples_per_visual_peak) const; + int read_peaks (PeakData *peaks, framecnt_t npeaks, + framepos_t start, framecnt_t cnt, double samples_per_visual_peak) const; - int build_peaks (); - bool peaks_ready (sigc::slot, sigc::connection&) const; + int build_peaks (); + bool peaks_ready (boost::function callWhenReady, PBD::ScopedConnection** connection_created_if_not_ready, PBD::EventLoop* event_loop) const; + + mutable PBD::Signal0 PeaksReady; + mutable PBD::Signal2 PeakRangeReady; - mutable sigc::signal PeaksReady; - mutable sigc::signal PeakRangeReady; - XMLNode& get_state (); - int set_state (const XMLNode&); + int set_state (const XMLNode&, int version); - int rename_peakfile (Glib::ustring newpath); + int rename_peakfile (std::string newpath); void touch_peakfile (); static void set_build_missing_peakfiles (bool yn) { @@ -111,47 +103,58 @@ class AudioSource : public Source, public boost::enable_shared_from_this