ceph/src/include/xlist.h
Danny Al-Gaaf 22e48b5751 include/xlist.h: fix C-style pointer casting
Replace C-style pointer casting with correct static_cast<>().

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
2013-02-06 08:42:03 -08:00

168 lines
3.2 KiB
C++

// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#ifndef CEPH_XLIST_H
#define CEPH_XLIST_H
#include "include/assert.h"
template<typename T>
class xlist {
public:
struct item {
T _item;
item *_prev, *_next;
xlist *_list;
item(T i) : _item(i), _prev(0), _next(0), _list(0) {}
~item() {
assert(!is_on_list());
//remove_myself();
}
// no copying!
item(const item& other);
const item& operator= (const item& right);
xlist* get_list() { return _list; }
bool is_on_list() const { return _list ? true:false; }
bool remove_myself() {
if (_list) {
_list->remove(this);
assert(_list == 0);
return true;
} else
return false;
}
void move_to_front() {
assert(_list);
_list->push_front(this);
}
void move_to_back() {
assert(_list);
_list->push_back(this);
}
};
private:
item *_front, *_back;
int _size;
public:
xlist(const xlist& other);
const xlist& operator=(const xlist& other);
xlist() : _front(0), _back(0), _size(0) {}
~xlist() {
assert(_size == 0);
assert(_front == 0);
assert(_back == 0);
}
int size() const {
assert((bool)_front == (bool)_size);
return _size;
}
bool empty() const {
assert((bool)_front == (bool)_size);
return _front == 0;
}
void clear() {
while (_front)
remove(_front);
assert((bool)_front == (bool)_size);
}
void push_front(item *i) {
if (i->_list)
i->_list->remove(i);
i->_list = this;
i->_next = _front;
i->_prev = 0;
if (_front)
_front->_prev = i;
else
_back = i;
_front = i;
_size++;
}
void push_back(item *i) {
if (i->_list)
i->_list->remove(i);
i->_list = this;
i->_next = 0;
i->_prev = _back;
if (_back)
_back->_next = i;
else
_front = i;
_back = i;
_size++;
}
void remove(item *i) {
assert(i->_list == this);
if (i->_prev)
i->_prev->_next = i->_next;
else
_front = i->_next;
if (i->_next)
i->_next->_prev = i->_prev;
else
_back = i->_prev;
_size--;
i->_list = 0;
i->_next = i->_prev = 0;
assert((bool)_front == (bool)_size);
}
T front() { return static_cast<T>(_front->_item); }
T back() { return static_cast<T>(_back->_item); }
void pop_front() {
assert(!empty());
remove(_front);
}
void pop_back() {
assert(!empty());
remove(_back);
}
class iterator {
private:
item *cur;
public:
iterator(item *i = 0) : cur(i) {}
T operator*() { return static_cast<T>(cur->_item); }
iterator& operator++() {
assert(cur);
assert(cur->_list);
cur = cur->_next;
return *this;
}
bool end() const { return cur == 0; }
};
iterator begin() { return iterator(_front); }
iterator end() { return iterator(NULL); }
};
#endif