2015-04-13 04:09:02 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
2015-03-17 18:56:15 -05:00
|
|
|
/*
|
|
|
|
* 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_UTIL_HPP
|
|
|
|
#define INCLUDED_UTIL_HPP
|
|
|
|
|
2015-04-24 04:49:19 -05:00
|
|
|
#include <string>
|
2015-12-24 21:19:50 -06:00
|
|
|
#include <sstream>
|
2015-12-28 15:34:21 -06:00
|
|
|
#include <functional>
|
2016-01-21 08:28:05 -06:00
|
|
|
#include <memory>
|
2015-04-24 04:49:19 -05:00
|
|
|
|
2015-12-25 19:11:47 -06:00
|
|
|
#include <Poco/File.h>
|
|
|
|
#include <Poco/Path.h>
|
2015-04-22 03:14:11 -05:00
|
|
|
#include <Poco/Net/WebSocket.h>
|
2015-12-20 11:59:26 -06:00
|
|
|
#include <Poco/Logger.h>
|
2015-04-22 03:14:11 -05:00
|
|
|
|
2015-11-24 02:19:17 -06:00
|
|
|
#define LOK_USE_UNSTABLE_API
|
|
|
|
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
|
|
|
|
|
2016-01-09 12:51:55 -06:00
|
|
|
// Possible states of LOOL processes.
|
|
|
|
enum class LOOLState { LOOL_RUNNING, LOOL_STOPPING, LOOL_ABNORMAL };
|
|
|
|
extern volatile LOOLState TerminationState;
|
|
|
|
|
|
|
|
/// Flag to stop pump loops.
|
|
|
|
extern volatile bool TerminationFlag;
|
|
|
|
|
2015-03-26 10:07:52 -05:00
|
|
|
namespace Util
|
2015-03-17 18:56:15 -05:00
|
|
|
{
|
2015-12-19 08:16:44 -06:00
|
|
|
namespace rng
|
|
|
|
{
|
|
|
|
unsigned getNext();
|
|
|
|
}
|
|
|
|
|
2015-12-27 21:47:39 -06:00
|
|
|
/// Encode an integral ID into a string, with padding support.
|
|
|
|
std::string encodeId(const unsigned number, const int padding = 5);
|
2016-01-09 14:46:08 -06:00
|
|
|
/// Decode an integral ID from a string.
|
|
|
|
unsigned decodeId(const std::string& str);
|
2015-12-27 21:47:39 -06:00
|
|
|
|
2016-01-06 21:47:01 -06:00
|
|
|
/// Creates a randomly name directory within path and returns the name.
|
|
|
|
std::string createRandomDir(const std::string& path);
|
|
|
|
/// Creates a randomly name file within path and returns the name.
|
|
|
|
std::string createRandomFile(const std::string& path);
|
|
|
|
|
2015-03-28 06:53:44 -05:00
|
|
|
bool windowingAvailable();
|
2015-04-24 04:49:47 -05:00
|
|
|
|
2015-04-10 04:39:12 -05:00
|
|
|
// Sadly, older libpng headers don't use const for the pixmap pointer parameter to
|
|
|
|
// png_write_row(), so can't use const here for pixmap.
|
2016-01-12 05:00:42 -06:00
|
|
|
bool encodeBufferToPNG(unsigned char* pixmap, int width, int height,
|
|
|
|
std::vector<char>& output, LibreOfficeKitTileMode mode);
|
|
|
|
bool encodeSubBufferToPNG(unsigned char* pixmap, int startX, int startY, int width, int height,
|
|
|
|
int bufferWidth, int bufferHeight,
|
|
|
|
std::vector<char>& output, LibreOfficeKitTileMode mode);
|
2015-04-22 03:14:11 -05:00
|
|
|
|
2016-01-21 08:28:05 -06:00
|
|
|
/// Call WebSocket::shutdown() ignoring Poco::IOException.
|
|
|
|
void shutdownWebSocket(std::shared_ptr<Poco::Net::WebSocket> ws);
|
2015-04-24 04:49:19 -05:00
|
|
|
|
2016-01-19 18:31:06 -06:00
|
|
|
ssize_t writeFIFO(const int nPipe, const char* pBuffer, ssize_t nSize);
|
|
|
|
inline
|
|
|
|
ssize_t writeFIFO(const int nPipe, const std::string& message)
|
|
|
|
{
|
|
|
|
return writeFIFO(nPipe, message.c_str(), message.size());
|
|
|
|
}
|
2015-12-13 11:04:45 -06:00
|
|
|
|
|
|
|
ssize_t readFIFO(int nPipe, char* pBuffer, ssize_t nSize);
|
|
|
|
|
|
|
|
ssize_t readMessage(int nPipe, char* pBuffer, ssize_t nSize);
|
2015-12-25 19:11:47 -06:00
|
|
|
|
|
|
|
/// Safely remove a file or directory.
|
|
|
|
/// Supresses exception when the file is already removed.
|
|
|
|
/// This can happen when there is a race (unavoidable) or when
|
|
|
|
/// we don't care to check before we remove (when no race exists).
|
|
|
|
inline
|
|
|
|
void removeFile(const std::string& path, const bool recursive = false)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Poco::File(path).remove(recursive);
|
|
|
|
}
|
|
|
|
catch (const std::exception&)
|
|
|
|
{
|
2015-12-28 17:24:29 -06:00
|
|
|
// Already removed or we don't care about failures.
|
2015-12-25 19:11:47 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void removeFile(const Poco::Path& path, const bool recursive = false)
|
|
|
|
{
|
|
|
|
removeFile(path.toString(), recursive);
|
|
|
|
}
|
2016-01-09 12:51:55 -06:00
|
|
|
|
2016-01-13 08:34:43 -06:00
|
|
|
/// Returns the name of the signal.
|
|
|
|
std::string signalName(int signo);
|
|
|
|
|
2016-01-09 12:51:55 -06:00
|
|
|
/// Trap signals to cleanup and exit the process gracefully.
|
|
|
|
void setSignals(bool isIgnored);
|
2015-03-17 18:56:15 -05:00
|
|
|
};
|
|
|
|
|
2015-12-20 11:59:26 -06:00
|
|
|
//TODO: Move to own file.
|
|
|
|
namespace Log
|
|
|
|
{
|
|
|
|
void initialize(const std::string& name);
|
|
|
|
Poco::Logger& logger();
|
|
|
|
|
2015-12-24 21:19:50 -06:00
|
|
|
void trace(const std::string& msg);
|
2015-12-20 11:59:26 -06:00
|
|
|
void debug(const std::string& msg);
|
|
|
|
void info(const std::string& msg);
|
2016-01-13 08:34:43 -06:00
|
|
|
void warn(const std::string& msg, const bool append_errno = false);
|
|
|
|
void error(const std::string& msg, const bool append_errno = true);
|
2015-12-24 21:19:50 -06:00
|
|
|
|
|
|
|
// The following is to write streaming logs.
|
|
|
|
// Log::info() << "Value: 0x" << std::hex << value
|
|
|
|
// << ", pointer: " << this << Log::end;
|
|
|
|
|
|
|
|
static const struct _end_marker
|
|
|
|
{
|
2016-01-07 08:10:34 -06:00
|
|
|
_end_marker()
|
|
|
|
{
|
|
|
|
}
|
2015-12-24 21:19:50 -06:00
|
|
|
} end;
|
|
|
|
|
|
|
|
class StreamLogger
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StreamLogger(std::function<void(const std::string&)> func)
|
|
|
|
: _func(func)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-12-27 14:00:14 -06:00
|
|
|
StreamLogger(StreamLogger&& sl)
|
2016-01-18 02:40:30 -06:00
|
|
|
: _stream(std::move(sl._stream.str()))
|
2015-12-27 14:00:14 -06:00
|
|
|
, _func(std::move(sl._func))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-12-24 21:19:50 -06:00
|
|
|
void flush() const
|
|
|
|
{
|
2016-01-18 02:40:30 -06:00
|
|
|
_func(_stream.str());
|
2015-12-24 21:19:50 -06:00
|
|
|
}
|
|
|
|
|
2016-01-18 02:40:30 -06:00
|
|
|
std::ostringstream _stream;
|
2015-12-24 21:19:50 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::function<void(const std::string&)> _func;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline
|
|
|
|
StreamLogger trace()
|
|
|
|
{
|
|
|
|
return StreamLogger([](const std::string& msg) { trace(msg);});
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
StreamLogger debug()
|
|
|
|
{
|
|
|
|
return StreamLogger([](const std::string& msg) { debug(msg);});
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
StreamLogger info()
|
|
|
|
{
|
|
|
|
return StreamLogger([](const std::string& msg) { info(msg);});
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
StreamLogger warn()
|
|
|
|
{
|
|
|
|
return StreamLogger([](const std::string& msg) { warn(msg);});
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
StreamLogger error()
|
|
|
|
{
|
|
|
|
return StreamLogger([](const std::string& msg) { error(msg);});
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
StreamLogger& operator <<(StreamLogger& lhs, const U& rhs)
|
|
|
|
{
|
2016-01-18 02:40:30 -06:00
|
|
|
lhs._stream << rhs;
|
2015-12-24 21:19:50 -06:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
StreamLogger& operator <<(StreamLogger&& lhs, U&& rhs)
|
|
|
|
{
|
2016-01-18 02:40:30 -06:00
|
|
|
lhs._stream << rhs;
|
2015-12-24 21:19:50 -06:00
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void operator <<(StreamLogger& lhs, const _end_marker&)
|
|
|
|
{
|
|
|
|
(void)end;
|
|
|
|
lhs.flush();
|
|
|
|
}
|
2015-12-20 11:59:26 -06:00
|
|
|
}
|
|
|
|
|
2015-03-17 18:56:15 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|