mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 20:02:05 +00:00
![Robert Schulze](/assets/img/avatar_default.png)
* Replicate poco into base/poco/ * De-register poco submodule * Build poco from ClickHouse * Exclude poco from stylecheck * Exclude poco from whitespace check * Exclude poco from typo check * Remove x bit from sources/headers (the style check complained) * Exclude poco from duplicate include check * Fix fasttest * Remove contrib/poco-cmake/* * Simplify poco build descriptions * Remove poco stuff not used by ClickHouse * Glob poco sources * Exclude poco from clang-tidy
80 lines
1023 B
C++
80 lines
1023 B
C++
//
|
|
// Condition.cpp
|
|
//
|
|
// Library: Foundation
|
|
// Package: Threading
|
|
// Module: Condition
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Condition.h"
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
Condition::Condition()
|
|
{
|
|
}
|
|
|
|
Condition::~Condition()
|
|
{
|
|
}
|
|
|
|
|
|
void Condition::signal()
|
|
{
|
|
FastMutex::ScopedLock lock(_mutex);
|
|
|
|
if (!_waitQueue.empty())
|
|
{
|
|
_waitQueue.front()->set();
|
|
dequeue();
|
|
}
|
|
}
|
|
|
|
|
|
void Condition::broadcast()
|
|
{
|
|
FastMutex::ScopedLock lock(_mutex);
|
|
|
|
for (WaitQueue::iterator it = _waitQueue.begin(); it != _waitQueue.end(); ++it)
|
|
{
|
|
(*it)->set();
|
|
}
|
|
_waitQueue.clear();
|
|
}
|
|
|
|
|
|
void Condition::enqueue(Event& event)
|
|
{
|
|
_waitQueue.push_back(&event);
|
|
}
|
|
|
|
|
|
void Condition::dequeue()
|
|
{
|
|
_waitQueue.pop_front();
|
|
}
|
|
|
|
|
|
void Condition::dequeue(Event& event)
|
|
{
|
|
for (WaitQueue::iterator it = _waitQueue.begin(); it != _waitQueue.end(); ++it)
|
|
{
|
|
if (*it == &event)
|
|
{
|
|
_waitQueue.erase(it);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
} // namespace Poco
|