-
Notifications
You must be signed in to change notification settings - Fork 0
/
util_plugin.cpp
348 lines (300 loc) · 11.1 KB
/
util_plugin.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
* Copyright (c) 2011-2015: G-CSC, Goethe University Frankfurt
* Author: Sebastian Reiter
*
* This file is part of UG4.
*
* UG4 is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License version 3 (as published by the
* Free Software Foundation) with the following additional attribution
* requirements (according to LGPL/GPL v3 §7):
*
* (1) The following notice must be displayed in the Appropriate Legal Notices
* of covered and combined works: "Based on UG4 (www.ug4.org/license)".
*
* (2) The following notice must be displayed at a prominent place in the
* terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
*
* (3) The following bibliography is recommended for citation and must be
* preserved in all covered files:
* "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
* parallel geometric multigrid solver on hierarchically distributed grids.
* Computing and visualization in science 16, 4 (2013), 151-164"
* "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
* flexible software system for simulating pde based models on high performance
* computers. Computing and visualization in science 16, 4 (2013), 165-179"
*
* 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 Lesser General Public License for more details.
*/
// Own headers.
#include "domain_util.h"
// replace this with util_domain_dependent.h or util_algebra_dependent.h
// to speed up compilation time
#include "bridge/bridge.h"
#include "bridge/util.h"
#include "bridge/util_domain_dependent.h"
#include "bridge/util_algebra_dependent.h"
#include "bridge/util_domain_algebra_dependent.h"
#include "common/ug_config.h"
#include "common/error.h"
#include "solver_util.h"
#include "lib_disc/domain.h"
#include "lib_disc/domain_util.h"
#include "ug.h"
#include <string>
using namespace std;
using namespace ug::bridge;
#ifdef UG_PARALLEL
#include "pcl/pcl_util.h"
#endif
namespace ug{
namespace Util{
/**
* \defgroup util_plugin Util
* \ingroup plugins
* This is a small sample plugin.
* \{
*/
void PluginSaysHello()
{
#ifdef UG_PARALLEL
pcl::SynchronizeProcesses();
cout << "Hello, I'm your plugin on proc " <<
pcl::ProcRank() << "." << endl;
pcl::SynchronizeProcesses();
#else
UG_LOG("Hello, I'm your personal plugin in serial environment!\n");
#endif
}
void CrashFct(const string& reason)
{
UG_THROW("I Crash because: "<< reason);
}
void CrashFctFatal(const string& reason)
{
UG_THROW("I Crash fatal because: "<< reason);
}
void PluginCrashes()
{
try{
CrashFct("Some funny reason");
}
catch(bad_alloc& err)
{
UG_LOG("Bad Alloc");
}
UG_CATCH_THROW("Something wrong in PluginCrashes");
}
void PluginCrashesFatal()
{
try{
CrashFctFatal("Some fatal reason");
}
catch(bad_alloc& err)
{
UG_LOG("Bad Alloc");
}
UG_CATCH_THROW("Something wrong in PluginCrashesFatal");
}
/**
* Class exporting the functionality of the plugin. All functionality that is to
* be used in scripts or visualization must be registered here.
*/
struct Functionality
{
/**
* Function called for the registration of Domain and Algebra dependent parts
* of the plugin. All Functions and Classes depending on both Domain and Algebra
* are to be placed here when registering. The method is called for all
* available Domain and Algebra types, based on the current build options.
*
* @param reg registry
* @param parentGroup group for sorting of functionality
*/
template <typename TDomain, typename TAlgebra, typename TRegistry=ug::bridge::Registry>
static void DomainAlgebra(TRegistry& reg, string grp)
{
// useful defines
string suffix = GetDomainAlgebraSuffix<TDomain,TAlgebra>();
string tag = GetDomainAlgebraTag<TDomain,TAlgebra>();
{
typedef SolverUtilFunctionProvider<TDomain, TAlgebra> T;
typedef typename TAlgebra::vector_type vector_type;
string name = string("SolverUtilFunctionProvider").append(suffix);
reg.template add_class_<T>(name, grp).add_constructor()
.add_method("CreateLineSearch", &T::GetCreateLineSearch)
.add_method("CreatePreconditioner", &T::GetCreatePreconditioner)
.set_construct_as_smart_pointer(true);
reg.add_class_to_group(name, "SolverUtilFunctionProvider", tag);
}
/*{
// This is more complicated, as the return type should be included in name.
std::string grpname = std::string("CreatePreconditioner");
typedef IPreconditioner<TAlgebra> T;
//reg.add_function(grpname.append(suffix),
// static_cast<SmartPtr<T>(*)(nlohmann::json&, SolverUtil<TDomain, TAlgebra>)>
// (&CreatePreconditioner<TDomain, TAlgebra>), grpname);
reg.add_function(grpname, &CreatePreconditioner<TDomain, TAlgebra>);
}*/
// reg.add_function(grpname.append(suffix),
// static_cast<SmartPtr<TDomain>(*)(const std::string&, int, const std::vector<std::string> &)>
// (&CreateDomain<TDomain>), grpname);
{
//typedef Domain<dim> domain_type;
typedef SolverUtil<TDomain, TAlgebra> T;
string name = string("SolverUtil").append(suffix);
reg.template add_class_<T>(name, grp).add_constructor()
.set_construct_as_smart_pointer(true);
reg.add_class_to_group(name, "SolverUtil", tag);
}
}
/**
* Function called for the registration of Domain dependent parts
* of the plugin. All Functions and Classes depending on the Domain
* are to be placed here when registering. The method is called for all
* available Domain types, based on the current build options.
*
* @param reg registry
* @param parentGroup group for sorting of functionality
*/
template <typename TDomain, typename TRegistry=ug::bridge::Registry>
static void Domain(TRegistry& reg, string grp)
{
// useful defines
string suffix = GetDomainSuffix<TDomain>();
string tag = GetDomainTag<TDomain>();
reg.add_function("CheckSubsets", &CheckSubsets<TDomain>);
{
// This is more complicated, as the return type should be included in name.
std::string grpname = std::string("CreateDomain");
reg.add_function(grpname.append(suffix),
static_cast<SmartPtr<TDomain>(*)(const std::string&, int, const std::vector<std::string> &)>
(&CreateDomain<TDomain>), grpname);
}
{
// This is more complicated, as the return type should be included in name.
std::string grpname = std::string("CreateDomain");
reg.add_function(grpname.append(suffix),
static_cast<SmartPtr<TDomain>(*)(const std::string&)>
(&CreateDomain<TDomain>), grpname);
}
{
// This is more complicated, as the return type should be included in name.
std::string grpname = std::string("CreateDomain");
reg.add_function(grpname.append(suffix),
static_cast<SmartPtr<TDomain>(*)(const std::string&, int)>
(&CreateDomain<TDomain>), grpname);
}
{
// This is more complicated, as the return type should be included in name.
std::string grpname = std::string("CreateDomain");
reg.add_function(grpname.append(suffix),
static_cast<SmartPtr<TDomain>(*)(const std::string&, int, const std::vector<std::string> &, bool)>
(&CreateDomain<TDomain>), grpname);
}
}
/**
* Function called for the registration of Dimension dependent parts
* of the plugin. All Functions and Classes depending on the Dimension
* are to be placed here when registering. The method is called for all
* available Dimension types, based on the current build options.
*
* @param reg registry
* @param parentGroup group for sorting of functionality
*/
template <int dim, typename TRegistry=ug::bridge::Registry>
static void Dimension(TRegistry& reg, string grp)
{
// useful defines
string suffix = GetDimensionSuffix<dim>();
string tag = GetDimensionTag<dim>();
}
/**
* Function called for the registration of Algebra dependent parts
* of the plugin. All Functions and Classes depending on Algebra
* are to be placed here when registering. The method is called for all
* available Algebra types, based on the current build options.
*
* @param reg registry
* @param parentGroup group for sorting of functionality
*/
template <typename TAlgebra>
static void Algebra(Registry& reg, string grp)
{
// useful defines
string suffix = GetAlgebraSuffix<TAlgebra>();
string tag = GetAlgebraTag<TAlgebra>();
typedef typename TAlgebra::vector_type vector_type;
{
// This is more complicated, as the return type should be included in name.
{
std::string grpname = std::string("CreateConvCheck");
reg.add_function(grpname.append(suffix),
static_cast<SmartPtr<StdConvCheck<vector_type>>(*)(nlohmann::json &)>
(&CreateConvCheck < TAlgebra > ), grpname);
}
}
}
/**
* Function called for the registration of Domain and Algebra independent parts
* of the plugin. All Functions and Classes not depending on Domain and Algebra
* are to be placed here when registering.
*
* @param reg registry
* @param parentGroup group for sorting of functionality
*/
static void Common(Registry& reg, string grp)
{
reg.add_function("PluginSaysHello", &PluginSaysHello, grp)
.add_function("PluginCrashes", &PluginCrashes, grp)
.add_function("PluginCrashesFatal", &PluginCrashesFatal, grp);
}
}; // end Functionality
// end group sample_plugin
/// \}
}// end of namespace Sample
template <typename TRegistry=ug::bridge::Registry>
void RegisterBridge_Util(TRegistry& reg, string grp)
{
grp.append("/Util");
typedef Util::Functionality Functionality;
try{
#ifndef UG_USE_PYBIND11
//RegisterCommon<Functionality>(*reg,grp);
//RegisterDimensionDependent<Functionality>(*reg,grp);
RegisterDomainAlgebraDependent<Functionality>(reg,grp);
RegisterDomainDependent<Functionality>(reg,grp);
RegisterAlgebraDependent<Functionality>(reg,grp);
#else
//RegisterCommon<Functionality, TRegistry>(*reg,grp);
//RegisterDimensionDependent<Functionality, TRegistry>(*reg,grp);
RegisterDomainDependent<Functionality, TRegistry>(reg,grp);
RegisterAlgebraDependent<Functionality>(*reg,grp);
RegisterDomainAlgebraDependent<Functionality>(*reg,grp);
#endif
}
UG_REGISTRY_CATCH_THROW(grp);
}
/**
* This function is called when the plugin is loaded.
*/
extern "C" void
InitUGPlugin_Util(Registry* reg, string grp)
{
RegisterBridge_Util(*reg, grp);
}
extern "C" UG_API void
FinalizeUGPlugin_Util()
{}
#ifdef UG_USE_PYBIND11 // Expose for pybind11.
namespace UtilBridge{
void InitUGPlugin(ug::pybind::Registry* reg, string grp)
{
RegisterBridge_Util<ug::pybind::Registry>(*reg, grp);
}
}
#endif
}// end of namespace ug