mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-24 02:51:34 +01:00
ff879f5905
* fix(Foundation): tsan warnings fixes * fix(Thread_POSIX): tsan warnings fixes; add tsan.suppress * fix(Util): tsan fixes * fix(netSSL_OpenSSL): tsan fixes * fix(Data): tsan warnings fixes * feat(ci): add tsan job * feat(ci): add tsan job, another attempt * feat(ci): add tsan job, 3rd attempt * fix(Foundation): tsan warnings fixes * fix(Thread_POSIX): tsan warnings fixes; add tsan.suppress * fix(Util): tsan fixes * fix(netSSL_OpenSSL): tsan fixes * fix(Data): tsan warnings fixes * feat(ci): add tsan job * feat(ci): add tsan job, another attempt * feat(ci): add tsan job, 3rd attempt * fix(ResultMetadata): memory leak #3474 * feat(ci): disable ActiveDispatcher tests for tsan runs * feat(ci): try to fix tsan options file detection (again) * chore(TestLibrary: correct spelling * fix(ci): fix tsan run; add -y to apt; disable samples build for some jobs * fix(ci): add mysql ports * feat(ci): add VS asan * feat(double-conversion): Upgrade double-conversion to v3.2.0 #3624 * chore(asan): disable msvc asan build (dll not found) * chore(double-conversion): move NumericString.h before double-conversion includes to prevent min/max collision; reinstate lost loongarch64 * chore(JSON): sync pdjson with upstream * fix(Statement): Poco::Data::Statement becomes unusable after exception #2287
88 lines
2.1 KiB
C++
88 lines
2.1 KiB
C++
//
|
|
// DialogServer.h
|
|
//
|
|
// Definition of the DialogServer class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef DialogServer_INCLUDED
|
|
#define DialogServer_INCLUDED
|
|
|
|
|
|
#include "Poco/Net/Net.h"
|
|
#include "Poco/Net/ServerSocket.h"
|
|
#include "Poco/Net/StreamSocket.h"
|
|
#include "Poco/Thread.h"
|
|
#include "Poco/Event.h"
|
|
#include "Poco/Mutex.h"
|
|
#include <vector>
|
|
#include "Poco/Net/Session.h"
|
|
|
|
|
|
class DialogServer: public Poco::Runnable
|
|
/// A server for testing FTPClientSession and friends.
|
|
{
|
|
public:
|
|
DialogServer(bool acceptCommands = true, bool ssl = false);
|
|
/// Creates the DialogServer.
|
|
|
|
~DialogServer();
|
|
/// Destroys the DialogServer.
|
|
|
|
Poco::UInt16 port() const;
|
|
/// Returns the port the echo server is
|
|
/// listening on.
|
|
|
|
void run();
|
|
/// Does the work.
|
|
|
|
const std::string& lastCommand() const;
|
|
/// Returns the last command received by the server.
|
|
|
|
std::string popCommand();
|
|
/// Pops the next command from the list of received commands.
|
|
|
|
std::string popCommandWait();
|
|
/// Pops the next command from the list of received commands.
|
|
/// Waits until a command is available.
|
|
|
|
const std::vector<std::string>& lastCommands() const;
|
|
/// Returns the last command received by the server.
|
|
|
|
void addResponse(const std::string& response);
|
|
/// Sets the next response returned by the server.
|
|
|
|
void clearCommands();
|
|
/// Clears all commands.
|
|
|
|
void clearResponses();
|
|
/// Clears all responses.
|
|
|
|
void log(bool flag);
|
|
/// Enables or disables logging to stdout.
|
|
|
|
Poco::Net::Session::Ptr getSslSession();
|
|
void setSslSession(Poco::Net::Session::Ptr cSession);
|
|
|
|
private:
|
|
Poco::Net::ServerSocket _socket;
|
|
Poco::Thread _thread;
|
|
Poco::Event _ready;
|
|
mutable Poco::FastMutex _mutex;
|
|
std::atomic<bool> _stop;
|
|
std::vector<std::string> _nextResponses;
|
|
std::vector<std::string> _lastCommands;
|
|
bool _acceptCommands;
|
|
bool _log;
|
|
bool _ssl;
|
|
Poco::Net::Session::Ptr _SSLsession = nullptr;
|
|
};
|
|
|
|
|
|
#endif // DialogServer_INCLUDED
|