/src/imagemagick/Magick++/lib/BlobRef.cpp
Line | Count | Source |
1 | | // This may look like C code, but it is really -*- C++ -*- |
2 | | // |
3 | | // Copyright Bob Friesenhahn, 1999, 2000, 2001, 2002, 2004 |
4 | | // |
5 | | // Copyright @ 2014 ImageMagick Studio LLC, a non-profit organization |
6 | | // dedicated to making software imaging solutions freely available. |
7 | | // |
8 | | // Implementation of Blob |
9 | | // |
10 | | |
11 | | #define MAGICKCORE_IMPLEMENTATION 1 |
12 | | #define MAGICK_PLUSPLUS_IMPLEMENTATION 1 |
13 | | |
14 | | #include "Magick++/Include.h" |
15 | | #include "Magick++/BlobRef.h" |
16 | | #include "Magick++/Exception.h" |
17 | | #include "Magick++/Thread.h" |
18 | | |
19 | | #include <string.h> |
20 | | |
21 | | Magick::BlobRef::BlobRef(const void* data_,const size_t length_) |
22 | 737k | : allocator(Magick::Blob::NewAllocator), |
23 | 737k | length(length_), |
24 | 737k | data((void*) NULL), |
25 | 737k | _mutexLock(), |
26 | 737k | _refCount(1) |
27 | 737k | { |
28 | 737k | if (data_ != (const void*) NULL) |
29 | 603k | { |
30 | 603k | data=new unsigned char[length_]; |
31 | 603k | memcpy(data,data_,length_); |
32 | 603k | } |
33 | 737k | } |
34 | | |
35 | | Magick::BlobRef::~BlobRef(void) |
36 | 737k | { |
37 | 737k | if (allocator == Magick::Blob::NewAllocator) |
38 | 671k | { |
39 | 671k | delete[] static_cast<unsigned char*>(data); |
40 | 671k | data=(void *) NULL; |
41 | 671k | } |
42 | 66.4k | else if (allocator == Magick::Blob::MallocAllocator) |
43 | 66.4k | data=(void *) RelinquishMagickMemory(data); |
44 | 737k | } |
45 | | |
46 | | size_t Magick::BlobRef::decrease() |
47 | 737k | { |
48 | 737k | size_t |
49 | 737k | count; |
50 | | |
51 | 737k | _mutexLock.lock(); |
52 | 737k | if (_refCount == 0) |
53 | 0 | { |
54 | 0 | _mutexLock.unlock(); |
55 | 0 | throwExceptionExplicit(MagickCore::OptionError, |
56 | 0 | "Invalid call to decrease"); |
57 | 0 | return(0); |
58 | 0 | } |
59 | 737k | count=--_refCount; |
60 | 737k | _mutexLock.unlock(); |
61 | 737k | return(count); |
62 | 737k | } |
63 | | |
64 | | void Magick::BlobRef::increase() |
65 | 0 | { |
66 | 0 | _mutexLock.lock(); |
67 | 0 | _refCount++; |
68 | 0 | _mutexLock.unlock(); |
69 | 0 | } |