mtapi_cpp_test_task.cc 3.99 KB
Newer Older
1
/*
Marcus Winter committed
2
 * Copyright (c) 2014-2016, Siemens AG. All rights reserved.
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
 *
 * 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 <iostream>
#include <string>
#include <cassert>

#include <mtapi_cpp_test_config.h>
#include <mtapi_cpp_test_task.h>

#include <embb/base/c/memory_allocation.h>

#define JOB_TEST_TASK 42
#define JOB_TEST_ERROR 17

static void testTaskAction(
  const void* args,
  mtapi_size_t /*args_size*/,
  void* results,
  mtapi_size_t /*results_size*/,
  const void* /*node_local_data*/,
  mtapi_size_t /*node_local_data_size*/,
  mtapi_task_context_t * context) {
  embb::mtapi::TaskContext ctx(context);
  const char * msg = static_cast<const char *>(args);
  std::string* out = static_cast<std::string*>(results);
  *out = msg;
}

static void testErrorAction(
  const void* /*args*/,
  mtapi_size_t /*args_size*/,
  void* /*results*/,
  mtapi_size_t /*results_size*/,
  const void* /*node_local_data*/,
  mtapi_size_t /*node_local_data_size*/,
  mtapi_task_context_t * context) {
  embb::mtapi::TaskContext ctx(context);
  ctx.SetStatus(MTAPI_ERR_ACTION_FAILED);
}

static void testDoSomethingElse() {
}

TaskTest::TaskTest() {
  CreateUnit("mtapi_cpp task test").Add(&TaskTest::TestBasic, this);
}

void TaskTest::TestBasic() {
  embb::mtapi::Node::Initialize(THIS_DOMAIN_ID, THIS_NODE_ID);

  embb::mtapi::Node & node = embb::mtapi::Node::GetInstance();

  {
    embb::mtapi::NodeAttributes attr;
    attr
      .SetMaxActions(1024)
      .SetMaxActionsPerJob(2)
      .SetMaxPriorities(4);
  }

  {
    embb::mtapi::Affinity affinity(false);
    PT_EXPECT_EQ(affinity.GetInternal(), 0u);
    affinity.Set(0u, true);
    PT_EXPECT_EQ(affinity.GetInternal(), 1u);
    affinity.Set(1u, true);
    PT_EXPECT_EQ(affinity.GetInternal(), 3u);
    affinity.Set(0u, false);
    PT_EXPECT_EQ(affinity.GetInternal(), 2u);
    PT_EXPECT_EQ(affinity.Get(0), false);
    PT_EXPECT_EQ(affinity.Get(1), true);
  }

  {
99
    embb::mtapi::Job job_task = node.GetJob(JOB_TEST_TASK);
100

101 102
    embb::mtapi::Action action_task =
      node.CreateAction(JOB_TEST_TASK, testTaskAction);
103 104 105 106 107 108 109

    std::string test;
    embb::mtapi::Task task = node.Start(job_task, "simple", &test);
    testDoSomethingElse();
    mtapi_status_t status = task.Wait();
    PT_EXPECT_EQ(status, MTAPI_SUCCESS);
    PT_EXPECT(test == "simple");
110 111

    action_task.Delete();
112 113 114
  }

  {
115
    embb::mtapi::Job job_error = node.GetJob(JOB_TEST_ERROR);
116

117 118
    embb::mtapi::Action action_error =
      node.CreateAction(JOB_TEST_ERROR, testErrorAction);
119 120 121 122 123 124

    std::string test;
    embb::mtapi::Task task = node.Start(job_error, "simple", &test);
    testDoSomethingElse();
    mtapi_status_t status = task.Wait();
    PT_EXPECT_EQ(status, MTAPI_ERR_ACTION_FAILED);
125 126

    action_error.Delete();
127 128 129 130 131 132
  }

  embb::mtapi::Node::Finalize();

  PT_EXPECT_EQ(embb_get_bytes_allocated(), 0u);
}