Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
eigenpy
Commits
90ff656d
Commit
90ff656d
authored
8 years ago
by
jcarpent
Browse files
Options
Downloads
Patches
Plain Diff
[C++] Add check of registration at runtime
parent
6a502cde
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-0
1 addition, 0 deletions
CMakeLists.txt
src/details.hpp
+2
-0
2 additions, 0 deletions
src/details.hpp
src/exception.cpp
+5
-2
5 additions, 2 deletions
src/exception.cpp
src/registration.hpp
+45
-0
45 additions, 0 deletions
src/registration.hpp
with
53 additions
and
2 deletions
CMakeLists.txt
+
1
−
0
View file @
90ff656d
...
...
@@ -81,6 +81,7 @@ SET(HEADERS
src/map.hpp
src/geometry.hpp
src/memory.hpp
src/registration.hpp
src/angle-axis.hpp
src/quaternion.hpp
)
...
...
This diff is collapsed.
Click to expand it.
src/details.hpp
+
2
−
0
View file @
90ff656d
...
...
@@ -24,6 +24,7 @@
#include
<iostream>
#include
"eigenpy/eigenpy.hpp"
#include
"eigenpy/registration.hpp"
#include
"eigenpy/exception.hpp"
#include
"eigenpy/map.hpp"
...
...
@@ -206,6 +207,7 @@ namespace eigenpy
template
<
typename
MatType
,
typename
EigenEquivalentType
>
void
enableEigenPySpecific
()
{
if
(
check_registration
<
MatType
>
())
return
;
numpy_import_array
();
boost
::
python
::
to_python_converter
<
MatType
,
EigenToPy
<
MatType
,
MatType
>
>
();
...
...
This diff is collapsed.
Click to expand it.
src/exception.cpp
+
5
−
2
View file @
90ff656d
/*
* Copyright (c) 2015 LAAS-CNRS
* Copyright (c) 2015
-2016
LAAS-CNRS
*
* This file is part of eigenpy.
* eigenpy is free software: you can redistribute it and/or
...
...
@@ -14,7 +14,8 @@
* with eigenpy. If not, see <http://www.gnu.org/licenses/>.
*/
#include
<eigenpy/exception.hpp>
#include
"eigenpy/exception.hpp"
#include
"eigenpy/registration.hpp"
namespace
eigenpy
...
...
@@ -30,6 +31,8 @@ namespace eigenpy
void
Exception
::
registerException
()
{
if
(
check_registration
<
eigenpy
::
Exception
>
())
return
;
pyType
=
boost
::
python
::
class_
<
eigenpy
::
Exception
>
(
"Exception"
,
boost
::
python
::
init
<
std
::
string
>
())
.
add_property
(
"message"
,
&
eigenpy
::
Exception
::
copyMessage
)
...
...
This diff is collapsed.
Click to expand it.
src/registration.hpp
0 → 100644
+
45
−
0
View file @
90ff656d
/*
* Copyright 2016, Justin Carpentier, LAAS-CNRS
*
* This file is part of eigenpy.
* eigenpy is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
* eigenpy 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. You should
* have received a copy of the GNU Lesser General Public License along
* with eigenpy. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __eigenpy_registration_hpp__
#define __eigenpy_registration_hpp__
#include
<boost/python.hpp>
namespace
eigenpy
{
///
/// \brief Check at runtime the registration of the type T inside the boost python registry.
///
/// \tparam T The type to check the registration.
///
/// \returns true if the type T is already registered.
///
template
<
typename
T
>
inline
bool
check_registration
()
{
namespace
bp
=
boost
::
python
;
const
bp
::
type_info
info
=
bp
::
type_id
<
T
>
();
const
bp
::
converter
::
registration
*
reg
=
bp
::
converter
::
registry
::
query
(
info
);
if
(
reg
==
NULL
)
return
false
;
else
if
((
*
reg
).
m_to_python
==
NULL
)
return
false
;
return
true
;
}
}
#endif // ifndef __eigenpy_registration_hpp__
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment