/* -*- mode: c++; indent-tabs-mode: nil -*- */
/*
  safe_dslist

  Qore Programming Language

  Copyright (C) 2003 - 2013 David Nichols

  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, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

#ifndef _QORE_SAFE_DSLIST

#define _QORE_SAFE_DSLIST

#include <stdlib.h>
#include <string.h>

#include <algorithm>
#include <functional>

//! defines a node in a safe_dslist
template<typename T> struct _qore_list_node {
   typedef _qore_list_node self_t;
   self_t *next;
   T data;
   
   DLLLOCAL _qore_list_node(T d, self_t *n) { 
      next = n; 
      data = d; 
   }
   DLLLOCAL _qore_list_node(T d) {
      next = 0; 
      data = d; 
   }
};

//! defines an iterator for a safe_dslist
template<typename T> struct _qore_list_iterator {
   typedef _qore_list_node<T> node_t;
   typedef _qore_list_iterator<T> self_t;
   
   // data for the node
   node_t *node;

   DLLLOCAL _qore_list_iterator(node_t *n) { 
      node = n; 
   }
   DLLLOCAL _qore_list_iterator() { 
      node = 0; 
   }
   DLLLOCAL self_t operator++(int) {
      self_t _tmp = *this;
      node = node->next; 
      return _tmp;
   }
   DLLLOCAL self_t operator++() { 
      node = node->next; 
      return *this;
   }
   DLLLOCAL T operator*() { 
      return node->data; 
   }
   DLLLOCAL bool operator!=(const self_t &n) { 
      return n.node != node; 
   }
   DLLLOCAL bool operator==(const self_t &n) {
      return n.node == node; 
   }
};

//! defines a const iterator for a safe_dslist
template<typename T> struct _qore_list_const_iterator {
   typedef _qore_list_node<T> node_t;
   typedef _qore_list_const_iterator<T> self_t;
   
   // data for the node
   const node_t *node;

   DLLLOCAL _qore_list_const_iterator(_qore_list_iterator<T> i) {
      node = i.node;
   }
   DLLLOCAL _qore_list_const_iterator(const node_t *n) { 
      node = n; 
   }
   DLLLOCAL _qore_list_const_iterator() { 
      node = 0; 
   }
   DLLLOCAL self_t operator++(int) { 
      self_t _tmp = *this;
      node = node->next; 
      return _tmp;
   }
   DLLLOCAL self_t operator++() { 
      node = node->next; 
      return *this;
   }
   DLLLOCAL T operator*() const { 
      return node->data; 
   }
   DLLLOCAL bool operator!=(const self_t &n) { 
      return n.node != node; 
   }
   DLLLOCAL bool operator==(const self_t &n) { 
      return n.node == node; 
   }
};

//! templated class for a double-ended singly-linked list that can be safely read from multiple threads without locking as long as writes are locked
/**
   Reading in multiple threads is safe as long as writes (appends at the end or beginning) are locked.  
   Implements a singly-linked list with constant-time inserts at the beginning and end that
   can be read in a multi-threaded context without locking.  Writes must be performed in a lock; however
   this class does not provide any locking; locking must be provided and performed externally to the 
   class.  Provides an STL-like interface.
*/
template<typename T> class safe_dslist {  
public:
   typedef _qore_list_iterator<T> iterator;
   typedef _qore_list_const_iterator<T> const_iterator;
   typedef _qore_list_node<T> node_t;
   typedef safe_dslist<T> self_t;

protected:
   DLLLOCAL void clear_intern() {
      node_t *w = head;
      while (w) {
	 node_t *n = w->next;
	 delete w;
	 w = n;
      }
   }
      
private:
   node_t *head, *tail;

public: 
   DLLLOCAL safe_dslist() : head(0), tail(0) {
   }
   DLLLOCAL ~safe_dslist() {
      clear_intern();
   }
   //! empties the list
   DLLLOCAL void clear() {
      clear_intern();
      head = tail = 0;
   }

   //! returns an iterator pointing to the first element of the list
   DLLLOCAL iterator begin() {
      return head;
   }

   //! returns an iterator pointing one element from the end of the list
   DLLLOCAL iterator end() {
      return 0;
   }

   //! returns an iterator pointing to the first element of the list
   DLLLOCAL const_iterator begin() const {
      return head;
   }

   //! returns an iterator pointing one element from the end of the list
   DLLLOCAL const_iterator end() const {
      return 0;
   }

   //! returns an iterator pointing to the last element in the list
   DLLLOCAL iterator last() {
      return tail;
   }

   //! returns an iterator pointing to the last element in the list
   DLLLOCAL const_iterator last() const {
      return tail;
   }

   //! returns an iterator either pointing to the element given if present in the list or pointing to one element from the end of the list if not
   DLLLOCAL iterator find(T data) {
      node_t *w = head;
      while (w) {
	 if (w->data == data)
	    return w;
	 w = w->next;
      }
      return 0;
   }

   //! returns an iterator either pointing to the element given if present in the list or pointing to one element from the end of the list if not
   DLLLOCAL const_iterator find(T data) const {
      node_t *w = head;
      while (w) {
	 if (w->data == data)
	    return w;
	 w = w->next;
      }
      return 0;
   }

   //! adds an element to the beginning of the list (constant time)
   DLLLOCAL void push_front(T data) {
      node_t *n = new node_t(data, head);
      if (!tail)
	 tail = n;
      head = n;
   }

   //! adds an element to the end of the list (constant time)
   DLLLOCAL void push_back(T data) {
      node_t *n = new node_t(data);
      if (tail)
	 tail->next = n;
      else
	 head = n;
      tail = n;
   }

   //! removes an element from the beginning of the list
   DLLLOCAL void pop_front() {
      if (!tail)
         return;
      node_t* n = head;
      head = head->next;
      delete n;
      if (!head)
         tail = 0;
   }

   //! concatenates all elements of this list to the end of the list passed
   DLLLOCAL void populate(self_t &other) {
      iterator i = begin();
      while (i != end()) {
	 other.push_back(*i);
	 i++;
      }
   }

   //! concatenates all elements of this list to the end of the list passed
   DLLLOCAL void populate(self_t *other) {
      iterator i = begin();
      while (i != end()) {
	 other->push_back(*i);
	 i++;
      }
   }

   //! returns true if the list is empty
   DLLLOCAL bool empty() const {
      return !head;
   }

   //! returns true if the list contains only one element (constant time)
   DLLLOCAL bool singular() const {
      return head && head == tail;
   }

   //! returns true if the list contains more than one element (constant time)
   DLLLOCAL bool plural() const {
      return head != tail;
   }

   //! deletes the list element after the iterator argument and all other elements to the end of the list
   /** O(n) where n=length of list after the element given
       @note does not erase the element given by the iterator argument
   */
   DLLLOCAL void erase_to_end(iterator i) {         
      if (!i.node) {
         clear();
         return;
      }

      node_t *w = i.node->next;
      i.node->next = 0;
      tail = i.node;

      while (w) {
         node_t *n = w->next;
         delete w;
         w = n;
      }
   }

   //! deletes the list element given by the iterator argument
   /** only constant time for the first element in the list, otherwise is O(n), linear with the length of the list
    */
   DLLLOCAL void erase(iterator i) {
      if (i.node == head) {
	 head = i.node->next;
	 if (!head)
	    tail = 0;
      }
      else {
	 // find previous entry
	 node_t *n = head;
	 while (n->next != i.node)
	    n = n->next;
	 n->next = i.node->next;
      }
      delete i.node;
   }

   DLLLOCAL size_t size() const {
      size_t i = 0;
      node_t *n = head;
      while (n) {
	 ++i;
	 n = n->next;
      }
      return i;
   }
};

#endif
