2012-02-21 14:12:52 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012.
|
2012-02-21 14:12:52 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This file is part of Sortix.
|
2012-02-21 14:12:52 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix is free software: you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
2012-02-21 14:12:52 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Sortix 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 General Public License for more
|
|
|
|
details.
|
2012-02-21 14:12:52 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2012-02-21 14:12:52 -05:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
refcount.cpp
|
|
|
|
A class that implements reference counting.
|
2012-02-21 14:12:52 -05:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2013-10-26 20:42:10 -04:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <sortix/kernel/kernel.h>
|
2012-08-04 07:50:21 -04:00
|
|
|
#include <sortix/kernel/kthread.h>
|
2012-07-22 15:25:36 -04:00
|
|
|
#include <sortix/kernel/refcount.h>
|
2012-02-21 14:12:52 -05:00
|
|
|
|
2012-07-22 15:25:36 -04:00
|
|
|
namespace Sortix {
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
Refcountable::Refcountable()
|
2012-07-22 15:25:36 -04:00
|
|
|
{
|
2012-08-04 07:50:21 -04:00
|
|
|
reflock = KTHREAD_MUTEX_INITIALIZER;
|
2012-08-07 18:19:44 -04:00
|
|
|
refcount = 0;
|
|
|
|
being_deleted = false;
|
2012-07-22 15:25:36 -04:00
|
|
|
}
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
Refcountable::~Refcountable()
|
2012-07-22 15:25:36 -04:00
|
|
|
{
|
|
|
|
// It's OK to be deleted if our refcount is 1, it won't mess with any
|
|
|
|
// other owners that might need us.
|
2012-09-22 08:57:20 -04:00
|
|
|
assert(refcount <= 1);
|
2012-07-22 15:25:36 -04:00
|
|
|
}
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
void Refcountable::Refer_Renamed()
|
2012-07-22 15:25:36 -04:00
|
|
|
{
|
2012-08-04 07:50:21 -04:00
|
|
|
ScopedLock lock(&reflock);
|
2012-07-22 15:25:36 -04:00
|
|
|
refcount++;
|
|
|
|
}
|
|
|
|
|
2012-08-07 18:19:44 -04:00
|
|
|
void Refcountable::Unref_Renamed()
|
2012-02-21 14:12:52 -05:00
|
|
|
{
|
2012-08-07 18:19:44 -04:00
|
|
|
assert(!being_deleted);
|
2012-08-04 07:50:21 -04:00
|
|
|
kthread_mutex_lock(&reflock);
|
2012-08-07 18:19:44 -04:00
|
|
|
assert(refcount);
|
|
|
|
bool deleteme = !refcount || !--refcount;
|
2012-08-04 07:50:21 -04:00
|
|
|
kthread_mutex_unlock(&reflock);
|
|
|
|
if ( deleteme )
|
2012-08-07 18:19:44 -04:00
|
|
|
{
|
|
|
|
being_deleted = true;
|
2012-07-22 15:25:36 -04:00
|
|
|
delete this;
|
2012-08-07 18:19:44 -04:00
|
|
|
}
|
2012-02-21 14:12:52 -05:00
|
|
|
}
|
|
|
|
|
2012-07-22 15:25:36 -04:00
|
|
|
} // namespace Sortix
|