BEGIN {
SdkExceptionHelper->send_exception_to_app_insights(
"SdkMessage"
,
"Javonet Sdk initialized"
);
}
sub
activate {
my
(
$self
,
$licenseKey
) =
@_
;
try
{
return
Transmitter->activate(
$licenseKey
);
}
catch
{
Javonet::Core::Exception::SdkExceptionHelper->send_exception_to_app_insights(
$_
,
"licenseFile"
);
die
(
$_
);
};
}
sub
in_memory {
return
RuntimeFactory->new(Javonet::Sdk::Internal::ConnectionType::get_connection_type(
'InMemory'
),
undef
,
undef
);
}
sub
tcp {
my
$class
=
shift
;
my
$address
=
shift
;
return
RuntimeFactory->new(Javonet::Sdk::Internal::ConnectionType::get_connection_type(
'Tcp'
),
$address
,
undef
);
}
sub
with_config {
my
(
$self
,
$config_path
) =
@_
;
try
{
Transmitter->set_config_source(
$config_path
);
return
RuntimeFactory->new(Javonet::Sdk::Internal::ConnectionType::get_connection_type(
'WithConfig'
),
undef
,
$config_path
);
}
catch
{
SdkExceptionHelper->send_exception_to_app_insights(
"SdkException"
,
$_
);
die
$_
;
};
}
sub
get_runtime_info() {
RuntimeLogger->get_runtime_info();
}
sub
set_config_source {
my
(
$self
,
$config_path
) =
@_
;
try
{
Transmitter->set_config_source(
$config_path
);
}
catch
{
SdkExceptionHelper->send_exception_to_app_insights(
"SdkException"
,
$_
);
die
$_
;
};
}
sub
set_javonet_working_directory {
my
(
$self
,
$path
) =
@_
;
try
{
$path
=~ s{\\}{/}g;
$path
.=
'/'
unless
$path
=~ m{/$};
mkdir
$path
, 0700
unless
-d
$path
;
Transmitter->set_javonet_working_directory(
$path
);
}
catch
{
SdkExceptionHelper->send_exception_to_app_insights(
"SdkException"
,
$_
);
die
$_
;
};
}
1;