mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-10-31 15:20:13 +00:00
e23d5baea4
Added: * class FDPlane (`ncfdplane*`) * class Subproc (`ncsubproc*`) * NotCurses: get_inputready_fd (`notcurses_inputready_fd`) * Plane: qrcode (`ncplane_qrcode`) * class PlotBase: templated base class for Plot variations * class PlotU: `uint64_t` instantiation of PlotBase (aliased to previous `Plot` class for source compatibility), `ncuplot*` * class PlotD: `double` instantiation of PlotBase, `ncdplot*`
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
|