/usr/share/perl5/Audio/Nama/EngineSetup.pm is in nama 1.208-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | # ----------- Engine Setup and Teardown -----------
package Audio::Nama;
use Modern::Perl;
use Audio::Nama::Log qw(logpkg);
no warnings 'uninitialized';
sub generate_setup {
# return 1 if successful
# catch errors from generate_setup_try() and cleanup
logsub("&generate_setup");
# extra argument (setup code) will be passed to generate_setup_try()
# my ($extra_setup_code) = @_;
# save current track
local $this_track;
# prevent engine from starting an old setup
eval_iam('cs-disconnect') if eval_iam('cs-connected');
Audio::Nama::ChainSetup::initialize();
# this is our chance to save state without the noise
# of temporary tracks, avoiding the issue of getting diffs
# in the project data from each new chain setup.
autosave() if $config->{autosave} eq 'setup'
and $project->{name}
and $config->{use_git}
and $project->{repo};
# TODO: use try/catch
# catch errors unless testing (no-terminal option)
local $@ unless $config->{opts}->{T};
track_memoize(); # freeze track state
my $success = $config->{opts}->{T} # don't catch errors during testing
? Audio::Nama::ChainSetup::generate_setup_try(@_)
: eval { Audio::Nama::ChainSetup::generate_setup_try(@_) };
track_unmemoize(); # unfreeze track state
if ($@){
throw("error caught while generating setup: $@");
Audio::Nama::ChainSetup::initialize();
return
}
$success;
}
{ my $old_offset_run_status;
sub reconfigure_engine {
logsub("&reconfigure_engine");
my $force = shift;
# skip if command line option is set
# don't skip if $force argument given
return if ($config->{opts}->{R} or $config->{disable_auto_reconfigure})
and not $force;
# don't disturb recording/mixing
return if Audio::Nama::ChainSetup::really_recording() and engine_running();
# store a lists of wav-recording tracks for the rerecord
# function
restart_wav_memoize(); # check if someone has snuck in some files
find_duplicate_inputs(); # we will warn the user later
if( $force or $setup->{changed} ){
logpkg(__FILE__,__LINE__,'debug',"reconfigure requested");
$setup->{_old_snapshot} = status_snapshot_string();
}
else {
my $old = $setup->{_old_snapshot};
my $current = $setup->{_old_snapshot} = status_snapshot_string();
if ( $current eq $old){
logpkg(__FILE__,__LINE__,'debug',"no change in setup");
return;
}
logpkg(__FILE__,__LINE__,'debug',"detected configuration change");
logpkg(__FILE__,__LINE__,'debug', diff(\$old, \$current));
}
$setup->{changed} = 0 ; # reset for next time
$old_offset_run_status = $mode->{offset_run};
process_command('show_tracks');
{ local $quiet = 1; stop_transport() }
trigger_rec_cleanup_hooks();
trigger_rec_setup_hooks();
$setup->{_old_rec_status} = {
map{$_->name => $_->rec_status } rec_hookable_tracks()
};
if ( generate_setup() ){
reset_latency_compensation() if $config->{opts}->{Q};
logpkg(__FILE__,__LINE__,'debug',"I generated a new setup");
{ local $quiet = 1; connect_transport() }
propagate_latency() if $config->{opts}->{Q} and $jack->{jackd_running};
show_status();
if ( Audio::Nama::ChainSetup::really_recording() )
{
$project->{playback_position} = 0
}
else
{
set_position($project->{playback_position}) if $project->{playback_position}
}
start_transport('quiet') if $mode->eager
and ($mode->doodle or $mode->preview);
transport_status();
$ui->flash_ready;
1
}
}
}
sub request_setup {
my ($package, $filename, $line) = caller();
logpkg(__FILE__,__LINE__,'debug',"reconfigure requested in file $filename:$line");
$setup->{changed}++
}
#### status_snapshot()
#
# hashref output for detecting if we need to reconfigure engine
# compared as YAML strings
# %status_snaphot indicates Nama's internal
# state. It consists of
# - the values of selected global variables
# - selected field values of each track
{
# these track fields will be inspected
my @relevant_track_fields = qw(
name
n
width
group
playat
region_start
region_end
looping
source_id
source_type
send_id
send_type
rec_status
current_version
);
sub status_snapshot {
my %snapshot = ( project => $project->{name},
mastering_mode => $mode->mastering,
preview => $mode->{preview},
jack_running => $jack->{jackd_running},
tracks => [], );
map { push @{$snapshot{tracks}}, $_->snapshot(\@relevant_track_fields) }
grep{ $_->rec_status ne OFF } grep { $_->group ne 'Temp' } Audio::Nama::all_tracks();
\%snapshot;
}
sub status_snapshot_string {
my $json = json_out(status_snapshot());
# hack to avoid false diff due to string/numerical
# representation
$json =~ s/: "(\d+)"/: $1/g;
$json
}
}
sub find_duplicate_inputs { # in Main bus only
%{$setup->{tracks_with_duplicate_inputs}} = ();
%{$setup->{inputs_used}} = ();
logsub("&find_duplicate_inputs");
map{ my $source = $_->source;
$setup->{tracks_with_duplicate_inputs}->{$_->name}++ if $setup->{inputs_used}->{$source} ;
$setup->{inputs_used}->{$source} //= $_->name;
}
grep { $_->rw eq REC }
map{ $tn{$_} }
$bn{Main}->tracks(); # track names;
}
sub load_ecs {
my $setup = shift;
#say "setup file: $setup " . ( -e $setup ? "exists" : "");
return unless -e $setup;
#say "passed conditional";
teardown_engine();
eval_iam("cs-load $setup");
eval_iam("cs-select $setup"); # needed by Audio::Ecasound, but not Net-ECI !!
logpkg(__FILE__,__LINE__,'debug',sub{map{eval_iam($_)} qw(cs es fs st ctrl-status)});
1;
}
sub teardown_engine {
eval_iam("cs-disconnect") if eval_iam("cs-connected");
eval_iam("cs-remove") if eval_iam("cs-selected");
}
sub arm {
logsub("&arm");
exit_preview_mode();
reconfigure_engine('force');
}
# substitute all live inputs by clock-sync'ed
# Ecasound null device 'rtnull'
sub arm_rtnull {
local %Audio::Nama::IO::io_class = qw(
null_in Audio::Nama::IO::from_null
null_out Audio::Nama::IO::to_null
soundcard_in Audio::Nama::IO::from_rtnull
soundcard_out Audio::Nama::IO::to_rtnull
wav_in Audio::Nama::IO::from_wav
wav_out Audio::Nama::IO::to_wav
loop_source Audio::Nama::IO::from_loop
loop_sink Audio::Nama::IO::to_loop
jack_manual_in Audio::Nama::IO::from_rtnull
jack_manual_out Audio::Nama::IO::to_rtnull
jack_ports_list_in Audio::Nama::IO::from_rtnull
jack_ports_list_out Audio::Nama::IO::to_rtnull
jack_multi_in Audio::Nama::IO::from_rtnull
jack_multi_out Audio::Nama::IO::to_rtnull
jack_client_in Audio::Nama::IO::from_rtnull
jack_client_out Audio::Nama::IO::to_rtnull
);
arm();
}
sub connect_transport {
logsub("&connect_transport");
remove_riff_header_stubs();
register_other_ports(); # that don't belong to my upcoming instance
load_ecs($file->chain_setup) or throw("No chain setup, engine not ready."), return;
valid_engine_setup()
or throw("Invalid chain setup, engine not ready."),return;
find_op_offsets();
eval_iam('cs-connect');
#or throw("Failed to connect setup, engine not ready"),return;
apply_ops();
apply_fades();
my $status = eval_iam("engine-status");
if ($status ne 'not started'){
throw("Invalid chain setup, cannot connect engine.\n");
return;
}
eval_iam('engine-launch');
$status = eval_iam("engine-status");
if ($status ne 'stopped'){
throw("Failed to launch engine. Engine status: $status\n");
return;
}
$setup->{audio_length} = eval_iam('cs-get-length'); # returns zero if unknown
sync_effect_parameters();
register_own_ports(); # as distinct from other Nama instances
$ui->length_display(-text => colonize($setup->{audio_length}));
eval_iam("cs-set-length $setup->{audio_length}") if $tn{Mixdown}->rec_status eq REC and $setup->{audio_length};
$ui->clock_config(-text => colonize(0));
sleeper(0.2); # time for ecasound engine to launch
# set delay for seeking under JACK
# we use a heuristic based on the number of tracks
# but it should be based on the number of PLAY tracks
my $track_count; map{ $track_count++ } Audio::Nama::ChainSetup::engine_tracks();
$jack->{seek_delay} = $jack->{jackd_running}
? $config->{engine_base_jack_seek_delay} * ( 1 + $track_count / 20 )
: 0;
connect_jack_ports_list();
transport_status() unless $quiet;
$ui->flash_ready();
#print eval_iam("fs");
1;
}
sub transport_status {
map{
pager("Warning: $_: input ",$tn{$_}->source,
" is already used by track ",$setup->{inputs_used}->{$tn{$_}->source},".")
if $setup->{tracks_with_duplicate_inputs}->{$_};
} grep { $tn{$_}->rec_status eq REC } $bn{Main}->tracks;
# assume transport is stopped
# print looping status, setup length, current position
my $start = Audio::Nama::Mark::loop_start();
my $end = Audio::Nama::Mark::loop_end();
#print "start: $start, end: $end, loop_enable: $mode->{loop_enable}\n";
if (ref $setup->{cooked_record_pending} and %{$setup->{cooked_record_pending}}){
pager(join(" ", keys %{$setup->{cooked_record_pending}}), ": ready for caching");
}
if ($mode->{loop_enable} and $start and $end){
#if (! $end){ $end = $start; $start = 0}
pager("looping from ", heuristic_time($start),
"to ", heuristic_time($end));
}
pager("\nNow at: ", current_position());
pager("Engine is ". ( engine_running() ? "running." : "ready."));
pager("\nPress SPACE to start or stop engine.\n")
if $config->{press_space_to_start};
}
sub trigger_rec_setup_hooks {
map { system($_->rec_setup_script) }
grep
{
logpkg(__FILE__,__LINE__,'trace',
join "\n",
"track ".$_->name,
"rec status is: ".$_->rec_status,
"old rec status: ".$setup->{_old_rec_status}->{$_->name},
"script was ". (-e $_->rec_setup_script ) ? "found" : "not found"
);
$_->rec_status eq REC
and $setup->{_old_rec_status}->{$_->name} ne REC
and -e $_->rec_setup_script
}
rec_hookable_tracks();
}
sub trigger_rec_cleanup_hooks {
map { system($_->rec_cleanup_script) }
grep
{ $_->rec_status ne REC
and $setup->{_old_rec_status}->{$_->name} eq REC
and -e $_->rec_cleanup_script
}
rec_hookable_tracks();
}
1;
__END__
|