kviewshell
GSmartPointer.cpp
Go to the documentation of this file.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 #ifdef HAVE_CONFIG_H
00058 # include "config.h"
00059 #endif
00060 #if NEED_GNUG_PRAGMAS
00061 # pragma implementation
00062 #endif
00063
00064
00065
00066
00067
00068
00069
00070
00071 #include <string.h>
00072 #include "GThreads.h"
00073 #include "GSmartPointer.h"
00074 #include "GException.h"
00075
00076
00077 #ifdef HAVE_NAMESPACES
00078 namespace DJVU {
00079 # ifdef NOT_DEFINED // Just to fool emacs c++ mode
00080 }
00081 #endif
00082 #endif
00083
00084
00085
00086
00087 static GCriticalSection gcsCounter;
00088
00089
00090
00091
00092
00093 GPEnabled::~GPEnabled()
00094 {
00095 if (count > 0)
00096 G_THROW( ERR_MSG("GSmartPointer.suspicious") );
00097 }
00098
00099 void
00100 GPEnabled::destroy()
00101 {
00102 if (count >= 0)
00103 G_THROW( ERR_MSG("GSmartPointer.suspicious") );
00104 delete this;
00105 }
00106
00107 void
00108 GPEnabled::ref()
00109 {
00110 gcsCounter.lock();
00111 count++;
00112 gcsCounter.unlock();
00113 }
00114
00115 void
00116 GPEnabled::unref()
00117 {
00118 gcsCounter.lock();
00119 if (! --count)
00120 count = -1;
00121 gcsCounter.unlock();
00122 if (count < 0)
00123 destroy();
00124 }
00125
00126
00127
00128
00129
00130 GPBase&
00131 GPBase::assign (GPEnabled *nptr)
00132 {
00133 gcsCounter.lock();
00134 if (nptr)
00135 {
00136 if (nptr->count >= 0)
00137 nptr->count++;
00138 else
00139 nptr = 0;
00140 }
00141 if (ptr)
00142 {
00143 GPEnabled *old = ptr;
00144 ptr = nptr;
00145 if (! --old->count)
00146 old->count = -1;
00147 gcsCounter.unlock();
00148 if (old->count < 0)
00149 old->destroy();
00150 }
00151 else
00152 {
00153 ptr = nptr;
00154 gcsCounter.unlock();
00155 }
00156 return *this;
00157 }
00158
00159 GPBase&
00160 GPBase::assign (const GPBase &sptr)
00161 {
00162 gcsCounter.lock();
00163 if (sptr.ptr)
00164 {
00165 sptr.ptr->count++;
00166 }
00167 if (ptr)
00168 {
00169 GPEnabled *old = ptr;
00170 ptr = sptr.ptr;
00171 if (! --old->count)
00172 old->count = -1;
00173 gcsCounter.unlock();
00174 if (old->count < 0)
00175 old->destroy();
00176 }
00177 else
00178 {
00179 ptr = sptr.ptr;
00180 gcsCounter.unlock();
00181 }
00182 return *this;
00183 }
00184
00185
00186
00187
00188
00189 void
00190 GPBufferBase::replace(void *nptr,const size_t n)
00191 {
00192 resize(0,0);
00193 ptr=nptr;
00194 num=n;
00195 }
00196
00197 GPBufferBase::GPBufferBase(void *&xptr,const size_t n,const size_t t)
00198 : ptr(xptr), num(n)
00199 {
00200 if (n)
00201 xptr = ::operator new(n*t);
00202 else
00203 xptr = 0;
00204 }
00205
00206 GPBufferBase::~GPBufferBase()
00207 {
00208 ::operator delete(ptr);
00209 }
00210
00211 void
00212 GPBufferBase::swap(GPBufferBase &other)
00213 {
00214 void * const temp_ptr=ptr;
00215 ptr=other.ptr;
00216 other.ptr=temp_ptr;
00217 const size_t temp_num=num;
00218 num=other.num;
00219 other.num=temp_num;
00220 }
00221
00222 void
00223 GPBufferBase::resize(const size_t n, const size_t t)
00224 {
00225 if(!n && !ptr)
00226 {
00227 num=0;
00228 }
00229 else
00230 {
00231 const size_t s=ptr?(((num<n)?num:n)*t):0;
00232 void *nptr;
00233 GPBufferBase gnptr(nptr, n, t);
00234 if(s)
00235 {
00236 memcpy(nptr, ptr, s);
00237 }
00238 swap(gnptr);
00239 }
00240 }
00241
00242 void
00243 GPBufferBase::set(const size_t t,const char c)
00244 {
00245 if(num)
00246 memset(ptr,c,num*t);
00247 }
00248
00249
00250 #ifdef HAVE_NAMESPACES
00251 }
00252 # ifndef NOT_USING_DJVU_NAMESPACE
00253 using namespace DJVU;
00254 # endif
00255 #endif
00256