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
|
/////////////////////////////////////////////////////////////////////////////
// Name: cpp/overload.cpp
// Purpose: C++ implementation for a function to match a function's
// argument list against a prototype
// Author: Mattia Barbon
// Modified by:
// Created: 07/08/2002
// RCS-ID: $Id: overload.cpp 2192 2007-08-21 21:27:40Z mbarbon $
// Copyright: (c) 2002-2004, 2006-2007 Mattia Barbon
// Licence: This program is free software; you can redistribute it and/or
// modify it under the same terms as Perl itself
/////////////////////////////////////////////////////////////////////////////
#include "cpp/overload.h"
#if 0
class wxPliArgArray
{
public:
virtual ~wxPliArgArray() {};
virtual SV* operator[]( size_t index ) = 0;
virtual size_t GetCount() const = 0;
};
class wxPliStackArray
{
public:
wxPliStackArray();
private:
SV*** sp;
};
#endif
bool wxPli_match_arguments_offset( pTHX_ const wxPliPrototype& prototype,
int required,
bool allow_more, size_t offset );
bool wxPli_match_arguments_skipfirst( pTHX_ const wxPliPrototype& prototype,
int required /* = -1 */,
bool allow_more /* = false */ )
{
return wxPli_match_arguments_offset( aTHX_ prototype, required,
allow_more, 1 );
}
bool wxPli_match_arguments( pTHX_ const wxPliPrototype& prototype,
int required /* = -1 */,
bool allow_more /* = false */ )
{
return wxPli_match_arguments_offset( aTHX_ prototype, required,
allow_more, 0 );
}
static inline bool IsGV( SV* sv ) { return SvTYPE( sv ) == SVt_PVGV; }
bool wxPli_match_arguments_offset( pTHX_ const wxPliPrototype& prototype,
int required,
bool allow_more, size_t offset )
{
dXSARGS; // restore the mark we implicitly popped in dMARK!
int argc = items - int(offset);
if( required != -1 )
{
if( allow_more && argc < required )
{ PUSHMARK(MARK); return false; }
if( !allow_more && argc != required )
{ PUSHMARK(MARK); return false; }
}
else if( argc < int(prototype.count) )
{ PUSHMARK(MARK); return false; }
size_t max = wxMin( prototype.count, size_t(argc) ) + offset;
for( size_t i = offset; i < max; ++i )
{
unsigned char p = prototype.args[i - offset];
// everything is a string or a boolean
if( p == wxPliOvlstr ||
p == wxPliOvlbool )
continue;
SV* t = ST(i);
// want a number
if( p == wxPliOvlnum )
{
if( my_looks_like_number( aTHX_ t ) ) continue;
else { PUSHMARK(MARK); return false; }
}
// want an object/package name, accept undef, too
const char* cstr =
p > wxPliOvlzzz ? prototype.tnames[p - wxPliOvlzzz] :
p == wxPliOvlwpos ? "Wx::Position" :
p == wxPliOvlwpoi ? "Wx::Point" :
p == wxPliOvlwsiz ? "Wx::Size" :
NULL;
if( !IsGV( t )
&& ( !SvOK( t )
|| ( cstr != NULL
&& sv_isobject( t )
&& sv_derived_from( t, CHAR_P cstr )
)
)
)
continue;
// want an array reference
if( p == wxPliOvlarr && wxPli_avref_2_av( t ) ) continue;
// want a wxPoint/wxSize, accept an array reference, too
if( ( p == wxPliOvlwpoi || p == wxPliOvlwsiz || p == wxPliOvlwpos )
&& wxPli_avref_2_av( t ) ) continue;
// want an input/output stream, accept any reference
if( ( p == wxPliOvlwist || p == wxPliOvlwost ) &&
( SvROK( t ) || IsGV( t ) ) ) continue;
// type clash: return false
PUSHMARK(MARK);
return false;
}
PUSHMARK(MARK);
return true;
}
void wxPli_set_ovl_constant( const char* name, const wxPliPrototype* value )
{
dTHX;
char buffer[1024];
strcpy( buffer, "Wx::_" );
strcat( buffer, name );
SV* sv = get_sv( buffer, 1 );
sv_setiv( sv, PTR2IV( value ) );
}
|