This program:

test_header.hpp

#include <boost/signal.hpp>
#include <utility>

class Sensor;

class Recorder : public ::boost::signals::trackable {
 public:
   explicit Recorder(int id) : id_(id) {}

   // Cannot be copied
   Recorder(const Recorder &) = delete;
   Recorder &operator =(const Recorder &) = delete;

   // But can be moved so it can be stored in a vector.
   // There's a proposal for having a compiler generated default for this that would be
   // very convenient.
   Recorder(Recorder &&b) : id_(b.id_) {
      b.id_ = -1;
   }
   Recorder &operator =(Recorder &&b) {
      id_ = b.id_;
      b.id_ = -1;
      return *this;
   }

   void recordSensor(const Sensor &s);
   void addSensor(Sensor &s);

 private:
   int id_;
   char space_[1312];
};

class Sensor {
 public:
   typedef ::boost::signal<void (const Sensor &)> sigtype_t;

   explicit Sensor(int id) : val_(0), id_(id) { }

   void notify(const sigtype_t::slot_type &slot) { signal_.connect(slot); }
   void updateSensor(double newval) { val_ = newval; signal_(*this); }
   double getValue() const { return val_; }
   int getId() const { return id_; }

 private:
   sigtype_t signal_;
   double val_;
   const int id_;
};

test_body.cpp

#include "test_header.hpp"
#include <boost/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <iostream>
#include <vector>
#include <string>
#include <sstream>

void Recorder::addSensor(Sensor &s)
{
   ::std::cout << "Recorder #" << id_
               << " now recording Sensor #" << s.getId() << '\n';
   ::std::cout.flush();
   s.notify(::boost::bind(&Recorder::recordSensor, this, _1));
}

void Recorder::recordSensor(const Sensor &s)
{
   ::std::cout << "Recorder #" << id_ << " - new value for sensor named Sensor #"
               << s.getId() << ": " << s.getValue() << '\n';
   ::std::cout.flush();
}


int main(int argc, const char *argv[])
{
   using ::boost::shared_ptr;
   using ::std::vector;
   vector<Recorder> recorders;
   vector<shared_ptr<Sensor> > sensors;
   double val = 0.1;
   static const unsigned int recorder_every = 4;
   static const unsigned int sensor_every = 2;

   for (unsigned int i = 0; i < 9; ++i) {
      if (i % recorder_every == 0) {
         recorders.push_back(Recorder(i / recorder_every));
      }
      if (i % sensor_every == 0) {
         shared_ptr<Sensor> sp(new Sensor(i / sensor_every));
         sensors.push_back(sp);
         for (auto r = recorders.begin(); r != recorders.end(); ++r) {
            r->addSensor(*sp);
         }
      }
      for (auto s = sensors.begin(); s != sensors.end(); ++s, val *= 1.001) {
         (*s)->updateSensor(val);
      }
   }
}

And I get this output:

Recorder #0 now recording Sensor #0
Recorder #0 - new value for sensor named Sensor #0: 0.1
Recorder #0 - new value for sensor named Sensor #0: 0.1001
Recorder #0 now recording Sensor #1
Recorder #0 - new value for sensor named Sensor #0: 0.1002
Recorder #0 - new value for sensor named Sensor #1: 0.1003
Recorder #0 - new value for sensor named Sensor #0: 0.100401
Recorder #0 - new value for sensor named Sensor #1: 0.100501
Recorder #0 now recording Sensor #2
Recorder #1 now recording Sensor #2
Recorder #0 - new value for sensor named Sensor #2: 0.100803
Recorder #1 - new value for sensor named Sensor #2: 0.100803
Recorder #0 - new value for sensor named Sensor #2: 0.101106
Recorder #1 - new value for sensor named Sensor #2: 0.101106
Recorder #0 now recording Sensor #3
Recorder #1 now recording Sensor #3
Recorder #0 - new value for sensor named Sensor #2: 0.101409
Recorder #1 - new value for sensor named Sensor #2: 0.101409
Recorder #0 - new value for sensor named Sensor #3: 0.101511
Recorder #1 - new value for sensor named Sensor #3: 0.101511
Recorder #0 - new value for sensor named Sensor #2: 0.101815
Recorder #1 - new value for sensor named Sensor #2: 0.101815
Recorder #0 - new value for sensor named Sensor #3: 0.101917
Recorder #1 - new value for sensor named Sensor #3: 0.101917
Recorder #0 now recording Sensor #4
Recorder #1 now recording Sensor #4
Recorder #2 now recording Sensor #4
Recorder #0 - new value for sensor named Sensor #4: 0.102428
Recorder #1 - new value for sensor named Sensor #4: 0.102428
Recorder #2 - new value for sensor named Sensor #4: 0.102428

