mutex.h 8.85 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2015, 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 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
 *
 * 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 EMBB_BASE_C_MUTEX_H_
#define EMBB_BASE_C_MUTEX_H_

/**
 * \defgroup C_BASE_MUTEX Mutex
 *
 * Mutexes for thread synchronization
 *
 * Provides an abstraction from platform-specific mutex implementations.
 * Plain and recursive mutexes are available, where the plain version can
 * only be locked once by the same thread.
 *
 * \ingroup C_BASE
 * \{
 */

#ifdef __cplusplus
extern "C" {
#endif

#include <embb/base/c/internal/platform.h>
#include <embb/base/c/errors.h>

#ifdef DOXYGEN
/**
 * Opaque type representing a mutex.
 */
typedef opaque_type embb_mutex_t;
#endif /* DOXYGEN */

/**
 * Types of mutexes to be used in embb_mutex_init()
 */
enum {
  EMBB_MUTEX_PLAIN,
  /**< Mutex can be locked only once by the same thread. */
  EMBB_MUTEX_RECURSIVE
  /**< Mutex can be locked recursively by the same thread. */
};

/**
 * Initializes a mutex
 *
 * \post \c mutex is initialized
 * \return EMBB_SUCCESS if mutex could be initialized \n
 *         EMBB_ERROR otherwise
 * \memory (Potentially) allocates dynamic memory
 * \notthreadsafe
 * \see embb_mutex_destroy()
 */
int embb_mutex_init(
  embb_mutex_t* mutex,
  /**< [OUT] Pointer to mutex */
  int type
  /**< [IN] EMBB_MUTEX_PLAIN or EMBB_MUTEX_RECURSIVE. There is no guarantee
       that a mutex is non-recursive if the plain type is given. */
  );

/**
 * Waits until the mutex can be locked and locks it.
 *
 * \pre \c mutex is initialized \n
 *      If the mutex type is plain, \c mutex must not be locked by the current
 *      thread.
 * \post If successful, \c mutex is locked.
 * \return EMBB_SUCCESS if mutex could be locked \n
 *         EMBB_ERROR otherwise
 * \threadsafe
 * \see embb_mutex_try_lock(), embb_mutex_unlock()
 */
int embb_mutex_lock(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

/**
 * Tries to lock the mutex and returns immediately.
 *
 * \pre \c mutex is initialized
 * \post If successful, \c mutex is locked
 *
 * \return EMBB_SUCCESS if mutex could be locked \n
 *         EMBB_BUSY if mutex could not be locked \n
 *         EMBB_ERROR if an error occurred
 * \threadsafe
 * \see embb_mutex_lock(), embb_mutex_unlock()
 */
int embb_mutex_try_lock(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

/**
 * Unlocks a locked mutex.
 *
 * \pre \c mutex has been locked by the current thread.
 * \post If successful and when the given mutex type is plain, \c mutex is
 *       unlocked. If its type is recursive, \c mutex is only unlocked if the
 *       number of successful unlocks has reached the number of successful locks
 *       done by the current thread.
 * \return EMBB_SUCCESS if the operation was successful \n
 *         EMBB_ERROR otherwise
 * \threadsafe
 * \see embb_mutex_lock(), embb_mutex_try_lock()
 */
int embb_mutex_unlock(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

/**
 * Destroys a mutex and frees its resources.
 *
 * \pre \c mutex has been initialized
 * \post \c mutex is uninitialized
 * \notthreadsafe
 * \see embb_mutex_init()
 */
void embb_mutex_destroy(
  embb_mutex_t* mutex
  /**< [IN/OUT] Pointer to mutex */
  );

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173


#ifdef DOXYGEN
/**
 * Opaque type representing a shared mutex.
 */
typedef opaque_type embb_shared_mutex_t;
#endif // DOXYGEN

/**
 * Initializes a shared mutex
 *
 * \pre \c shared_mutex is uninitialized
 * \post \c shared_mutex is initialized
 *
 * \return EMBB_SUCCESS if shared mutex could be initialized \n
 *         EMBB_ERROR otherwise
 *
 * \memory (Potentially) allocates dynamic memory
 *
 * \notthreadsafe
 *
 * \see embb_shared_mutex_destroy()
 */
174 175 176 177
int embb_shared_mutex_init(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be initialized */
  );
178 179 180 181 182 183 184 185 186 187 188 189 190 191

/**
 * Waits until the shared mutex can be locked for writing and locks it.
 *
 * \pre \c shared_mutex is initialized and not locked by the current thread.
 * \post If successful, \c shared_mutex is locked for writing.
 *
 * \return EMBB_SUCCESS if shared_mutex could be locked for writing \n
 *         EMBB_ERROR otherwise
 *
 * \threadsafe
 *
 * \see embb_shared_mutex_try_lock(), embb_shared_mutex_unlock()
 */
192 193 194 195
int embb_shared_mutex_lock(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be locked */
  );
196 197 198 199

/**
 * Tries to lock the shared mutex for writing and returns immediately.
 *
200 201 202
 * The try to lock fails not only if the shared mutex was already locked for
 * writing, but also in case it was locked shared for reading.
 *
203 204 205 206
 * \pre \c shared_mutex is initialized
 * \post If successful, \c shared_mutex is locked for writing
 *
 * \return EMBB_SUCCESS if shared_mutex could be locked for writing \n
207 208
 *         EMBB_BUSY if shared_mutex could not be locked for writing, because
 *                   the mutex is locked for writing or reading \n
209 210 211 212 213 214
 *         EMBB_ERROR if an error occurred
 *
 * \threadsafe
 *
 * \see embb_shared_mutex_lock(), embb_shared_mutex_unlock()
 */
215 216 217 218
int embb_shared_mutex_try_lock(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be tried to lock */
  );
219 220 221 222 223 224 225 226 227 228 229 230 231 232

/**
 * Unlocks the shared mutex locked for writing.
 *
 * \pre \c shared_mutex has been locked for writing by the current thread.
 * \post If successful, \c shared_mutex is unlocked.
 *
 * \return EMBB_SUCCESS if the operation was successful \n
 *         EMBB_ERROR otherwise
 *
 * \threadsafe
 *
 * \see embb_shared_mutex_lock(), embb_shared_mutex_try_lock()
 */
233 234 235 236
int embb_shared_mutex_unlock(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be unlocked */
  );
237 238 239 240 241 242 243 244 245 246 247 248 249 250

/**
 * Waits until the shared mutex can be locked for reading and locks it.
 *
 * \pre \c shared_mutex is initialized and not locked by the current thread.
 * \post If successful, \c shared_mutex is locked for reading.
 *
 * \return EMBB_SUCCESS if shared_mutex could be locked for reading \n
 *         EMBB_ERROR otherwise
 *
 * \threadsafe
 *
 * \see embb_shared_mutex_try_lock_shared(), embb_shared_mutex_unlock_shared()
 */
251 252 253 254
int embb_shared_mutex_lock_shared(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be locked shared */
  );
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269

/**
 * Tries to lock the shared mutex for reading and returns immediately.
 *
 * \pre \c shared_mutex is initialized
 * \post If successful, \c shared_mutex is locked for reading
 *
 * \return EMBB_SUCCESS if shared_mutex could be locked for reading \n
 *         EMBB_BUSY if shared_mutex could not be locked for reading \n
 *         EMBB_ERROR if an error occurred
 *
 * \threadsafe
 *
 * \see embb_shared_mutex_lock_shared(), embb_shared_mutex_unlock_shared()
 */
270 271 272 273
int embb_shared_mutex_try_lock_shared(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be tried to lock shared */
  );
274 275 276 277 278 279 280 281 282 283 284 285 286 287

/**
 * Unlocks the shared mutex locked for reading.
 *
 * \pre \c shared_mutex has been locked for reading by the current thread.
 * \post If successful, \c shared_mutex is unlocked.
 *
 * \return EMBB_SUCCESS if the operation was successful \n
 *         EMBB_ERROR otherwise
 *
 * \threadsafe
 *
 * \see embb_shared_mutex_lock_shared(), embb_shared_mutex_try_lock_shared()
 */
288 289 290 291
int embb_shared_mutex_unlock_shared(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be unlocked shared */
  );
292 293 294 295 296 297 298 299 300 301 302

/**
 * Destroys the shared mutex and frees its resources.
 *
 * \pre \c shared_mutex has been initialized
 * \post \c shared_mutex is uninitialized
 *
 * \notthreadsafe
 *
 * \see embb_shared_mutex_init()
 */
303 304 305 306
void embb_shared_mutex_destroy(
  embb_shared_mutex_t* shared_mutex
  /**< [IN/OUT] Pointer to shared mutex to be destroyed */
  );
307 308


309 310 311 312 313 314 315 316 317
#ifdef __cplusplus
} /* Close extern "C" { */
#endif

/**
 * \}
 */

#endif /* EMBB_BASE_C_MUTEX_H_ */