2000-12-08 19:06:00 +00:00
|
|
|
/* Interface for NSInvocation concrete classes for GNUStep
|
|
|
|
Copyright (C) 1998 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Written: Adam Fedor <fedor@gnu.org>
|
|
|
|
Date: Nov 2000
|
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2007-09-14 11:36:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2000-12-08 19:06:00 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2008-06-08 10:38:33 +00:00
|
|
|
version 2 of the License, or (at your option) any later version.
|
2000-12-08 19:06:00 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2007-09-14 11:36:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2000-12-08 19:06:00 +00:00
|
|
|
License along with this library; if not, write to the Free
|
2009-01-12 12:48:46 +00:00
|
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02111 USA.
|
2000-12-08 19:06:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GSInvocation_h_GNUSTEP_BASE_INCLUDE
|
|
|
|
#define __GSInvocation_h_GNUSTEP_BASE_INCLUDE
|
|
|
|
|
|
|
|
#include <Foundation/NSInvocation.h>
|
|
|
|
|
2010-06-07 20:38:19 +00:00
|
|
|
@class NSMutableData;
|
|
|
|
|
2009-10-05 16:00:28 +00:00
|
|
|
typedef struct {
|
|
|
|
int offset;
|
|
|
|
unsigned size;
|
|
|
|
const char *type;
|
|
|
|
const char *qtype;
|
|
|
|
unsigned align;
|
|
|
|
unsigned qual;
|
|
|
|
BOOL isReg;
|
|
|
|
} NSArgumentInfo;
|
|
|
|
|
2011-07-24 13:09:22 +00:00
|
|
|
|
2000-12-08 19:06:00 +00:00
|
|
|
@interface GSFFIInvocation : NSInvocation
|
|
|
|
{
|
2010-06-07 20:38:19 +00:00
|
|
|
@public
|
2009-10-03 18:34:44 +00:00
|
|
|
uint8_t _retbuf[32]; // Store return values of up to 32 bytes here.
|
2010-06-07 20:38:19 +00:00
|
|
|
NSMutableData *_frame;
|
2000-12-08 19:06:00 +00:00
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface GSFFCallInvocation : NSInvocation
|
|
|
|
{
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2012-11-20 11:49:18 +00:00
|
|
|
@interface GSDummyInvocation : NSInvocation
|
2000-12-08 19:06:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NSInvocation (DistantCoding)
|
|
|
|
- (BOOL) encodeWithDistantCoder: (NSCoder*)coder passPointers: (BOOL)passp;
|
|
|
|
@end
|
|
|
|
|
2009-10-05 16:00:28 +00:00
|
|
|
@interface NSMethodSignature (GNUstep)
|
|
|
|
- (const char*) methodType;
|
|
|
|
- (NSArgumentInfo*) methodInfo;
|
|
|
|
@end
|
|
|
|
|
2000-12-08 19:06:00 +00:00
|
|
|
extern void
|
|
|
|
GSFFCallInvokeWithTargetAndImp(NSInvocation *inv, id anObject, IMP imp);
|
|
|
|
|
2002-04-18 16:02:12 +00:00
|
|
|
extern void
|
|
|
|
GSFFIInvokeWithTargetAndImp(NSInvocation *inv, id anObject, IMP imp);
|
|
|
|
|
2014-05-22 16:55:18 +00:00
|
|
|
#define CLEAR_RETURN_VALUE_IF_OBJECT \
|
|
|
|
do {\
|
|
|
|
if (_validReturn && *_inf[0].type == _C_ID) \
|
|
|
|
{ \
|
|
|
|
RELEASE (*(id*) _retval); \
|
|
|
|
*(id*) _retval = nil; \
|
|
|
|
_validReturn = NO; \
|
|
|
|
}\
|
|
|
|
} while (0)
|
2003-02-04 18:18:47 +00:00
|
|
|
|
2009-10-05 16:00:28 +00:00
|
|
|
#define RETAIN_RETURN_VALUE IF_NO_GC(do { if (*_inf[0].type == _C_ID) RETAIN (*(id*) _retval);} while (0))
|
|
|
|
|
|
|
|
#define _inf ((NSArgumentInfo*)_info)
|
2003-02-04 18:18:47 +00:00
|
|
|
|
2000-12-08 19:06:00 +00:00
|
|
|
#endif
|