AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
Acore::AsyncProcessResultImplementation Class Reference
Inheritance diagram for Acore::AsyncProcessResultImplementation:
Acore::AsyncProcessResult

Public Member Functions

 AsyncProcessResultImplementation (std::string executable_, std::vector< std::string > args_, std::string logger_, std::string input_file_, bool secure)
 
 AsyncProcessResultImplementation (AsyncProcessResultImplementation const &)=delete
 
AsyncProcessResultImplementationoperator= (AsyncProcessResultImplementation const &)=delete
 
 AsyncProcessResultImplementation (AsyncProcessResultImplementation &&)=delete
 
AsyncProcessResultImplementationoperator= (AsyncProcessResultImplementation &&)=delete
 
int StartProcess ()
 
void SetFuture (std::future< int > result_)
 
std::future< int > & GetFutureResult () override
 
void Terminate () override
 Tries to terminate the process.
 
- Public Member Functions inherited from Acore::AsyncProcessResult
virtual ~AsyncProcessResult ()
 
virtual std::future< int > & GetFutureResult ()=0
 
virtual void Terminate ()=0
 Tries to terminate the process.
 

Private Attributes

std::string const executable
 
std::vector< std::string > const args
 
std::string const logger
 
std::string const input_file
 
bool const is_secure
 
std::atomic< bool > was_terminated
 
Optional< std::shared_ptr< std::future< int > > > result
 
Optional< std::reference_wrapper< child > > my_child
 

Detailed Description

Constructor & Destructor Documentation

◆ AsyncProcessResultImplementation() [1/3]

Acore::AsyncProcessResultImplementation::AsyncProcessResultImplementation ( std::string  executable_,
std::vector< std::string >  args_,
std::string  logger_,
std::string  input_file_,
bool  secure 
)
inlineexplicit
181 : executable(std::move(executable_)), args(std::move(args_)),
182 logger(std::move(logger_)), input_file(input_file_),
183 is_secure(secure), was_terminated(false) { }
std::vector< std::string > const args
Definition: StartProcess.cpp:167
std::string const input_file
Definition: StartProcess.cpp:169
bool const is_secure
Definition: StartProcess.cpp:170
std::string const logger
Definition: StartProcess.cpp:168
std::string const executable
Definition: StartProcess.cpp:166
std::atomic< bool > was_terminated
Definition: StartProcess.cpp:172

◆ AsyncProcessResultImplementation() [2/3]

Acore::AsyncProcessResultImplementation::AsyncProcessResultImplementation ( AsyncProcessResultImplementation const &  )
delete

◆ AsyncProcessResultImplementation() [3/3]

Acore::AsyncProcessResultImplementation::AsyncProcessResultImplementation ( AsyncProcessResultImplementation &&  )
delete

Member Function Documentation

◆ GetFutureResult()

std::future< int > & Acore::AsyncProcessResultImplementation::GetFutureResult ( )
inlineoverridevirtual

Returns the future which contains the result of the process as soon it is finished.

Implements Acore::AsyncProcessResult.

223 {
224 ASSERT(*result, "The process wasn't started!");
225 return **result;
226 }
#define ASSERT
Definition: Errors.h:68
Optional< std::shared_ptr< std::future< int > > > result
Definition: StartProcess.cpp:174

References ASSERT, and result.

◆ operator=() [1/2]

AsyncProcessResultImplementation & Acore::AsyncProcessResultImplementation::operator= ( AsyncProcessResultImplementation &&  )
delete

◆ operator=() [2/2]

AsyncProcessResultImplementation & Acore::AsyncProcessResultImplementation::operator= ( AsyncProcessResultImplementation const &  )
delete

◆ SetFuture()

void Acore::AsyncProcessResultImplementation::SetFuture ( std::future< int >  result_)
inline
216 {
217 result = std::make_shared<std::future<int>>(std::move(result_));
218 }

References result.

◆ StartProcess()

int Acore::AsyncProcessResultImplementation::StartProcess ( )
inline
191 {
192 ASSERT(!my_child, "Process started already!");
193
194 return CreateChildProcess([&](child& c) -> int
195 {
196 int exitCode;
197 my_child = std::reference_wrapper<child>(c);
198
199 try
200 {
201 c.wait();
202 exitCode = c.exit_code();
203 }
204 catch (...)
205 {
206 exitCode = EXIT_FAILURE;
207 }
208
209 my_child.reset();
210 return was_terminated ? EXIT_FAILURE : exitCode;
211
213 }
static int CreateChildProcess(T waiter, std::string const &executable, std::vector< std::string > const &argsVector, std::string const &logger, std::string const &input, bool secure)
Definition: StartProcess.cpp:70
Optional< std::reference_wrapper< child > > my_child
Definition: StartProcess.cpp:175

References args, ASSERT, Acore::CreateChildProcess(), executable, input_file, is_secure, logger, my_child, and was_terminated.

◆ Terminate()

void Acore::AsyncProcessResultImplementation::Terminate ( )
inlineoverridevirtual

Tries to terminate the process.

Implements Acore::AsyncProcessResult.

230 {
231 if (my_child)
232 {
233 was_terminated = true;
234 try
235 {
236 my_child->get().terminate();
237 }
238 catch (...)
239 {
240 // Do nothing
241 }
242 }
243 }

References my_child, and was_terminated.

Member Data Documentation

◆ args

std::vector<std::string> const Acore::AsyncProcessResultImplementation::args
private

Referenced by StartProcess().

◆ executable

std::string const Acore::AsyncProcessResultImplementation::executable
private

Referenced by StartProcess().

◆ input_file

std::string const Acore::AsyncProcessResultImplementation::input_file
private

Referenced by StartProcess().

◆ is_secure

bool const Acore::AsyncProcessResultImplementation::is_secure
private

Referenced by StartProcess().

◆ logger

std::string const Acore::AsyncProcessResultImplementation::logger
private

Referenced by StartProcess().

◆ my_child

Optional<std::reference_wrapper<child> > Acore::AsyncProcessResultImplementation::my_child
private

Referenced by StartProcess(), and Terminate().

◆ result

Optional<std::shared_ptr<std::future<int> > > Acore::AsyncProcessResultImplementation::result
private

Referenced by GetFutureResult(), and SetFuture().

◆ was_terminated

std::atomic<bool> Acore::AsyncProcessResultImplementation::was_terminated
private

Referenced by StartProcess(), and Terminate().