33 | | ^(Describe your design here.)^ |
| 33 | * The ImmHotText:ElemOp class will no longer be inner class. |
| 34 | * Make new class ElemOp in order to let the HotPos class use the text's operations. |
| 35 | * Add two new abstract function in ElemOp class : |
| 36 | * getHash() - returns the hash of every ElemOp's object. |
| 37 | * equals() - returns true if two ElemOp's are equal(have same begin and end positions or same begin and lenght and are of one class). |
| 38 | * In HotPos class remove the text field and replace it with ImmList<ElemOp> posHistory and ImmList<Integer> posHashHistory. |
| 39 | * The first field replaces the text field and holds all the text history till the moment of creation of the position. |
| 40 | * The second one holds the hash of the first field as follows: |
| 41 | * The first element of this list is the hash of an empty list, the second one is the hash of the list with the first element of the posHistory list, |
| 42 | the third one is the hash of the list with the first two elements of the posHistory list, etc. |
| 43 | * The second field is used in ImmHotText:getIndex() and ImmHotText:getPosComparator() in order to obtain fast comparison. |
| 44 | * Add getter methods for the two new fields and remove the old one. |
| 45 | * In ImmHotText class remove the lastOperation, lastChangedInterval, uid and subSingleInterval fields and replace them with two new: |
| 46 | * ImmList<ElemOp> textHistory that holds all the text history till now(including NoOps). |
| 47 | * ImmList<Integer> textHashHistory - the same as the posHashHistory it is saved in order to have faster creation of HotPoses. |
| 48 | * lastChangedInterval is the interval of the last operation in the textHistory list or null if empty. |
| 49 | * lastOperation is the textHistory's list last element or null if empty. |
| 50 | * the uid is no longer needed because the textHistory's size is the same as the uid and cane be used if needed. |
| 51 | * The logic of the ImmHotText:getIndex is as follows: |
| 52 | * we get the first index of the posHistory and textHistory list's in witch they differs and after that we traverse the posHistory backwards to this index and update the future index and after that we traverse the textHistory from this index to the end and updatePast index. |
| 53 | * with this logic there must not be any problems with getting the index of pos that is from another branch of the text(this could not be done with the previous logic). |
| 54 | * The logic of the ImmHotText:getPosComparator:compare is as follows: |
| 55 | * we get the first index of the pos1History and pos2History list's in witch they differs and after that we traverse the posHistory backwards to this index and update the future indexes of the two poses. |
| 56 | * This guarantees that two poses can always be compared even though they are not from the same texts. |
| 57 | * The ImmHotText:subText is implemented with two replace operation(now the subText is a real new immHotText, not the previos one with another interval) and that's why the subSingleInterval is not needed any more and is removed. |