use
Dancer
qw/:syntax :script/
;
__PACKAGE__->attributes(
qw/ runner stdin stdout context /
);
sub
init {
my
(
$class
,
$instance
) =
@_
;
my
(
$stdin
,
$stdout
);
$instance
->stdin( \
$stdin
);
$instance
->stdout( \
$stdout
);
$instance
->context( File::Temp->new() );
my
$cmd
= [ py_cmd(
'run_worklet'
),
$instance
->context->filename ];
debug
"\N{SNAKE} starting persistent Python worklet subprocess"
;
$instance
->runner( harness(
(
$ENV
{ND2_PYTHON_HARNESS_DEBUG} ? (
debug
=> 1) : ()),
$cmd
,
'<'
, \
$stdin
,
'1>'
, \
$stdout
,
'2>'
,
sub
{ debug
$_
[0] },
) );
debug
$instance
->context
if
$ENV
{ND2_PYTHON_HARNESS_DEBUG};
return
$instance
;
}
sub
py_worklet {
my
(
$self
,
$job
,
$workerconf
) =
@_
;
my
$action
=
$workerconf
->{action};
my
$coder
= JSON::PP->new->utf8(1)
->allow_nonref(1)
->allow_unknown(1)
->allow_blessed(1)
->allow_bignum(1);
$ENV
{
'ND2_JOB_METADATA'
} =
$coder
->encode( {
%$job
,
device
=> ((
$job
->device ||
''
) .
''
) } );
$ENV
{
'ND2_CONFIGURATION'
} =
$coder
->encode( config() );
$ENV
{
'ND2_FSM_TEMPLATES'
} = Path::Class::Dir->new( dist_dir(
'App-Netdisco'
) )
->subdir(
'python'
)->subdir(
'tfsm'
)->stringify;
my
$inref
=
$self
->stdin;
my
$outref
=
$self
->stdout;
write_text(
$self
->context->filename,
$coder
->encode( {
vars
=> vars() } ));
$$outref
=
''
;
$$inref
=
$workerconf
->{pyworklet} .
"\n"
;
$self
->runner->pump
until
(
$$outref
and
$$outref
=~ /^\.\Z/m);
my
$context
= read_text(
$self
->context->filename);
truncate
(
$self
->context, 0);
my
$retdata
=
try
{ YAML::XS::Load(decode_base64(
$context
)) };
$retdata
= {}
if
not
ref
$retdata
or
'HASH'
ne
ref
$retdata
;
my
$status
=
$retdata
->{status} ||
''
;
my
$log
=
$retdata
->{
log
}
|| (
$status
eq
'done'
? (
sprintf
'%s exit OK'
,
$action
)
: (
sprintf
'%s exit with status "%s"'
,
$action
,
$status
));
var(
$_
=>
$retdata
->{stash}->{
$_
})
for
keys
%{
$retdata
->{stash} || {} };
var(
live_python
=> true);
return
Status->
$status
(
$log
);
}
true;