assert() to help find some possible causes of #2991. Fix some confusion with GTK...
[ardour.git] / libs / ardour / region_factory.cc
index 8b2d30d511cc485603958fc3db3d316018b67569..70ea326230ca0f203d9d564581412dc6b850b740 100644 (file)
@@ -18,6 +18,7 @@
 */
 
 #include "pbd/error.h"
+#include "pbd/boost_debug.h"
 
 #include "ardour/session.h"
 
@@ -33,7 +34,7 @@
 using namespace ARDOUR;
 using namespace PBD;
 
-sigc::signal<void,boost::shared_ptr<Region> > RegionFactory::CheckNewRegion;
+PBD::Signal1<void,boost::shared_ptr<Region> > RegionFactory::CheckNewRegion;
 
 boost::shared_ptr<Region>
 RegionFactory::create (boost::shared_ptr<Region> region, nframes_t start,
@@ -45,6 +46,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, nframes_t start,
 
        if ((other_a = boost::dynamic_pointer_cast<AudioRegion>(region)) != 0) {
                AudioRegion* ar = new AudioRegion (other_a, start, length, name, layer, flags);
+               boost_debug_shared_ptr_mark_interesting (ar, "Region");
                boost::shared_ptr<AudioRegion> arp (ar);
                boost::shared_ptr<Region> ret (boost::static_pointer_cast<Region> (arp));
                ret->unlock_property_changes ();
@@ -76,7 +78,9 @@ RegionFactory::create (boost::shared_ptr<const Region> region)
        boost::shared_ptr<const MidiRegion> mr;
 
        if ((ar = boost::dynamic_pointer_cast<const AudioRegion>(region)) != 0) {
-               boost::shared_ptr<Region> ret (new AudioRegion (ar));
+               AudioRegion* arn = new AudioRegion (ar);
+               boost_debug_shared_ptr_mark_interesting (arn, "Region");
+               boost::shared_ptr<Region> ret (arn);
                ret->unlock_property_changes ();
                /* pure copy constructor - no CheckNewRegion emitted */
                return ret;
@@ -114,6 +118,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, const SourceList& srcs,
 
        if ((other = boost::dynamic_pointer_cast<AudioRegion>(region)) != 0) {
                AudioRegion* ar = new AudioRegion (other, srcs, srcs.front()->length(srcs.front()->timeline_position()), name, layer, flags);
+               boost_debug_shared_ptr_mark_interesting (ar, "Region");
                boost::shared_ptr<AudioRegion> arp (ar);
                boost::shared_ptr<Region> ret (boost::static_pointer_cast<Region> (arp));
                ret->unlock_property_changes ();
@@ -152,6 +157,7 @@ RegionFactory::create (const SourceList& srcs, nframes_t start, nframes_t length
        if (srcs[0]->type() == DataType::AUDIO) {
 
                AudioRegion* ar = new AudioRegion (srcs, start, length, name, layer, flags);
+               boost_debug_shared_ptr_mark_interesting (ar, "Region");
                boost::shared_ptr<AudioRegion> arp (ar);
                boost::shared_ptr<Region> ret (boost::static_pointer_cast<Region> (arp));
                ret->unlock_property_changes ();
@@ -184,7 +190,9 @@ RegionFactory::create (SourceList& srcs, const XMLNode& node)
        }
 
        if (srcs[0]->type() == DataType::AUDIO) {
-               boost::shared_ptr<Region> ret (new AudioRegion (srcs, node));
+               AudioRegion* ar = new AudioRegion (srcs, node);
+               boost_debug_shared_ptr_mark_interesting (ar, "Region");
+               boost::shared_ptr<Region> ret (ar);
                ret->unlock_property_changes ();
                CheckNewRegion (ret);
                return ret;
@@ -205,7 +213,9 @@ RegionFactory::create (boost::shared_ptr<Source> src, nframes_t start, nframes_t
        boost::shared_ptr<MidiSource> ms;
 
        if ((as = boost::dynamic_pointer_cast<AudioSource>(src)) != 0) {
-               boost::shared_ptr<Region> ret (new AudioRegion (as, start, length, name, layer, flags));
+               AudioRegion* ar = new AudioRegion (as, start, length, name, layer, flags);
+               boost_debug_shared_ptr_mark_interesting (ar, "Region");
+               boost::shared_ptr<Region> ret (ar);
                ret->unlock_property_changes ();
                if (announce) {
                        CheckNewRegion (ret);