2001-12-17 14:31:42 +00:00
|
|
|
|
/** Implementation of NSPortCoder object for remote messaging
|
2000-07-04 11:05:46 +00:00
|
|
|
|
Copyright (C) 1997,2000 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
This implementation for OPENSTEP conformance written by
|
|
|
|
|
Richard Frith-Macdonald <richard@brainstorm.co.u>
|
|
|
|
|
Created: August 1997, rewritten June 2000
|
|
|
|
|
|
|
|
|
|
based on original code -
|
|
|
|
|
|
|
|
|
|
Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
Written by: Andrew Kachites McCallum <mccallum@gnu.ai.mit.edu>
|
|
|
|
|
Created: July 1994
|
|
|
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
2001-12-18 16:54:15 +00:00
|
|
|
|
|
|
|
|
|
<title>NSPortCoder class reference</title>
|
|
|
|
|
$Date$ $Revision$
|
2000-07-04 11:05:46 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2000-10-31 16:17:33 +00:00
|
|
|
|
#include <Foundation/NSObjCRuntime.h>
|
2000-07-04 11:05:46 +00:00
|
|
|
|
#include <Foundation/NSZone.h>
|
|
|
|
|
#include <Foundation/NSException.h>
|
|
|
|
|
#include <Foundation/NSByteOrder.h>
|
|
|
|
|
#include <Foundation/NSCoder.h>
|
|
|
|
|
#include <Foundation/NSAutoreleasePool.h>
|
|
|
|
|
#include <Foundation/NSData.h>
|
|
|
|
|
#include <Foundation/NSUtilities.h>
|
|
|
|
|
#include <Foundation/NSPort.h>
|
|
|
|
|
#include <Foundation/NSString.h>
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Setup for inline operation of pointer map tables.
|
|
|
|
|
*/
|
2002-01-24 17:03:04 +00:00
|
|
|
|
#define GSI_MAP_RETAIN_KEY(M, X)
|
|
|
|
|
#define GSI_MAP_RELEASE_KEY(M, X)
|
|
|
|
|
#define GSI_MAP_RETAIN_VAL(M, X)
|
|
|
|
|
#define GSI_MAP_RELEASE_VAL(M, X)
|
|
|
|
|
#define GSI_MAP_HASH(M, X) ((X).uint)
|
|
|
|
|
#define GSI_MAP_EQUAL(M, X,Y) ((X).uint == (Y).uint)
|
2002-02-13 18:49:32 +00:00
|
|
|
|
#define GSI_MAP_NOCLEAN 1
|
2000-07-04 11:05:46 +00:00
|
|
|
|
|
|
|
|
|
#include <base/GSIMap.h>
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Setup for inline operation of arrays.
|
|
|
|
|
*/
|
2002-01-31 07:20:16 +00:00
|
|
|
|
#define GSI_ARRAY_RETAIN(A, X)
|
|
|
|
|
#define GSI_ARRAY_RELEASE(A, X)
|
2002-02-20 08:32:08 +00:00
|
|
|
|
#define GSI_ARRAY_TYPES GSUNION_OBJ|GSUNION_SEL|GSUNION_PTR
|
2000-07-04 11:05:46 +00:00
|
|
|
|
|
|
|
|
|
#include <base/GSIArray.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define _IN_PORT_CODER_M
|
|
|
|
|
#include <Foundation/NSPortCoder.h>
|
|
|
|
|
#undef _IN_PORT_CODER_M
|
|
|
|
|
|
2001-09-26 17:05:58 +00:00
|
|
|
|
#include <base/DistributedObjects.h>
|
2000-07-04 11:05:46 +00:00
|
|
|
|
|
|
|
|
|
typedef unsigned char uchar;
|
|
|
|
|
|
|
|
|
|
#define PREFIX "GNUstep DO archive"
|
|
|
|
|
|
2000-10-30 18:00:27 +00:00
|
|
|
|
static SEL eSerSel;
|
|
|
|
|
static SEL eTagSel;
|
|
|
|
|
static SEL xRefSel;
|
|
|
|
|
static SEL eObjSel;
|
|
|
|
|
static SEL eValSel;
|
|
|
|
|
static SEL dDesSel;
|
|
|
|
|
static SEL dTagSel;
|
|
|
|
|
static SEL dValSel;
|
2000-07-04 11:05:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static const char*
|
|
|
|
|
typeToName1(char type)
|
|
|
|
|
{
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case _C_CLASS: return "class";
|
|
|
|
|
case _C_ID: return "object";
|
|
|
|
|
case _C_SEL: return "selector";
|
|
|
|
|
case _C_CHR: return "char";
|
|
|
|
|
case _C_UCHR: return "unsigned char";
|
|
|
|
|
case _C_SHT: return "short";
|
|
|
|
|
case _C_USHT: return "unsigned short";
|
|
|
|
|
case _C_INT: return "int";
|
|
|
|
|
case _C_UINT: return "unsigned int";
|
|
|
|
|
case _C_LNG: return "long";
|
|
|
|
|
case _C_ULNG: return "unsigned long";
|
|
|
|
|
case _C_LNG_LNG: return "long long";
|
|
|
|
|
case _C_ULNG_LNG: return "unsigned long long";
|
|
|
|
|
case _C_FLT: return "float";
|
|
|
|
|
case _C_DBL: return "double";
|
|
|
|
|
case _C_PTR: return "pointer";
|
|
|
|
|
case _C_CHARPTR: return "cstring";
|
|
|
|
|
case _C_ARY_B: return "array";
|
|
|
|
|
case _C_STRUCT_B: return "struct";
|
|
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
static char buf1[32];
|
|
|
|
|
static char buf2[32];
|
|
|
|
|
static char *bufptr = buf1;
|
|
|
|
|
|
|
|
|
|
if (bufptr == buf1)
|
|
|
|
|
{
|
|
|
|
|
bufptr = buf2;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bufptr = buf1;
|
|
|
|
|
}
|
|
|
|
|
sprintf(bufptr, "unknown type info - 0x%x", type);
|
|
|
|
|
return bufptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char*
|
|
|
|
|
typeToName2(char type)
|
|
|
|
|
{
|
|
|
|
|
switch (type & _GSC_MASK)
|
|
|
|
|
{
|
2000-08-07 22:00:31 +00:00
|
|
|
|
case _GSC_CID: return "class (encoded as id)";
|
2000-07-04 11:05:46 +00:00
|
|
|
|
case _GSC_CLASS: return "class";
|
|
|
|
|
case _GSC_ID: return "object";
|
|
|
|
|
case _GSC_SEL: return "selector";
|
|
|
|
|
case _GSC_CHR: return "char";
|
|
|
|
|
case _GSC_UCHR: return "unsigned char";
|
|
|
|
|
case _GSC_SHT: return "short";
|
|
|
|
|
case _GSC_USHT: return "unsigned short";
|
|
|
|
|
case _GSC_INT: return "int";
|
|
|
|
|
case _GSC_UINT: return "unsigned int";
|
|
|
|
|
case _GSC_LNG: return "long";
|
|
|
|
|
case _GSC_ULNG: return "unsigned long";
|
|
|
|
|
case _GSC_LNG_LNG: return "long long";
|
|
|
|
|
case _GSC_ULNG_LNG: return "unsigned long long";
|
|
|
|
|
case _GSC_FLT: return "float";
|
|
|
|
|
case _GSC_DBL: return "double";
|
|
|
|
|
case _GSC_PTR: return "pointer";
|
|
|
|
|
case _GSC_CHARPTR: return "cstring";
|
|
|
|
|
case _GSC_ARY_B: return "array";
|
|
|
|
|
case _GSC_STRUCT_B: return "struct";
|
|
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
static char buf1[32];
|
|
|
|
|
static char buf2[32];
|
|
|
|
|
static char *bufptr = buf1;
|
|
|
|
|
|
|
|
|
|
if (bufptr == buf1)
|
|
|
|
|
{
|
|
|
|
|
bufptr = buf2;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bufptr = buf1;
|
|
|
|
|
}
|
|
|
|
|
sprintf(bufptr, "unknown type info - 0x%x", type);
|
|
|
|
|
return bufptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* There are thirtyone possible basic types. We reserve a type of zero
|
|
|
|
|
* to mean that no information is specified. The slots in this array
|
|
|
|
|
* MUST correspond to the definitions in NSData.h
|
|
|
|
|
*/
|
|
|
|
|
static char type_map[32] = {
|
|
|
|
|
0,
|
|
|
|
|
_C_CHR,
|
|
|
|
|
_C_UCHR,
|
|
|
|
|
_C_SHT,
|
|
|
|
|
_C_USHT,
|
|
|
|
|
_C_INT,
|
|
|
|
|
_C_UINT,
|
|
|
|
|
_C_LNG,
|
|
|
|
|
_C_ULNG,
|
|
|
|
|
#ifdef _C_LNG_LNG
|
|
|
|
|
_C_LNG_LNG,
|
|
|
|
|
_C_ULNG_LNG,
|
|
|
|
|
#else
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
#endif
|
|
|
|
|
_C_FLT,
|
|
|
|
|
_C_DBL,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
_C_ID,
|
|
|
|
|
_C_CLASS,
|
|
|
|
|
_C_SEL,
|
|
|
|
|
_C_PTR,
|
|
|
|
|
_C_CHARPTR,
|
|
|
|
|
_C_ARY_B,
|
|
|
|
|
_C_STRUCT_B,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0,
|
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
typeCheck(char t1, char t2)
|
|
|
|
|
{
|
|
|
|
|
if (type_map[(t2 & _GSC_MASK)] != t1)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"expected %s and got %s",
|
|
|
|
|
typeToName1(t1), typeToName2(t2)];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@interface GSClassInfo : NSObject
|
|
|
|
|
{
|
|
|
|
|
@public
|
|
|
|
|
Class class;
|
|
|
|
|
unsigned version;
|
|
|
|
|
NSString *name;
|
|
|
|
|
}
|
|
|
|
|
+ (id) newWithClass: (Class)c andVersion: (unsigned)v;
|
|
|
|
|
- (NSString*) className;
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
@implementation GSClassInfo
|
|
|
|
|
+ (id) newWithClass: (Class)c andVersion: (unsigned)v;
|
|
|
|
|
{
|
|
|
|
|
GSClassInfo *info;
|
|
|
|
|
|
|
|
|
|
info = (GSClassInfo*)NSAllocateObject(self, 0, NSDefaultMallocZone());
|
|
|
|
|
if (info != nil)
|
|
|
|
|
{
|
|
|
|
|
info->class = c;
|
|
|
|
|
info->version = v;
|
|
|
|
|
}
|
|
|
|
|
return info;
|
|
|
|
|
}
|
|
|
|
|
- (NSString*) className
|
|
|
|
|
{
|
|
|
|
|
if (name == nil)
|
|
|
|
|
{
|
|
|
|
|
name = RETAIN(NSStringFromClass(class));
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
- (void) dealloc
|
|
|
|
|
{
|
|
|
|
|
TEST_RELEASE(name);
|
|
|
|
|
NSDeallocateObject(self);
|
|
|
|
|
}
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@interface NSPortCoder (Headers)
|
|
|
|
|
- (void) _deserializeHeaderAt: (unsigned*)pos
|
|
|
|
|
version: (unsigned*)v
|
|
|
|
|
classes: (unsigned*)c
|
|
|
|
|
objects: (unsigned*)o
|
|
|
|
|
pointers: (unsigned*)p;
|
|
|
|
|
- (void) _serializeHeaderAt: (unsigned)pos
|
|
|
|
|
version: (unsigned)v
|
|
|
|
|
classes: (unsigned)c
|
|
|
|
|
objects: (unsigned)o
|
|
|
|
|
pointers: (unsigned)p;
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@implementation NSPortCoder
|
|
|
|
|
|
2000-07-04 14:37:18 +00:00
|
|
|
|
@class NSMutableDataMalloc;
|
|
|
|
|
|
2000-07-04 11:05:46 +00:00
|
|
|
|
static Class connectionClass;
|
|
|
|
|
static Class mutableArrayClass;
|
|
|
|
|
static Class mutableDataClass;
|
|
|
|
|
static Class mutableDictionaryClass;
|
|
|
|
|
|
2000-07-04 14:37:18 +00:00
|
|
|
|
static IMP _eSerImp; /* Method to serialize with. */
|
|
|
|
|
static IMP _eTagImp; /* Serialize a type tag. */
|
|
|
|
|
static IMP _xRefImp; /* Serialize a crossref. */
|
|
|
|
|
|
2000-07-04 11:05:46 +00:00
|
|
|
|
+ (void) initialize
|
|
|
|
|
{
|
|
|
|
|
if (self == [NSPortCoder class])
|
|
|
|
|
{
|
|
|
|
|
connectionClass = [NSConnection class];
|
|
|
|
|
mutableArrayClass = [NSMutableArray class];
|
2000-07-04 14:37:18 +00:00
|
|
|
|
mutableDataClass = [NSMutableDataMalloc class];
|
2000-10-30 18:00:27 +00:00
|
|
|
|
eSerSel = @selector(serializeDataAt:ofObjCType:context:);
|
|
|
|
|
eTagSel = @selector(serializeTypeTag:);
|
|
|
|
|
xRefSel = @selector(serializeTypeTag:andCrossRef:);
|
|
|
|
|
eObjSel = @selector(encodeObject:);
|
|
|
|
|
eValSel = @selector(encodeValueOfObjCType:at:);
|
|
|
|
|
dDesSel = @selector(deserializeDataAt:ofObjCType:atCursor:context:);
|
|
|
|
|
dTagSel = @selector(deserializeTypeTag:andCrossRef:atCursor:);
|
|
|
|
|
dValSel = @selector(decodeValueOfObjCType:at:);
|
2000-07-04 14:37:18 +00:00
|
|
|
|
_eSerImp = [mutableDataClass instanceMethodForSelector: eSerSel];
|
|
|
|
|
_eTagImp = [mutableDataClass instanceMethodForSelector: eTagSel];
|
|
|
|
|
_xRefImp = [mutableDataClass instanceMethodForSelector: xRefSel];
|
2000-07-04 11:05:46 +00:00
|
|
|
|
mutableDictionaryClass = [NSMutableDictionary class];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+ (NSPortCoder*) portCoderWithReceivePort: (NSPort*)recv
|
|
|
|
|
sendPort: (NSPort*)send
|
2002-02-03 17:21:20 +00:00
|
|
|
|
components: (NSArray*)comp
|
2000-07-04 11:05:46 +00:00
|
|
|
|
{
|
|
|
|
|
id coder;
|
|
|
|
|
|
|
|
|
|
coder = [self allocWithZone: NSDefaultMallocZone()];
|
|
|
|
|
coder = [coder initWithReceivePort: recv sendPort: send components: comp];
|
|
|
|
|
AUTORELEASE(coder);
|
|
|
|
|
return coder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSConnection*) connection
|
|
|
|
|
{
|
|
|
|
|
return _conn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) dealloc
|
|
|
|
|
{
|
2000-07-04 14:37:18 +00:00
|
|
|
|
RELEASE(_dst); /* Decoders retain their output data object. */
|
2000-07-04 11:05:46 +00:00
|
|
|
|
RELEASE(_comp);
|
|
|
|
|
RELEASE(_conn);
|
|
|
|
|
RELEASE(_cInfo);
|
|
|
|
|
if (_clsMap != 0)
|
|
|
|
|
{
|
|
|
|
|
GSIMapEmptyMap(_clsMap);
|
|
|
|
|
GSIMapEmptyMap(_cIdMap);
|
|
|
|
|
GSIMapEmptyMap(_uIdMap);
|
|
|
|
|
GSIMapEmptyMap(_ptrMap);
|
|
|
|
|
NSZoneFree(_clsMap->zone, (void*)_clsMap);
|
|
|
|
|
}
|
|
|
|
|
if (_clsAry != 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned count = GSIArrayCount(_clsAry);
|
|
|
|
|
|
|
|
|
|
while (count-- > 0)
|
|
|
|
|
{
|
|
|
|
|
RELEASE(GSIArrayItemAtIndex(_clsAry, count).obj);
|
|
|
|
|
}
|
|
|
|
|
GSIArrayClear(_clsAry);
|
|
|
|
|
GSIArrayClear(_objAry);
|
|
|
|
|
GSIArrayClear(_ptrAry);
|
|
|
|
|
NSZoneFree(_clsAry->zone, (void*)_clsAry);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[super dealloc];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) decodeArrayOfObjCType: (const char*)type
|
|
|
|
|
count: (unsigned)expected
|
|
|
|
|
at: (void*)buf
|
|
|
|
|
{
|
2003-01-03 20:14:47 +00:00
|
|
|
|
unsigned int i;
|
2000-07-04 11:05:46 +00:00
|
|
|
|
int offset = 0;
|
|
|
|
|
int size = objc_sizeof_type(type);
|
|
|
|
|
unsigned char info;
|
|
|
|
|
unsigned count;
|
|
|
|
|
|
|
|
|
|
(*_dTagImp)(_src, dTagSel, &info, 0, &_cursor);
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &count, @encode(unsigned), &_cursor, nil);
|
|
|
|
|
if (info != _GSC_ARY_B)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"expected array and got %s", typeToName2(info)];
|
|
|
|
|
}
|
|
|
|
|
if (count != expected)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"expected array count %u and got %u",
|
|
|
|
|
expected, count];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (*type)
|
|
|
|
|
{
|
|
|
|
|
case _C_ID: info = _GSC_NONE; break;
|
|
|
|
|
case _C_CHR: info = _GSC_CHR; break;
|
|
|
|
|
case _C_UCHR: info = _GSC_UCHR; break;
|
|
|
|
|
case _C_SHT: info = _GSC_SHT; break;
|
|
|
|
|
case _C_USHT: info = _GSC_USHT; break;
|
|
|
|
|
case _C_INT: info = _GSC_INT; break;
|
|
|
|
|
case _C_UINT: info = _GSC_UINT; break;
|
|
|
|
|
case _C_LNG: info = _GSC_LNG; break;
|
|
|
|
|
case _C_ULNG: info = _GSC_ULNG; break;
|
|
|
|
|
#ifdef _C_LNG_LNG
|
|
|
|
|
case _C_LNG_LNG: info = _GSC_LNG_LNG; break;
|
|
|
|
|
case _C_ULNG_LNG: info = _GSC_ULNG_LNG; break;
|
|
|
|
|
#endif
|
|
|
|
|
case _C_FLT: info = _GSC_FLT; break;
|
|
|
|
|
case _C_DBL: info = _GSC_DBL; break;
|
|
|
|
|
default: info = _GSC_NONE; break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info == _GSC_NONE)
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
(*_dValImp)(self, dValSel, type, (char*)buf + offset);
|
|
|
|
|
offset += size;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned char ainfo;
|
|
|
|
|
|
|
|
|
|
(*_dTagImp)(_src, dTagSel, &ainfo, 0, &_cursor);
|
|
|
|
|
if (info != (ainfo & _GSC_MASK))
|
|
|
|
|
{
|
2000-08-07 22:00:31 +00:00
|
|
|
|
if (info != _GSC_ID || (ainfo & _GSC_MASK) != _GSC_CID)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"expected %s and got %s",
|
|
|
|
|
typeToName2(info), typeToName2(ainfo)];
|
|
|
|
|
}
|
2000-07-04 11:05:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, (char*)buf + offset, type, &_cursor, nil);
|
|
|
|
|
offset += size;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSData*) decodeDataObject
|
|
|
|
|
{
|
|
|
|
|
int pos;
|
|
|
|
|
|
|
|
|
|
[self decodeValueOfObjCType: @encode(int) at: &pos];
|
|
|
|
|
if (pos >= 0)
|
|
|
|
|
{
|
|
|
|
|
return [_comp objectAtIndex: pos];
|
|
|
|
|
}
|
|
|
|
|
else if (pos == -1)
|
|
|
|
|
{
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
else if (pos == -2)
|
|
|
|
|
{
|
|
|
|
|
return [mutableDataClass data];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"Bad tag (%d) decoding data object", pos];
|
|
|
|
|
return nil;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSPort*) decodePortObject
|
|
|
|
|
{
|
|
|
|
|
unsigned pos;
|
|
|
|
|
|
|
|
|
|
[self decodeValueOfObjCType: @encode(unsigned) at: &pos];
|
|
|
|
|
return [_comp objectAtIndex: pos];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) decodeValueOfObjCType: (const char*)type
|
|
|
|
|
at: (void*)address
|
|
|
|
|
{
|
|
|
|
|
unsigned xref;
|
|
|
|
|
unsigned char info;
|
|
|
|
|
#if GS_HAVE_I128
|
|
|
|
|
gsu128 bigval;
|
|
|
|
|
#else
|
|
|
|
|
#if GS_HAVE_I64
|
|
|
|
|
gsu64 bigval;
|
|
|
|
|
#else
|
|
|
|
|
gsu32 bigval;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
(*_dTagImp)(_src, dTagSel, &info, &xref, &_cursor);
|
|
|
|
|
|
|
|
|
|
switch (info & _GSC_MASK)
|
|
|
|
|
{
|
|
|
|
|
case _GSC_ID:
|
|
|
|
|
{
|
|
|
|
|
id obj;
|
|
|
|
|
|
|
|
|
|
typeCheck(*type, _GSC_ID);
|
|
|
|
|
/*
|
|
|
|
|
* Special case - a zero crossref value size is a nil pointer.
|
|
|
|
|
*/
|
|
|
|
|
if ((info & _GSC_SIZE) == 0)
|
|
|
|
|
{
|
|
|
|
|
obj = nil;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (info & _GSC_XREF)
|
|
|
|
|
{
|
|
|
|
|
if (xref >= GSIArrayCount(_objAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"object crossref missing - %d",
|
|
|
|
|
xref];
|
|
|
|
|
}
|
|
|
|
|
obj = GSIArrayItemAtIndex(_objAry, xref).obj;
|
|
|
|
|
/*
|
|
|
|
|
* If it's a cross-reference, we need to retain it in
|
|
|
|
|
* order to give the appearance that it's actually a
|
|
|
|
|
* new object.
|
|
|
|
|
*/
|
|
|
|
|
IF_NO_GC(RETAIN(obj));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Class c;
|
|
|
|
|
id rep;
|
|
|
|
|
|
|
|
|
|
if (xref != GSIArrayCount(_objAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"extra object crossref - %d",
|
|
|
|
|
xref];
|
|
|
|
|
}
|
|
|
|
|
(*_dValImp)(self, dValSel, @encode(Class), &c);
|
|
|
|
|
|
2002-02-21 13:31:13 +00:00
|
|
|
|
if (c == 0)
|
|
|
|
|
{
|
|
|
|
|
NSLog(@"[%s %s] decoded nil class",
|
|
|
|
|
GSNameFromClass([self class]),
|
|
|
|
|
GSNameFromSelector(_cmd));
|
|
|
|
|
}
|
2000-07-04 11:05:46 +00:00
|
|
|
|
obj = [c allocWithZone: _zone];
|
|
|
|
|
GSIArrayAddItem(_objAry, (GSIArrayItem)obj);
|
|
|
|
|
|
|
|
|
|
rep = [obj initWithCoder: self];
|
|
|
|
|
if (rep != obj)
|
|
|
|
|
{
|
|
|
|
|
obj = rep;
|
|
|
|
|
GSIArraySetItemAtIndex(_objAry, (GSIArrayItem)obj, xref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rep = [obj awakeAfterUsingCoder: self];
|
|
|
|
|
if (rep != obj)
|
|
|
|
|
{
|
|
|
|
|
obj = rep;
|
|
|
|
|
GSIArraySetItemAtIndex(_objAry, (GSIArrayItem)obj, xref);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*(id*)address = obj;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-08-07 22:00:31 +00:00
|
|
|
|
case _GSC_CID:
|
|
|
|
|
{
|
|
|
|
|
id obj;
|
|
|
|
|
|
|
|
|
|
typeCheck(*type, _GSC_ID);
|
|
|
|
|
/*
|
|
|
|
|
* Special case - a zero crossref value size is a nil pointer.
|
|
|
|
|
*/
|
|
|
|
|
if ((info & _GSC_SIZE) == 0)
|
|
|
|
|
{
|
|
|
|
|
obj = nil;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (info & _GSC_XREF)
|
|
|
|
|
{
|
|
|
|
|
if (xref >= GSIArrayCount(_objAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"object crossref missing - %d",
|
|
|
|
|
xref];
|
|
|
|
|
}
|
|
|
|
|
obj = GSIArrayItemAtIndex(_objAry, xref).obj;
|
|
|
|
|
/*
|
|
|
|
|
* If it's a cross-reference, we need to retain it in
|
|
|
|
|
* order to give the appearance that it's actually a
|
|
|
|
|
* new object.
|
|
|
|
|
*/
|
|
|
|
|
IF_NO_GC(RETAIN(obj));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (xref != GSIArrayCount(_objAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"extra object crossref - %d",
|
|
|
|
|
xref];
|
|
|
|
|
}
|
|
|
|
|
(*_dValImp)(self, dValSel, @encode(Class), &obj);
|
|
|
|
|
GSIArrayAddItem(_objAry, (GSIArrayItem)obj);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*(id*)address = obj;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-04 11:05:46 +00:00
|
|
|
|
case _GSC_CLASS:
|
|
|
|
|
{
|
|
|
|
|
Class c;
|
|
|
|
|
GSClassInfo *classInfo;
|
|
|
|
|
Class dummy;
|
|
|
|
|
|
2000-08-07 22:00:31 +00:00
|
|
|
|
if (*type != _C_ID)
|
|
|
|
|
{
|
|
|
|
|
typeCheck(*type, _GSC_CLASS);
|
|
|
|
|
}
|
2000-07-04 11:05:46 +00:00
|
|
|
|
/*
|
|
|
|
|
* Special case - a zero crossref value size is a nil pointer.
|
|
|
|
|
*/
|
|
|
|
|
if ((info & _GSC_SIZE) == 0)
|
|
|
|
|
{
|
|
|
|
|
*(SEL*)address = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (info & _GSC_XREF)
|
|
|
|
|
{
|
|
|
|
|
if (xref >= GSIArrayCount(_clsAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"class crossref missing - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
classInfo = (GSClassInfo*)GSIArrayItemAtIndex(_clsAry, xref).obj;
|
|
|
|
|
*(Class*)address = classInfo->class;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
while ((info & _GSC_MASK) == _GSC_CLASS)
|
|
|
|
|
{
|
|
|
|
|
unsigned cver;
|
|
|
|
|
|
|
|
|
|
if (xref != GSIArrayCount(_clsAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"extra class crossref - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &c, @encode(Class), &_cursor, nil);
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &cver, @encode(unsigned), &_cursor,
|
|
|
|
|
nil);
|
|
|
|
|
if (c == 0)
|
|
|
|
|
{
|
2002-02-21 13:31:13 +00:00
|
|
|
|
NSLog(@"[%s %s] decoded nil class",
|
|
|
|
|
GSNameFromClass([self class]), GSNameFromSelector(_cmd));
|
2000-07-04 11:05:46 +00:00
|
|
|
|
}
|
|
|
|
|
classInfo = [GSClassInfo newWithClass: c andVersion: cver];
|
|
|
|
|
GSIArrayAddItem(_clsAry, (GSIArrayItem)classInfo);
|
|
|
|
|
*(Class*)address = classInfo->class;
|
|
|
|
|
/*
|
|
|
|
|
* Point the address to a dummy location and read the
|
|
|
|
|
* next tag - if it is another class, loop to get it.
|
|
|
|
|
*/
|
|
|
|
|
address = &dummy;
|
|
|
|
|
(*_dTagImp)(_src, dTagSel, &info, &xref, &_cursor);
|
|
|
|
|
}
|
|
|
|
|
if (info != _GSC_NONE)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"class list improperly terminated"];
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_SEL:
|
|
|
|
|
{
|
|
|
|
|
SEL sel;
|
|
|
|
|
|
|
|
|
|
typeCheck(*type, _GSC_SEL);
|
|
|
|
|
/*
|
|
|
|
|
* Special case - a zero crossref value size is a nil pointer.
|
|
|
|
|
*/
|
|
|
|
|
if ((info & _GSC_SIZE) == 0)
|
|
|
|
|
{
|
|
|
|
|
*(SEL*)address = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (info & _GSC_XREF)
|
|
|
|
|
{
|
|
|
|
|
if (xref >= GSIArrayCount(_ptrAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"sel crossref missing - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
sel = GSIArrayItemAtIndex(_ptrAry, xref).sel;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (xref != GSIArrayCount(_ptrAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"extra sel crossref - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &sel, @encode(SEL), &_cursor, nil);
|
|
|
|
|
GSIArrayAddItem(_ptrAry, (GSIArrayItem)sel);
|
|
|
|
|
}
|
|
|
|
|
*(SEL*)address = sel;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_ARY_B:
|
|
|
|
|
{
|
|
|
|
|
int count;
|
|
|
|
|
|
|
|
|
|
typeCheck(*type, _GSC_ARY_B);
|
|
|
|
|
count = atoi(++type);
|
|
|
|
|
while (isdigit(*type))
|
|
|
|
|
{
|
|
|
|
|
type++;
|
|
|
|
|
}
|
|
|
|
|
[self decodeArrayOfObjCType: type count: count at: address];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_STRUCT_B:
|
|
|
|
|
{
|
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
|
|
typeCheck(*type, _GSC_STRUCT_B);
|
|
|
|
|
while (*type != _C_STRUCT_E && *type++ != '='); /* skip "<name>=" */
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
(*_dValImp)(self, dValSel, type, (char*)address + offset);
|
|
|
|
|
offset += objc_sizeof_type(type);
|
|
|
|
|
type = objc_skip_typespec(type);
|
|
|
|
|
if (*type == _C_STRUCT_E)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int align = objc_alignof_type(type);
|
|
|
|
|
int rem = offset % align;
|
|
|
|
|
|
|
|
|
|
if (rem != 0)
|
|
|
|
|
{
|
|
|
|
|
offset += align - rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_PTR:
|
|
|
|
|
{
|
|
|
|
|
typeCheck(*type, _GSC_PTR);
|
|
|
|
|
/*
|
|
|
|
|
* Special case - a zero crossref value size is a nil pointer.
|
|
|
|
|
*/
|
|
|
|
|
if ((info & _GSC_SIZE) == 0)
|
|
|
|
|
{
|
|
|
|
|
*(void**)address = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (info & _GSC_XREF)
|
|
|
|
|
{
|
|
|
|
|
if (xref >= GSIArrayCount(_ptrAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"ptr crossref missing - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
*(void**)address = GSIArrayItemAtIndex(_ptrAry, xref).ptr;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned size;
|
|
|
|
|
|
|
|
|
|
if (GSIArrayCount(_ptrAry) != xref)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"extra ptr crossref - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Allocate memory for object to be decoded into and
|
|
|
|
|
* add it to the crossref map.
|
|
|
|
|
*/
|
|
|
|
|
size = objc_sizeof_type(++type);
|
|
|
|
|
*(void**)address = _fastMallocBuffer(size);
|
|
|
|
|
GSIArrayAddItem(_ptrAry, (GSIArrayItem)*(void**)address);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Decode value and add memory to map for crossrefs.
|
|
|
|
|
*/
|
|
|
|
|
(*_dValImp)(self, dValSel, type, *(void**)address);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_CHARPTR:
|
|
|
|
|
{
|
|
|
|
|
typeCheck(*type, _GSC_CHARPTR);
|
|
|
|
|
/*
|
|
|
|
|
* Special case - a zero crossref value size is a nil pointer.
|
|
|
|
|
*/
|
|
|
|
|
if ((info & _GSC_SIZE) == 0)
|
|
|
|
|
{
|
|
|
|
|
*(char**)address = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (info & _GSC_XREF)
|
|
|
|
|
{
|
|
|
|
|
if (xref >= GSIArrayCount(_ptrAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"string crossref missing - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
*(char**)address = GSIArrayItemAtIndex(_ptrAry, xref).str;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (xref != GSIArrayCount(_ptrAry))
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"extra string crossref - %d", xref];
|
|
|
|
|
}
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, @encode(char*), &_cursor,
|
|
|
|
|
nil);
|
|
|
|
|
GSIArrayAddItem(_ptrAry, (GSIArrayItem)*(void**)address);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_CHR:
|
|
|
|
|
case _GSC_UCHR:
|
2001-05-11 15:23:24 +00:00
|
|
|
|
/* Encoding of chars is not consistant across platforms, so we
|
|
|
|
|
loosen the type checking a little */
|
|
|
|
|
if (*type != type_map[_GSC_CHR] && *type != type_map[_GSC_UCHR])
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"expected %s and got %s",
|
|
|
|
|
typeToName1(*type), typeToName2(info)];
|
|
|
|
|
}
|
2000-07-04 11:05:46 +00:00
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, type, &_cursor, nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _GSC_SHT:
|
|
|
|
|
case _GSC_USHT:
|
|
|
|
|
typeCheck(*type, info & _GSC_MASK);
|
|
|
|
|
if ((info & _GSC_SIZE) == _GSC_S_SHT)
|
|
|
|
|
{
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, type, &_cursor, nil);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _GSC_INT:
|
|
|
|
|
case _GSC_UINT:
|
|
|
|
|
typeCheck(*type, info & _GSC_MASK);
|
|
|
|
|
if ((info & _GSC_SIZE) == _GSC_S_INT)
|
|
|
|
|
{
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, type, &_cursor, nil);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case _GSC_LNG:
|
|
|
|
|
case _GSC_ULNG:
|
|
|
|
|
typeCheck(*type, info & _GSC_MASK);
|
|
|
|
|
if ((info & _GSC_SIZE) == _GSC_S_LNG)
|
|
|
|
|
{
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, type, &_cursor, nil);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef _C_LNG_LNG
|
|
|
|
|
case _GSC_LNG_LNG:
|
|
|
|
|
case _GSC_ULNG_LNG:
|
|
|
|
|
typeCheck(*type, info & _GSC_MASK);
|
|
|
|
|
if ((info & _GSC_SIZE) == _GSC_S_LNG_LNG)
|
|
|
|
|
{
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, type, &_cursor, nil);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
case _GSC_FLT:
|
|
|
|
|
typeCheck(*type, _GSC_FLT);
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, type, &_cursor, nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _GSC_DBL:
|
|
|
|
|
typeCheck(*type, _GSC_DBL);
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, address, type, &_cursor, nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"read unknown type info - %d", info];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We fall through to here only when we have to decode a value
|
|
|
|
|
* whose natural size on this system is not the same as on the
|
|
|
|
|
* machine on which the archive was created.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* First, we read the data and convert it to the largest size
|
|
|
|
|
* this system can support.
|
|
|
|
|
*/
|
|
|
|
|
switch (info & _GSC_SIZE)
|
|
|
|
|
{
|
|
|
|
|
case _GSC_I16: /* Encoded as 16-bit */
|
|
|
|
|
{
|
|
|
|
|
gsu16 val;
|
|
|
|
|
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &val, @encode(gsu16), &_cursor, nil);
|
|
|
|
|
bigval = val;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_I32: /* Encoded as 32-bit */
|
|
|
|
|
{
|
|
|
|
|
gsu32 val;
|
|
|
|
|
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &val, @encode(gsu32), &_cursor, nil);
|
|
|
|
|
bigval = val;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case _GSC_I64: /* Encoded as 64-bit */
|
|
|
|
|
{
|
|
|
|
|
gsu64 val;
|
|
|
|
|
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &val, @encode(gsu64), &_cursor, nil);
|
|
|
|
|
#if GS_HAVE_I64
|
|
|
|
|
bigval = val;
|
|
|
|
|
#else
|
|
|
|
|
bigval = GSSwapBigI64ToHost(val);
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default: /* A 128-bit value */
|
|
|
|
|
{
|
|
|
|
|
gsu128 val;
|
|
|
|
|
|
|
|
|
|
(*_dDesImp)(_src, dDesSel, &val, @encode(gsu128), &_cursor, nil);
|
|
|
|
|
#if GS_HAVE_I128
|
|
|
|
|
bigval = val;
|
|
|
|
|
#else
|
|
|
|
|
val = GSSwapBigI128ToHost(val);
|
|
|
|
|
#if GS_HAVE_I64
|
|
|
|
|
bigval = *(gsu64*)&val;
|
|
|
|
|
#else
|
|
|
|
|
bigval = *(gsu32*)&val;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Now we copy from the 'bigval' to the destination location.
|
|
|
|
|
*/
|
|
|
|
|
switch (info & _GSC_MASK)
|
|
|
|
|
{
|
|
|
|
|
case _GSC_SHT:
|
|
|
|
|
*(short*)address = (short)bigval;
|
|
|
|
|
return;
|
|
|
|
|
case _GSC_USHT:
|
|
|
|
|
*(unsigned short*)address = (unsigned short)bigval;
|
|
|
|
|
return;
|
|
|
|
|
case _GSC_INT:
|
|
|
|
|
*(int*)address = (int)bigval;
|
|
|
|
|
return;
|
|
|
|
|
case _GSC_UINT:
|
|
|
|
|
*(unsigned int*)address = (unsigned int)bigval;
|
|
|
|
|
return;
|
|
|
|
|
case _GSC_LNG:
|
|
|
|
|
*(long*)address = (long)bigval;
|
|
|
|
|
return;
|
|
|
|
|
case _GSC_ULNG:
|
|
|
|
|
*(unsigned long*)address = (unsigned long)bigval;
|
|
|
|
|
return;
|
|
|
|
|
#ifdef _C_LNG_LNG
|
|
|
|
|
case _GSC_LNG_LNG:
|
|
|
|
|
*(long long*)address = (long long)bigval;
|
|
|
|
|
return;
|
|
|
|
|
case _GSC_ULNG_LNG:
|
|
|
|
|
*(unsigned long long*)address = (unsigned long long)bigval;
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
default:
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"type/size information error"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) dispatch
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Get ready for re-use
|
|
|
|
|
* Make sure that we don't retain the connection - or it might never be
|
|
|
|
|
* released if it is keeping this coder in a cache.
|
|
|
|
|
*/
|
|
|
|
|
DESTROY(_conn);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeArrayOfObjCType: (const char*)type
|
|
|
|
|
count: (unsigned)count
|
|
|
|
|
at: (const void*)buf
|
|
|
|
|
{
|
|
|
|
|
unsigned i;
|
|
|
|
|
unsigned offset = 0;
|
|
|
|
|
unsigned size = objc_sizeof_type(type);
|
|
|
|
|
uchar info;
|
|
|
|
|
|
|
|
|
|
switch (*type)
|
|
|
|
|
{
|
|
|
|
|
case _C_ID: info = _GSC_NONE; break;
|
|
|
|
|
case _C_CHR: info = _GSC_CHR; break;
|
|
|
|
|
case _C_UCHR: info = _GSC_UCHR; break;
|
|
|
|
|
case _C_SHT: info = _GSC_SHT | _GSC_S_SHT; break;
|
|
|
|
|
case _C_USHT: info = _GSC_USHT | _GSC_S_SHT; break;
|
|
|
|
|
case _C_INT: info = _GSC_INT | _GSC_S_INT; break;
|
|
|
|
|
case _C_UINT: info = _GSC_UINT | _GSC_S_INT; break;
|
|
|
|
|
case _C_LNG: info = _GSC_LNG | _GSC_S_LNG; break;
|
|
|
|
|
case _C_ULNG: info = _GSC_ULNG | _GSC_S_LNG; break;
|
|
|
|
|
case _C_LNG_LNG: info = _GSC_LNG_LNG | _GSC_S_LNG_LNG; break;
|
|
|
|
|
case _C_ULNG_LNG: info = _GSC_ULNG_LNG | _GSC_S_LNG_LNG; break;
|
|
|
|
|
case _C_FLT: info = _GSC_FLT; break;
|
|
|
|
|
case _C_DBL: info = _GSC_DBL; break;
|
|
|
|
|
default: info = _GSC_NONE; break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Simple types can be serialized immediately, more complex ones
|
|
|
|
|
* are dealt with by our [encodeValueOfObjCType:at:] method.
|
|
|
|
|
*/
|
|
|
|
|
if (info == _GSC_NONE)
|
|
|
|
|
{
|
|
|
|
|
if (_initialPass == NO)
|
|
|
|
|
{
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_ARY_B);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, &count, @encode(unsigned), nil);
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
(*_eValImp)(self, eValSel, type, (char*)buf + offset);
|
|
|
|
|
offset += size;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (_initialPass == NO)
|
|
|
|
|
{
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_ARY_B);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, &count, @encode(unsigned), nil);
|
|
|
|
|
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, info);
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (char*)buf + offset, type, nil);
|
|
|
|
|
offset += size;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeBycopyObject: (id)anObj
|
|
|
|
|
{
|
|
|
|
|
BOOL oldBycopy = _is_by_copy;
|
|
|
|
|
BOOL oldByref = _is_by_ref;
|
|
|
|
|
|
|
|
|
|
_is_by_copy = YES;
|
|
|
|
|
_is_by_ref = NO;
|
|
|
|
|
(*_eObjImp)(self, eObjSel, anObj);
|
|
|
|
|
_is_by_copy = oldBycopy;
|
|
|
|
|
_is_by_ref = oldByref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeByrefObject: (id)anObj
|
|
|
|
|
{
|
|
|
|
|
BOOL oldBycopy = _is_by_copy;
|
|
|
|
|
BOOL oldByref = _is_by_ref;
|
|
|
|
|
|
|
|
|
|
_is_by_copy = NO;
|
|
|
|
|
_is_by_ref = YES;
|
|
|
|
|
(*_eObjImp)(self, eObjSel, anObj);
|
|
|
|
|
_is_by_copy = oldBycopy;
|
|
|
|
|
_is_by_ref = oldByref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeConditionalObject: (id)anObject
|
|
|
|
|
{
|
|
|
|
|
if (_encodingRoot == NO)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"conditionally encoding without root object"];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_initialPass)
|
|
|
|
|
{
|
|
|
|
|
GSIMapNode node;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Conditionally encoding 'nil' is a no-op.
|
|
|
|
|
*/
|
|
|
|
|
if (anObject == nil)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* If we have already conditionally encoded this object, we can
|
|
|
|
|
* ignore it this time.
|
|
|
|
|
*/
|
|
|
|
|
node = GSIMapNodeForKey(_cIdMap, (GSIMapKey)anObject);
|
|
|
|
|
if (node != 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* If we have unconditionally encoded this object, we can ignore
|
|
|
|
|
* it now.
|
|
|
|
|
*/
|
|
|
|
|
node = GSIMapNodeForKey(_uIdMap, (GSIMapKey)anObject);
|
|
|
|
|
if (node != 0)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GSIMapAddPair(_cIdMap, (GSIMapKey)anObject, (GSIMapVal)0);
|
|
|
|
|
}
|
|
|
|
|
else if (anObject == nil)
|
|
|
|
|
{
|
|
|
|
|
(*_eObjImp)(self, eObjSel, nil);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GSIMapNode node;
|
|
|
|
|
|
|
|
|
|
node = GSIMapNodeForKey(_cIdMap, (GSIMapKey)anObject);
|
|
|
|
|
if (node != 0)
|
|
|
|
|
{
|
|
|
|
|
(*_eObjImp)(self, eObjSel, nil);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
(*_eObjImp)(self, eObjSel, anObject);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* When asked to encode a data object, we add the object to the components
|
|
|
|
|
* array, and simply record the array index, so the corresponding decode
|
|
|
|
|
* method can tell which component to use.
|
|
|
|
|
*/
|
|
|
|
|
- (void) encodeDataObject: (NSData*)anObject
|
|
|
|
|
{
|
|
|
|
|
int pos;
|
|
|
|
|
|
|
|
|
|
if (anObject == nil)
|
|
|
|
|
{
|
|
|
|
|
pos = -1;
|
|
|
|
|
}
|
|
|
|
|
else if ([anObject length] == 0)
|
|
|
|
|
{
|
|
|
|
|
pos = -2;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pos = (int)[_comp count];
|
|
|
|
|
[_comp addObject: anObject];
|
|
|
|
|
}
|
|
|
|
|
[self encodeValueOfObjCType: @encode(int) at: &pos];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeObject: (id)anObject
|
|
|
|
|
{
|
|
|
|
|
if (anObject == nil)
|
|
|
|
|
{
|
|
|
|
|
if (_initialPass == NO)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Special case - encode a nil pointer as a crossref of zero.
|
|
|
|
|
*/
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_ID | _GSC_XREF, _GSC_X_0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GSIMapNode node;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* See if the object has already been encoded.
|
|
|
|
|
*/
|
|
|
|
|
node = GSIMapNodeForKey(_uIdMap, (GSIMapKey)anObject);
|
|
|
|
|
|
|
|
|
|
if (_initialPass)
|
|
|
|
|
{
|
|
|
|
|
if (node == 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Remove object from map of conditionally encoded objects
|
|
|
|
|
* and add it to the map of unconditionay encoded ones.
|
|
|
|
|
*/
|
|
|
|
|
GSIMapRemoveKey(_cIdMap, (GSIMapKey)anObject);
|
|
|
|
|
GSIMapAddPair(_uIdMap, (GSIMapKey)anObject, (GSIMapVal)0);
|
|
|
|
|
[anObject encodeWithCoder: self];
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (node == 0 || node->value.uint == 0)
|
|
|
|
|
{
|
|
|
|
|
Class cls;
|
|
|
|
|
id obj;
|
|
|
|
|
|
|
|
|
|
if (node == 0)
|
|
|
|
|
{
|
|
|
|
|
node = GSIMapAddPair(_uIdMap,
|
|
|
|
|
(GSIMapKey)anObject, (GSIMapVal)++_xRefO);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
node->value.uint = ++_xRefO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
obj = [anObject replacementObjectForPortCoder: self];
|
2000-10-31 16:17:33 +00:00
|
|
|
|
if (GSObjCIsInstance(obj) == NO)
|
2000-08-07 22:00:31 +00:00
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* If the object we have been given is actually a class,
|
|
|
|
|
* we encode it as a special case.
|
|
|
|
|
*/
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_CID, node->value.uint);
|
|
|
|
|
(*_eValImp)(self, eValSel, @encode(Class), &obj);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
cls = [obj classForPortCoder];
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_ID, node->value.uint);
|
|
|
|
|
(*_eValImp)(self, eValSel, @encode(Class), &cls);
|
|
|
|
|
[obj encodeWithCoder: self];
|
|
|
|
|
}
|
2000-07-04 11:05:46 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_ID | _GSC_XREF, node->value.uint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* When asked to encode a port object, we add the object to the components
|
|
|
|
|
* array, and simply record the array index, so the corresponding decode
|
|
|
|
|
* method can tell which component to use.
|
|
|
|
|
*/
|
2002-02-03 17:21:20 +00:00
|
|
|
|
- (void) encodePortObject: (NSPort*)aPort
|
2000-07-04 11:05:46 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned pos = [_comp count];
|
|
|
|
|
|
2002-02-03 17:21:20 +00:00
|
|
|
|
[_comp addObject: aPort];
|
2000-07-04 11:05:46 +00:00
|
|
|
|
[self encodeValueOfObjCType: @encode(unsigned) at: &pos];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeRootObject: (id)rootObject
|
|
|
|
|
{
|
|
|
|
|
if (_encodingRoot)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"encoding root object more than once"];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_encodingRoot = YES;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* First pass - find conditional objects.
|
|
|
|
|
*/
|
|
|
|
|
_initialPass = YES;
|
|
|
|
|
(*_eObjImp)(self, eObjSel, rootObject);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Second pass - write archive.
|
|
|
|
|
*/
|
|
|
|
|
_initialPass = NO;
|
|
|
|
|
(*_eObjImp)(self, eObjSel, rootObject);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Write sizes of crossref arrays to head of archive.
|
|
|
|
|
*/
|
|
|
|
|
[self _serializeHeaderAt: _cursor
|
|
|
|
|
version: [self systemVersion]
|
|
|
|
|
classes: _clsMap->nodeCount
|
|
|
|
|
objects: _uIdMap->nodeCount
|
|
|
|
|
pointers: _ptrMap->nodeCount];
|
|
|
|
|
|
|
|
|
|
_encodingRoot = NO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) encodeValueOfObjCType: (const char*)type
|
|
|
|
|
at: (const void*)buf
|
|
|
|
|
{
|
|
|
|
|
switch (*type)
|
|
|
|
|
{
|
|
|
|
|
case _C_ID:
|
|
|
|
|
(*_eObjImp)(self, eObjSel, *(void**)buf);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_ARY_B:
|
|
|
|
|
{
|
|
|
|
|
int count = atoi(++type);
|
|
|
|
|
|
|
|
|
|
while (isdigit(*type))
|
|
|
|
|
{
|
|
|
|
|
type++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_initialPass == NO)
|
|
|
|
|
{
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_ARY_B);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[self encodeArrayOfObjCType: type count: count at: buf];
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_STRUCT_B:
|
|
|
|
|
{
|
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
|
|
if (_initialPass == NO)
|
|
|
|
|
{
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_STRUCT_B);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (*type != _C_STRUCT_E && *type++ != '='); /* skip "<name>=" */
|
|
|
|
|
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
|
|
|
|
(*_eValImp)(self, eValSel, type, (char*)buf + offset);
|
|
|
|
|
offset += objc_sizeof_type(type);
|
|
|
|
|
type = objc_skip_typespec(type);
|
|
|
|
|
if (*type == _C_STRUCT_E)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int align = objc_alignof_type(type);
|
|
|
|
|
int rem = offset % align;
|
|
|
|
|
|
|
|
|
|
if (rem != 0)
|
|
|
|
|
{
|
|
|
|
|
offset += align - rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_PTR:
|
|
|
|
|
if (*(void**)buf == 0)
|
|
|
|
|
{
|
|
|
|
|
if (_initialPass == NO)
|
|
|
|
|
{
|
|
|
|
|
/*
|
2002-08-20 15:07:58 +00:00
|
|
|
|
* Special case - a null pointer gets an xref of zero
|
2000-07-04 11:05:46 +00:00
|
|
|
|
*/
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_PTR | _GSC_XREF | _GSC_X_0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GSIMapNode node;
|
|
|
|
|
|
|
|
|
|
node = GSIMapNodeForKey(_ptrMap, (GSIMapKey)*(void**)buf);
|
|
|
|
|
if (_initialPass == YES)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* First pass - add pointer to map and encode item pointed
|
|
|
|
|
* to in case it is a conditionally encoded object.
|
|
|
|
|
*/
|
|
|
|
|
if (node == 0)
|
|
|
|
|
{
|
|
|
|
|
GSIMapAddPair(_ptrMap,
|
|
|
|
|
(GSIMapKey)*(void**)buf, (GSIMapVal)0);
|
|
|
|
|
type++;
|
|
|
|
|
buf = *(char**)buf;
|
|
|
|
|
(*_eValImp)(self, eValSel, type, buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (node == 0 || node->value.uint == 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Second pass, unwritten pointer - write it.
|
|
|
|
|
*/
|
|
|
|
|
if (node == 0)
|
|
|
|
|
{
|
|
|
|
|
node = GSIMapAddPair(_ptrMap,
|
|
|
|
|
(GSIMapKey)*(void**)buf, (GSIMapVal)++_xRefP);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
node->value.uint = ++_xRefP;
|
|
|
|
|
}
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_PTR, node->value.uint);
|
|
|
|
|
type++;
|
|
|
|
|
buf = *(char**)buf;
|
|
|
|
|
(*_eValImp)(self, eValSel, type, buf);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Second pass, write a cross-reference number.
|
|
|
|
|
*/
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_PTR|_GSC_XREF,
|
|
|
|
|
node->value.uint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
default: /* Types that can be ignored in first pass. */
|
|
|
|
|
if (_initialPass)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (*type)
|
|
|
|
|
{
|
|
|
|
|
case _C_CLASS:
|
|
|
|
|
if (*(Class*)buf == 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
2002-08-20 15:07:58 +00:00
|
|
|
|
* Special case - a null pointer gets an xref of zero
|
2000-07-04 11:05:46 +00:00
|
|
|
|
*/
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_CLASS | _GSC_XREF | _GSC_X_0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Class c = *(Class*)buf;
|
|
|
|
|
GSIMapNode node;
|
|
|
|
|
BOOL done = NO;
|
|
|
|
|
|
|
|
|
|
node = GSIMapNodeForKey(_clsMap, (GSIMapKey)(void*)c);
|
|
|
|
|
|
|
|
|
|
if (node != 0)
|
|
|
|
|
{
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_CLASS | _GSC_XREF,
|
|
|
|
|
node->value.uint);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
while (done == NO)
|
|
|
|
|
{
|
2000-10-31 16:17:33 +00:00
|
|
|
|
int tmp = GSObjCVersion(c);
|
2000-07-04 11:05:46 +00:00
|
|
|
|
unsigned version = tmp;
|
2000-10-31 16:17:33 +00:00
|
|
|
|
Class s = GSObjCSuper(c);
|
2000-07-04 11:05:46 +00:00
|
|
|
|
|
|
|
|
|
if (tmp < 0)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"negative class version"];
|
|
|
|
|
}
|
|
|
|
|
node = GSIMapAddPair(_clsMap,
|
|
|
|
|
(GSIMapKey)(void*)c, (GSIMapVal)++_xRefC);
|
|
|
|
|
/*
|
|
|
|
|
* Encode tag and crossref number.
|
|
|
|
|
*/
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_CLASS, node->value.uint);
|
|
|
|
|
/*
|
|
|
|
|
* Encode class, and version.
|
|
|
|
|
*/
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, &c, @encode(Class), nil);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, &version, @encode(unsigned), nil);
|
|
|
|
|
/*
|
|
|
|
|
* If we have a super class that has not been encoded,
|
|
|
|
|
* we must loop round to encode it here so that its
|
|
|
|
|
* version information will be available when objects
|
|
|
|
|
* of its subclasses are decoded and call
|
|
|
|
|
* [super initWithCoder:ccc]
|
|
|
|
|
*/
|
|
|
|
|
if (s == c || s == 0
|
|
|
|
|
|| GSIMapNodeForKey(_clsMap, (GSIMapKey)(void*)s) != 0)
|
|
|
|
|
{
|
|
|
|
|
done = YES;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
c = s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* Encode an empty tag to terminate the list of classes.
|
|
|
|
|
*/
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_NONE);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_SEL:
|
|
|
|
|
if (*(SEL*)buf == 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
2002-08-20 15:07:58 +00:00
|
|
|
|
* Special case - a null pointer gets an xref of zero
|
2000-07-04 11:05:46 +00:00
|
|
|
|
*/
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_SEL | _GSC_XREF | _GSC_X_0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SEL s = *(SEL*)buf;
|
|
|
|
|
GSIMapNode node = GSIMapNodeForKey(_ptrMap, (GSIMapKey)(void*)s);
|
|
|
|
|
|
|
|
|
|
if (node == 0)
|
|
|
|
|
{
|
|
|
|
|
node = GSIMapAddPair(_ptrMap,
|
|
|
|
|
(GSIMapKey)(void*)s, (GSIMapVal)++_xRefP);
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_SEL, node->value.uint);
|
|
|
|
|
/*
|
|
|
|
|
* Encode selector.
|
|
|
|
|
*/
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, buf, @encode(SEL), nil);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_SEL|_GSC_XREF,
|
|
|
|
|
node->value.uint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_CHARPTR:
|
|
|
|
|
if (*(char**)buf == 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
2002-08-20 15:07:58 +00:00
|
|
|
|
* Special case - a null pointer gets an xref of zero
|
2000-07-04 11:05:46 +00:00
|
|
|
|
*/
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_CHARPTR | _GSC_XREF | _GSC_X_0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GSIMapNode node;
|
|
|
|
|
|
|
|
|
|
node = GSIMapNodeForKey(_ptrMap, (GSIMapKey)*(char**)buf);
|
|
|
|
|
if (node == 0)
|
|
|
|
|
{
|
|
|
|
|
node = GSIMapAddPair(_ptrMap,
|
|
|
|
|
(GSIMapKey)*(char**)buf, (GSIMapVal)++_xRefP);
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_CHARPTR, node->value.uint);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, buf, type, nil);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
(*_xRefImp)(_dst, xRefSel, _GSC_CHARPTR|_GSC_XREF,
|
|
|
|
|
node->value.uint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_CHR:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_CHR);
|
2001-05-11 15:23:24 +00:00
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(signed char), nil);
|
2000-07-04 11:05:46 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_UCHR:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_UCHR);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(unsigned char), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_SHT:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_SHT | _GSC_S_SHT);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(short), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_USHT:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_USHT | _GSC_S_SHT);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(unsigned short), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_INT:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_INT | _GSC_S_INT);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(int), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_UINT:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_UINT | _GSC_S_INT);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(unsigned int), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_LNG:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_LNG | _GSC_S_LNG);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(long), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_ULNG:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_ULNG | _GSC_S_LNG);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(unsigned long), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_LNG_LNG:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_LNG_LNG | _GSC_S_LNG_LNG);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(long long), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_ULNG_LNG:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_ULNG_LNG | _GSC_S_LNG_LNG);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(unsigned long long),
|
|
|
|
|
nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_FLT:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_FLT);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(float), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_DBL:
|
|
|
|
|
(*_eTagImp)(_dst, eTagSel, _GSC_DBL);
|
|
|
|
|
(*_eSerImp)(_dst, eSerSel, (void*)buf, @encode(double), nil);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case _C_VOID:
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"can't encode void item"];
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
[NSException raise: NSInvalidArgumentException
|
|
|
|
|
format: @"item with unknown type - %s", type];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (id) initWithReceivePort: (NSPort*)recv
|
|
|
|
|
sendPort: (NSPort*)send
|
|
|
|
|
components: (NSArray*)comp
|
|
|
|
|
{
|
|
|
|
|
BOOL firstTime;
|
|
|
|
|
|
|
|
|
|
_conn = RETAIN([connectionClass connectionWithReceivePort: recv
|
|
|
|
|
sendPort: send]);
|
|
|
|
|
if (_comp == nil)
|
|
|
|
|
{
|
|
|
|
|
firstTime = YES;
|
|
|
|
|
_version = [super systemVersion];
|
|
|
|
|
_zone = NSDefaultMallocZone();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
NSAssert(recv == [_conn receivePort] && send == [_conn sendPort],
|
|
|
|
|
NSInvalidArgumentException);
|
|
|
|
|
/*
|
|
|
|
|
* Re-initialising - destroy old components.
|
|
|
|
|
*/
|
|
|
|
|
firstTime = NO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (comp == nil)
|
|
|
|
|
{
|
|
|
|
|
NS_DURING
|
|
|
|
|
{
|
|
|
|
|
_encodingRoot = NO;
|
|
|
|
|
_initialPass = NO;
|
|
|
|
|
_xRefC = 0;
|
|
|
|
|
_xRefO = 0;
|
|
|
|
|
_xRefP = 0;
|
|
|
|
|
|
|
|
|
|
_cursor = [send reservedSpaceLength];
|
|
|
|
|
if (firstTime == YES)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Set up mutable data object to encode into - reserve space at
|
|
|
|
|
* the start for use by the port when the encoded data is sent.
|
|
|
|
|
* Make the data item the first component of the array.
|
|
|
|
|
*/
|
|
|
|
|
_comp = [mutableArrayClass new];
|
|
|
|
|
_dst = [mutableDataClass allocWithZone: _zone];
|
|
|
|
|
_dst = [_dst initWithLength: _cursor];
|
|
|
|
|
[_comp addObject: _dst];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Cache method implementations for writing into data object etc
|
|
|
|
|
*/
|
|
|
|
|
_eObjImp = [self methodForSelector: eObjSel];
|
|
|
|
|
_eValImp = [self methodForSelector: eValSel];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Set up map tables.
|
|
|
|
|
*/
|
|
|
|
|
_clsMap
|
|
|
|
|
= (GSIMapTable)NSZoneMalloc(_zone, sizeof(GSIMapTable_t)*4);
|
|
|
|
|
_cIdMap = &_clsMap[1];
|
|
|
|
|
_uIdMap = &_clsMap[2];
|
|
|
|
|
_ptrMap = &_clsMap[3];
|
|
|
|
|
GSIMapInitWithZoneAndCapacity(_clsMap, _zone, 100);
|
|
|
|
|
GSIMapInitWithZoneAndCapacity(_cIdMap, _zone, 10);
|
|
|
|
|
GSIMapInitWithZoneAndCapacity(_uIdMap, _zone, 200);
|
|
|
|
|
GSIMapInitWithZoneAndCapacity(_ptrMap, _zone, 100);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/*
|
2000-07-04 14:37:18 +00:00
|
|
|
|
* If re-initialising, we need to empty the old stuff.
|
|
|
|
|
* NB. Our _dst object may have been removed from the _comp
|
|
|
|
|
* array elsewhere, so we empty the _comp array and then re-add
|
|
|
|
|
* _dst
|
2000-07-04 11:05:46 +00:00
|
|
|
|
*/
|
2000-07-04 14:37:18 +00:00
|
|
|
|
[_comp removeAllObjects];
|
|
|
|
|
[_comp addObject: _dst];
|
2000-07-04 11:05:46 +00:00
|
|
|
|
[_dst setLength: _cursor];
|
|
|
|
|
GSIMapCleanMap(_clsMap);
|
|
|
|
|
GSIMapCleanMap(_cIdMap);
|
|
|
|
|
GSIMapCleanMap(_uIdMap);
|
|
|
|
|
GSIMapCleanMap(_ptrMap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Write dummy header
|
|
|
|
|
*/
|
|
|
|
|
[self _serializeHeaderAt: _cursor
|
|
|
|
|
version: 0
|
|
|
|
|
classes: 0
|
|
|
|
|
objects: 0
|
|
|
|
|
pointers: 0];
|
|
|
|
|
}
|
|
|
|
|
NS_HANDLER
|
|
|
|
|
{
|
|
|
|
|
NSLog(@"Exception setting up port coder for encoding - %@",
|
|
|
|
|
localException);
|
|
|
|
|
DESTROY(self);
|
|
|
|
|
}
|
|
|
|
|
NS_ENDHANDLER
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
RELEASE(_comp);
|
|
|
|
|
_comp = [comp mutableCopy];
|
|
|
|
|
NS_DURING
|
|
|
|
|
{
|
|
|
|
|
unsigned sizeC;
|
|
|
|
|
unsigned sizeO;
|
|
|
|
|
unsigned sizeP;
|
|
|
|
|
|
|
|
|
|
if (firstTime == YES)
|
|
|
|
|
{
|
|
|
|
|
_dValImp = [self methodForSelector: dValSel];
|
|
|
|
|
}
|
|
|
|
|
_src = [_comp objectAtIndex: 0];
|
|
|
|
|
_dDesImp = [_src methodForSelector: dDesSel];
|
|
|
|
|
_dTagImp = (void (*)(id, SEL, unsigned char*, unsigned*, unsigned*))
|
|
|
|
|
[_src methodForSelector: dTagSel];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* _cInfo is a dictionary of objects for keeping track of the
|
|
|
|
|
* version numbers that the classes were encoded with.
|
|
|
|
|
*/
|
|
|
|
|
if (firstTime == NO)
|
|
|
|
|
{
|
|
|
|
|
[_cInfo removeAllObjects];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Read header including version and crossref table sizes.
|
|
|
|
|
*/
|
|
|
|
|
_cursor = 0;
|
|
|
|
|
[self _deserializeHeaderAt: &_cursor
|
|
|
|
|
version: &_version
|
|
|
|
|
classes: &sizeC
|
|
|
|
|
objects: &sizeO
|
|
|
|
|
pointers: &sizeP];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Allocate and initialise arrays to build crossref maps in.
|
|
|
|
|
*/
|
|
|
|
|
if (firstTime == YES)
|
|
|
|
|
{
|
|
|
|
|
_clsAry = NSZoneMalloc(_zone, sizeof(GSIArray_t)*3);
|
|
|
|
|
_objAry = &_clsAry[1];
|
|
|
|
|
_ptrAry = &_clsAry[2];
|
|
|
|
|
GSIArrayInitWithZoneAndCapacity(_clsAry, _zone, sizeC);
|
|
|
|
|
GSIArrayInitWithZoneAndCapacity(_objAry, _zone, sizeO);
|
|
|
|
|
GSIArrayInitWithZoneAndCapacity(_ptrAry, _zone, sizeP);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
unsigned count = GSIArrayCount(_clsAry);
|
|
|
|
|
|
|
|
|
|
while (count-- > 0)
|
|
|
|
|
{
|
|
|
|
|
RELEASE(GSIArrayItemAtIndex(_clsAry, count).obj);
|
|
|
|
|
}
|
|
|
|
|
GSIArrayRemoveAllItems(_clsAry);
|
|
|
|
|
GSIArrayRemoveAllItems(_objAry);
|
|
|
|
|
GSIArrayRemoveAllItems(_ptrAry);
|
|
|
|
|
}
|
2002-03-01 04:13:27 +00:00
|
|
|
|
GSIArrayAddItem(_clsAry, (GSIArrayItem)(void*)0);
|
|
|
|
|
GSIArrayAddItem(_objAry, (GSIArrayItem)(void*)0);
|
2002-02-20 08:32:08 +00:00
|
|
|
|
GSIArrayAddItem(_ptrAry, (GSIArrayItem)(void*)0);
|
2000-07-04 11:05:46 +00:00
|
|
|
|
}
|
|
|
|
|
NS_HANDLER
|
|
|
|
|
{
|
|
|
|
|
NSLog(@"Exception setting up port coder for decoding - %@",
|
|
|
|
|
localException);
|
|
|
|
|
DESTROY(self);
|
|
|
|
|
}
|
|
|
|
|
NS_ENDHANDLER
|
|
|
|
|
}
|
|
|
|
|
return self;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (BOOL) isBycopy
|
|
|
|
|
{
|
|
|
|
|
return _is_by_copy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (BOOL) isByref
|
|
|
|
|
{
|
|
|
|
|
return _is_by_ref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSZone*) objectZone
|
|
|
|
|
{
|
|
|
|
|
return _zone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) setObjectZone: (NSZone*)aZone
|
|
|
|
|
{
|
|
|
|
|
_zone = aZone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (unsigned) systemVersion
|
|
|
|
|
{
|
|
|
|
|
return _version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (unsigned) versionForClassName: (NSString*)className
|
|
|
|
|
{
|
|
|
|
|
GSClassInfo *info = nil;
|
|
|
|
|
unsigned version = NSNotFound;
|
|
|
|
|
unsigned count = GSIArrayCount(_clsAry);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Lazy ... we construct a dictionary of all the class information in
|
|
|
|
|
* the request the first time that class version info is asked for.
|
|
|
|
|
*/
|
|
|
|
|
if (_cInfo == nil)
|
|
|
|
|
{
|
|
|
|
|
_cInfo = [[mutableDictionaryClass alloc] initWithCapacity: count];
|
|
|
|
|
}
|
|
|
|
|
if ([_cInfo count] == 0)
|
|
|
|
|
{
|
|
|
|
|
while (count-- > 0)
|
|
|
|
|
{
|
|
|
|
|
info = GSIArrayItemAtIndex(_clsAry, count).obj;
|
2002-02-21 13:31:13 +00:00
|
|
|
|
if (info->class != 0)
|
|
|
|
|
{
|
|
|
|
|
[_cInfo setObject: info forKey: NSStringFromClass(info->class)];
|
|
|
|
|
}
|
2000-07-04 11:05:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
info = [_cInfo objectForKey: className];
|
|
|
|
|
if (info != nil)
|
|
|
|
|
{
|
|
|
|
|
version = info->version;
|
|
|
|
|
}
|
|
|
|
|
return version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@implementation NSPortCoder (Private)
|
|
|
|
|
|
|
|
|
|
- (NSMutableArray*) _components
|
|
|
|
|
{
|
|
|
|
|
return _comp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
@implementation NSPortCoder (Headers)
|
|
|
|
|
|
|
|
|
|
- (void) _deserializeHeaderAt: (unsigned*)pos
|
|
|
|
|
version: (unsigned*)v
|
|
|
|
|
classes: (unsigned*)c
|
|
|
|
|
objects: (unsigned*)o
|
|
|
|
|
pointers: (unsigned*)p
|
|
|
|
|
{
|
|
|
|
|
unsigned plen = strlen(PREFIX);
|
|
|
|
|
unsigned size = plen+36;
|
|
|
|
|
char header[size+1];
|
|
|
|
|
|
|
|
|
|
[_src getBytes: header range: NSMakeRange(*pos, size)];
|
|
|
|
|
*pos += size;
|
|
|
|
|
header[size] = '\0';
|
|
|
|
|
if (strncmp(header, PREFIX, plen) != 0)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"Archive has wrong prefix"];
|
|
|
|
|
}
|
|
|
|
|
if (sscanf(&header[plen], "%x:%x:%x:%x:", v, c, o, p) != 4)
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"Archive has wrong prefix"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void) _serializeHeaderAt: (unsigned)locationInData
|
|
|
|
|
version: (unsigned)v
|
|
|
|
|
classes: (unsigned)cc
|
|
|
|
|
objects: (unsigned)oc
|
|
|
|
|
pointers: (unsigned)pc
|
|
|
|
|
{
|
|
|
|
|
unsigned headerLength = strlen(PREFIX)+36;
|
|
|
|
|
char header[headerLength+1];
|
|
|
|
|
unsigned dataLength = [_dst length];
|
|
|
|
|
|
|
|
|
|
sprintf(header, "%s%08x:%08x:%08x:%08x:", PREFIX, v, cc, oc, pc);
|
|
|
|
|
|
|
|
|
|
if (locationInData + headerLength <= dataLength)
|
|
|
|
|
{
|
|
|
|
|
[_dst replaceBytesInRange: NSMakeRange(locationInData, headerLength)
|
|
|
|
|
withBytes: header];
|
|
|
|
|
}
|
|
|
|
|
else if (locationInData == dataLength)
|
|
|
|
|
{
|
|
|
|
|
[_dst appendBytes: header length: headerLength];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
[NSException raise: NSInternalInconsistencyException
|
|
|
|
|
format: @"serializeHeader:at: bad location"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|