1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
/*
* File: MacString.cc
* Summary: Wrapper around an immutable CFString.
* Written by: Jesse Jones (jesjones@mindspring.com)
*
* Change History (most recent first):
*
* <1> 6/04/02 JDJ Created
*/
#include "AppHdr.h"
#include "MacString.h"
#if macintosh
#include <CoreFoundation/CFString.h>
#include "debug.h"
// ========================================================================
// Internal Functions
// ========================================================================
//---------------------------------------------------------------
//
// ThrowIf
//
//---------------------------------------------------------------
static void ThrowIf(bool predicate, const std::string& text)
{
if (predicate)
throw std::runtime_error(text);
}
#if __MWERKS__
#pragma mark -
#endif
// ============================================================================
// class MacString
// ============================================================================
//---------------------------------------------------------------
//
// MacString::~MacString
//
//---------------------------------------------------------------
MacString::~MacString()
{
CFRelease(mString);
}
//---------------------------------------------------------------
//
// MacString::MacString ()
//
//---------------------------------------------------------------
MacString::MacString()
{
mString = CFStringCreateWithCharacters(kCFAllocatorSystemDefault, NULL, 0);
ThrowIf(mString == NULL, "Couldn't create the CFString");
}
//---------------------------------------------------------------
//
// MacString::MacString (unsigned char*)
//
//---------------------------------------------------------------
MacString::MacString(const unsigned char* str)
{
ASSERT(str != NULL);
CFStringEncoding encoding = CFStringGetSystemEncoding();
mString = CFStringCreateWithPascalString(kCFAllocatorSystemDefault, str, encoding);
ThrowIf(mString == NULL, "Couldn't create the CFString");
}
//---------------------------------------------------------------
//
// MacString::MacString (char*)
//
//---------------------------------------------------------------
MacString::MacString(const char* str)
{
ASSERT(str != NULL);
CFStringEncoding encoding = CFStringGetSystemEncoding();
mString = CFStringCreateWithCString(kCFAllocatorSystemDefault, str, encoding);
ThrowIf(mString == NULL, "Couldn't create the CFString");
}
//---------------------------------------------------------------
//
// MacString::MacString (CFStringRef)
//
//---------------------------------------------------------------
MacString::MacString(CFStringRef str)
{
ASSERT(str != NULL);
mString = str;
CFRetain(mString);
}
//---------------------------------------------------------------
//
// MacString::MacString (CFMutableStringRef)
//
//---------------------------------------------------------------
MacString::MacString(CFMutableStringRef str)
{
ASSERT(str != NULL);
mString = CFStringCreateCopy(kCFAllocatorSystemDefault, str);
ThrowIf(mString == NULL, "Couldn't create the CFString");
}
//---------------------------------------------------------------
//
// MacString::MacString (int)
//
//---------------------------------------------------------------
MacString::MacString(int value)
{
char buffer[32];
sprintf(buffer, "%d", value);
CFStringEncoding encoding = CFStringGetSystemEncoding();
mString = CFStringCreateWithCString(kCFAllocatorSystemDefault, buffer, encoding);
ThrowIf(mString == NULL, "Couldn't create the CFString");
}
//---------------------------------------------------------------
//
// MacString::MacString (MacString)
//
//---------------------------------------------------------------
MacString::MacString(const MacString& str)
{
mString = str.mString; // immutable so we can refcount
CFRetain(mString);
}
//---------------------------------------------------------------
//
// MacString::operator= (MacString)
//
//---------------------------------------------------------------
MacString& MacString::operator=(const MacString& rhs)
{
if (this != &rhs)
{
CFRelease(mString);
mString = rhs.mString; // immutable so we can refcount
CFRetain(mString);
}
return *this;
}
//---------------------------------------------------------------
//
// MacString::length
//
//---------------------------------------------------------------
size_t MacString::length() const
{
size_t len = (size_t) CFStringGetLength(mString);
return len;
}
//---------------------------------------------------------------
//
// MacString::CopyTo
//
//---------------------------------------------------------------
void MacString::CopyTo(unsigned char* buffer, CFIndex bytes)
{
ASSERT(buffer != NULL || bytes == 0);
bool converted = CFStringGetPascalString(mString, buffer, bytes, CFStringGetSystemEncoding());
ThrowIf(!converted, "Couldn't convert the CFString into a Pascal string");
}
#endif // macintosh
|