Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
733070d9
Commit
733070d9
authored
Oct 08, 2009
by
Sebastian Eichelbaum
Browse files
[ADD] - added skeleton of data set module
parent
4daed1fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
187 additions
and
0 deletions
+187
-0
src/modules/data/WDataModule.cpp
src/modules/data/WDataModule.cpp
+90
-0
src/modules/data/WDataModule.h
src/modules/data/WDataModule.h
+97
-0
No files found.
src/modules/data/WDataModule.cpp
0 → 100644
View file @
733070d9
//---------------------------------------------------------------------------
//
// Project: OpenWalnut ( http://www.openwalnut.org )
//
// Copyright 2009 OpenWalnut Community, BSV@Uni-Leipzig and CNCF@MPI-CBS
// For more information see http://www.openwalnut.org/copying
//
// This file is part of OpenWalnut.
//
// OpenWalnut 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.
//
// OpenWalnut 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 OpenWalnut. If not, see <http://www.gnu.org/licenses/>.
//
//---------------------------------------------------------------------------
#include <iostream>
#include <string>
#include <vector>
#include <boost/shared_ptr.hpp>
#include "../../kernel/WKernel.h"
#include "../../kernel/WModule.h"
#include "../../kernel/WModuleConnector.h"
#include "../../kernel/WModuleOutputData.hpp"
#include "../../dataHandler/WDataSet.h"
#include "WDataModule.h"
WDataModule
::
WDataModule
()
:
WModule
()
{
// WARNING: initializing connectors inside the constructor will lead to an exception.
// Implement WModule::initializeConnectors instead.
// initialize members
}
WDataModule
::~
WDataModule
()
{
// cleanup
removeConnectors
();
}
const
std
::
string
WDataModule
::
getName
()
const
{
return
"Data Module"
;
}
const
std
::
string
WDataModule
::
getDescription
()
const
{
return
"This module can encapsulate WDataSet instances."
;
}
void
WDataModule
::
connectors
()
{
// initialize connectors
// call WModules initialization
WModule
::
connectors
();
}
void
WDataModule
::
notifyDataChange
(
boost
::
shared_ptr
<
WModuleConnector
>
input
,
boost
::
shared_ptr
<
WModuleConnector
>
output
)
{
WModule
::
notifyDataChange
(
input
,
output
);
}
void
WDataModule
::
threadMain
()
{
// Since the modules run in a separate thread: such loops are possible
while
(
!
m_FinishRequested
)
{
// do fancy stuff
sleep
(
1
);
}
// clean up stuff
}
src/modules/data/WDataModule.h
0 → 100644
View file @
733070d9
//---------------------------------------------------------------------------
//
// Project: OpenWalnut ( http://www.openwalnut.org )
//
// Copyright 2009 OpenWalnut Community, BSV@Uni-Leipzig and CNCF@MPI-CBS
// For more information see http://www.openwalnut.org/copying
//
// This file is part of OpenWalnut.
//
// OpenWalnut 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.
//
// OpenWalnut 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 OpenWalnut. If not, see <http://www.gnu.org/licenses/>.
//
//---------------------------------------------------------------------------
#ifndef WDATAMODULE_H
#define WDATAMODULE_H
#include <string>
#include "../../kernel/WKernel.h"
#include "../../kernel/WModule.h"
#include "../../kernel/WModuleConnector.h"
#include "../../kernel/WModuleOutputData.hpp"
#include "../../dataHandler/WDataSet.h"
/**
* Module for encapsulating WDataSets.
* TODO(ebaum): write more
*/
class
WDataModule
:
public
WModule
{
public:
/**
* \par Description
* Default constructor.
*/
WDataModule
();
/**
* \par Description
* Destructor.
*/
virtual
~
WDataModule
();
/**
* \par Description
* Gives back the name of this module.
* \return the module's name.
*/
virtual
const
std
::
string
getName
()
const
;
/**
* \par Description
* Gives back a description of this module.
* \return description to module.
*/
virtual
const
std
::
string
getDescription
()
const
;
protected:
/**
* \par Description
* Entry point after loading the module. Runs in separate thread.
*/
virtual
void
threadMain
();
/**
* Initialize the connectors this module is using.
*/
virtual
void
connectors
();
/**
* Receive DATA_CHANGE notifications.
*
* \param input the input connector that got the change signal. Typically it is one of the input connectors from this module.
* \param output the output connector that sent the signal. Not part of this module instance.
*/
virtual
void
notifyDataChange
(
boost
::
shared_ptr
<
WModuleConnector
>
input
,
boost
::
shared_ptr
<
WModuleConnector
>
output
);
private:
};
#endif // WDATAMODULE_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment