2014-07-30 19:20:55 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMUNICATIONSOCKET_H
|
|
|
|
#define COMMUNICATIONSOCKET_H
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#pragma warning (disable : 4251)
|
|
|
|
|
|
|
|
#include <string>
|
2014-10-14 18:05:48 +04:00
|
|
|
#include <vector>
|
2014-07-30 19:20:55 +04:00
|
|
|
#include <WinSock2.h>
|
|
|
|
|
|
|
|
class __declspec(dllexport) CommunicationSocket
|
|
|
|
{
|
|
|
|
public:
|
2017-01-05 19:28:28 +03:00
|
|
|
static std::wstring DefaultPipePath();
|
2016-05-09 16:49:52 +03:00
|
|
|
|
2017-01-05 19:28:28 +03:00
|
|
|
CommunicationSocket();
|
|
|
|
~CommunicationSocket();
|
2014-07-30 19:20:55 +04:00
|
|
|
|
2017-01-05 19:28:28 +03:00
|
|
|
bool Connect(const std::wstring& pipename);
|
|
|
|
bool Close();
|
2014-07-30 19:20:55 +04:00
|
|
|
|
2017-01-05 19:28:28 +03:00
|
|
|
bool SendMsg(const wchar_t*) const;
|
|
|
|
bool ReadLine(std::wstring*);
|
2014-07-30 19:20:55 +04:00
|
|
|
|
2014-10-14 18:05:48 +04:00
|
|
|
HANDLE Event() { return _pipe; }
|
|
|
|
|
2017-01-05 19:28:28 +03:00
|
|
|
private:
|
|
|
|
HANDLE _pipe;
|
|
|
|
std::vector<char> _buffer;
|
2023-02-22 00:14:22 +03:00
|
|
|
bool _connected = false;
|
2014-07-30 19:20:55 +04:00
|
|
|
};
|
|
|
|
|
2016-05-09 16:49:52 +03:00
|
|
|
#endif
|