2016-03-27 14:22:24 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INCLUDED_IOUTIL_HPP
|
|
|
|
#define INCLUDED_IOUTIL_HPP
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <sys/poll.h>
|
|
|
|
|
|
|
|
#include <Poco/Net/WebSocket.h>
|
|
|
|
#include <Poco/Logger.h>
|
|
|
|
|
|
|
|
namespace IoUtil
|
|
|
|
{
|
2016-03-27 15:06:22 -05:00
|
|
|
/// Synchronously process WebSocket requests and dispatch to handler.
|
|
|
|
//. Handler returns false to end.
|
|
|
|
void SocketProcessor(std::shared_ptr<Poco::Net::WebSocket> ws,
|
|
|
|
std::function<bool(const std::vector<char>&)> handler,
|
2016-04-18 18:12:26 -05:00
|
|
|
std::function<void()> closeFrame,
|
2016-04-07 12:03:26 -05:00
|
|
|
std::function<bool()> stopPredicate);
|
2016-03-27 15:06:22 -05:00
|
|
|
|
2016-03-27 14:22:24 -05:00
|
|
|
/// Call WebSocket::shutdown() ignoring Poco::IOException.
|
|
|
|
void shutdownWebSocket(std::shared_ptr<Poco::Net::WebSocket> ws);
|
|
|
|
|
|
|
|
ssize_t writeFIFO(int pipe, const char* buffer, ssize_t size);
|
|
|
|
inline
|
|
|
|
ssize_t writeFIFO(int pipe, const std::string& message)
|
|
|
|
{
|
|
|
|
return writeFIFO(pipe, message.c_str(), message.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t readFIFO(int pipe, char* buffer, ssize_t size);
|
|
|
|
|
2016-03-28 13:22:18 -05:00
|
|
|
class PipeReader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PipeReader(const std::string& name, const int pipe) :
|
|
|
|
_name(name),
|
|
|
|
_pipe(pipe)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-04-02 16:22:40 -05:00
|
|
|
const std::string& getName() const { return _name; }
|
|
|
|
|
2016-04-11 03:23:33 -05:00
|
|
|
/// Reads a single line from the pipe.
|
|
|
|
/// Returns 0 for timeout, <0 for error, and >0 on success.
|
|
|
|
/// On success, line will contain the read message.
|
|
|
|
int readLine(std::string& line,
|
2016-04-11 03:28:10 -05:00
|
|
|
std::function<bool()> stopPredicate);
|
2016-04-11 03:23:33 -05:00
|
|
|
|
2016-04-17 11:05:56 -05:00
|
|
|
private:
|
2016-03-28 13:22:18 -05:00
|
|
|
const std::string _name;
|
|
|
|
const int _pipe;
|
|
|
|
std::string _data;
|
|
|
|
};
|
|
|
|
}
|
2016-03-27 14:22:24 -05:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|