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
|
/*
* Copyright © 2008 Christian Persch
*
* 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-1307, USA.
*/
#include <config.h>
#include <string.h>
#include "totemNPClass.h"
#include "totemNPObject.h"
totemNPClass_base::totemNPClass_base (const char *aPropertNames[],
uint32_t aPropertyCount,
const char *aMethodNames[],
uint32_t aMethodCount,
const char *aDefaultMethodName) :
mPropertyNameIdentifiers (GetIdentifiersForNames (aPropertNames, aPropertyCount)),
mPropertyNamesCount (aPropertyCount),
mMethodNameIdentifiers (GetIdentifiersForNames (aMethodNames, aMethodCount)),
mMethodNamesCount (aMethodCount),
mDefaultMethodIndex (aDefaultMethodName ? GetMethodIndex (NPN_GetStringIdentifier (aDefaultMethodName)) : -1)
{
structVersion = NP_CLASS_STRUCT_VERSION_ENUM;
allocate = Allocate;
deallocate = Deallocate;
invalidate = Invalidate;
hasMethod = HasMethod;
invoke = Invoke;
invokeDefault = InvokeDefault;
hasProperty = HasProperty;
getProperty = GetProperty;
setProperty = SetProperty;
removeProperty = RemoveProperty;
#if defined(NP_CLASS_STRUCT_VERSION_ENUM) && (NP_CLASS_STRUCT_VERSION >= NP_CLASS_STRUCT_VERSION_ENUM)
enumerate = Enumerate;
#endif
#if defined(NP_CLASS_STRUCT_VERSION_CTOR) && (NP_CLASS_STRUCT_VERSION >= NP_CLASS_STRUCT_VERSION_CTOR)
/* FIXMEchpe find out what's this supposed to do */
/* construct = Construct; */
construct = NULL;
#endif
}
totemNPClass_base::~totemNPClass_base ()
{
NPN_MemFree (mPropertyNameIdentifiers);
NPN_MemFree (mMethodNameIdentifiers);
}
NPIdentifier*
totemNPClass_base::GetIdentifiersForNames (const char *aNames[],
uint32_t aCount)
{
if (aCount == 0)
return NULL;
NPIdentifier *identifiers = reinterpret_cast<NPIdentifier*>(NPN_MemAlloc (aCount * sizeof (NPIdentifier)));
if (!identifiers)
return NULL;
NPN_GetStringIdentifiers (aNames, aCount, identifiers);
return identifiers;
}
int
totemNPClass_base::GetPropertyIndex (NPIdentifier aName)
{
if (!mPropertyNameIdentifiers)
return -1;
for (int i = 0; i < mPropertyNamesCount; ++i) {
if (aName == mPropertyNameIdentifiers[i])
return i;
}
return -1;
}
int
totemNPClass_base::GetMethodIndex (NPIdentifier aName)
{
if (!mMethodNameIdentifiers)
return -1;
for (int i = 0; i < mMethodNamesCount; ++i) {
if (aName == mMethodNameIdentifiers[i])
return i;
}
return -1;
}
bool
totemNPClass_base::EnumerateProperties (NPIdentifier **_result, uint32_t *_count)
{
if (!mPropertyNameIdentifiers)
return false;
uint32_t bytes = mPropertyNamesCount * sizeof (NPIdentifier);
NPIdentifier *identifiers = reinterpret_cast<NPIdentifier*>(NPN_MemAlloc (bytes));
if (!identifiers)
return false;
memcpy (identifiers, mPropertyNameIdentifiers, bytes);
*_result = identifiers;
*_count = mPropertyNamesCount;
return true;
}
NPObject*
totemNPClass_base::Allocate (NPP aNPP, NPClass *aClass)
{
totemNPClass_base* _class = static_cast<totemNPClass_base*>(aClass);
return _class->InternalCreate (aNPP);
}
void
totemNPClass_base::Deallocate (NPObject *aObject)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
delete object;
}
void
totemNPClass_base::Invalidate (NPObject *aObject)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
object->Invalidate ();
}
bool
totemNPClass_base::HasMethod (NPObject *aObject, NPIdentifier aName)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->HasMethod (aName);
}
bool
totemNPClass_base::Invoke (NPObject *aObject, NPIdentifier aName, const NPVariant *argv, uint32_t argc, NPVariant *_result)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->Invoke (aName, argv, argc, _result);
}
bool
totemNPClass_base::InvokeDefault (NPObject *aObject, const NPVariant *argv, uint32_t argc, NPVariant *_result)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->InvokeDefault (argv, argc, _result);
}
bool
totemNPClass_base::HasProperty (NPObject *aObject, NPIdentifier aName)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->HasProperty (aName);
}
bool
totemNPClass_base::GetProperty (NPObject *aObject, NPIdentifier aName, NPVariant *_result)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->GetProperty (aName, _result);
}
bool
totemNPClass_base::SetProperty (NPObject *aObject, NPIdentifier aName, const NPVariant *aValue)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->SetProperty (aName, aValue);
}
bool
totemNPClass_base::RemoveProperty (NPObject *aObject, NPIdentifier aName)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->RemoveProperty (aName);
}
bool
totemNPClass_base::Enumerate (NPObject *aObject, NPIdentifier **_result, uint32_t *_count)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->Enumerate (_result, _count);
}
bool
totemNPClass_base::Construct (NPObject *aObject, const NPVariant *argv, uint32_t argc, NPVariant *_result)
{
totemNPObject* object = static_cast<totemNPObject*> (aObject);
return object->Construct (argv, argc, _result);
}
|