show/hide this revision's text 6 Updated UML Diagram, Added Additional detail to "Other Thoughts".
  • I mentioned in a comment @Arkadiy that the circular dependency he brought up between System and Subsystem is a bit unpleasant. It can easily be remedied by having System derive from an interface on which Subsystem depends, an application of Robert C Martin's Dependency Inversion Principle. Better still would be to isolate the functionality that Subsystems need from their parent, write an interface for that, then hold onto an implementor of that interface in System and pass it to the Subsystems, which would hold it via a shared_ptr. For example, you might have LoggerInterface, which your Subsystem uses to write to the log, then you could derive CoutLogger or FileLogger from it, and keep an instance of such in System.

  • show/hide this revision's text 5 Added some thoughts

    Other Thoughts:

  • An interesting article I read in one of the Game Programming Gems books talks about using Null Objects for debugging and development. They were specifically talking about using Null Graphics Models and Textures, such as a checkerboard texture to make missing models really stand out. The same could be applied here by changing out the NullSubsystem for a ReportingSubsystem which would log the call and possibly the callstack whenever it is accessed. This would allow you or your library's clients to track down where they are depending on something that has gone out of scope, but without the need to cause a crash.

  • I mentioned in a comment @Arkadiy that the circular dependency he brought up between System and Subsystem is a bit unpleasant. It can easily be remedied by having System derive from an interface on which Subsystem depends, an application of Robert C Martin's Dependency Inversion Principle.

  • show/hide this revision's text 4 Revised my answer slightly, added full compiling, working example.
  • Lifecycle

  • Life-cycle management of Subsystems, allowing their removal at the right time.
  • You need to change mSubsystem to store the objects and not shared_ptrs to them.

    System owns the Subsystems and should manage their lifecycle life-cycle with it's own scope.

    typedef std::vector< Subsystem > SubsystemList;SubsystemList mSubsystems;Using shared_ptrs for this is particularly useful as it simplifies destruction, but you should not be handing them out because then you loose the determinism you are seeking with regard to their deallocation.  

    This is the more intersting concern to address. Describing the problem in more detail, you need clients to receive an object which behaves like a Subsystem while that Subsystem (and it's parent System) exists, but behaves appropriately after a Subsystem is destroyed.

    Sample Code

    Here is

    I had placed a rough sketch in code pseudo-code quality example here, but I wasn't satisfied with it. I've rewritten it to be a precise, compiling (I used g++) example of what I have described above. This To get it to work, I had to introduce a few other classes, but their uses should be sufficient to get clear from their names. I employed the point acrossSingleton Pattern for the NullSubsystem class, though as it obviously won't compile without some changesmakes sense that you wouldn't need more than one. I decided to leave those changes outProxyableSubsystemBase completely abstracts the Proxying behavior away from the Subsystem, in allowing it to be ignorant of this behavior. Here is the interest UML Diagram of brevity and claritythe classes:

    Example Code:

    #include <iostream>#include <string>#include <vector>#include <boost/shared_ptr.hpp>// Forward Declarations to allow friendingclass System;class ProxyableSubsystemBase;// Base defining the interface for Subsystems  public:    // pure virtual functions    virtual void DoSomething(void) = 0;    virtual int GetSize(void) = 0;    virtual ~SubsystemBase() {} // virtual destructor for base class// Null Object Pattern: an object which implements the interface to do nothing.If you want class NullSubsystem : public SubsystemBase  public:    // implements pure virtual functions from SubsystemBase to do nothing.    void DoSomething(void) { }    int GetSize(void) { return -1; }    // Singleton Pattern: We only ever need one NullSubsystem, so we'll enforce that    static NullSubsystem *instance()      static NullSubsystem singletonInstance;      return &singletonInstance;  private:    NullSubsystem() {}  // private constructor to inforce Singleton Pattern// Proxy Pattern: An object that takes the place of another to provide better//   control over the uses of that objectclass SubsystemProxy : public SubsystemBase  friend class ProxyableSubsystemBase;  public:    SubsystemProxy(SubsystemBase *ProxiedSubsystem)      : mProxied(ProxiedSubsystem)    // implements pure virtual functions from SubsystemBase to forward to mProxied    void DoSomething(void) { mProxied->DoSomething(); }    int  GetSize(void) { return mProxied->GetSize(); }  protected:    // State Pattern: the initial state of the SubsystemProxy is to point to a    completely fleshed out//  valid SubsytemBase, compiling solutionwhich is passed into the constructor.  Calling Nullify()    //  causes a change in the internal state to point to a NullSubsystem, let me knowwhich allows    //  the proxy to still perform correctly, and I'll expand it despite the Subsystem going out of scope.    void Nullify()        mProxied=NullSubsystem::instance();  private:      SubsystemBase *mProxied;// A Base for real Subsystems to add the Proxying behaviorclass ProxyableSubsystemBase : public SubsystemBase  friend class System;  // Allow system to call our GetProxy() method.  public:    ProxyableSubsystemBase()      : mProxy(new SubsystemProxy(this)) // create our proxy object    ~ProxyableSubsystemBase()      mProxy->Nullify(); // inform our proxy object we are going away  protected:    boost::shared_ptr<SubsystemProxy> GetProxy() { return mProxy; }  private:    boost::shared_ptr<SubsystemProxy> mProxy;// the managing system    typedef boost::shared_ptr< SubsystemProxy > SubsystemHandle;    typedef boost::shared_ptr< ProxyableSubsystemBase > SubsystemPtr;    SubsystemHandle GetSubsystem( unsigned int index )    ->GetProxy();        std::cout << "  <System>: " << message << std::endl;    int AddSubsystem( ProxyableSubsystemBase *pSubsystem )      LogMessage("Adding Subsystem:");      mSubsystems.push_back(SubsystemPtr(pSubsystem));      return mSubsystems.size()-1;    System()      LogMessage("System is constructing.");    ~System()      LogMessage("System is going out of scope.");    // have to hold base pointers    typedef std::vector< SubsystemBase boost::shared_ptr<ProxyableSubsystemBase> > SubsystemList;class SubsystemBase {    boost::shared_ptr<SubsystemProxy> GetProxy() {}    // pure virtual functionsthe actual Subsystemclass Subsystem : SubsystemBase public ProxyableSubsystemBase    Subsystem( System* pParentSystem, const std::string ID )      : mpParentSystemmParentSystem( pParentSystem )      , mProxy(new SubsystemProxy(this)mID(ID)         mParentSystem->LogMessage( "Creating... "+mID );         pParentSubsystemmParentSystem->LogMessage( "Destroying..." );         // Destroy this subsystem: deallocate memory, release resource, etc.                      mProxy->Nullify();    boost::shared_ptr<SubsystemProxy> GetProxy(Destroying... "+mID ){ return mProxy;     Other stuff here    */    / / implements pure virtual functions from SubsystemBase    void DoSomething(void) { mParentSystem->LogMessage( mID + " is DoingSomething (tm)."); }    int GetSize(void) { return sizeof(Subsystem); }    System * pParentSystemmParentSystem; // raw pointer to avoid cycles - can also use weak_ptrs    boost::shared_ptr<SubsystemProxy> mProxystd::string mID;class SubsystemProxy : public SubsystemBase {      SubsystemProxy(Subsystem //////////////////////////////////////////////////////////////////// Actual Use Exampleint main(int argc, char* ProxiedSubsystem)        : mProxied(ProxiedSubsystemargv[])  std::cout << "main(): Creating Handles H1 and H2 for Subsystems. " << std::endl;  System::SubsystemHandle H1;  System::SubsystemHandle H2;  std::cout << "-------------------------------------------" << std::endl;    std::cout << "  main(): Begin scope for System." << std::endl;    System mySystem;    int FrankIndex = mySystem.AddSubsystem(new Subsystem(&mySystem, "Frank"));    int ErnestIndex = mySystem.AddSubsystem(new Subsystem(&mySystem, "Ernest"));    std::cout << "  main(): Assigning Subsystems to H1 and H2." << std::endl;    H1=mySystem.GetSubsystem(FrankIndex);    H2=mySystem.GetSubsystem(ErnestIndex);    std::cout << "  main(): Doing something on H1 and H2." << std::endl;    H1->DoSomething();    H2->DoSomething();    std::cout << "  main(): Leaving scope for System." << std::endl;  // implements pure virtual functions std::cout << "-------------------------------------------" << std::endl;  std::cout << "main(): Doing something on H1 and H2. (outside System Scope.) " << std::endl;  H1->DoSomething();  H2->DoSomething();  std::cout << "main(): No errors from SubsystemBase using handles to forward out of scope Subsystems because of Proxy to mProxied      void Nullify()          mProxied=&Nullsubsystem;      static NullsubsystemNull Object." << std::endl;  SubsystemBase *mProxied;}return 0;class NullSubsystem }

    Output from the code:public SubsystemBase // implements pure virtual functiosn

    main(): Creating Handles H1 and H2 for Subsystems.  main(): Begin scope for System.  <System>: System is constructing.  <System>: Creating... Frank  <System>: Adding Subsystem:  <System>: Creating... Ernest  <System>: Adding Subsystem:  main(): Assigning Subsystems to H1 and H2.  main(): Doing something on H1 and H2.  <System>: Frank is DoingSomething (tm).  <System>: Ernest is DoingSomething (tm).  main(): Leaving scope for System.  <System>: System is going out of scope.  <System>: Destroying... Frank  <System>: Destroying... Ernestmain(): Doing something on H1 and H2. (outside System Scope.)main(): No errors from SubsystemBase using handles to do nothingout of scope Subsystems because of Proxy to Null Object.
            
    show/hide this revision's text 3 improved answer, added details..
    show/hide this revision's text 2 Minor edit to clarify
    show/hide this revision's text 1