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
|
/*
* Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef __TEST_MODULES_H__
#define __TEST_MODULES_H__
#include <grtpp.h>
#include <grtpp_module_cpp.h>
#include "structs.test.h"
using namespace grt;
struct SampleInterface1Impl : protected InterfaceImplBase
{
public:
DECLARE_REGISTER_INTERFACE(SampleInterface1Impl,
DECLARE_INTERFACE_FUNCTION(SampleInterface1Impl::getNumber),
DECLARE_INTERFACE_FUNCTION(SampleInterface1Impl::calculate));
virtual ~SampleInterface1Impl() {}
virtual int getNumber()= 0;
virtual int calculate()= 0;
};
struct SampleInterface2Impl : protected InterfaceImplBase
{
public:
DECLARE_REGISTER_INTERFACE(SampleInterface2Impl,
DECLARE_INTERFACE_FUNCTION(SampleInterface2Impl::calcSum));
virtual ~SampleInterface2Impl() {}
virtual int calcSum(int num1)= 0;
};
class SampleModule1Impl : public ModuleImplBase, public SampleInterface1Impl
{
public:
SampleModule1Impl(CPPModuleLoader *ldr) : ModuleImplBase(ldr) {}
virtual ~SampleModule1Impl() {}
DEFINE_INIT_MODULE("1.0", "", ModuleImplBase,
DECLARE_MODULE_FUNCTION(SampleModule1Impl::getNumber),
DECLARE_MODULE_FUNCTION(SampleModule1Impl::calculate));
int getNumber()
{
return 42;
}
int calculate();
};
class SampleModule2Impl : public ModuleImplBase, public SampleInterface2Impl
{
public:
SampleModule2Impl(CPPModuleLoader *ldr) : ModuleImplBase(ldr) {}
DEFINE_INIT_MODULE("1.0", "", ModuleImplBase,
DECLARE_MODULE_FUNCTION(SampleModule2Impl::calcSum), NULL);
int calcSum(int num1)
{
SampleModule1Impl *s1= get_grt()->get_native_module<SampleModule1Impl>();
int num2= s1->getNumber();
return num1 + num2;
}
};
#ifdef DEFINE_TEST_MODULES_CODE
int SampleModule1Impl::calculate()
{
SampleModule2Impl *s2= get_grt()->get_native_module<SampleModule2Impl>();
return s2->calcSum(1);
}
#endif
class SampleModule3Impl : public SampleModule2Impl
{
public:
SampleModule3Impl(CPPModuleLoader *ldr) : SampleModule2Impl(ldr) {}
DEFINE_INIT_MODULE("1.0", "MySQL AB", SampleModule2Impl,
DECLARE_MODULE_FUNCTION(SampleModule3Impl::doSomethingWithNumbers),
DECLARE_MODULE_FUNCTION(SampleModule3Impl::doSomethingWithObject),
DECLARE_MODULE_FUNCTION(SampleModule3Impl::doSomethingWithNumberList),
DECLARE_MODULE_FUNCTION(SampleModule3Impl::doSomethingWithTypedObject),
DECLARE_MODULE_FUNCTION(SampleModule3Impl::doSomethingWithDict),
DECLARE_MODULE_FUNCTION(SampleModule3Impl::doSomethingWithAuthorList)
);
int doSomethingWithObject(ObjectRef object) { return 0; }
StringRef doSomethingWithNumbers(IntegerRef a, DoubleRef b, int c, double d) { return StringRef(""); }
int doSomethingWithNumberList(IntegerListRef ilist) { return 0; }
StringListRef doSomethingWithTypedObject(std::string s, test_AuthorRef object) { return StringListRef(); }
int doSomethingWithDict(DictRef d) { return 0; }
ListRef<test_Author> doSomethingWithAuthorList(ListRef<test_Author> authors) { return ListRef<test_Author>(); }
};
class BadModuleImpl : public SampleModule2Impl
{ // this module does not implement everything from the interface
public:
BadModuleImpl(CPPModuleLoader *ldr) : SampleModule2Impl(ldr) {}
DEFINE_INIT_MODULE("1.0", "", SampleModule2Impl,
DECLARE_MODULE_FUNCTION(BadModuleImpl::calcSum), NULL
);
int calcSum() { return 0; }
};
#endif // __TEST_MODULES_H__
|