-
Notifications
You must be signed in to change notification settings - Fork 7
/
UrlInfo.cpp
285 lines (259 loc) · 7.83 KB
/
UrlInfo.cpp
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/* @@@LICENSE
*
* Copyright (c) 2012 Hewlett-Packard Development Company, L.P.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
LICENSE@@@ */
#include <stdlib.h>
#include <stdio.h>
#include <glib.h>
#include <npupp.h>
#include <npruntime.h>
#include <AdapterBase.h>
#include "UrlInfo.h"
#include "Rectangle.h"
#include "BrowserAdapter.h"
static const char* sPropertyIdNames[] = {
"success",
"url",
"desc",
"bounds"
};
static const int kNumProperties = G_N_ELEMENTS(sPropertyIdNames);
static NPIdentifier sPropertyIds[kNumProperties];
static bool sPropertyIdsInitialized = false;
enum PropertyId {
PropertySuccess = 0,
PropertyUrl,
PropertyDescription,
PropertyBounds
};
/**
* Defines methods for UrlInfo object.
*/
NPClass UrlInfo::sUrlInfoClass = {
NP_CLASS_STRUCT_VERSION_CTOR,
UrlInfo::PrvObjAllocate,
UrlInfo::PrvObjDeallocate,
UrlInfo::PrvObjInvalidate,
UrlInfo::PrvObjHasMethod,
UrlInfo::PrvObjInvoke,
UrlInfo::PrvObjInvokeDefault,
UrlInfo::PrvObjHasProperty,
UrlInfo::PrvObjGetProperty,
UrlInfo::PrvObjSetProperty,
UrlInfo::PrvObjRemoveProperty,
UrlInfo::PrvObjEnumerate,
UrlInfo::PrvObjConstruct
};
// UrlInfo object static hooks implementation
// that call actual instance methods
NPObject* UrlInfo::PrvObjAllocate(NPP npp, NPClass* klass)
{
TRACE("Entered %s", __FUNCTION__);
return new UrlInfo(static_cast<BrowserAdapter*>(npp->pdata));
}
void UrlInfo::PrvObjDeallocate(NPObject* obj)
{
TRACE("Entered %s", __FUNCTION__);
delete static_cast<UrlInfo*>(obj);
}
void UrlInfo::PrvObjInvalidate(NPObject* obj)
{
TRACE("Entered %s", __FUNCTION__);
static_cast<UrlInfo*>(obj)->invalidate();
}
bool UrlInfo::PrvObjHasMethod(NPObject* obj, NPIdentifier name)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->hasMethod(name);
}
bool UrlInfo::PrvObjInvoke(NPObject *obj, NPIdentifier name,
const NPVariant *args, uint32_t argCount,
NPVariant *result)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->invoke(name, args, argCount, result);
}
bool UrlInfo::PrvObjInvokeDefault(NPObject *obj, const NPVariant *args,
uint32_t argCount, NPVariant *result)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->invokeDefault(args, argCount, result);
}
bool UrlInfo::PrvObjHasProperty(NPObject *obj, NPIdentifier name)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->hasProperty(name);
}
bool UrlInfo::PrvObjGetProperty(NPObject *obj, NPIdentifier name, NPVariant *result)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->getProperty(name, result);
}
bool UrlInfo::PrvObjSetProperty(NPObject *obj, NPIdentifier name,
const NPVariant *value)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->setProperty(name, value);
}
bool UrlInfo::PrvObjRemoveProperty(NPObject *obj, NPIdentifier name)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->removeProperty(name);
}
bool UrlInfo::PrvObjEnumerate(NPObject *obj, NPIdentifier **value,
uint32_t *count)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->enumerate(value, count);
}
bool UrlInfo::PrvObjConstruct(NPObject *obj, const NPVariant *args,
uint32_t argCount, NPVariant *result)
{
TRACE("Entered %s", __FUNCTION__);
return static_cast<UrlInfo*>(obj)->construct(args, argCount, result);
}
/**
* Constructor.
*/
UrlInfo::UrlInfo(BrowserAdapter* adapter) :
m_success(false)
,m_bounds( adapter->NPN_CreateObject(&Rectangle::sRectangleClass) )
{
TRACE("Entered %s", __FUNCTION__);
if (!sPropertyIdsInitialized) {
AdapterBase::NPN_GetStringIdentifiers(sPropertyIdNames, kNumProperties, sPropertyIds);
sPropertyIdsInitialized = true;
TRACE("UrlInfo sPropertyIdsInitialized == true");
}
}
UrlInfo::~UrlInfo()
{
TRACE("Entered %s", __FUNCTION__);
AdapterBase::NPN_ReleaseObject( m_bounds );
}
void UrlInfo::initialize(bool success, const char* url, const char* desc,
int left, int top, int right, int bottom)
{
m_success = success;
m_url = url;
m_desc = desc;
static_cast<Rectangle*>(m_bounds)->initialize(left, top, right, bottom);
}
void UrlInfo::invalidate()
{
TRACE("Entered %s", __FUNCTION__);
}
bool UrlInfo::hasMethod(NPIdentifier name)
{
TRACE("Entered %s", __FUNCTION__);
return false;
}
bool UrlInfo::invoke(NPIdentifier name, const NPVariant *args,
uint32_t argCount, NPVariant *rm_latitudeesult)
{
TRACE("Entered %s", __FUNCTION__);
return false;
}
bool UrlInfo::invokeDefault(const NPVariant *args,
uint32_t argCount, NPVariant *result)
{
TRACE("Entered %s", __FUNCTION__);
return false;
}
bool UrlInfo::hasProperty(NPIdentifier name)
{
TRACE("Entered %s", __FUNCTION__);
for (int i = 0; i < kNumProperties; i++) {
if (sPropertyIds[i] == name) {
return true;
}
}
return false;
}
bool UrlInfo::getProperty(NPIdentifier name, NPVariant *result)
{
TRACE("Entered %s", __FUNCTION__);
if (NULL == result) {
return false;
}
if (name == sPropertyIds[PropertySuccess]) {
BOOLEAN_TO_NPVARIANT(m_success, *result);
return true;
}
else if (name == sPropertyIds[PropertyUrl]) {
if (m_url.empty())
NULL_TO_NPVARIANT(*result);
else
STRINGZ_TO_NPVARIANT(strdup(m_url.c_str()), *result);
return true;
}
else if (name == sPropertyIds[PropertyDescription]) {
if (m_desc.empty())
NULL_TO_NPVARIANT(*result);
else
STRINGZ_TO_NPVARIANT(strdup(m_desc.c_str()), *result);
return true;
}
else if (name == sPropertyIds[PropertyBounds]) {
OBJECT_TO_NPVARIANT(m_bounds, *result);
AdapterBase::NPN_RetainObject(m_bounds);
return true;
}
return false;
}
bool UrlInfo::setProperty(NPIdentifier name, const NPVariant *value)
{
TRACE("Entered %s", __FUNCTION__);
if (name == sPropertyIds[PropertySuccess]) {
if (NPVARIANT_IS_BOOLEAN(*value)) {
m_success = NPVARIANT_TO_DOUBLE(*value);
return true;
}
}
else if (name == sPropertyIds[PropertyUrl]) {
if (NPVARIANT_IS_STRING(*value)) {
char* szval = AdapterBase::NPStringToString(NPVARIANT_TO_STRING(*value));
m_url = szval;
::free(szval);
return true;
}
}
else if (name == sPropertyIds[PropertyDescription]) {
if (NPVARIANT_IS_STRING(*value)) {
char* szval = AdapterBase::NPStringToString(NPVARIANT_TO_STRING(*value));
m_desc = szval;
::free(szval);
return true;
}
}
return false;
}
bool UrlInfo::removeProperty(NPIdentifier name)
{
TRACE("Entered %s", __FUNCTION__);
return false;
}
bool UrlInfo::enumerate(NPIdentifier **value, uint32_t *count)
{
TRACE("Entered %s", __FUNCTION__);
return false;
}
bool UrlInfo::construct(const NPVariant *args, int32_t argCount,
NPVariant *result)
{
TRACE("Entered %s", __FUNCTION__);
return false;
}