eina: Add refcounting macro helper.

SVN revision: 59038
This commit is contained in:
Cedric BAIL 2011-04-29 16:09:07 +00:00
parent 504f11eff5
commit f97a64ca03
4 changed files with 93 additions and 4 deletions

View File

@ -46,15 +46,15 @@
* Add eina_inlist_sort.
* Add eina_mempool_repack.
* Add Eina_Object API.
* Add Eina_Object API, an helper for providing memory allocation with a redirection.
2011-04-13 Cedric Bail & Vincent Torri
* Add Eina_File API.
* Add Eina_File API, a portable mmap helper with some cache and tracking feature.
2011-04-22 Vincent Torri
* Add Eina_Lock API
* Add Eina_Lock API, a portable solution across various system for locking/unlocking mutex.
2011-04-24 Carsten Haitzler (The Rasterman)
@ -68,3 +68,7 @@
2011-04-27 Vincent Torri
* Fix static build of the buddy mempool
2011-04-29 Cedric Bail
* Add Eina_Refcount macro helper. You should really use them when running with thread !

View File

@ -161,6 +161,7 @@ extern "C" {
#include "eina_object.h"
#include "eina_lock.h"
#include "eina_prefix.h"
#include "eina_refcount.h"
#ifdef __cplusplus
}

View File

@ -56,7 +56,8 @@ eina_quadtree.h \
eina_simple_xml_parser.h \
eina_object.h \
eina_lock.h \
eina_prefix.h
eina_prefix.h \
eina_refcount.h
if EINA_HAVE_THREADS
if EINA_HAVE_WINCE

View File

@ -0,0 +1,83 @@
/* EINA - EFL data type library
* Copyright (C) 20011 Cedric Bail
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library;
* if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef EINA_REFCOUNT_H_
#define EINA_REFCOUNT_H_
/**
* @addtogroup Eina_Refcount References counting
*
* @brief Small macro that simplify references counting.
*
* References counting is not a difficult task, but you must
* handle it correctly every where, and that the issue. This
* set of macro do provide helper that will force to use the
* correct code in most case and reduce the bug likeliness.
* Of course this without affecting speed !
*
* @{
*/
/**
* @addtogroup Eina_Data_Types_Group Data Types
*
* @{
*/
/**
* @defgroup Eina_Refcount References counting
*
* @{
*/
/**
* @typedef Eina_Refcount
* Inlined references counting type.
*/
typedef int Eina_Refcount;
/** Used for declaring a reference counting member in a struct */
#define EINA_REFCOUNT Eina_Refcount __refcount
/** Used just after allocating a object */
#define EINA_REFCOUNT_INIT(Variable) (Variable)->__refcount = 1
/** Used when using refering to an object one more time */
#define EINA_REFCOUNT_REF(Variable) (Variable)->__refcount++
/** Used when removing a reference to an object. Free_Callback will automatically be called when necessary */
#define EINA_REFCOUNT_UNREF(Variable, Free_Callback) \
if (--((Variable)->__refcount) == 0) \
Free_Callback(Variable);
/** Get refcounting value */
#define EINA_REFCOUNT_GET(Variable) (Variable)->__refcount
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
#endif /* EINA_REFCOUNT_H_ */