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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
/*
FALCON - The Falcon Programming Language.
FILE: traits.cpp
Traits - informations on types for the generic containers
-------------------------------------------------------------------
Author: Giancarlo Niccolai
Begin: ven oct 27 11:02:00 CEST 2006
-------------------------------------------------------------------
(C) Copyright 2004: the FALCON developers (see list in AUTHORS file)
See LICENSE file for licensing details.
*/
#include <falcon/traits.h>
#include <falcon/string.h>
#include <string.h> // for memset
namespace Falcon {
ElementTraits::~ElementTraits()
{}
uint32 VoidpTraits::memSize() const
{
return sizeof( void * );
}
void VoidpTraits::init( void *targetZone ) const
{
void **target = (void**) targetZone;
*target = 0;
}
void VoidpTraits::copy( void *targetZone, const void *sourceZone ) const
{
void **target = (void**) targetZone;
*target = (void *) sourceZone;
}
int VoidpTraits::compare( const void *targetZone, const void *sourceZone ) const
{
void **target = (void**) targetZone;
if ( ((uint64) *target) < ((uint64)sourceZone) )
return - 1;
else if ( ((uint64) *target) > ((uint64)sourceZone) )
return 1;
else
return 0;
}
void VoidpTraits::destroy( void *item ) const
{
// do nothing
}
bool VoidpTraits::owning() const
{
return false;
}
uint32 IntTraits::memSize() const
{
return sizeof( int32 );
}
void IntTraits::init( void *targetZone ) const
{
int32 *target = (int32*) targetZone;
*target = 0;
}
void IntTraits::copy( void *targetZone, const void *sourceZone ) const
{
int32 *target = (int32*) targetZone;
const int32 *source = (int32*) sourceZone;
*target = *source;
}
int IntTraits::compare( const void *first, const void *second ) const
{
const int32 *ifirst = (int32 *) first;
const int32 *isecond = (int32 *) second;
if ( *ifirst < *isecond )
return - 1;
else if ( *ifirst > *isecond )
return 1;
else
return 0;
}
void IntTraits::destroy( void *item ) const
{
// do nothing
}
bool IntTraits::owning() const
{
return false;
}
void StringPtrTraits::init( void *targetZone ) const
{
String **target = (String**) targetZone;
*target = 0;
}
uint32 StringPtrTraits::memSize() const
{
return sizeof( String * );
}
void StringPtrTraits::copy( void *targetZone, const void *sourceZone ) const
{
String **target = (String**) targetZone;
String *source = (String*) sourceZone;
*target = source;
}
int StringPtrTraits::compare( const void *first, const void *second ) const
{
String **ifirst = (String **) first;
String *isecond = (String *) second;
return (*ifirst)->compare( *isecond );
}
void StringPtrTraits::destroy( void *item ) const
{
// do nothing
}
bool StringPtrTraits::owning() const
{
return false;
}
void StringPtrOwnTraits::destroy( void *item ) const
{
String **ifirst = (String **) item;
delete (*ifirst);
}
bool StringPtrOwnTraits::owning() const
{
return true;
}
uint32 StringTraits::memSize() const
{
return sizeof( String );
}
void StringTraits::init( void *targetZone ) const
{
String *target = (String *) targetZone;
// do minimal initialization
memset( target, 0, sizeof( String ) ); // all values to zero and false.
target->manipulator( &csh::handler_static );
}
void StringTraits::copy( void *targetZone, const void *sourceZone ) const
{
String *target = (String *) targetZone;
const String *source = (String *) sourceZone;
// init so that bufferize won't do fancy deletes
memset( target, 0, sizeof( String ) ); // all values to zero and false.
target->manipulator( &csh::handler_static );
// then deep copy the other
target->bufferize(*source);
}
int StringTraits::compare( const void *first, const void *second ) const
{
const String *ifirst = (String *) first;
const String *isecond = (String *) second;
return ifirst->compare( *isecond );
}
void StringTraits::destroy( void *item ) const
{
String *ifirst = (String *) item;
ifirst->manipulator()->destroy( ifirst );
}
bool StringTraits::owning() const
{
return true;
}
namespace traits {
StringTraits* string_dt = 0;
VoidpTraits* voidp_dp = 0;
IntTraits* int_dp = 0;
StringPtrTraits* stringptr_dp = 0;
StringPtrOwnTraits* stringptr_own_dp = 0;
FALCON_DYN_SYM StringTraits &t_string() { if( !string_dt ) string_dt = new StringTraits; return *string_dt; }
FALCON_DYN_SYM VoidpTraits &t_voidp() { if( !voidp_dp ) voidp_dp = new VoidpTraits; return *voidp_dp; }
FALCON_DYN_SYM IntTraits &t_int() { if( !int_dp ) int_dp = new IntTraits; return *int_dp; }
FALCON_DYN_SYM StringPtrTraits &t_stringptr() { if( !stringptr_dp ) stringptr_dp = new StringPtrTraits; return *stringptr_dp; }
FALCON_DYN_SYM StringPtrOwnTraits &t_stringptr_own() { if( !stringptr_own_dp ) stringptr_own_dp = new StringPtrOwnTraits; return *stringptr_own_dp; }
void releaseTraits()
{
delete string_dt;
string_dt = 0;
delete voidp_dp;
voidp_dp = 0;
delete int_dp;
int_dp = 0;
delete stringptr_dp;
stringptr_dp = 0;
delete stringptr_own_dp;
stringptr_own_dp = 0;
}
}
}
/* end of traits.cpp */
|