00001
00002
00003
00004
00005
00006
00007 #ifndef COH_CHAINED_HANDLE_ELEMENT_HPP
00008 #define COH_CHAINED_HANDLE_ELEMENT_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include <stdlib.h>
00013
00014 COH_OPEN_NAMESPACE2(coherence,lang)
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 class ChainedHandleElement
00026 {
00027 protected:
00028
00029
00030
00031 typedef enum
00032 {
00033 action_none = 0,
00034 action_flip = 1,
00035 action_detach = 2,
00036 action_error = 3
00037 } Action;
00038
00039
00040
00041
00042 protected:
00043
00044
00045
00046 ChainedHandleElement(bool fView)
00047 : m_fView(fView)
00048 {
00049
00050 m_prev = m_next = this;
00051 }
00052
00053
00054
00055
00056 ChainedHandleElement(const ChainedHandleElement& that, bool fView)
00057 : m_prev(&that), m_next(that.m_next), m_fView(fView)
00058 {
00059
00060 m_next->m_prev = m_prev->m_next = this;
00061 }
00062
00063
00064
00065
00066 ChainedHandleElement(const ChainedHandleElement* that, bool fView)
00067 : m_fView(fView)
00068 {
00069 if (that)
00070 {
00071
00072 m_prev = that;
00073 m_next = that->m_next;
00074 m_next->m_prev = m_prev->m_next = this;
00075 }
00076 else
00077 {
00078
00079 m_prev = m_next = this;
00080 }
00081 }
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092 protected:
00093
00094
00095
00096
00097
00098 Action unlink() const
00099 {
00100 Action nAction =
00101 this == m_prev ? action_detach
00102
00103
00104 : !m_fView && scan() ? action_flip
00105 : action_none;
00106
00107
00108 m_prev->m_next = m_next;
00109 m_next->m_prev = m_prev;
00110
00111
00112 m_prev = m_next = this;
00113
00114 return nAction;
00115 }
00116
00117
00118
00119
00120
00121
00122
00123
00124 Action link(const ChainedHandleElement& that) const
00125 {
00126 Action nAction =
00127 this == m_prev ? action_detach
00128
00129
00130 : !m_fView && scan() ? action_flip
00131 : action_none;
00132
00133
00134 m_prev->m_next = m_next;
00135 m_next->m_prev = m_prev;
00136
00137
00138 m_prev = &that;
00139 m_next = that.m_next;
00140
00141 m_next->m_prev = that.m_next = this;
00142
00143 return nAction;
00144 }
00145
00146
00147
00148
00149
00150
00151
00152
00153 bool scan() const
00154 {
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166 ChainedHandleElement const* pElm = m_prev;
00167 if (pElm->m_fView && m_next->m_fView)
00168 for (pElm = pElm->m_prev; pElm->m_fView; pElm = pElm->m_prev);
00169
00170 return pElm == this;
00171 }
00172
00173
00174
00175
00176 private:
00177
00178
00179
00180 static void* operator new(size_t cb);
00181
00182
00183
00184
00185 protected:
00186
00187
00188
00189 mutable ChainedHandleElement const* m_prev;
00190
00191
00192
00193
00194 mutable ChainedHandleElement const* m_next;
00195
00196
00197
00198
00199 bool m_fView;
00200
00201
00202
00203
00204
00205
00206
00207 template<class> friend class TypedHandle;
00208 };
00209
00210 COH_CLOSE_NAMESPACE2
00211
00212 #endif // COH_CHAINED_HANDLE_ELEMENT_HPP