00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069 #if !defined(XMLREGISTERCLEANUP_HPP)
00070 #define XMLREGISTERCLEANUP_HPP
00071
00072 #include <util/Mutexes.hpp>
00073
00074
00075 extern XMLMutex* gXMLCleanupListMutex;
00076
00077
00078
00079
00080 class XMLRegisterCleanup;
00081 extern XMLRegisterCleanup* gXMLCleanupList;
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096 class XMLRegisterCleanup
00097 {
00098 public :
00099
00100 typedef void (*XMLCleanupFn)();
00101
00102 void doCleanup() {
00103
00104
00105 if (m_cleanupFn)
00106 m_cleanupFn();
00107
00108
00109
00110 unregisterCleanup();
00111 }
00112
00113
00114
00115
00116
00117 void registerCleanup(XMLCleanupFn cleanupFn) {
00118
00119 m_cleanupFn = cleanupFn;
00120
00121
00122
00123
00124 gXMLCleanupListMutex->lock();
00125 if (!m_nextCleanup && !m_prevCleanup) {
00126 m_nextCleanup = gXMLCleanupList;
00127 gXMLCleanupList = this;
00128
00129 if (m_nextCleanup)
00130 m_nextCleanup->m_prevCleanup = this;
00131 }
00132 gXMLCleanupListMutex->unlock();
00133 }
00134
00135
00136
00137
00138
00139 void unregisterCleanup() {
00140 gXMLCleanupListMutex->lock();
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153 XMLRegisterCleanup *tmpThis = (XMLRegisterCleanup*) this;
00154
00155
00156 if (m_nextCleanup) m_nextCleanup->m_prevCleanup = m_prevCleanup;
00157
00158 if (!m_prevCleanup) gXMLCleanupList = m_nextCleanup;
00159 else m_prevCleanup->m_nextCleanup = m_nextCleanup;
00160
00161 gXMLCleanupListMutex->unlock();
00162
00163
00164 tmpThis->resetCleanup();
00165 }
00166
00167
00168
00169 XMLRegisterCleanup()
00170 {
00171 resetCleanup();
00172 }
00173
00174 private:
00175
00176
00177
00178
00179 XMLRegisterCleanup(const XMLRegisterCleanup&)
00180 {}
00181
00182
00183 XMLCleanupFn m_cleanupFn;
00184
00185
00186 XMLRegisterCleanup *m_nextCleanup, *m_prevCleanup;
00187
00188
00189 void resetCleanup() {
00190 m_nextCleanup = 0;
00191 m_prevCleanup = 0;
00192 m_cleanupFn = 0;
00193 }
00194 };
00195
00196 #endif