88 lines
2.2 KiB
C++
88 lines
2.2 KiB
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuProcess.Unix.hpp
|
|
File: Process.Linux.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#include <Source/IO/Loop/LSEvent.hpp>
|
|
|
|
#include <Source/IO/FS/FS.hpp>
|
|
#if defined(AURORA_IS_LINUX_DERIVED)
|
|
#include <Source/IO/UNIX/IOSubmit.Linux.hpp>
|
|
#include <Source/IO/FS/Async.Linux.hpp>
|
|
using ProcessPipeFileStream = Aurora::IO::FS::LinuxAsyncFileStream;
|
|
#else
|
|
#include <Source/IO/FS/Async.Unix.hpp>
|
|
using ProcessPipeFileStream = Aurora::IO::FS::UnixAsyncFileStream;
|
|
#endif
|
|
|
|
namespace Aurora::Processes
|
|
{
|
|
void DeinitUnix();
|
|
void InitUnix();
|
|
|
|
struct ProcessImpl : IProcess
|
|
{
|
|
ProcessImpl(StartupParameters &¶ms);
|
|
~ProcessImpl();
|
|
|
|
void ShutdownPipes();
|
|
|
|
bool TryKill() override;
|
|
bool Terminate() override;
|
|
AuSPtr<Threading::IWaitable> AsWaitable() override;
|
|
AuSPtr<IO::Loop::ILoopSource> AsLoopSource() override;
|
|
|
|
AuSInt GetExitCode() override;
|
|
|
|
AuUInt GetProcessId() override;
|
|
|
|
bool Read(EStandardHandle stream, const AuMemoryViewStreamWrite &destination, bool nonblock) override;
|
|
bool Write(const AuMemoryViewStreamRead &source) override;
|
|
|
|
AuSPtr<IO::IAsyncTransaction> NewAsyncTransaction() override;
|
|
AuSPtr<IO::IAsyncTransaction> NewErrorStreamAsyncTransaction() override;
|
|
|
|
bool Start() override;
|
|
|
|
bool Init();
|
|
|
|
void ByeLol(AuSInt code);
|
|
void ForkMain();
|
|
|
|
private:
|
|
|
|
int pipeStdOut_[2]{};
|
|
int pipeStdErr_[2]{};
|
|
int pipeStdIn_ [2]{};
|
|
|
|
bool bDontRelOut_ {};
|
|
bool bDontRelIn_ {};
|
|
bool bDontRelErr_ {};
|
|
|
|
AuSPtr<IO::Loop::ILSEvent> loopSource_;
|
|
|
|
AuSPtr<IO::IIOHandle> fsHandle_;
|
|
AuSPtr<ProcessPipeFileStream> fsStream_;
|
|
|
|
AuSPtr<IO::IIOHandle> fsErrorHandle_;
|
|
AuSPtr<ProcessPipeFileStream> fsErrorStream_;
|
|
|
|
AuThreadPrimitives::EventShared_t finished_;
|
|
|
|
StartupParameters startup_;
|
|
ESpawnType type_;
|
|
|
|
AuList<const char *> cargs_;
|
|
AuString debug_;
|
|
|
|
pid_t pidt_;
|
|
bool alive_ {};
|
|
|
|
AuSInt exitCode_;
|
|
};
|
|
} |