embb_mtapi_id_pool_t.c 3.82 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
 *
 * 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 <assert.h>

#include <embb_mtapi_alloc.h>
#include <embb_mtapi_log.h>
#include <embb_mtapi_id_pool_t.h>
32
#include <embb/base/c/mutex.h>
33 34 35 36 37 38 39

void embb_mtapi_id_pool_initialize(
  embb_mtapi_id_pool_t * that,
  mtapi_uint_t capacity) {
  mtapi_uint_t ii;

  that->id_buffer = (mtapi_uint_t*)
40
    embb_mtapi_alloc_allocate(sizeof(mtapi_uint_t)*(capacity + 1));
41 42 43 44 45 46 47 48 49 50
  if (NULL != that->id_buffer) {
    that->capacity = capacity;
    that->id_buffer[0] = EMBB_MTAPI_IDPOOL_INVALID_ID;
    for (ii = 1; ii <= capacity; ii++) {
      that->id_buffer[ii] = ii;
    }
    that->ids_available = capacity;
  } else {
    that->capacity = 0;
    that->ids_available = 0;
51 52 53
  }
  that->put_id_position = 0;
  that->get_id_position = 1;
54
  embb_spin_init(&that->lock);
55 56 57 58
}

void embb_mtapi_id_pool_finalize(embb_mtapi_id_pool_t * that) {
  that->capacity = 0;
59
  that->ids_available = 0;
60 61 62 63
  that->get_id_position = 0;
  that->put_id_position = 0;
  embb_mtapi_alloc_deallocate(that->id_buffer);
  that->id_buffer = NULL;
64
  embb_spin_destroy(&that->lock);
65 66 67 68 69 70 71
}

mtapi_uint_t embb_mtapi_id_pool_allocate(embb_mtapi_id_pool_t * that) {
  mtapi_uint_t id = EMBB_MTAPI_IDPOOL_INVALID_ID;

  assert(MTAPI_NULL != that);

72
  if (embb_spin_lock(&that->lock) == EMBB_SUCCESS) {
73
    if (0 < that->ids_available) {
74
      /* take away one id */
75
      that->ids_available--;
76 77 78 79

      /* acquire position to fetch id from */
      mtapi_uint_t id_position = that->get_id_position;
      that->get_id_position++;
80
      if (that->capacity < that->get_id_position) {
81 82 83 84 85 86 87 88 89
        that->get_id_position = 0;
      }

      /* fetch id */
      id = that->id_buffer[id_position];

      /* make id entry invalid just in case */
      that->id_buffer[id_position] = EMBB_MTAPI_IDPOOL_INVALID_ID;
    }
90
    embb_spin_unlock(&that->lock);
91 92 93 94 95 96 97 98 99 100
  }

  return id;
}

void embb_mtapi_id_pool_deallocate(
  embb_mtapi_id_pool_t * that,
  mtapi_uint_t id) {
  assert(MTAPI_NULL != that);

101
  if (embb_spin_lock(&that->lock) == EMBB_SUCCESS) {
102
    if (that->capacity > that->ids_available) {
103 104 105
      /* acquire position to put id to */
      mtapi_uint_t id_position = that->put_id_position;
      that->put_id_position++;
106
      if (that->capacity < that->put_id_position) {
107 108 109 110 111 112 113
        that->put_id_position = 0;
      }

      /* put id back into buffer */
      that->id_buffer[id_position] = id;

      /* make it available */
114
      that->ids_available++;
115
    }
116
    embb_spin_unlock(&that->lock);
117 118 119 120 121
  } else {
    embb_mtapi_log_error(
      "could not acquire lock in embb_mtapi_IdPool_deallocate\n");
  }
}