autotier
Automatic Tiering Fuse Filesystem
adhoc.hpp
1 /*
2  * Copyright (C) 2019-2021 Joshua Boudreau <jboudreau@45drives.com>
3  *
4  * This file is part of autotier.
5  *
6  * autotier is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * autotier is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with autotier. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
20 #pragma once
21 
22 #include "base.hpp"
23 #include "concurrentQueue.hpp"
24 #include "tools.hpp"
25 
26 #include <45d/socket/UnixSocketServer.hpp>
27 
32 class TierEngineAdhoc : virtual public TierEngineBase {
33 public:
40  TierEngineAdhoc(const fs::path &config_path, const ConfigOverrides &config_overrides);
51  void set_socket_permissions(void);
59  void process_adhoc_requests(void);
65  void process_oneshot(const AdHoc &work);
71  void process_pin_unpin(const AdHoc &work);
77  void process_status(const AdHoc &work);
82  void process_config(void);
87  void process_list_pins(void);
92  void process_list_popularity(void);
99  void process_which_tier(AdHoc &work);
105  template<typename... Args>
106  void enqueue_work(Args &&...args) {
107  if ([](int job, const std::vector<std::string> &) {return job;} (args...) == ONESHOT) {
108  if (oneshot_in_queue_)
109  return;
110  oneshot_in_queue_ = true;
111  }
112  adhoc_work_.emplace(args...);
113  sleep_cv_.notify_one();
114  }
119  void execute_queued_work(void);
126  void pin_files(const std::vector<std::string> &args);
132  void unpin_files(const std::vector<std::string> &args);
137  void shutdown_socket_server(void);
138 private:
139  bool oneshot_in_queue_;
140  ffd::UnixSocketServer socket_server_;
141 };
ConfigOverrides
Definition: config.hpp:65
TierEngineAdhoc::TierEngineAdhoc
TierEngineAdhoc(const fs::path &config_path, const ConfigOverrides &config_overrides)
Construct a new Tier Engine Adhoc object.
Definition: adhoc.cpp:36
TierEngineBase
Base class of TierEngine. Deals with calling config_ constructor and holds onto some members used in ...
Definition: base.hpp:37
AdHoc
Representation of an ad hoc command with the command index and arguments.
Definition: tools.hpp:66
TierEngineAdhoc::process_config
void process_config(void)
Dump current configuration settings from memory.
Definition: adhoc.cpp:384
TierEngineAdhoc::execute_queued_work
void execute_queued_work(void)
Process each Adhoc job enqueued in adhoc_queue_, popping them. Called by the tiering thread as part o...
Definition: adhoc.cpp:477
TierEngineAdhoc::set_socket_permissions
void set_socket_permissions(void)
Get the gid for group autotier and set the owner of the socket to root:autotier.
Definition: adhoc.cpp:49
TierEngineAdhoc::shutdown_socket_server
void shutdown_socket_server(void)
Call socket_server.shutdown() to wake adhoc server thread from wait_for_connection()
Definition: adhoc.cpp:554
TierEngineAdhoc::process_list_popularity
void process_list_popularity(void)
Send all file paths in filesystem along with popularity.
Definition: adhoc.cpp:408
TierEngineAdhoc::socket_server_
ffd::UnixSocketServer socket_server_
IPC server.
Definition: adhoc.hpp:140
TierEngineAdhoc::process_list_pins
void process_list_pins(void)
Send all pinned files with the corresponding tier they are pinned to.
Definition: adhoc.cpp:393
TierEngineAdhoc::enqueue_work
void enqueue_work(Args &&...args)
Emplace an AdHoc job into the work queue.
Definition: adhoc.hpp:106
TierEngineAdhoc::process_which_tier
void process_which_tier(AdHoc &work)
Send table of each argument file along with its corresponding tier name and full backend path.
Definition: adhoc.cpp:422
TierEngineAdhoc::process_oneshot
void process_oneshot(const AdHoc &work)
Enqueue oneshot AdHoc command into adhoc_work_.
Definition: adhoc.cpp:129
TierEngineAdhoc
TierEngine component to handle ad hoc commands.
Definition: adhoc.hpp:32
ConcurrentQueue::emplace
void emplace(Args &&...args)
Emplace into queue with std::queue<T>::emplace().
Definition: concurrentQueue.hpp:72
TierEngineBase::sleep_cv_
std::condition_variable sleep_cv_
Condition variable to use wait_until to sleep between tiering, used for the ad hoc server thread or t...
Definition: base.hpp:116
TierEngineAdhoc::process_pin_unpin
void process_pin_unpin(const AdHoc &work)
Enqueue pin or unpin AdHoc command into adhoc_work_.
Definition: adhoc.cpp:152
TierEngineAdhoc::unpin_files
void unpin_files(const std::vector< std::string > &args)
Iterate through args, clearing the Metadata::pinned_ flag of each file.
Definition: adhoc.cpp:541
TierEngineAdhoc::pin_files
void pin_files(const std::vector< std::string > &args)
Iterate through each string in args[1:] to tier name in args[0]. Sets Metadata::pinned_ flag of each ...
Definition: adhoc.cpp:498
TierEngineAdhoc::process_adhoc_requests
void process_adhoc_requests(void)
Function for ad hoc server thread. Listens to named FIFO in run_path_ to receive ad hoc commands from...
Definition: adhoc.cpp:65
TierEngineBase::adhoc_work_
ConcurrentQueue< AdHoc > adhoc_work_
Definition: base.hpp:108
TierEngineAdhoc::~TierEngineAdhoc
~TierEngineAdhoc()
Destroy the Tier Engine Adhoc object.
Definition: adhoc.cpp:47
TierEngineAdhoc::process_status
void process_status(const AdHoc &work)
Iterate through list of tiers, printing ID, path, current usage, and watermark.
Definition: adhoc.cpp:205