OSDN Git Service

Merge WebKit at r64523 : Initial merge by git.
[android-x86/external-webkit.git] / WebKitTools / DumpRenderTree / TestNetscapePlugIn / PluginTest.cpp
1 /*
2  * Copyright (C) 2010 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "PluginTest.h"
27
28 #include <assert.h>
29
30 using namespace std;
31 extern NPNetscapeFuncs *browser;
32
33 PluginTest* PluginTest::create(NPP npp, const string& identifier)
34 {
35     CreateTestFunction createTestFunction = createTestFunctions()[identifier];
36     if (createTestFunction)
37         return createTestFunction(npp, identifier);
38
39     return new PluginTest(npp, identifier);
40 }
41
42 PluginTest::PluginTest(NPP npp, const string& identifier)
43     : m_npp(npp)
44     , m_identifier(identifier)
45 {
46 }
47
48 PluginTest::~PluginTest()
49 {
50 }
51
52 NPError PluginTest::NPP_DestroyStream(NPStream *stream, NPReason reason)
53 {
54     return NPERR_NO_ERROR;
55 }
56
57 NPError PluginTest::NPP_GetValue(NPPVariable variable, void *value)
58 {
59     // We don't know anything about plug-in values so just return NPERR_GENERIC_ERROR.
60     return NPERR_GENERIC_ERROR;
61 }
62
63 NPIdentifier PluginTest::NPN_GetStringIdentifier(const NPUTF8 *name)
64 {
65     return browser->getstringidentifier(name);
66 }
67
68 NPIdentifier PluginTest::NPN_GetIntIdentifier(int32_t intid)
69 {
70     return browser->getintidentifier(intid);
71 }
72
73 NPObject* PluginTest::NPN_CreateObject(NPClass* npClass)
74 {
75     return browser->createobject(m_npp, npClass);
76 }                                 
77
78 bool PluginTest::NPN_RemoveProperty(NPObject* npObject, NPIdentifier propertyName)
79 {
80     return browser->removeproperty(m_npp, npObject, propertyName);
81 }
82
83 void PluginTest::registerCreateTestFunction(const string& identifier, CreateTestFunction createTestFunction)
84 {
85     assert(!createTestFunctions().count(identifier));
86  
87     createTestFunctions()[identifier] = createTestFunction;
88 }
89
90 std::map<std::string, PluginTest::CreateTestFunction>& PluginTest::createTestFunctions()
91 {
92     static std::map<std::string, CreateTestFunction> testFunctions;
93     
94     return testFunctions;
95 }