embb_mtapi_priority_queue_t.c 7.04 KB
Newer Older
1 2 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 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 192 193 194 195 196 197 198 199 200 201 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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
/*
 * Copyright (c) 2014-2016, 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.
 */

//#ifdef EMBB_HARD_REALTIME

#include <stdio.h>

#include <assert.h>

#include <embb/mtapi/c/mtapi.h>
#include <embb/base/c/atomic.h>

#include <embb_mtapi_log.h>
#include <embb_mtapi_priority_queue_t.h>
#include <embb_mtapi_task_t.h>
#include <embb_mtapi_alloc.h>

#include <embb_mtapi_priority_queue_t_fwd.h>

/* ---- LOCAL HELPERS ------------------------------------------------------ */

static mtapi_uint64_t get_deadline(mtapi_task_hndl_t node) {
  mtapi_status_t status;
  mtapi_uint64_t deadline;
  mtapi_task_get_attribute(
    node,
    MTAPI_TASK_DEADLINE,
    &deadline,
    sizeof(deadline),
    &status);
  if(status != MTAPI_SUCCESS) {
    // TODO error handling
    return -1;
  }
  return deadline;
}

/* ---- CLASS MEMBERS ------------------------------------------------------ */

void embb_mtapi_priority_queue_initialize(embb_mtapi_priority_queue_t* that) {
  assert(MTAPI_NULL != that);

  that->task_buffer = MTAPI_NULL;
  that->tasks_available = 0;
  mtapi_queueattr_init(&that->attributes, MTAPI_NULL);
  embb_spin_init(&that->lock);
}

void embb_mtapi_priority_queue_initialize_with_capacity(
  embb_mtapi_priority_queue_t* that,
  mtapi_uint_t capacity) {
  mtapi_uint_t ii;
  
  assert(MTAPI_NULL != that);

  that->task_buffer = (embb_mtapi_task_t **)
    embb_mtapi_alloc_allocate(sizeof(embb_mtapi_task_t *)*capacity);
  
  /* Nullify the array, just in case */
  for(ii = 0; ii < capacity; ii++) {
    that->task_buffer[ii] = MTAPI_NULL;
  }

  that->tasks_available = 0;
  mtapi_queueattr_init(&that->attributes, MTAPI_NULL);
  that->attributes.limit = capacity;
  embb_spin_init(&that->lock);
}

void embb_mtapi_priority_queue_finalize(embb_mtapi_priority_queue_t* that) {
  embb_mtapi_alloc_deallocate(that->task_buffer);
  that->task_buffer = MTAPI_NULL;

  embb_mtapi_priority_queue_initialize(that);

  embb_spin_destroy(&that->lock);
}

embb_mtapi_task_t * embb_mtapi_priority_queue_pop(embb_mtapi_priority_queue_t* that) {
  embb_mtapi_task_t * task = MTAPI_NULL;
  embb_mtapi_task_t * tmp_task = MTAPI_NULL;
  mtapi_uint_t ii;
  mtapi_uint64_t deadline = 0;
  mtapi_uint64_t left_deadline = 0;
  mtapi_uint64_t right_deadline = 0;
  mtapi_uint64_t swap = 0;
  mtapi_uint64_t swap_deadline = 0;

  assert(MTAPI_NULL != that);

  if (embb_spin_try_lock(&that->lock, 128) == EMBB_SUCCESS) {
    if (0 < that->tasks_available) {
      ii = 0;

      /* take away one task */
      task = that->task_buffer[0];
      that->task_buffer[0] = MTAPI_NULL;
      that->tasks_available--;

      /* move last task to head */
      that->task_buffer[0] = that->task_buffer[that->tasks_available];
      that->task_buffer[that->tasks_available] = MTAPI_NULL;

      /* recreate heap property */
      while(that->tasks_available > 0) {
        deadline       = get_deadline(that->task_buffer[ii]->handle);

        if(that->task_buffer[ii + 1] != MTAPI_NULL) {
          left_deadline  = get_deadline(that->task_buffer[ii + 1]->handle);
        } else {
          left_deadline  = ULLONG_MAX;
        }

        if(that->task_buffer[ii + 2] != MTAPI_NULL) {
          right_deadline = get_deadline(that->task_buffer[ii + 2]->handle);
        } else {
          right_deadline = ULLONG_MAX;
        }

        /* min Heap, swap with the smaller of both children. */
        if(left_deadline <= right_deadline) {
          swap = ii + 1;
          swap_deadline = left_deadline;
        } else if(right_deadline < left_deadline) {
          swap = ii + 2;
          swap_deadline = right_deadline;
        }

        /* abort if heap property is restored. */
        if(deadline <= swap_deadline) {
          break;
        }
        
        tmp_task = that->task_buffer[swap];
        that->task_buffer[swap] = that->task_buffer[ii];
        that->task_buffer[ii] = tmp_task;
        ii = swap;
      }
    }
    embb_spin_unlock(&that->lock);
  }

  return task;
}

mtapi_boolean_t embb_mtapi_priority_queue_push(
  embb_mtapi_priority_queue_t* that,
  embb_mtapi_task_t * task) {

  embb_mtapi_task_t * tmp_task = MTAPI_NULL;
  mtapi_uint_t ii;
  mtapi_uint_t kk;
  mtapi_uint64_t deadline = 0;
  mtapi_uint64_t parent_deadline = 0;
  mtapi_boolean_t result = MTAPI_FALSE;

  assert(MTAPI_NULL != that);

  if (embb_spin_lock(&that->lock) == EMBB_SUCCESS) {
    if (that->attributes.limit > that->tasks_available) {
      ii = that->tasks_available;
      kk = that->tasks_available;
      deadline = get_deadline(task->handle);

      /* add task to heap */ 
      that->task_buffer[that->tasks_available] = task;

      /* restore heap property */
      while(ii > 0) {
        /* get parent task */
        ii /= 2;
        parent_deadline = get_deadline(that->task_buffer[ii]->handle);
       
        /* abort if heap property is restored. */
        if(deadline >= parent_deadline) {
          break;
        }

        /* swap with parent task */
        tmp_task = that->task_buffer[ii];
        that->task_buffer[ii] = that->task_buffer[kk];
        that->task_buffer[kk] = tmp_task;

        kk = ii;
      }

      /* make task available */
      that->tasks_available++;

      result = MTAPI_TRUE;
    }
    embb_spin_unlock(&that->lock);
  }

  return result;
}

mtapi_boolean_t embb_mtapi_priority_queue_process(
  embb_mtapi_priority_queue_t * that,
  embb_mtapi_task_visitor_function_t process,
  void * user_data) {

  mtapi_boolean_t result = MTAPI_TRUE;
  mtapi_uint_t ii;

  assert(MTAPI_NULL != that);
  assert(MTAPI_NULL != process);

  if (embb_spin_lock(&that->lock) == EMBB_SUCCESS) {
    // Run from first to last
    for (ii = 0; ii < that->tasks_available; ii++) {
      result = process(that->task_buffer[ii], user_data);
      if (MTAPI_FALSE == result) {
        break;
      }
    }
    embb_spin_unlock(&that->lock);
  }

  return result;
}
//#endif // EMBB_HARD_REALTIME