Bitcoin Core
31.1.0
P2P Digital Currency
Toggle main menu visibility
Loading...
Searching...
No Matches
src
ipc
process.h
Go to the documentation of this file.
1
// Copyright (c) 2021-present The Bitcoin Core developers
2
// Distributed under the MIT software license, see the accompanying
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5
#ifndef BITCOIN_IPC_PROCESS_H
6
#define BITCOIN_IPC_PROCESS_H
7
8
#include <
util/fs.h
>
9
10
#include <memory>
11
#include <string>
12
13
namespace
ipc
{
14
class
Protocol
;
15
21
class
Process
22
{
23
public
:
24
virtual
~Process
() =
default
;
25
28
virtual
int
spawn
(
const
std::string& new_exe_name,
const
fs::path& argv0_path,
int
& pid) = 0;
29
31
virtual
int
waitSpawned
(
int
pid) = 0;
32
36
virtual
bool
checkSpawned
(
int
argc,
char
* argv[],
int
& fd) = 0;
37
39
virtual
int
connect
(
const
fs::path& data_dir,
40
const
std::string& dest_exe_name,
41
std::string& address) = 0;
42
44
virtual
int
bind
(
const
fs::path& data_dir,
45
const
std::string& exe_name,
46
std::string& address) = 0;
47
};
48
51
std::unique_ptr<Process>
MakeProcess
();
52
}
// namespace ipc
53
54
#endif
// BITCOIN_IPC_PROCESS_H
ipc::Process
Definition
process.h:22
ipc::Process::checkSpawned
virtual bool checkSpawned(int argc, char *argv[], int &fd)=0
ipc::Process::~Process
virtual ~Process()=default
ipc::Process::spawn
virtual int spawn(const std::string &new_exe_name, const fs::path &argv0_path, int &pid)=0
ipc::Process::connect
virtual int connect(const fs::path &data_dir, const std::string &dest_exe_name, std::string &address)=0
Canonicalize and connect to address, returning socket descriptor.
ipc::Process::bind
virtual int bind(const fs::path &data_dir, const std::string &exe_name, std::string &address)=0
Create listening socket, bind and canonicalize address, and return socket descriptor.
ipc::Process::waitSpawned
virtual int waitSpawned(int pid)=0
Wait for spawned process to exit and return its exit code.
ipc::Protocol
Definition
protocol.h:22
fs.h
ipc
Definition
ipc.h:12
ipc::MakeProcess
std::unique_ptr< Process > MakeProcess()
Definition
process.cpp:156
Generated on
for Bitcoin Core by
1.17.0