Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
54dfc55d
authored
Nov 13, 2014
by
Marcus Winter
Committed by
unknown
Dec 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mtapi_c: plugin api test
parent
a9b97bd9
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
261 additions
and
0 deletions
+261
-0
mtapi_c/test/embb_mtapi_test_config.h
+1
-0
mtapi_c/test/embb_mtapi_test_plugin.cc
+218
-0
mtapi_c/test/embb_mtapi_test_plugin.h
+40
-0
mtapi_c/test/main.cc
+2
-0
No files found.
mtapi_c/test/embb_mtapi_test_config.h
View file @
54dfc55d
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include <partest/partest.h>
#include <partest/partest.h>
#include <embb/mtapi/c/mtapi.h>
#include <embb/mtapi/c/mtapi.h>
#include <embb/mtapi/c/mtapi_ext.h>
#include <embb_mtapi_log.h>
#include <embb_mtapi_log.h>
...
...
mtapi_c/test/embb_mtapi_test_plugin.cc
0 → 100644
View file @
54dfc55d
/*
* Copyright (c) 2014, Siemens AG. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <embb_mtapi_test_config.h>
#include <embb_mtapi_test_plugin.h>
#include <embb_mtapi_task_t.h>
#include <embb_mtapi_action_t.h>
#include <embb_mtapi_node_t.h>
#include <mtapi_status_t.h>
#include <embb/base/c/thread.h>
#include <embb/base/c/atomic.h>
#define PLUGIN_JOB_ID 2
embb_thread_t
plugin_thread
;
embb_atomic_int
plugin_running
;
mtapi_task_hndl_t
plugin_task
;
embb_atomic_int
plugin_task_available
;
int
plugin_thread_function
(
void
*
args
)
{
while
(
embb_atomic_load_int
(
&
plugin_running
))
{
/* wait for incoming task */
while
(
embb_atomic_load_int
(
&
plugin_running
)
&&
!
embb_atomic_load_int
(
&
plugin_task_available
))
embb_thread_yield
();
if
(
embb_atomic_load_int
(
&
plugin_running
))
{
if
(
embb_mtapi_node_is_initialized
())
{
embb_mtapi_node_t
*
node
=
embb_mtapi_node_get_instance
();
if
(
embb_mtapi_task_pool_is_handle_valid
(
node
->
task_pool
,
plugin_task
))
{
embb_mtapi_task_t
*
local_task
=
embb_mtapi_task_pool_get_storage_for_handle
(
node
->
task_pool
,
plugin_task
);
embb_mtapi_task_set_state
(
local_task
,
MTAPI_TASK_COMPLETED
);
}
}
embb_atomic_store_int
(
&
plugin_task_available
,
0
);
}
}
return
0
;
}
void
plugin_initialize
(
MTAPI_IN
mtapi_domain_t
domain_id
,
MTAPI_IN
mtapi_node_t
node_id
,
MTAPI_OUT
mtapi_status_t
*
status
)
{
mtapi_status_t
local_status
=
MTAPI_ERR_UNKNOWN
;
int
err
;
plugin_task
.
id
=
0
;
plugin_task
.
tag
=
0
;
embb_atomic_store_int
(
&
plugin_running
,
1
);
embb_atomic_store_int
(
&
plugin_task_available
,
0
);
err
=
embb_thread_create
(
&
plugin_thread
,
NULL
,
plugin_thread_function
,
NULL
);
if
(
EMBB_SUCCESS
==
err
)
{
local_status
=
MTAPI_SUCCESS
;
}
mtapi_status_set
(
status
,
local_status
);
}
void
plugin_finalize
(
MTAPI_OUT
mtapi_status_t
*
status
)
{
mtapi_status_t
local_status
=
MTAPI_ERR_UNKNOWN
;
int
result
=
0
;
int
err
;
embb_atomic_store_int
(
&
plugin_running
,
0
);
err
=
embb_thread_join
(
&
plugin_thread
,
&
result
);
if
(
EMBB_SUCCESS
==
err
)
{
local_status
=
MTAPI_SUCCESS
;
}
mtapi_status_set
(
status
,
local_status
);
}
void
plugin_action_start
(
MTAPI_IN
mtapi_task_hndl_t
task
,
MTAPI_OUT
mtapi_status_t
*
status
)
{
mtapi_status_t
local_status
=
MTAPI_ERR_UNKNOWN
;
if
(
embb_mtapi_node_is_initialized
())
{
embb_mtapi_node_t
*
node
=
embb_mtapi_node_get_instance
();
if
(
embb_mtapi_task_pool_is_handle_valid
(
node
->
task_pool
,
task
))
{
embb_mtapi_task_t
*
local_task
=
embb_mtapi_task_pool_get_storage_for_handle
(
node
->
task_pool
,
task
);
embb_mtapi_task_set_state
(
local_task
,
MTAPI_TASK_RUNNING
);
plugin_task
=
task
;
embb_atomic_store_int
(
&
plugin_task_available
,
1
);
}
}
local_status
=
MTAPI_SUCCESS
;
mtapi_status_set
(
status
,
local_status
);
}
void
plugin_action_cancel
(
MTAPI_IN
mtapi_task_hndl_t
task
,
MTAPI_OUT
mtapi_status_t
*
status
)
{
mtapi_status_t
local_status
=
MTAPI_ERR_UNKNOWN
;
mtapi_status_set
(
status
,
local_status
);
}
PluginTest
::
PluginTest
()
{
CreateUnit
(
"mtapi plugin test"
).
Add
(
&
PluginTest
::
TestBasic
,
this
);
}
void
PluginTest
::
TestBasic
()
{
embb_mtapi_log_info
(
"running plugin test...
\n
"
);
mtapi_node_attributes_t
node_attr
;
mtapi_info_t
info
;
mtapi_status_t
status
;
mtapi_job_hndl_t
job
;
mtapi_action_hndl_t
action
;
mtapi_task_hndl_t
task
;
status
=
MTAPI_ERR_UNKNOWN
;
mtapi_ext_register_control_plugin
(
plugin_initialize
,
plugin_finalize
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
mtapi_nodeattr_init
(
&
node_attr
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
mtapi_nodeattr_set
(
&
node_attr
,
MTAPI_NODE_TYPE
,
MTAPI_ATTRIBUTE_VALUE
(
MTAPI_NODE_TYPE_SMP
),
MTAPI_ATTRIBUTE_POINTER_AS_VALUE
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
mtapi_initialize
(
THIS_DOMAIN_ID
,
THIS_NODE_ID
,
&
node_attr
,
&
info
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
action
=
mtapi_ext_plugin_action_create
(
PLUGIN_JOB_ID
,
plugin_action_start
,
plugin_action_cancel
,
MTAPI_NULL
,
0
,
MTAPI_DEFAULT_ACTION_ATTRIBUTES
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
job
=
mtapi_job_get
(
PLUGIN_JOB_ID
,
THIS_DOMAIN_ID
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
task
=
mtapi_task_start
(
MTAPI_TASK_ID_NONE
,
job
,
MTAPI_NULL
,
0
,
MTAPI_NULL
,
0
,
MTAPI_DEFAULT_TASK_ATTRIBUTES
,
MTAPI_GROUP_NONE
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
mtapi_task_wait
(
task
,
MTAPI_INFINITE
,
&
status
);
MTAPI_CHECK_STATUS
(
status
);
status
=
MTAPI_ERR_UNKNOWN
;
mtapi_finalize
(
&
status
);
MTAPI_CHECK_STATUS
(
status
);
embb_mtapi_log_info
(
"...done
\n\n
"
);
}
mtapi_c/test/embb_mtapi_test_plugin.h
0 → 100644
View file @
54dfc55d
/*
* Copyright (c) 2014, Siemens AG. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef MTAPI_C_TEST_EMBB_MTAPI_TEST_PLUGIN_H_
#define MTAPI_C_TEST_EMBB_MTAPI_TEST_PLUGIN_H_
#include <partest/partest.h>
class
PluginTest
:
public
partest
::
TestCase
{
public
:
PluginTest
();
private
:
void
TestBasic
();
};
#endif // MTAPI_C_TEST_EMBB_MTAPI_TEST_PLUGIN_H_
mtapi_c/test/main.cc
View file @
54dfc55d
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include <embb_mtapi_log.h>
#include <embb_mtapi_log.h>
#include <embb_mtapi_test_plugin.h>
#include <embb_mtapi_test_init_finalize.h>
#include <embb_mtapi_test_init_finalize.h>
#include <embb_mtapi_test_task.h>
#include <embb_mtapi_test_task.h>
#include <embb_mtapi_test_group.h>
#include <embb_mtapi_test_group.h>
...
@@ -38,6 +39,7 @@
...
@@ -38,6 +39,7 @@
PT_MAIN
(
"MTAPI C"
)
{
PT_MAIN
(
"MTAPI C"
)
{
embb_log_set_log_level
(
EMBB_LOG_LEVEL_NONE
);
embb_log_set_log_level
(
EMBB_LOG_LEVEL_NONE
);
PT_RUN
(
PluginTest
);
PT_RUN
(
InitFinalizeTest
);
PT_RUN
(
InitFinalizeTest
);
PT_RUN
(
TaskTest
);
PT_RUN
(
TaskTest
);
PT_RUN
(
GroupTest
);
PT_RUN
(
GroupTest
);
...
...
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