mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
94 lines
2.7 KiB
C++
94 lines
2.7 KiB
C++
|
#ifndef __NCPP_SUBPROC_HH
|
||
|
#define __NCPP_SUBPROC_HH
|
||
|
|
||
|
#include <notcurses/notcurses.h>
|
||
|
|
||
|
#include "Root.hh"
|
||
|
#include "Plane.hh"
|
||
|
|
||
|
namespace ncpp
|
||
|
{
|
||
|
class NCPP_API_EXPORT Subproc : public Root
|
||
|
{
|
||
|
public:
|
||
|
static ncsubproc_options default_options;
|
||
|
|
||
|
public:
|
||
|
explicit Subproc (Plane* n, const char* bin, bool use_path = true,
|
||
|
char* const arg[] = nullptr, char* const env[] = nullptr,
|
||
|
ncfdplane_callback cbfxn = nullptr, ncfdplane_done_cb donecbfxn = nullptr)
|
||
|
: Subproc (n, bin, nullptr, use_path, arg, env, cbfxn, donecbfxn)
|
||
|
{}
|
||
|
|
||
|
explicit Subproc (Plane* n, const char* bin, const ncsubproc_options* opts, bool use_path = true,
|
||
|
char* const arg[] = nullptr, char* const env[] = nullptr,
|
||
|
ncfdplane_callback cbfxn = nullptr, ncfdplane_done_cb donecbfxn = nullptr)
|
||
|
{
|
||
|
if (n == nullptr)
|
||
|
throw invalid_argument ("'n' must be a valid pointer");
|
||
|
create_subproc (*n, bin, opts, use_path, arg, env, cbfxn, donecbfxn);
|
||
|
}
|
||
|
|
||
|
explicit Subproc (Plane& n, const char* bin, bool use_path = true,
|
||
|
char* const arg[] = nullptr, char* const env[] = nullptr,
|
||
|
ncfdplane_callback cbfxn = nullptr, ncfdplane_done_cb donecbfxn = nullptr)
|
||
|
: Subproc (n, bin, nullptr, use_path, arg, env, cbfxn, donecbfxn)
|
||
|
{}
|
||
|
|
||
|
explicit Subproc (Plane& n, const char* bin, const ncsubproc_options* opts, bool use_path = true,
|
||
|
char* const arg[] = nullptr, char* const env[] = nullptr,
|
||
|
ncfdplane_callback cbfxn = nullptr, ncfdplane_done_cb donecbfxn = nullptr)
|
||
|
{
|
||
|
create_subproc (n, bin, opts, use_path, arg, env, cbfxn, donecbfxn);
|
||
|
}
|
||
|
|
||
|
~Subproc ()
|
||
|
{
|
||
|
if (is_notcurses_stopped ())
|
||
|
return;
|
||
|
|
||
|
ncsubproc_destroy (subproc);
|
||
|
}
|
||
|
|
||
|
Plane* get_plane () const noexcept
|
||
|
{
|
||
|
return Plane::map_plane (ncsubproc_plane (subproc));
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
void create_subproc (Plane& n, const char* bin, const ncsubproc_options* opts, bool use_path,
|
||
|
char* const arg[], char* const env[],
|
||
|
ncfdplane_callback cbfxn, ncfdplane_done_cb donecbfxn)
|
||
|
{
|
||
|
if (bin == nullptr)
|
||
|
throw invalid_argument ("'bin' must be a valid pointer");
|
||
|
|
||
|
if (opts == nullptr)
|
||
|
opts = &default_options;
|
||
|
|
||
|
if (use_path) {
|
||
|
if (env != nullptr) {
|
||
|
subproc = ncsubproc_createvpe (
|
||
|
n, opts, bin, arg, env, cbfxn, donecbfxn
|
||
|
);
|
||
|
} else {
|
||
|
subproc = ncsubproc_createvp (
|
||
|
n, opts, bin, arg, cbfxn, donecbfxn
|
||
|
);
|
||
|
}
|
||
|
} else {
|
||
|
subproc = ncsubproc_createv (
|
||
|
n, opts, bin, arg, cbfxn, donecbfxn
|
||
|
);
|
||
|
}
|
||
|
|
||
|
if (subproc == nullptr)
|
||
|
throw new init_error ("NotCurses failed to create ncsubproc instance");
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
ncsubproc *subproc;
|
||
|
};
|
||
|
}
|
||
|
#endif // __NCPP_SUBPROC_HH
|