I have the following mysql structure
tables:
- holons
- bricks
- stacks
- givens
- whens
- thens
- stack_made_of_holons
The key relationships are:
- Brick belongsTo Holon
- Stack belongsTo Holon
- Stack hasMany StackMadeOfHolons
Schema is:
CREATE TABLE `bricks` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`holon_id` int(11) NOT NULL,
`given_id` int(11) DEFAULT NULL,
`when_id` int(11) NOT NULL,
`then_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `holons` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `stack_made_of_holons` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`stack_id` int(11) NOT NULL,
`holon_id` int(11) NOT NULL,
`prev_holon_id` int(11) NOT NULL DEFAULT '0',
`next_holon_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `stacks` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`holon_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Since a Stack can be made of Holons, it can be made of Bricks and other Stacks (just not itself).
Note that
prev_holon_id refers to the Holon record that is the predecessor to this current Holon in relation to a Stack.
next_holon_id refers to the Holon record that is the successor to this current Holon in relation to a Stack.
- The first Holon of a Stack is the one where the prev_holon_id is 0.
- The last Holon of a Stack is the one where the next_holon_id is 0.
- A Stack is made up of at least two different Holons
There is one important requirement:
It is necessary to be make it convenient to change an existing Brick into a Stack made of multiple Bricks.
e.g.,
Stack 1 has Holon id 1
Brick 1 has Holon id 2
Brick 2 has Holon id 3
Brick 3 has Holon id 4
Stack 1 has the following Holons in this order:
Holon 2 -> Holon 3 -> Holon 4
If I suddenly split Brick 2 into 2 smaller Bricks, I expect the following scenario:
Stack 1 has Holon id 1
Brick 1 has Holon id 2
Brick 2 has Holon id 3
Brick 3 has Holon id 4
Brick 4 has Holon id 5 <-- this is the new Brick because I split Brick 2 into Brick 2 and Brick 4
And then
Stack 1 should have:
Holon 2 -> Holon 3 -> Holon 5 -> Holon 4
My question is this.
When I retrieve all the Holons that belong to a Stack, I need to order them.
How do I get the Holons of a Stack in proper order?
I have thought of adding a order column.
However, I realize that would make it difficult to split existing Bricks like the way described above, because that will involve re-numbering the order column for all Holons that belong to the same Stack for the table *stack_made_of_holons*
I have thought of the following possible solutions:
1) use order column in *stack_made_of_holons* table. Everytime we do a split or insert a Holon in the middle of an existing Stack, we just have to reorder everything again. No choice.
2) don't use order column in *stack_made_of_holons* table. There is fancy way of using sql query that I am NOT yet aware of which uses the prev_holon_id, next_holon_id and stack_id in the *stack_made_of_holons* table in a very clever way.
3) don't use order column in *stack_made_of_holons* table. But I have to re-order using code in an algorithmic manner.
Of the above, I prefer 2). But of course, i may be mistaken.
Prefer to get answers from those who have faced a similar situation or have solid background in sql queries.