forked from datastax/cpp-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.hpp
137 lines (109 loc) · 2.67 KB
/
list.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
Copyright (c) DataStax, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef __CASS_LIST_HPP_INCLUDED__
#define __CASS_LIST_HPP_INCLUDED__
#include "macros.hpp"
#include <stddef.h>
namespace cass {
template <class T>
class List {
public:
class Node {
public:
Node()
: next_(NULL)
, prev_(NULL) {}
private:
friend class List;
Node* next_;
Node* prev_;
};
template <class S>
class Iterator {
public:
bool has_next() { return curr_ != end_; }
S* next() {
Node* temp = curr_;
curr_ = curr_->next_;
return static_cast<T*>(temp);
}
private:
friend class List;
Iterator(Node* begin, Node* end)
: curr_(begin)
, end_(end) {}
Node* curr_;
Node* end_;
};
public:
List()
: size_(0) {
data_.next_ = &data_;
data_.prev_ = &data_;
}
void add_to_front(T* node);
void add_to_back(T* node);
void remove(T* node);
T* front() {
if (is_empty()) return NULL;
return static_cast<T*>(data_.next_);
}
T* back() {
if (is_empty()) return NULL;
return static_cast<T*>(data_.prev_);
}
size_t size() const { return size_; }
bool is_empty() { return data_.next_ == &data_; }
Iterator<T> iterator() { return Iterator<T>(data_.next_, &data_); }
private:
void insert_before(Node* pos, Node* node);
void insert_after(Node* pos, Node* node);
Node data_;
size_t size_;
private:
DISALLOW_COPY_AND_ASSIGN(List);
};
template <class T>
void List<T>::add_to_front(T* node) {
insert_after(&data_, node);
}
template <class T>
void List<T>::add_to_back(T* node) {
insert_before(&data_, node);
}
template <class T>
void List<T>::remove(T* node) {
size_--;
node->prev_->next_ = node->next_;
node->next_->prev_ = node->prev_;
node->next_ = NULL;
node->prev_ = NULL;
}
template <class T>
void List<T>::insert_after(Node* pos, Node* node) {
size_++;
pos->next_->prev_ = node;
node->prev_ = pos;
node->next_ = pos->next_;
pos->next_ = node;
}
template <class T>
void List<T>::insert_before(Node* pos, Node* node) {
size_++;
pos->prev_->next_ = node;
node->next_ = pos;
node->prev_ = pos->prev_;
pos->prev_ = node;
}
} // namespace cass
#endif