diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-10 11:42:13 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-06-10 11:42:13 +0200 |
commit | 783b3154cd7b4dbc3fea453dac5f7af09a011ef4 (patch) | |
tree | 6f53cf6ef2b7dd9553dd51f5cd3bb71a3beb727a /src/lib/eiotas_spin.c | |
parent | b99a632a158519295b8ccaa0afacdb60f2a1702e (diff) | |
download | edoors-783b3154cd7b4dbc3fea453dac5f7af09a011ef4.zip edoors-783b3154cd7b4dbc3fea453dac5f7af09a011ef4.tar.gz |
rename Eiotas->Edoors
Diffstat (limited to 'src/lib/eiotas_spin.c')
-rw-r--r-- | src/lib/eiotas_spin.c | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/src/lib/eiotas_spin.c b/src/lib/eiotas_spin.c deleted file mode 100644 index 873a4d1..0000000 --- a/src/lib/eiotas_spin.c +++ /dev/null @@ -1,91 +0,0 @@ -/* EIOTAS - * Copyright (C) 2012 Jérémy Zurcher - * - * 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/>. - */ - -#include "eiotas_spin.h" -#include "eiotas_iota.h" -#include "eiotas_particle.h" -#include "eiotas_private.h" - -EAPI Eiotas_Spin* eiotas_spin_add(const char* name, unsigned int step) -{ - BUILD_INSTANCE(Eiotas_Spin,spin); - - INIT_IOTA(&spin->room.iota,name,NULL,EIOTAS_TYPE_SPIN); - - spin->room.links = NULL; /* not used */ - spin->room.children = eina_hash_stringshared_new((Eina_Free_Cb)&eiotas_iota_free); - spin->free_particles = eina_array_new(step); - spin->sys_fifo = NULL; - spin->app_fifo = NULL; - - return spin; -} - -EAPI void eiotas_spin_free(Eiotas_Spin *spin) -{ - unsigned int i; - Eiotas_Particle *particle; - Eina_Array_Iterator iterator; - Eina_Inlist *list; - - DBG("Spin free 0x%X",PRINTPTR(spin)); - - eiotas_iota_desinit(&spin->room.iota); - eina_hash_free(spin->room.children); - EINA_ARRAY_ITER_NEXT(spin->free_particles, i, particle, iterator) eiotas_particle_free(particle); - eina_array_free(spin->free_particles); - EINA_INLIST_FOREACH_SAFE(spin->sys_fifo, list,particle) eiotas_particle_free(particle); - EINA_INLIST_FOREACH_SAFE(spin->app_fifo, list,particle) eiotas_particle_free(particle); - - free(spin); -} - -EAPI Eiotas_Particle* eiotas_spin_require_particle(Eiotas_Spin *spin) -{ - Eiotas_Particle *particle; - if(eina_array_count(spin->free_particles)>0) { - particle = eina_array_pop(spin->free_particles); - } else { - particle = (Eiotas_Particle*)eiotas_particle_alloc(); - } - return particle; -} - -EAPI void eiotas_spin_release_particle(Eiotas_Spin *spin, Eiotas_Particle *particle) -{ - Eiotas_Particle *p; - Eina_Inlist *list; - - while (particle->merged) { - p = EINA_INLIST_CONTAINER_GET(particle->merged,Eiotas_Particle); - particle->merged = eina_inlist_remove(particle->merged,particle->merged); - eiotas_spin_release_particle(spin,p); - } - eiotas_particle_reset(particle); - eina_array_push(spin->free_particles,particle); -} - -EAPI void eiotas_spin_send_particle(Eiotas_Spin *spin, const Eiotas_Particle *particle, Eina_Bool system) -{ - if(system) { - spin->sys_fifo = eina_inlist_append(spin->sys_fifo,EINA_INLIST_GET((Eiotas_Particle*)particle)); - } else { - spin->app_fifo = eina_inlist_append(spin->app_fifo,EINA_INLIST_GET((Eiotas_Particle*)particle)); - } -} - |