aboutsummaryrefslogtreecommitdiff
path: root/source/lib/proto/include/wanda
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2024-05-17 17:58:38 +0200
committerFelix Morgner <felix.morgner@gmail.com>2024-05-17 17:58:38 +0200
commit577fc0845718ed8ad5bebf02a277c0579a817f77 (patch)
tree3d1cdc53c426a0ba60a7996619a7b787850bb3b3 /source/lib/proto/include/wanda
parentde5bf7ca3b7a2bf6be35b86486b00dc6a071b950 (diff)
downloadwanda-develop.tar.xz
wanda-develop.zip
wanda: restructure source layoutHEADdevelop
Diffstat (limited to 'source/lib/proto/include/wanda')
-rw-r--r--source/lib/proto/include/wanda/proto/command.hpp46
-rw-r--r--source/lib/proto/include/wanda/proto/message.hpp84
-rw-r--r--source/lib/proto/include/wanda/proto/version.hpp12
3 files changed, 0 insertions, 142 deletions
diff --git a/source/lib/proto/include/wanda/proto/command.hpp b/source/lib/proto/include/wanda/proto/command.hpp
deleted file mode 100644
index c8dae65..0000000
--- a/source/lib/proto/include/wanda/proto/command.hpp
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef WANDA_PROTO_COMMAND_HPP
-#define WANDA_PROTO_COMMAND_HPP
-
-#include "wanda/proto/message.hpp"
-
-#include <optional>
-#include <string>
-#include <vector>
-
-namespace wanda::proto
-{
- /**
- * @brief An enum to describe different command IDs
- */
- enum struct command_id : char
- {
- change, //< Change the wallpaper
- };
-
- /**
- * @brief A simple type to represent commands transported through the control connection
- */
- struct command
- {
- command_id const id;
- std::vector<std::string> const arguments;
-
- /**
- * @brief Convert the command to a message for transmission to a remote endpoint
- */
- std::optional<wanda::proto::message> message() const;
- };
-
- /**
- * @brief Extract a command from a message
- */
- std::optional<command> make_command(message message);
-
- /**
- * @brief A simple factory to create a "Change wallpaper" command
- */
- command make_change_command();
-
-} // namespace wanda::proto
-
-#endif \ No newline at end of file
diff --git a/source/lib/proto/include/wanda/proto/message.hpp b/source/lib/proto/include/wanda/proto/message.hpp
deleted file mode 100644
index 03a30c2..0000000
--- a/source/lib/proto/include/wanda/proto/message.hpp
+++ /dev/null
@@ -1,84 +0,0 @@
-/**
- * @file message.hpp
- * @author Felix Morgner (felix.morgner@gmail.com)
- * @since 1.0.0
- */
-
-#ifndef WANDA_PROTO_MESSAGE_HPP
-#define WANDA_PROTO_MESSAGE_HPP
-
-#include <spdlog/common.h>
-
-#include <cstddef>
-#include <istream>
-#include <optional>
-#include <string>
-#include <string_view>
-
-namespace wanda::proto
-{
- /**
- * @brief A tag to mark messages originating from the controller
- */
- auto constexpr message_source_controller = "C";
-
- /**
- * @brief A tag to mark messages originating from the daemon
- */
- auto constexpr message_source_daemon = "D";
-
- /**
- * @brief The command of the hello message
- */
- auto constexpr message_command_hello = "HELLO";
-
- /**
- * @brief A control protocol message, consisting of a @p source, @p command, and @p arguments
- */
- struct message
- {
- /**
- * @brief Serialize this message into a string
- */
- explicit operator std::string() const;
-
- /**
- * @brief Get the size of the message as if it was serialized
- */
- std::size_t size() const;
-
- /**
- * @brief The source of the message
- */
- std::string source;
-
- /**
- * @brief The command of the message
- */
- std::string command;
-
- /**
- * @brief The arguments of the message command
- */
- std::optional<std::string> argument;
- };
-
- /**
- * @brief Deserialize a message from the given stream
- */
- std::istream & operator>>(std::istream & in, message & message);
-
- /**
- * @brief Serialize a message to the given stream
- */
- std::ostream & operator<<(std::ostream & out, message const & message);
-
-} // namespace wanda::proto
-
-template<>
-struct spdlog::fmt_lib::formatter<wanda::proto::message> : spdlog::fmt_lib::formatter<std::string>
-{
- auto format(wanda::proto::message const & message, format_context & context) const -> decltype(context.out());
-};
-
-#endif \ No newline at end of file
diff --git a/source/lib/proto/include/wanda/proto/version.hpp b/source/lib/proto/include/wanda/proto/version.hpp
deleted file mode 100644
index faa17d7..0000000
--- a/source/lib/proto/include/wanda/proto/version.hpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef WANDA_PROTO_VERSION_HPP
-#define WANDA_PROTO_VERSION_HPP
-
-namespace wanda::proto
-{
- inline namespace v1
- {
- auto constexpr version = "1.0.0";
- }
-} // namespace wanda::proto
-
-#endif \ No newline at end of file