/usr/share/perl5/Audio/Nama/Globals.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 | package Audio::Nama::Globals;
use Modern::Perl;
# set aliases for common indices
*bn = \%Audio::Nama::Bus::by_name;
*tn = \%Audio::Nama::Track::by_name;
*ti = \%Audio::Nama::Track::by_index;
*mn = \%Audio::Nama::Mark::by_name;
*en = \%Audio::Nama::Engine::by_name;
*fi = \%Audio::Nama::Effect::by_id;
# and the graph
*g = \$Audio::Nama::ChainSetup::g;
use Exporter;
use constant {
REC => 'REC',
PLAY => 'PLAY',
MON => 'MON',
OFF => 'OFF',
};
our @ISA = 'Exporter';
our @EXPORT_OK = qw(
$this_track
$this_bus
$this_bus_o
$this_mark
$this_edit
$this_sequence
$this_engine
$this_user
$prompt
%tn
%ti
%bn
%mn
%en
%fi
$g
$debug
$debug2
$quiet
REC
MON
PLAY
OFF
$ui
$mode
$file
$graph
$setup
$config
$jack
$fx
$fx_cache
$text
$gui
$midi
$help
$mastering
$project
@tracks_data
@bus_data
@groups_data
@marks_data
@fade_data
@edit_data
@inserts_data
@effects_data
@global_effect_chain_vars
@global_effect_chain_data
@project_effect_chain_data
$this_track_name
%track_comments
%track_version_comments
@tracked_vars
@persistent_vars
);
our %EXPORT_TAGS =
(
trackrw => [qw(REC PLAY MON OFF)],
singletons => [qw(
$ui
$mode
$file
$graph
$setup
$config
$jack
$fx
$fx_cache
$text
$gui
$midi
$help
$mastering
$project
)],
var_lists => [qw(
@tracked_vars
@persistent_vars
@global_effect_chain_vars
)],
pronouns => [qw(
$this_track
$this_bus
$this_bus_o
$this_mark
$this_edit
$this_sequence
$this_engine
$this_user
$prompt
%tn
%ti
%bn
%mn
%en
%fi
$g
$debug
$debug2
$quiet
REC
MON
PLAY
OFF
)],
serialize => [qw(
@tracks_data
@bus_data
@groups_data
@marks_data
@fade_data
@edit_data
@inserts_data
@effects_data
@global_effect_chain_vars
@global_effect_chain_data
@project_effect_chain_data
$this_track_name
%track_comments
%track_version_comments
@tracked_vars
@persistent_vars
)],
);
our $ui = 'bullwinkle'; # for testing
{
my %seen;
push @{$EXPORT_TAGS{all}}, grep {!$seen{$_}++} @{$EXPORT_TAGS{$_}} foreach
keys %EXPORT_TAGS;
}
1;
__END__
=head1 NAME
Audio::Nama::Globals - Nama global variables
=head2 Exported
L<Audio::Nama::Globals> exports Nama globals,
which it gets by merging the contents
of the following files:
=over
=item F<var_pronouns>
Pronouns (e.g. C<$this_track>) and
indices (e.g. C<%tn>, get track by name)
=item F<var_serialize>
Marshalling variables for serializing/deserializing (e.g. C<@tracks_data>)
=item F<var_singletons>
Simple hash structures (such as C<$config>) or objects such
as F<$file> that aggregate data. The hashes can be invested
with object properties as need be.
=back
=head2 Other lists
=over
=item F<var_config>
Maps keys in F<.namarc> (e.g. I<mix_to_disk_format>) to the
corresponding Nama internal scalar (e.g. C<$config-E<gt>{mix_to_disk_format}>
=item F<var_keys>
List of allowed singleton hash keys.
Keys of variables appearing in ./var_singletons
should be listed in var_keys or in var_config.
Undeclared keys will trigger warnings during build.
=back
=head2 F<var_lists>
Declares lists of variables used in
serializing/deserializing.
=over
=item C<@global_effect_chain_vars>
Mainly user defined and system-wide effect chains,
stored in F<global_effect_chains.json> in the
Nama project root directory.
=item C<@tracked_vars>
These variables are saved to F<State.json> in the project
directory and placed under version control.
=item C<@persistent_vars>
These Variables saved to F<Aux.json>, I<not> under version control.
including project-specific effect-chain definitions,
and track/version comments.
=back
=cut
|