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
|
/* EXUInt32.c
Copyright (C) 2014 Free Software Foundation, Inc.
This file is part of the GNUstep CoreBase Library distribution.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#include <CoreFoundation/CFBase.h>
#include <CoreFoundation/CFRuntime.h>
#include <CoreFoundation/CFString.h>
#include "EXUInt32.h"
struct __EXUInt32
{
CFRuntimeBase _parent;
UInt32 _value;
};
static Boolean
EXUInt32Equal (CFTypeRef cf1, CFTypeRef cf2)
{
EXUInt32Ref u1 = (EXUInt32Ref) cf1;
EXUInt32Ref u2 = (EXUInt32Ref) cf2;
if (u1->_value == u2->_value)
return true;
return false;
}
static CFHashCode
EXUInt32Hash (CFTypeRef cf)
{
EXUInt32Ref u = (EXUInt32Ref) cf;
return (CFHashCode) u->_value;
}
static CFStringRef
EXUInt32CopyFormattingDesc (CFTypeRef cf, CFDictionaryRef formatOpts)
{
EXUInt32Ref u = (EXUInt32Ref) cf;
return CFStringCreateWithFormat (kCFAllocatorDefault, formatOpts,
CFSTR ("%u"), (unsigned int) u->_value);
}
static CFStringRef
EXUInt32CopyDebugDesc (CFTypeRef cf)
{
EXUInt32Ref u = (EXUInt32Ref) cf;
return CFStringCreateWithFormat (kCFAllocatorDefault, formatOpts,
CFSTR ("<EXUInt32 %p [%p]>{ value = %u }"),
u, CFGetAllocator (u),
(unsigned int) u->_value);
}
static void
EXUInt32Finalize (CFTypeRef cf)
{
/* Nothing to do before finalizing. If this object were have other
objects as variables, we would need to call CFRelease() for each.
*/
}
static CFTypeID _kEXUInt32TypeID = _kCFRuntimeNotATypeID;
static const CFRuntimeClass _kEXRangeClass = {
0, /* version */
"EXUInt32", /* className */
NULL, /* init */
NULL, /* copy */
EXUInt32Finalize, /* finalize */
EXUInt32Equal, /* equal */
EXUInt32Hash, /* hash */
EXUInt32CopyFormattingDesc, /* copyFormattingDesc */
EXUInt32CopyDebugDesc, /* copyDebugDesc */
NULL, /* reclaim */
NULL /* refCount */
};
void
__EXUInt32ClassInitialize (void)
{
_kEXUInt32TypeID = _CFRuntimeRegisterClass (&_kEXUInt32Class);
}
CFTypeID
EXUInt32GetTypeID (void)
{
return _kEXUInt32TypeID;
}
EXUInt32Ref
EXUInt32Create (CFAllocatorRef alloc, UInt32 value)
{
struct __EXUInt32 *new;
#define EXUINT32_EXTRA sizeof (struct __EXUInt32) - sizeof (CFRuntimeBase)
new = (struct __EXUInt32 *) _CFRuntimeCreateInstance (alloc, _kEXRangeTypeID,
EXUINT32REF_EXTRA,
NULL);
if (new)
{
new->_value = value;
}
return new;
}
UInt32
EXUInt32GetValue (EXUInt32Ref u)
{
return u->_value;
}
|