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
00070
00071
00072 #if !defined(XMLREGISTERCLEANUP_HPP)
00073 #define XMLREGISTERCLEANUP_HPP
00074
00075 #include <xercesc/util/Mutexes.hpp>
00076
00077
00078 extern XMLMutex* gXMLCleanupListMutex;
00079
00080
00081
00082
00083 class XMLRegisterCleanup;
00084 extern XMLRegisterCleanup* gXMLCleanupList;
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099 class XMLRegisterCleanup
00100 {
00101 public :
00102
00103 typedef void (*XMLCleanupFn)();
00104
00105 void doCleanup() {
00106
00107
00108 if (m_cleanupFn)
00109 m_cleanupFn();
00110
00111
00112
00113 unregisterCleanup();
00114 }
00115
00116
00117
00118
00119
00120 void registerCleanup(XMLCleanupFn cleanupFn) {
00121
00122 m_cleanupFn = cleanupFn;
00123
00124
00125
00126
00127 gXMLCleanupListMutex->lock();
00128 if (!m_nextCleanup && !m_prevCleanup) {
00129 m_nextCleanup = gXMLCleanupList;
00130 gXMLCleanupList = this;
00131
00132 if (m_nextCleanup)
00133 m_nextCleanup->m_prevCleanup = this;
00134 }
00135 gXMLCleanupListMutex->unlock();
00136 }
00137
00138
00139
00140
00141
00142 void unregisterCleanup() {
00143 gXMLCleanupListMutex->lock();
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156 XMLRegisterCleanup *tmpThis = (XMLRegisterCleanup*) this;
00157
00158
00159 if (m_nextCleanup) m_nextCleanup->m_prevCleanup = m_prevCleanup;
00160
00161 if (!m_prevCleanup) gXMLCleanupList = m_nextCleanup;
00162 else m_prevCleanup->m_nextCleanup = m_nextCleanup;
00163
00164 gXMLCleanupListMutex->unlock();
00165
00166
00167 tmpThis->resetCleanup();
00168 }
00169
00170
00171
00172 XMLRegisterCleanup()
00173 {
00174 resetCleanup();
00175 }
00176
00177 private:
00178
00179
00180
00181
00182 XMLRegisterCleanup(const XMLRegisterCleanup&)
00183 {}
00184
00185
00186 XMLCleanupFn m_cleanupFn;
00187
00188
00189 XMLRegisterCleanup *m_nextCleanup, *m_prevCleanup;
00190
00191
00192 void resetCleanup() {
00193 m_nextCleanup = 0;
00194 m_prevCleanup = 0;
00195 m_cleanupFn = 0;
00196 }
00197 };
00198
00199 #endif