in reply to Replacing namespaces

This is a very elegant solution to the type of problem you're describing. For those who're confused, what smferris is asking is this:

I have an action I wish to perform on a bunch of data. However, this action is dependent on the type of data I receive. In order to make this as flexible as possible, I'd like to start out in one class (which has a set of actions it can perform), then be able to rebless into another class should that set of actions be insufficient.

I would caution you to do the following:

------
We are the carpenters and bricklayers of the Information Age.

Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.

Replies are listed 'Best First'.
Re(2): Replacing namespaces
by dmmiller2k (Chaplain) on Dec 11, 2001 at 20:09 UTC

    I concur; this is a very elegant solution, kind of like a dynamic dispatcher.

    Expanding upon the concept of making sure the reblessings are in a known tree, what you are describing appears to be a Finite State Machine.

    Given a current state (class A) and event (X fails), a new state (class B) is chosen; or, alternatively for a different event (Y fails), a different new state (class C) is selected.

    Construct a table with all possible states down the Y-axis and events across the X-axis, thus documenting the permitted state transitions. Here a dash (-) represents illegal states (i.e., should not happen, is an error if it does):

    state | event X | event Y | event Z -------+-----------+-----------+----------- A | B | C | E -------+-----------+-----------+----------- B | D | - | E -------+-----------+-----------+----------- C | E | - | - -------+-----------+-----------+----------- | | | ... etc. | | | -------+-----------+-----------+----------- E | - | - | B -------+-----------+-----------+-----------

    There are probably other ways to track a complex transition graph, but I've gotten great use out of this qapproach.

    dmm

    You can give a man a fish and feed him for a day ...
    Or, you can
    teach him to fish and feed him for a lifetime