I'm kind of confused. When I add a Recorder it seems like all the old sensors are forgotten about.

link|improve this question

Is that the shortest you can make it while still demonstrating the problem? The shorter, the better. – Michael Myers Feb 2 '10 at 18:13
@mmyers, I know, but I think that's as short as I can make it. There are objects of two separate classes interacting through the boost signals mechanism. – Omnifarious Feb 2 '10 at 18:18
feedback

4 Answers

up vote 2 down vote accepted

Recorders can move in memory because you are adding to a vector as you create them, but you are binding to them for signaling as you are doing this.

link|improve this answer
Any ideas on how to fix the issue? I really need to store the Records by value. – Omnifarious Feb 2 '10 at 18:37
1  
I'd use a deque instead. – ergosys Feb 2 '10 at 18:40
feedback

Give the recorder an index to the sensor vector instead of a pointer to the sensor. Works fine as long as you don't delete sensors.

link|improve this answer
I just tried that and it didn't change anything. I think it has more to do with the pointer to Recorder that's hidden inside the signal than the reference to the signal that's being given to the recorder. – Omnifarious Feb 2 '10 at 19:24
feedback

Ergosys already described the reason for the problem. What's missing is the solution: Make sure you finish adding all the recorders and sensors to the vectors before you bind the signals. That way their addresses will be done changing.

Here's a revision of the main loop:

for (unsigned int i = 0; i < 9; ++i) {
   if (i % recorder_every == 0) {
      recorders.push_back(Recorder(i / recorder_every));
   }
   if (i % sensor_every == 0) {
      shared_ptr<Sensor> sp(new Sensor(i / sensor_every));
      sensors.push_back(sp);
   }
}
for (unsigned int i = 0; i < 9; ++i) {
   if (i % sensor_every == 0) {
      for (auto r = recorders.begin(); r != recorders.end(); ++r) {
         shared_ptr<Sensor> sp = sensors[i / sensor_every];
         r->addSensor(*sp);
      }
   }
   for (auto s = sensors.begin(); s != sensors.end(); ++s, val *= 1.001) {
      (*s)->updateSensor(val);
   }
}
link|improve this answer
feedback

Have you tried using straight arrays instead of ::std::vector ? I know that ::std::vector is a fashionable thing but it's not really a vector (more like a half-list half-array).

link|improve this answer
Say what? He needs a dynamic array, a "straight" array is not dynamic. And it's a bit weird to say a vector is not a vector. – GManNickG Aug 7 '10 at 21:54
Nope - he just needs to keep two normal indexes and place new objects into stable slots, that's all. It can even be made thread-safe with one more refinement. Read the source of what STL vector actually does before protesting and then read definition of that is vector. Perpetuating misleading names just keeps confusing issues. Vector and list have very different behavior, complexity and thread safety. Unfortunately STL created a naming mess and the best we can do is to be aware of it. – ZXX Aug 7 '10 at 23:10
@zb_z: Use @name to reply. What definition of vector? There is an interface and requirements set by the standard, there is no "the" definition. There is no STL, there is a standard library. Vector is a perfectly reasonable name; it contains an array of indexable values, just like a math vector. Just because you can change the size doesn't mean anything. And no, a slot system won't fix anything when he needs a dynamic array. You can't guess how many slots you need up-front, and it would be stupid to re-invent vector with some hard-coded size. Just use a deque as the proper alternative. – GManNickG Aug 8 '10 at 8:59
1  
And vector use isn't "fashionable", it's correct. You need a dynamic array, you use a vector. Your analogy fails as well; if anything, a deque is a half-list half-array, not the vector. – GManNickG Aug 8 '10 at 9:01
Notice how you keep calling it dynamic array just about all the time - a thing that presents the interface of an array but but has the functionality of a list. Honest name for that is ArrayList or equivalent. Definition of vector in math is an ordered tuple of the fixed, immutable size - no pushing and popping involved. The world existed before STL injected a misleading name and it will keep confusing people just about as long as there's math and physics. – ZXX Aug 8 '10 at 10:42
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.