embb_mtapi_test_plugin.cc 6.56 KB
Newer Older
Marcus Winter committed
1
/*
2
 * Copyright (c) 2014-2016, Siemens AG. All rights reserved.
Marcus Winter committed
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
 *
 * 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>

35
#include <embb/base/c/memory_allocation.h>
Marcus Winter committed
36 37
#include <embb/base/c/thread.h>
#include <embb/base/c/atomic.h>
38
#include <embb/base/c/internal/unused.h>
Marcus Winter committed
39 40 41 42 43 44 45 46 47

#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) {
48
  EMBB_UNUSED(args);
Marcus Winter committed
49 50
  while (embb_atomic_load_int(&plugin_running)) {
    /* wait for incoming task */
51 52
    while (embb_atomic_load_int(&plugin_running) &&
      !embb_atomic_load_int(&plugin_task_available))
Marcus Winter committed
53 54 55 56 57 58
      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();

59 60
        if (embb_mtapi_task_pool_is_handle_valid(
          node->task_pool, plugin_task)) {
Marcus Winter committed
61
          embb_mtapi_task_t * local_task =
62 63
            embb_mtapi_task_pool_get_storage_for_handle(
            node->task_pool, plugin_task);
Marcus Winter committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
          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
  ) {
79 80 81
  EMBB_UNUSED(domain_id);
  EMBB_UNUSED(node_id);

Marcus Winter committed
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
  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);
}

114
void plugin_task_start(
Marcus Winter committed
115 116 117
  MTAPI_IN mtapi_task_hndl_t task,
  MTAPI_OUT mtapi_status_t* status) {
  mtapi_status_t local_status = MTAPI_ERR_UNKNOWN;
118

Marcus Winter committed
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
  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);
}

137
void plugin_task_cancel(
Marcus Winter committed
138 139 140
  MTAPI_IN mtapi_task_hndl_t task,
  MTAPI_OUT mtapi_status_t* status
  ) {
141
  EMBB_UNUSED(task);
Marcus Winter committed
142 143 144 145 146
  mtapi_status_t local_status = MTAPI_ERR_UNKNOWN;

  mtapi_status_set(status, local_status);
}

147 148 149 150 151 152 153 154
void plugin_action_finalize(
  MTAPI_IN mtapi_action_hndl_t action,
  MTAPI_OUT mtapi_status_t* status
  ) {
  EMBB_UNUSED(action);
  mtapi_status_set(status, MTAPI_SUCCESS);
}

Marcus Winter committed
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
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_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;
192 193 194 195
  plugin_initialize(THIS_DOMAIN_ID, THIS_NODE_ID, &status);
  MTAPI_CHECK_STATUS(status);

  status = MTAPI_ERR_UNKNOWN;
Marcus Winter committed
196 197
  action = mtapi_ext_plugin_action_create(
    PLUGIN_JOB_ID,
198 199 200 201
    plugin_task_start,
    plugin_task_cancel,
    plugin_action_finalize,
    MTAPI_NULL,
Marcus Winter committed
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
    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;
231 232 233 234
  plugin_finalize(&status);
  MTAPI_CHECK_STATUS(status);

  status = MTAPI_ERR_UNKNOWN;
Marcus Winter committed
235 236 237
  mtapi_finalize(&status);
  MTAPI_CHECK_STATUS(status);

238 239
  PT_EXPECT_EQ(embb_get_bytes_allocated(), 0u);

Marcus Winter committed
240 241
  embb_mtapi_log_info("...done\n\n");
}