1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/test/webfuse_provider/test_util/webfuse_server.hpp

32 lines
790 B
C++
Raw Normal View History

2020-06-24 20:03:38 +00:00
#ifndef WFP_TEST_UTIL_WEBFUSE_SERVER_HPP
#define WFP_TEST_UTIL_WEBFUSE_SERVER_HPP
#include <string>
#include <jansson.h>
namespace webfuse_test
{
class WebfuseServer
{
WebfuseServer(WebfuseServer const &) = delete;
WebfuseServer& operator=(WebfuseServer const &) = delete;
public:
2020-06-25 16:36:51 +00:00
WebfuseServer(bool use_tls = false);
2020-06-24 20:03:38 +00:00
~WebfuseServer();
std::string const & GetUrl();
2020-06-25 19:19:45 +00:00
json_t * Invoke(std::string const & method, json_t * params);
json_t * Invoke(std::string const & method, std::string const & params);
json_t * Lookup(int parent, std::string const & name);
2020-06-25 20:22:26 +00:00
json_t * Open(int inode, int flags);
2020-06-26 16:11:10 +00:00
json_t * Read(int inode, int handle, int offset, int length);
json_t * ReadDir(int inode);
2020-06-24 20:03:38 +00:00
private:
class Private;
Private * d;
};
}
#endif