Skip to content

Instantly share code, notes, and snippets.

@wchristian
Created February 21, 2015 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wchristian/2c7de7e7b172c807c805 to your computer and use it in GitHub Desktop.
Save wchristian/2c7de7e7b172c807c805 to your computer and use it in GitHub Desktop.
package Alien::SDL::ConfigData;
use strict;
my $arrayref = eval do {local $/; <DATA>}
or die "Couldn't load ConfigData data: $@";
close DATA;
my ($config, $features, $auto_features) = @$arrayref;
sub config { $config->{$_[1]} }
sub set_config { $config->{$_[1]} = $_[2] }
sub set_feature { $features->{$_[1]} = 0+!!$_[2] } # Constrain to 1 or 0
sub auto_feature_names { grep !exists $features->{$_}, keys %$auto_features }
sub feature_names {
my @features = (keys %$features, auto_feature_names());
@features;
}
sub config_names { keys %$config }
sub write {
my $me = __FILE__;
# Can't use Module::Build::Dumper here because M::B is only a
# build-time prereq of this module
require Data::Dumper;
my $mode_orig = (stat $me)[2] & 07777;
chmod($mode_orig | 0222, $me); # Make it writeable
open(my $fh, '+<', $me) or die "Can't rewrite $me: $!";
seek($fh, 0, 0);
while (<$fh>) {
last if /^__DATA__$/;
}
die "Couldn't find __DATA__ token in $me" if eof($fh);
seek($fh, tell($fh), 0);
my $data = [$config, $features, $auto_features];
print($fh 'do{ my '
. Data::Dumper->new([$data],['x'])->Purity(1)->Dump()
. '$x; }' );
truncate($fh, tell($fh));
close $fh;
chmod($mode_orig, $me)
or warn "Couldn't restore permissions on $me: $!";
}
sub feature {
my ($package, $key) = @_;
return $features->{$key} if exists $features->{$key};
my $info = $auto_features->{$key} or return 0;
# Under perl 5.005, each(%$foo) isn't working correctly when $foo
# was reanimated with Data::Dumper and eval(). Not sure why, but
# copying to a new hash seems to solve it.
my %info = %$info;
require Module::Build; # XXX should get rid of this
while (my ($type, $prereqs) = each %info) {
next if $type eq 'description' || $type eq 'recommends';
my %p = %$prereqs; # Ditto here.
while (my ($modname, $spec) = each %p) {
my $status = Module::Build->check_installed_status($modname, $spec);
if ((!$status->{ok}) xor ($type =~ /conflicts$/)) { return 0; }
if ( ! eval "require $modname; 1" ) { return 0; }
}
}
return 1;
}
=head1 NAME
Alien::SDL::ConfigData - Configuration for Alien::SDL
=head1 SYNOPSIS
use Alien::SDL::ConfigData;
$value = Alien::SDL::ConfigData->config('foo');
$value = Alien::SDL::ConfigData->feature('bar');
@names = Alien::SDL::ConfigData->config_names;
@names = Alien::SDL::ConfigData->feature_names;
Alien::SDL::ConfigData->set_config(foo => $new_value);
Alien::SDL::ConfigData->set_feature(bar => $new_value);
Alien::SDL::ConfigData->write; # Save changes
=head1 DESCRIPTION
This module holds the configuration data for the C<Alien::SDL>
module. It also provides a programmatic interface for getting or
setting that configuration data. Note that in order to actually make
changes, you'll have to have write access to the C<Alien::SDL::ConfigData>
module, and you should attempt to understand the repercussions of your
actions.
=head1 METHODS
=over 4
=item config($name)
Given a string argument, returns the value of the configuration item
by that name, or C<undef> if no such item exists.
=item feature($name)
Given a string argument, returns the value of the feature by that
name, or C<undef> if no such feature exists.
=item set_config($name, $value)
Sets the configuration item with the given name to the given value.
The value may be any Perl scalar that will serialize correctly using
C<Data::Dumper>. This includes references, objects (usually), and
complex data structures. It probably does not include transient
things like filehandles or sockets.
=item set_feature($name, $value)
Sets the feature with the given name to the given boolean value. The
value will be converted to 0 or 1 automatically.
=item config_names()
Returns a list of all the names of config items currently defined in
C<Alien::SDL::ConfigData>, or in scalar context the number of items.
=item feature_names()
Returns a list of all the names of features currently defined in
C<Alien::SDL::ConfigData>, or in scalar context the number of features.
=item auto_feature_names()
Returns a list of all the names of features whose availability is
dynamically determined, or in scalar context the number of such
features. Does not include such features that have later been set to
a fixed value.
=item write()
Commits any changes from C<set_config()> and C<set_feature()> to disk.
Requires write access to the C<Alien::SDL::ConfigData> module.
=back
=head1 AUTHOR
C<Alien::SDL::ConfigData> was automatically created using C<Module::Build>.
C<Module::Build> was written by Ken Williams, but he holds no
authorship claim or copyright claim to the contents of C<Alien::SDL::ConfigData>.
=cut
__DATA__
do{ my $x = [
{
'config' => {
'prefix' => '@PrEfIx@\\bin\\..\\',
'ld_paths' => [],
'cflags' => '-I"@PrEfIx@\\bin\\..\\include\\SDL" -D_GNU_SOURCE=1 -Dmain=SDL_main',
'libs' => '-L"@PrEfIx@\\bin\\..\\lib" -lmingw32 -lSDLmain -lSDL -mwindows',
'ld_shared_libs' => [],
'ld_shlib_map' => {},
'version' => '1.2.14'
},
'build_prefix' => 'sharedir\\1.444_a1ddf79e',
'script' => '',
'share_subdir' => '1.444_a1ddf79e',
'build_os' => 'MSWin32',
'build_params' => {
'arch_re' => qr/^MSWin32-x86-multi-thread(-64int)?$/,
'cc_re' => qr/gcc/,
'sha1sum' => '98409ddeb649024a9cc1ab8ccb2ca7e8fe804fd8',
'title' => 'Binaries Win/32bit SDL-1.2.14 (extended, 20100704) RECOMMENDED
(gfx, image, mixer, net, smpeg, ttf, sound, svg, rtf, Pango)',
'url' => [
'http://strawberryperl.com/package/kmx/sdl/Win32_SDL-1.2.14-extended-bin_20100704.zip',
'http://froggs.de/libsdl/Win32_SDL-1.2.14-extended-bin_20100704.zip'
],
'os_re' => qr/^MSWin32$/,
'buildtype' => 'use_prebuilt_binaries'
},
'additional_libs' => '',
'build_arch' => 'MSWin32-x86-multi-thread-64int',
'additional_cflags' => '-I"@PrEfIx@/include" -I"@PrEfIx@/include/smpeg" ',
'build_cc' => 'gcc'
},
{},
{}
];
$x; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment