Replace "poor man's optional" with std::unique_ptr

This commit is contained in:
Stephen Seo 2019-12-17 19:12:54 +09:00
parent aa59777f99
commit a4efd98890
3 changed files with 139 additions and 181 deletions

View file

@ -23,40 +23,14 @@ class TSLQueue {
TSLQueue(TSLQueue &&other); TSLQueue(TSLQueue &&other);
TSLQueue &operator=(TSLQueue &&other); TSLQueue &operator=(TSLQueue &&other);
// in place of std::optional which is only available in C++17
struct Entry {
Entry();
Entry(const T& value);
Entry(T&& rvalue);
// enable copy
Entry(const Entry& other) = default;
Entry &operator =(const Entry& other) = default;
// enable move
Entry(Entry&& other) = default;
Entry &operator =(Entry&& other) = default;
enum Type {
NONE,
SOME
} type;
T value;
bool has_value() const;
operator bool () const;
T& operator *();
const T& operator *() const;
};
void push(const T &data); void push(const T &data);
bool push_nb(const T &data); bool push_nb(const T &data);
Entry top(); std::unique_ptr<T> top();
Entry top_nb(); std::unique_ptr<T> top_nb();
bool pop(); bool pop();
Entry top_and_pop(); std::unique_ptr<T> top_and_pop();
Entry top_and_pop_and_empty(bool *isEmpty); std::unique_ptr<T> top_and_pop_and_empty(bool *isEmpty);
Entry top_and_pop_and_rsize(unsigned long *rsize); std::unique_ptr<T> top_and_pop_and_rsize(unsigned long *rsize);
void clear(); void clear();
bool empty(); bool empty();
@ -93,7 +67,7 @@ class TSLQueue {
unsigned long *msize); unsigned long *msize);
~TSLQIter(); ~TSLQIter();
Entry current(); std::unique_ptr<T> current();
bool next(); bool next();
bool prev(); bool prev();
bool remove(); bool remove();
@ -149,44 +123,6 @@ TSLQueue<T> & TSLQueue<T>::operator=(TSLQueue &&other) {
msize = std::move(other.msize); msize = std::move(other.msize);
} }
template <typename T>
TSLQueue<T>::Entry::Entry() :
type(Type::NONE),
value()
{}
template <typename T>
TSLQueue<T>::Entry::Entry(const T& value) :
type(Type::SOME),
value(value)
{}
template <typename T>
TSLQueue<T>::Entry::Entry(T&& value) :
type(Type::SOME),
value(std::forward<T>(value))
{}
template <typename T>
bool TSLQueue<T>::Entry::has_value() const {
return type == Type::SOME;
}
template <typename T>
TSLQueue<T>::Entry::operator bool() const {
return has_value();
}
template <typename T>
T& TSLQueue<T>::Entry::operator *() {
return value;
}
template <typename T>
const T& TSLQueue<T>::Entry::operator *() const {
return value;
}
template <typename T> template <typename T>
void TSLQueue<T>::push(const T &data) { void TSLQueue<T>::push(const T &data) {
std::lock_guard<std::mutex> lock(mutex); std::lock_guard<std::mutex> lock(mutex);
@ -226,29 +162,29 @@ bool TSLQueue<T>::push_nb(const T &data) {
} }
template <typename T> template <typename T>
typename TSLQueue<T>::Entry TSLQueue<T>::top() { std::unique_ptr<T> TSLQueue<T>::top() {
std::lock_guard<std::mutex> lock(mutex); std::lock_guard<std::mutex> lock(mutex);
std::unique_ptr<T> result;
if(head->next != tail) { if(head->next != tail) {
assert(head->next->data); assert(head->next->data);
return Entry(*head->next->data.get()); result = std::unique_ptr<T>(new T);
} else { *result = *head->next->data;
return Entry();
} }
return result;
} }
template <typename T> template <typename T>
typename TSLQueue<T>::Entry TSLQueue<T>::top_nb() { std::unique_ptr<T> TSLQueue<T>::top_nb() {
std::unique_ptr<T> result;
if(mutex.try_lock()) { if(mutex.try_lock()) {
Entry ret;
if(head->next != tail) { if(head->next != tail) {
assert(head->next->data); assert(head->next->data);
ret = Entry(*head->next->data.get()); result = std::unique_ptr<T>(new T);
*result = *head->next->data;
} }
mutex.unlock(); mutex.unlock();
return ret;
} else {
return Entry();
} }
return result;
} }
template <typename T> template <typename T>
@ -268,12 +204,13 @@ bool TSLQueue<T>::pop() {
} }
template <typename T> template <typename T>
typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop() { std::unique_ptr<T> TSLQueue<T>::top_and_pop() {
Entry ret; std::unique_ptr<T> result;
std::lock_guard<std::mutex> lock(mutex); std::lock_guard<std::mutex> lock(mutex);
if(head->next != tail) { if(head->next != tail) {
assert(head->next->data); assert(head->next->data);
ret = Entry(*head->next->data.get()); result = std::unique_ptr<T>(new T);
*result = *head->next->data;
auto& newNext = head->next->next; auto& newNext = head->next->next;
newNext->prev = head; newNext->prev = head;
@ -281,12 +218,12 @@ typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop() {
assert(msize > 0); assert(msize > 0);
--msize; --msize;
} }
return ret; return result;
} }
template <typename T> template <typename T>
typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop_and_empty(bool *isEmpty) { std::unique_ptr<T> TSLQueue<T>::top_and_pop_and_empty(bool *isEmpty) {
Entry ret; std::unique_ptr<T> result;
std::lock_guard<std::mutex> lock(mutex); std::lock_guard<std::mutex> lock(mutex);
if(head->next == tail) { if(head->next == tail) {
if(isEmpty) { if(isEmpty) {
@ -294,7 +231,8 @@ typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop_and_empty(bool *isEmpty) {
} }
} else { } else {
assert(head->next->data); assert(head->next->data);
ret = Entry(*head->next->data.get()); result = std::unique_ptr<T>(new T);
*result = *head->next->data;
auto& newNext = head->next->next; auto& newNext = head->next->next;
newNext->prev = head; newNext->prev = head;
@ -306,12 +244,12 @@ typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop_and_empty(bool *isEmpty) {
*isEmpty = head->next == tail; *isEmpty = head->next == tail;
} }
} }
return ret; return result;
} }
template <typename T> template <typename T>
typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop_and_rsize(unsigned long *rsize) { std::unique_ptr<T> TSLQueue<T>::top_and_pop_and_rsize(unsigned long *rsize) {
Entry ret; std::unique_ptr<T> result;
std::lock_guard<std::mutex> lock(mutex); std::lock_guard<std::mutex> lock(mutex);
if(head->next == tail) { if(head->next == tail) {
if(rsize) { if(rsize) {
@ -319,7 +257,8 @@ typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop_and_rsize(unsigned long *rs
} }
} else { } else {
assert(head->next->data); assert(head->next->data);
ret = Entry(*head->next->data.get()); result = std::unique_ptr<T>(new T);
*result = *head->next->data;
auto& newNext = head->next->next; auto& newNext = head->next->next;
newNext->prev = head; newNext->prev = head;
@ -331,7 +270,7 @@ typename TSLQueue<T>::Entry TSLQueue<T>::top_and_pop_and_rsize(unsigned long *rs
*rsize = msize; *rsize = msize;
} }
} }
return ret; return result;
} }
template <typename T> template <typename T>
@ -382,14 +321,15 @@ TSLQueue<T>::TSLQIter::~TSLQIter() {
} }
template <typename T> template <typename T>
typename TSLQueue<T>::Entry TSLQueue<T>::TSLQIter::current() { std::unique_ptr<T> TSLQueue<T>::TSLQIter::current() {
std::unique_ptr<T> result;
std::shared_ptr<TSLQNode> currentNode = this->currentNode.lock(); std::shared_ptr<TSLQNode> currentNode = this->currentNode.lock();
assert(currentNode); assert(currentNode);
if(currentNode->isNormal()) { if(currentNode->isNormal()) {
return Entry(*currentNode->data.get()); result = std::unique_ptr<T>(new T);
} else { *result = *currentNode->data;
return Entry();
} }
return result;
} }
template <typename T> template <typename T>

View file

@ -264,8 +264,8 @@ void UDPC::Context::update_impl() {
// handle internalEvents // handle internalEvents
do { do {
auto optE = internalEvents.top_and_pop(); auto optE = internalEvents.top_and_pop();
if(optE.has_value()) { if(optE) {
switch(optE.value.type) { switch(optE->type) {
case UDPC_ET_REQUEST_CONNECT: case UDPC_ET_REQUEST_CONNECT:
{ {
unsigned char *sk = nullptr; unsigned char *sk = nullptr;
@ -277,11 +277,11 @@ void UDPC::Context::update_impl() {
UDPC::ConnectionData newCon( UDPC::ConnectionData newCon(
false, false,
this, this,
optE.value.conId.addr, optE->conId.addr,
optE.value.conId.scope_id, optE->conId.scope_id,
optE.value.conId.port, optE->conId.port,
#ifdef UDPC_LIBSODIUM_ENABLED #ifdef UDPC_LIBSODIUM_ENABLED
flags.test(2) && optE.value.v.enableLibSodium != 0, flags.test(2) && optE->v.enableLibSodium != 0,
sk, pk); sk, pk);
#else #else
false, false,
@ -292,9 +292,9 @@ void UDPC::Context::update_impl() {
UDPC_LoggingType::UDPC_ERROR, UDPC_LoggingType::UDPC_ERROR,
"Failed to init ConnectionData instance (libsodium " "Failed to init ConnectionData instance (libsodium "
"init fail) while client establishing connection with ", "init fail) while client establishing connection with ",
UDPC_atostr((UDPC_HContext)this, optE.value.conId.addr), UDPC_atostr((UDPC_HContext)this, optE->conId.addr),
" port ", " port ",
optE.value.conId.port); optE->conId.port);
continue; continue;
} }
newCon.sent = std::chrono::steady_clock::now() - UDPC::INIT_PKT_INTERVAL_DT; newCon.sent = std::chrono::steady_clock::now() - UDPC::INIT_PKT_INTERVAL_DT;
@ -314,34 +314,34 @@ void UDPC::Context::update_impl() {
#endif #endif
} }
if(conMap.find(optE.value.conId) == conMap.end()) { if(conMap.find(optE->conId) == conMap.end()) {
conMap.insert(std::make_pair( conMap.insert(std::make_pair(
optE.value.conId, optE->conId,
std::move(newCon))); std::move(newCon)));
auto addrConIter = addrConMap.find(optE.value.conId.addr); auto addrConIter = addrConMap.find(optE->conId.addr);
if(addrConIter == addrConMap.end()) { if(addrConIter == addrConMap.end()) {
auto insertResult = addrConMap.insert(std::make_pair( auto insertResult = addrConMap.insert(std::make_pair(
optE.value.conId.addr, optE->conId.addr,
std::unordered_set<UDPC_ConnectionId, UDPC::ConnectionIdHasher>{})); std::unordered_set<UDPC_ConnectionId, UDPC::ConnectionIdHasher>{}));
assert(insertResult.second && assert(insertResult.second &&
"new connection insert into addrConMap must not fail"); "new connection insert into addrConMap must not fail");
addrConIter = insertResult.first; addrConIter = insertResult.first;
} }
addrConIter->second.insert(optE.value.conId); addrConIter->second.insert(optE->conId);
UDPC_CHECK_LOG(this, UDPC_CHECK_LOG(this,
UDPC_LoggingType::UDPC_INFO, UDPC_LoggingType::UDPC_INFO,
"Client initiating connection to ", "Client initiating connection to ",
UDPC_atostr((UDPC_HContext)this, optE.value.conId.addr), UDPC_atostr((UDPC_HContext)this, optE->conId.addr),
" port ", " port ",
optE.value.conId.port, optE->conId.port,
" ..."); " ...");
} else { } else {
UDPC_CHECK_LOG(this, UDPC_CHECK_LOG(this,
UDPC_LoggingType::UDPC_WARNING, UDPC_LoggingType::UDPC_WARNING,
"Client initiate connection, already connected to peer ", "Client initiate connection, already connected to peer ",
UDPC_atostr((UDPC_HContext)this, optE.value.conId.addr), UDPC_atostr((UDPC_HContext)this, optE->conId.addr),
" port ", " port ",
optE.value.conId.port); optE->conId.port);
} }
} }
break; break;
@ -358,9 +358,9 @@ void UDPC::Context::update_impl() {
UDPC::ConnectionData newCon( UDPC::ConnectionData newCon(
false, false,
this, this,
optE.value.conId.addr, optE->conId.addr,
optE.value.conId.scope_id, optE->conId.scope_id,
optE.value.conId.port, optE->conId.port,
#ifdef UDPC_LIBSODIUM_ENABLED #ifdef UDPC_LIBSODIUM_ENABLED
true, true,
sk, pk); sk, pk);
@ -368,18 +368,18 @@ void UDPC::Context::update_impl() {
false, false,
sk, pk); sk, pk);
assert(!"compiled without libsodium support"); assert(!"compiled without libsodium support");
delete[] optE.value.v.pk; delete[] optE->v.pk;
break; break;
#endif #endif
if(newCon.flags.test(5)) { if(newCon.flags.test(5)) {
delete[] optE.value.v.pk; delete[] optE->v.pk;
UDPC_CHECK_LOG(this, UDPC_CHECK_LOG(this,
UDPC_LoggingType::UDPC_ERROR, UDPC_LoggingType::UDPC_ERROR,
"Failed to init ConnectionData instance (libsodium " "Failed to init ConnectionData instance (libsodium "
"init fail) while client establishing connection with ", "init fail) while client establishing connection with ",
UDPC_atostr((UDPC_HContext)this, optE.value.conId.addr), UDPC_atostr((UDPC_HContext)this, optE->conId.addr),
" port ", " port ",
optE.value.conId.port); optE->conId.port);
continue; continue;
} }
newCon.sent = std::chrono::steady_clock::now() - UDPC::INIT_PKT_INTERVAL_DT; newCon.sent = std::chrono::steady_clock::now() - UDPC::INIT_PKT_INTERVAL_DT;
@ -401,48 +401,48 @@ void UDPC::Context::update_impl() {
// set peer public key // set peer public key
std::memcpy( std::memcpy(
newCon.peer_pk, newCon.peer_pk,
optE.value.v.pk, optE->v.pk,
crypto_sign_PUBLICKEYBYTES); crypto_sign_PUBLICKEYBYTES);
newCon.flags.set(7); newCon.flags.set(7);
} }
delete[] optE.value.v.pk; delete[] optE->v.pk;
if(conMap.find(optE.value.conId) == conMap.end()) { if(conMap.find(optE->conId) == conMap.end()) {
conMap.insert(std::make_pair( conMap.insert(std::make_pair(
optE.value.conId, optE->conId,
std::move(newCon))); std::move(newCon)));
auto addrConIter = addrConMap.find(optE.value.conId.addr); auto addrConIter = addrConMap.find(optE->conId.addr);
if(addrConIter == addrConMap.end()) { if(addrConIter == addrConMap.end()) {
auto insertResult = addrConMap.insert(std::make_pair( auto insertResult = addrConMap.insert(std::make_pair(
optE.value.conId.addr, optE->conId.addr,
std::unordered_set<UDPC_ConnectionId, UDPC::ConnectionIdHasher>{})); std::unordered_set<UDPC_ConnectionId, UDPC::ConnectionIdHasher>{}));
assert(insertResult.second && assert(insertResult.second &&
"new connection insert into addrConMap must not fail"); "new connection insert into addrConMap must not fail");
addrConIter = insertResult.first; addrConIter = insertResult.first;
} }
addrConIter->second.insert(optE.value.conId); addrConIter->second.insert(optE->conId);
UDPC_CHECK_LOG(this, UDPC_CHECK_LOG(this,
UDPC_LoggingType::UDPC_INFO, UDPC_LoggingType::UDPC_INFO,
"Client initiating connection to ", "Client initiating connection to ",
UDPC_atostr((UDPC_HContext)this, optE.value.conId.addr), UDPC_atostr((UDPC_HContext)this, optE->conId.addr),
" port ", " port ",
optE.value.conId.port, optE->conId.port,
" ..."); " ...");
} else { } else {
UDPC_CHECK_LOG(this, UDPC_CHECK_LOG(this,
UDPC_LoggingType::UDPC_WARNING, UDPC_LoggingType::UDPC_WARNING,
"Client initiate connection, already connected to peer ", "Client initiate connection, already connected to peer ",
UDPC_atostr((UDPC_HContext)this, optE.value.conId.addr), UDPC_atostr((UDPC_HContext)this, optE->conId.addr),
" port ", " port ",
optE.value.conId.port); optE->conId.port);
} }
} }
break; break;
case UDPC_ET_REQUEST_DISCONNECT: case UDPC_ET_REQUEST_DISCONNECT:
if(optE.value.v.dropAllWithAddr != 0) { if(optE->v.dropAllWithAddr != 0) {
// drop all connections with same address // drop all connections with same address
auto addrConIter = addrConMap.find(optE.value.conId.addr); auto addrConIter = addrConMap.find(optE->conId.addr);
if(addrConIter != addrConMap.end()) { if(addrConIter != addrConMap.end()) {
for(auto identIter = addrConIter->second.begin(); for(auto identIter = addrConIter->second.begin();
identIter != addrConIter->second.end(); identIter != addrConIter->second.end();
@ -463,14 +463,14 @@ void UDPC::Context::update_impl() {
} }
} else { } else {
// drop only specific connection with addr and port // drop only specific connection with addr and port
auto iter = conMap.find(optE.value.conId); auto iter = conMap.find(optE->conId);
if(iter != conMap.end()) { if(iter != conMap.end()) {
if(iter->second.flags.test(4)) { if(iter->second.flags.test(4)) {
idMap.erase(iter->second.id); idMap.erase(iter->second.id);
} }
auto addrConIter = addrConMap.find(optE.value.conId.addr); auto addrConIter = addrConMap.find(optE->conId.addr);
if(addrConIter != addrConMap.end()) { if(addrConIter != addrConMap.end()) {
addrConIter->second.erase(optE.value.conId); addrConIter->second.erase(optE->conId);
if(addrConIter->second.empty()) { if(addrConIter->second.empty()) {
addrConMap.erase(addrConIter); addrConMap.erase(addrConIter);
} }
@ -607,18 +607,18 @@ void UDPC::Context::update_impl() {
while(true) { while(true) {
auto next = sendIter.current(); auto next = sendIter.current();
if(next) { if(next) {
auto iter = conMap.find(next.value.receiver); auto iter = conMap.find(next->receiver);
if(iter != conMap.end()) { if(iter != conMap.end()) {
if(iter->second.sendPkts.size() >= UDPC_QUEUED_PKTS_MAX_SIZE) { if(iter->second.sendPkts.size() >= UDPC_QUEUED_PKTS_MAX_SIZE) {
if(notQueued.find(next.value.receiver) == notQueued.end()) { if(notQueued.find(next->receiver) == notQueued.end()) {
notQueued.insert(next.value.receiver); notQueued.insert(next->receiver);
UDPC_CHECK_LOG(this, UDPC_CHECK_LOG(this,
UDPC_LoggingType::UDPC_DEBUG, UDPC_LoggingType::UDPC_DEBUG,
"Not queueing packet to ", "Not queueing packet to ",
UDPC_atostr((UDPC_HContext)this, UDPC_atostr((UDPC_HContext)this,
next.value.receiver.addr), next->receiver.addr),
", port = ", ", port = ",
next.value.receiver.port, next->receiver.port,
", connection's queue reached max size"); ", connection's queue reached max size");
} }
if(sendIter.next()) { if(sendIter.next()) {
@ -627,24 +627,24 @@ void UDPC::Context::update_impl() {
break; break;
} }
} }
iter->second.sendPkts.push_back(next.value); iter->second.sendPkts.push_back(*next);
if(sendIter.remove()) { if(sendIter.remove()) {
continue; continue;
} else { } else {
break; break;
} }
} else { } else {
if(dropped.find(next.value.receiver) == dropped.end()) { if(dropped.find(next->receiver) == dropped.end()) {
UDPC_CHECK_LOG(this, UDPC_CHECK_LOG(this,
UDPC_LoggingType::UDPC_WARNING, UDPC_LoggingType::UDPC_WARNING,
"Dropped queued packets to ", "Dropped queued packets to ",
UDPC_atostr( UDPC_atostr(
(UDPC_HContext)this, (UDPC_HContext)this,
next.value.receiver.addr), next->receiver.addr),
", port = ", ", port = ",
next.value.receiver.port, next->receiver.port,
" due to connection not existing"); " due to connection not existing");
dropped.insert(next.value.receiver); dropped.insert(next->receiver);
} }
if(sendIter.remove()) { if(sendIter.remove()) {
continue; continue;
@ -1929,8 +1929,8 @@ void UDPC_destroy(UDPC_HContext ctx) {
#endif #endif
while(!UDPC_ctx->internalEvents.empty()) { while(!UDPC_ctx->internalEvents.empty()) {
auto optE = UDPC_ctx->internalEvents.top_and_pop(); auto optE = UDPC_ctx->internalEvents.top_and_pop();
if(optE.has_value() && optE.value.type == UDPC_ET_REQUEST_CONNECT_PK) { if(optE && optE->type == UDPC_ET_REQUEST_CONNECT_PK) {
delete[] optE.value.v.pk; delete[] optE->v.pk;
} }
} }
UDPC_ctx->_contextIdentifier = 0; UDPC_ctx->_contextIdentifier = 0;
@ -2147,7 +2147,7 @@ UDPC_Event UDPC_get_event(UDPC_HContext ctx, unsigned long *remaining) {
auto optE = c->externalEvents.top_and_pop_and_rsize(remaining); auto optE = c->externalEvents.top_and_pop_and_rsize(remaining);
if(optE) { if(optE) {
return optE.value; return *optE;
} else { } else {
return UDPC_Event{UDPC_ET_NONE, UDPC_create_id_anyaddr(0), 0}; return UDPC_Event{UDPC_ET_NONE, UDPC_create_id_anyaddr(0), 0};
} }

View file

@ -8,7 +8,7 @@
TEST(TSLQueue, PushTopPopSize) { TEST(TSLQueue, PushTopPopSize) {
TSLQueue<int> q; TSLQueue<int> q;
EXPECT_FALSE(q.top().has_value()); EXPECT_FALSE(q.top());
for(int i = 0; i < 10; ++i) { for(int i = 0; i < 10; ++i) {
EXPECT_EQ(i, q.size()); EXPECT_EQ(i, q.size());
@ -17,8 +17,8 @@ TEST(TSLQueue, PushTopPopSize) {
for(int i = 0; i < 10; ++i) { for(int i = 0; i < 10; ++i) {
auto v = q.top(); auto v = q.top();
ASSERT_TRUE(v.has_value()); ASSERT_TRUE(v);
EXPECT_EQ(v.value, i); EXPECT_EQ(*v, i);
EXPECT_EQ(10 - i, q.size()); EXPECT_EQ(10 - i, q.size());
EXPECT_TRUE(q.pop()); EXPECT_TRUE(q.pop());
} }
@ -37,21 +37,21 @@ TEST(TSLQueue, PushNB_TopNB_TopAndPop_Size) {
for(int i = 0; i < 10; ++i) { for(int i = 0; i < 10; ++i) {
auto v = q.top_nb(); auto v = q.top_nb();
ASSERT_TRUE(v.has_value()); ASSERT_TRUE(v);
EXPECT_EQ(v.value, i); EXPECT_EQ(*v, i);
EXPECT_EQ(q.size(), 10 - i); EXPECT_EQ(q.size(), 10 - i);
v = q.top_and_pop(); v = q.top_and_pop();
ASSERT_TRUE(v.has_value()); ASSERT_TRUE(v);
EXPECT_EQ(v.value, i); EXPECT_EQ(*v, i);
} }
{ {
auto v = q.top_nb(); auto v = q.top_nb();
ASSERT_FALSE(v.has_value()); ASSERT_FALSE(v);
} }
{ {
auto v = q.top_and_pop(); auto v = q.top_and_pop();
ASSERT_FALSE(v.has_value()); ASSERT_FALSE(v);
} }
EXPECT_EQ(q.size(), 0); EXPECT_EQ(q.size(), 0);
} }
@ -68,8 +68,8 @@ TEST(TSLQueue, Push_TopAndPopAndEmpty_Size) {
for(int i = 0; i < 10; ++i) { for(int i = 0; i < 10; ++i) {
EXPECT_EQ(q.size(), 10 - i); EXPECT_EQ(q.size(), 10 - i);
auto v = q.top_and_pop_and_empty(&isEmpty); auto v = q.top_and_pop_and_empty(&isEmpty);
ASSERT_TRUE(v.has_value()); ASSERT_TRUE(v);
EXPECT_EQ(v.value, i); EXPECT_EQ(*v, i);
EXPECT_EQ(i == 9, isEmpty); EXPECT_EQ(i == 9, isEmpty);
} }
EXPECT_EQ(q.size(), 0); EXPECT_EQ(q.size(), 0);
@ -109,9 +109,9 @@ TEST(TSLQueue, Concurrent) {
for(int i = 0; i < 100; ++i) { for(int i = 0; i < 100; ++i) {
EXPECT_EQ(q.size(), 100 - i); EXPECT_EQ(q.size(), 100 - i);
auto v = q.top_and_pop(); auto v = q.top_and_pop();
ASSERT_TRUE(v.has_value()); ASSERT_TRUE(v);
EXPECT_GE(v.value, 0); EXPECT_GE(*v, 0);
EXPECT_LE(v.value, 100); EXPECT_LE(*v, 100);
EXPECT_EQ(i == 99, q.empty()); EXPECT_EQ(i == 99, q.empty());
} }
EXPECT_EQ(q.size(), 0); EXPECT_EQ(q.size(), 0);
@ -130,8 +130,8 @@ TEST(TSLQueue, Iterator) {
auto iter = q.begin(); auto iter = q.begin();
int i = 0; int i = 0;
auto op = iter.current(); auto op = iter.current();
while(op.has_value()) { while(op) {
EXPECT_EQ(op.value, i++); EXPECT_EQ(*op, i++);
if(i < 10) { if(i < 10) {
EXPECT_TRUE(iter.next()); EXPECT_TRUE(iter.next());
} else { } else {
@ -143,13 +143,13 @@ TEST(TSLQueue, Iterator) {
// test that lock is held by iterator // test that lock is held by iterator
EXPECT_FALSE(q.push_nb(10)); EXPECT_FALSE(q.push_nb(10));
op = q.top_nb(); op = q.top_nb();
EXPECT_FALSE(op.has_value()); EXPECT_FALSE(op);
// backwards iteration // backwards iteration
EXPECT_TRUE(iter.prev()); EXPECT_TRUE(iter.prev());
op = iter.current(); op = iter.current();
while(op.has_value()) { while(op) {
EXPECT_EQ(op.value, --i); EXPECT_EQ(*op, --i);
if(i > 0) { if(i > 0) {
EXPECT_TRUE(iter.prev()); EXPECT_TRUE(iter.prev());
} else { } else {
@ -168,23 +168,23 @@ TEST(TSLQueue, Iterator) {
EXPECT_TRUE(iter.remove()); EXPECT_TRUE(iter.remove());
auto op = iter.current(); auto op = iter.current();
EXPECT_TRUE(op.has_value()); EXPECT_TRUE(op);
EXPECT_EQ(op.value, 4); EXPECT_EQ(*op, 4);
EXPECT_TRUE(iter.prev()); EXPECT_TRUE(iter.prev());
op = iter.current(); op = iter.current();
EXPECT_TRUE(op.has_value()); EXPECT_TRUE(op);
EXPECT_EQ(op.value, 2); EXPECT_EQ(*op, 2);
} }
EXPECT_EQ(q.size(), 9); EXPECT_EQ(q.size(), 9);
// check that "3" was removed from queue // check that "3" was removed from queue
int i = 0; int i = 0;
TSLQueue<int>::Entry op; std::unique_ptr<int> op;
while(!q.empty()) { while(!q.empty()) {
op = q.top(); op = q.top();
EXPECT_TRUE(op.has_value()); EXPECT_TRUE(op);
EXPECT_EQ(i++, op.value); EXPECT_EQ(i++, *op);
if(i == 3) { if(i == 3) {
++i; ++i;
} }
@ -205,8 +205,8 @@ TEST(TSLQueue, Iterator) {
i = 1; i = 1;
while(!q.empty()) { while(!q.empty()) {
op = q.top(); op = q.top();
EXPECT_TRUE(op.has_value()); EXPECT_TRUE(op);
EXPECT_EQ(i++, op.value); EXPECT_EQ(i++, *op);
EXPECT_TRUE(q.pop()); EXPECT_TRUE(q.pop());
} }
@ -221,8 +221,8 @@ TEST(TSLQueue, Iterator) {
while(true) { while(true) {
EXPECT_TRUE(iter.next()); EXPECT_TRUE(iter.next());
op = iter.current(); op = iter.current();
EXPECT_TRUE(op.has_value()); EXPECT_TRUE(op);
if(op.value == 3) { if(*op == 3) {
EXPECT_FALSE(iter.remove()); EXPECT_FALSE(iter.remove());
break; break;
} }
@ -232,11 +232,29 @@ TEST(TSLQueue, Iterator) {
i = 0; i = 0;
while(!q.empty()) { while(!q.empty()) {
op = q.top(); op = q.top();
EXPECT_TRUE(op.has_value()); EXPECT_TRUE(op);
EXPECT_EQ(i++, op.value); EXPECT_EQ(i++, *op);
EXPECT_TRUE(q.pop()); EXPECT_TRUE(q.pop());
if(i == 3) { if(i == 3) {
EXPECT_TRUE(q.empty()); EXPECT_TRUE(q.empty());
} }
} }
} }
TEST(TSLQueue, TempToNew) {
TSLQueue<int> q;
q.push(1234);
q.push(5678);
auto getValue = [] (TSLQueue<int> *q) -> int {
auto uptr = q->top_and_pop();
return *uptr;
};
int value;
value = getValue(&q);
EXPECT_EQ(1234, value);
value = getValue(&q);
EXPECT_EQ(5678, value);
}