src/process.h

changeset 4
82680ce258d6
parent 3
c87bde92805f
--- a/src/process.h	Tue Jan 21 20:24:45 2025 +0100
+++ b/src/process.h	Tue Jan 21 21:01:54 2025 +0100
@@ -31,13 +31,17 @@
 namespace fm {
 
 class process final {
-    std::string m_path;
+    std::string m_path = "/bin/false";
+    std::string m_dir = ".";
     std::string m_output;
 public:
-    explicit process(std::string path);
-    ~process() = default;
+    void setbin(std::string path);
+    void chdir(std::string path);
 
-    [[nodiscard]] bool exec(std::vector<std::string> args);
+    [[nodiscard]] int exec(std::vector<std::string> args, bool capture = false);
+    [[nodiscard]] int exec_log(std::vector<std::string> args) {
+        return exec(std::move(args), true);
+    }
     [[nodiscard]] const std::string &output() const;
 };
 

mercurial