Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2707451
main.rs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
7 KB
Referenced Files
None
Subscribers
None
main.rs
View Options
mod
cli
;
mod
daemon
;
mod
globals
;
mod
webui
;
use
clap
::{
Parser
,
Subcommand
};
use
clap_verbosity_flag
::{
LogLevel
,
Verbosity
};
use
macros_rs
::{
str
,
string
,
then
};
use
update_informer
::{
registry
,
Check
};
use
crate
::{
cli
::{
internal
::
Internal
,
Args
,
Item
},
globals
::
defaults
,
};
#[derive(Copy, Clone, Debug, Default)]
struct
NoneLevel
;
impl
LogLevel
for
NoneLevel
{
fn
default
()
->
Option
<
log
::
Level
>
{
None
}
}
#[derive(Parser)]
#[command(version = str!(cli::get_version(false)))]
struct
Cli
{
#[command(subcommand)]
command
:
Commands
,
#[clap(flatten)]
verbose
:
Verbosity
<
NoneLevel
>
,
}
#[derive(Subcommand)]
enum
Daemon
{
/// Reset process index
#[command(visible_alias =
"reset_position"
)]
Reset
,
/// Stop daemon
#[command(visible_alias =
"kill"
)]
Stop
,
/// Restart daemon
#[command(visible_alias =
"restart"
, visible_alias =
"start"
)]
Restore
{
/// Daemon api
#[arg(long)]
api
:
bool
,
/// WebUI using api
#[arg(long)]
webui
:
bool
,
},
/// Check daemon health
#[command(visible_alias =
"info"
, visible_alias =
"status"
)]
Health
{
/// Format output
#[arg(long, default_value_t = string!(
"default"
))]
format
:
String
,
},
}
#[derive(Subcommand)]
enum
Server
{
/// Add new server
#[command(visible_alias =
"add"
)]
New
,
/// List servers
#[command(visible_alias =
"ls"
)]
List
{
/// Format output
#[arg(long, default_value_t = string!(
"default"
))]
format
:
String
,
},
/// Remove server
#[command(visible_alias =
"rm"
, visible_alias =
"delete"
)]
Remove
{
/// Server name
name
:
String
,
},
/// Set default server
#[command(visible_alias =
"set"
)]
Default
{
/// Server name
name
:
Option
<
String
>
,
},
}
// add pmc restore command
#[derive(Subcommand)]
enum
Commands
{
/// Start/Restart a process
#[command(visible_alias =
"restart"
)]
Start
{
/// Process name
#[arg(long)]
name
:
Option
<
String
>
,
#[clap(value_parser = cli::validate::<Args>)]
args
:
Args
,
/// Watch to reload path
#[arg(long)]
watch
:
Option
<
String
>
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Stop/Kill a process
#[command(visible_alias =
"kill"
)]
Stop
{
#[clap(value_parser = cli::validate::<Item>)]
item
:
Item
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Stop then remove a process
#[command(visible_alias =
"rm"
, visible_alias =
"delete"
)]
Remove
{
#[clap(value_parser = cli::validate::<Item>)]
item
:
Item
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Get env of a process
#[command(visible_alias =
"cmdline"
)]
Env
{
#[clap(value_parser = cli::validate::<Item>)]
item
:
Item
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Get information of a process
#[command(visible_alias =
"info"
)]
Details
{
#[clap(value_parser = cli::validate::<Item>)]
item
:
Item
,
/// Format output
#[arg(long, default_value_t = string!(
"default"
))]
format
:
String
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// List all processes
#[command(visible_alias =
"ls"
)]
List
{
/// Format output
#[arg(long, default_value_t = string!(
"default"
))]
format
:
String
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Restore all processes
#[command(visible_alias =
"resurrect"
)]
Restore
{
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Save all processes to dumpfile
#[command(visible_alias =
"store"
)]
Save
{
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Get logs from a process
Logs
{
#[clap(value_parser = cli::validate::<Item>)]
item
:
Item
,
#[arg(long, default_value_t = 15, help =
""
)]
lines
:
usize
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Flush a process log
#[command(visible_alias =
"clean"
, visible_alias =
"log_rotate"
)]
Flush
{
#[clap(value_parser = cli::validate::<Item>)]
item
:
Item
,
/// Server
#[arg(short, long)]
server
:
Option
<
String
>
,
},
/// Daemon management
#[command(visible_alias =
"agent"
, visible_alias =
"bgd"
)]
Daemon
{
#[command(subcommand)]
command
:
Daemon
,
},
/// Server management
#[command(visible_alias =
"remote"
, visible_alias =
"srv"
)]
Server
{
#[command(subcommand)]
command
:
Server
,
},
}
fn
main
()
{
let
cli
=
Cli
::
parse
();
let
mut
env
=
env_logger
::
Builder
::
new
();
let
level
=
cli
.
verbose
.
log_level_filter
();
let
informer
=
update_informer
::
new
(
registry
::
Crates
,
"pmc"
,
env!
(
"CARGO_PKG_VERSION"
));
if
let
Some
(
version
)
=
informer
.
check_version
().
ok
().
flatten
()
{
println!
(
"{} New version is available: {version}"
,
*
pmc
::
helpers
::
WARN
);
}
globals
::
init
();
env
.
filter_level
(
level
).
init
();
match
&
cli
.
command
{
Commands
::
Start
{
name
,
args
,
watch
,
server
}
=>
cli
::
start
(
name
,
args
,
watch
,
&
defaults
(
server
)),
Commands
::
Stop
{
item
,
server
}
=>
cli
::
stop
(
item
,
&
defaults
(
server
)),
Commands
::
Remove
{
item
,
server
}
=>
cli
::
remove
(
item
,
&
defaults
(
server
)),
Commands
::
Restore
{
server
}
=>
Internal
::
restore
(
&
defaults
(
server
)),
Commands
::
Save
{
server
}
=>
Internal
::
save
(
&
defaults
(
server
)),
Commands
::
Env
{
item
,
server
}
=>
cli
::
env
(
item
,
&
defaults
(
server
)),
Commands
::
Details
{
item
,
format
,
server
}
=>
cli
::
info
(
item
,
format
,
&
defaults
(
server
)),
Commands
::
List
{
format
,
server
}
=>
Internal
::
list
(
format
,
&
defaults
(
server
)),
Commands
::
Logs
{
item
,
lines
,
server
}
=>
cli
::
logs
(
item
,
lines
,
&
defaults
(
server
)),
Commands
::
Flush
{
item
,
server
}
=>
cli
::
flush
(
item
,
&
defaults
(
server
)),
Commands
::
Daemon
{
command
}
=>
match
command
{
Daemon
::
Stop
=>
daemon
::
stop
(),
Daemon
::
Reset
=>
daemon
::
reset
(),
Daemon
::
Health
{
format
}
=>
daemon
::
health
(
format
),
Daemon
::
Restore
{
api
,
webui
}
=>
daemon
::
restart
(
api
,
webui
,
level
.
as_str
()
!=
"OFF"
),
},
Commands
::
Server
{
command
}
=>
match
command
{
Server
::
New
=>
cli
::
server
::
new
(),
Server
::
Remove
{
name
}
=>
cli
::
server
::
remove
(
name
),
Server
::
Default
{
name
}
=>
cli
::
server
::
default
(
name
),
Server
::
List
{
format
}
=>
cli
::
server
::
list
(
format
,
cli
.
verbose
.
log_level
()),
},
};
if
!
matches!
(
&
cli
.
command
,
Commands
::
Daemon
{
..
})
&&
!
matches!
(
&
cli
.
command
,
Commands
::
Server
{
..
})
&&
!
matches!
(
&
cli
.
command
,
Commands
::
Save
{
..
})
&&
!
matches!
(
&
cli
.
command
,
Commands
::
Env
{
..
})
{
then
!
(
!
daemon
::
pid
::
exists
(),
daemon
::
restart
(
&
false
,
&
false
,
false
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sun, Feb 1, 3:17 PM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
494586
Default Alt Text
main.rs (7 KB)
Attached To
Mode
rPMC Process Management Controller
Attached
Detach File
Event Timeline
Log In to Comment