-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b39a848
Showing
18 changed files
with
8,022 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Revision history for Perl extension Hash::v10. | ||
|
||
0.01 Wed Feb 4 15:39:00 2015 | ||
- original version; created by h2xs 1.23 with options | ||
-n Hash::v10 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Changes | ||
Makefile.PL | ||
MANIFEST | ||
ppport.h | ||
README | ||
v10.xs | ||
t/Hash-v10.t | ||
fallback/const-c.inc | ||
fallback/const-xs.inc | ||
lib/Hash/v10.pm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
use 5.010001; | ||
use ExtUtils::MakeMaker; | ||
# See lib/ExtUtils/MakeMaker.pm for details of how to influence | ||
# the contents of the Makefile that is written. | ||
WriteMakefile( | ||
NAME => 'Hash::v10', | ||
VERSION_FROM => 'lib/Hash/v10.pm', # finds $VERSION | ||
PREREQ_PM => {}, # e.g., Module::Name => 1.1 | ||
($] >= 5.005 ? ## Add these new keywords supported since 5.005 | ||
(ABSTRACT_FROM => 'lib/Hash/v10.pm', # retrieve abstract from module | ||
AUTHOR => 'Robert Stone <[email protected]>') : ()), | ||
BUILD_REQUIRES => { | ||
'App::perlbrew' => '0.66', | ||
}, | ||
LIBS => [''], # e.g., '-lm' | ||
DEFINE => '', # e.g., '-DHAVE_SOMETHING' | ||
INC => '-I.', # e.g., '-I. -I/usr/include/other' | ||
# Un-comment this if you add C files to link with later: | ||
#OBJECT => '$(O_FILES)', # link all the C files too | ||
dynamic_lib => { | ||
INST_DYNAMIC_DEP => '$(INST_ARCHAUTODIR)/libhv.$(DLEXT)', | ||
OTHERLDFLAGS => '-L$(INST_ARCHAUTODIR) -Wl,-rpath=$(INST_ARCHAUTODIR):'. | ||
'$(PERL_ARCHLIB)/auto/$(FULLEXT) -lhv ', | ||
}, | ||
); | ||
if (eval {require ExtUtils::Constant; 1}) { | ||
# If you edit these definitions to change the constants used by this module, | ||
# you will need to use the generated const-c.inc and const-xs.inc | ||
# files to replace their "fallback" counterparts before distributing your | ||
# changes. | ||
my @names = (qw()); | ||
ExtUtils::Constant::WriteConstants( | ||
NAME => 'Hash::v10', | ||
NAMES => \@names, | ||
DEFAULT_TYPE => 'IV', | ||
C_FILE => 'const-c.inc', | ||
XS_FILE => 'const-xs.inc', | ||
); | ||
|
||
} | ||
else { | ||
use File::Copy; | ||
use File::Spec; | ||
foreach my $file ('const-c.inc', 'const-xs.inc') { | ||
my $fallback = File::Spec->catfile('fallback', $file); | ||
copy ($fallback, $file) or die "Can't copy $fallback to $file: $!"; | ||
} | ||
} | ||
sub MY::postamble { q{ | ||
LIBHV = libhv.so | ||
src/$(LIBHV): | ||
$(MAKE) -C src brew $(PASSTHRU) | ||
$(MAKE) -C src $(LIBHV) $(PASSTHRU) | ||
$(INST_DYNAMIC_DEP): src/$(LIBHV) | ||
install -m 755 $< $@ | ||
clean :: | ||
$(MAKE) -C src clean | ||
.PHONY : src/$(LIBHV) | ||
} } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Hash-v10 version 0.01 | ||
===================== | ||
|
||
This provides a perl v5.10 compatible hash. It is intended as a last | ||
resort for porting stubborn code across the "Hash randomization" feature | ||
in perl v5.18 and above. It achieves this by embedding a perl v5.10 | ||
interpeters HV implementation, and allowing you to tie() specific hashes | ||
back to having earlier hash semantics. | ||
|
||
INSTALLATION | ||
|
||
To install this module type the following: | ||
|
||
perl Makefile.PL | ||
make | ||
make test | ||
make install | ||
|
||
DEPENDENCIES | ||
|
||
This module requires these other modules and libraries: | ||
|
||
perlbrew | ||
|
||
COPYRIGHT AND LICENCE | ||
|
||
Put the correct copyright and licence information here. | ||
|
||
Copyright (C) 2015 by Robert Stone | ||
|
||
This library is free software; you can redistribute it and/or modify | ||
it under the same terms as Perl itself, either Perl version 5.18.2 or, | ||
at your option, any later version of Perl 5 you may have available. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#define PERL_constant_NOTFOUND 1 | ||
#define PERL_constant_NOTDEF 2 | ||
#define PERL_constant_ISIV 3 | ||
#define PERL_constant_ISNO 4 | ||
#define PERL_constant_ISNV 5 | ||
#define PERL_constant_ISPV 6 | ||
#define PERL_constant_ISPVN 7 | ||
#define PERL_constant_ISSV 8 | ||
#define PERL_constant_ISUNDEF 9 | ||
#define PERL_constant_ISUV 10 | ||
#define PERL_constant_ISYES 11 | ||
|
||
#ifndef NVTYPE | ||
typedef double NV; /* 5.6 and later define NVTYPE, and typedef NV to it. */ | ||
#endif | ||
#ifndef aTHX_ | ||
#define aTHX_ /* 5.6 or later define this for threading support. */ | ||
#endif | ||
#ifndef pTHX_ | ||
#define pTHX_ /* 5.6 or later define this for threading support. */ | ||
#endif | ||
|
||
static int | ||
constant (pTHX_ const char *name, STRLEN len) { | ||
/* Initially switch on the length of the name. */ | ||
/* When generated this function returned values for the list of names given | ||
in this section of perl code. Rather than manually editing these functions | ||
to add or remove constants, which would result in this comment and section | ||
of code becoming inaccurate, we recommend that you edit this section of | ||
code, and use it to regenerate a new set of constant functions which you | ||
then use to replace the originals. | ||
Regenerate these constant functions by feeding this entire source file to | ||
perl -x | ||
#!/usr/bin/perl -w | ||
use ExtUtils::Constant qw (constant_types C_constant XS_constant); | ||
my $types = {map {($_, 1)} qw()}; | ||
my @names = (qw()); | ||
print constant_types(), "\n"; # macro defs | ||
foreach (C_constant ("Hash::v10", 'constant', 'IV', $types, undef, 3, @names) ) { | ||
print $_, "\n"; # C constant subs | ||
} | ||
print "\n#### XS Section:\n"; | ||
print XS_constant ("Hash::v10", $types); | ||
__END__ | ||
*/ | ||
|
||
switch (len) { | ||
} | ||
return PERL_constant_NOTFOUND; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
void | ||
constant(sv) | ||
PREINIT: | ||
#ifdef dXSTARG | ||
dXSTARG; /* Faster if we have it. */ | ||
#else | ||
dTARGET; | ||
#endif | ||
STRLEN len; | ||
int type; | ||
/* IV iv; Uncomment this if you need to return IVs */ | ||
/* NV nv; Uncomment this if you need to return NVs */ | ||
/* const char *pv; Uncomment this if you need to return PVs */ | ||
INPUT: | ||
SV * sv; | ||
const char * s = SvPV(sv, len); | ||
PPCODE: | ||
type = constant(aTHX_ s, len); | ||
/* Return 1 or 2 items. First is error message, or undef if no error. | ||
Second, if present, is found value */ | ||
switch (type) { | ||
case PERL_constant_NOTFOUND: | ||
sv = | ||
sv_2mortal(newSVpvf("%s is not a valid Hash::v10 macro", s)); | ||
PUSHs(sv); | ||
break; | ||
case PERL_constant_NOTDEF: | ||
sv = sv_2mortal(newSVpvf( | ||
"Your vendor has not defined Hash::v10 macro %s, used", | ||
s)); | ||
PUSHs(sv); | ||
break; | ||
/* Uncomment this if you need to return IVs | ||
case PERL_constant_ISIV: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHi(iv); | ||
break; */ | ||
/* Uncomment this if you need to return NOs | ||
case PERL_constant_ISNO: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHs(&PL_sv_no); | ||
break; */ | ||
/* Uncomment this if you need to return NVs | ||
case PERL_constant_ISNV: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHn(nv); | ||
break; */ | ||
/* Uncomment this if you need to return PVs | ||
case PERL_constant_ISPV: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHp(pv, strlen(pv)); | ||
break; */ | ||
/* Uncomment this if you need to return PVNs | ||
case PERL_constant_ISPVN: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHp(pv, iv); | ||
break; */ | ||
/* Uncomment this if you need to return SVs | ||
case PERL_constant_ISSV: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHs(sv); | ||
break; */ | ||
/* Uncomment this if you need to return UNDEFs | ||
case PERL_constant_ISUNDEF: | ||
break; */ | ||
/* Uncomment this if you need to return UVs | ||
case PERL_constant_ISUV: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHu((UV)iv); | ||
break; */ | ||
/* Uncomment this if you need to return YESs | ||
case PERL_constant_ISYES: | ||
EXTEND(SP, 1); | ||
PUSHs(&PL_sv_undef); | ||
PUSHs(&PL_sv_yes); | ||
break; */ | ||
default: | ||
sv = sv_2mortal(newSVpvf( | ||
"Unexpected return type %d while processing Hash::v10 macro %s, used", | ||
type, s)); | ||
PUSHs(sv); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#define PERL_constant_NOTFOUND 1 | ||
#define PERL_constant_NOTDEF 2 | ||
#define PERL_constant_ISIV 3 | ||
#define PERL_constant_ISNO 4 | ||
#define PERL_constant_ISNV 5 | ||
#define PERL_constant_ISPV 6 | ||
#define PERL_constant_ISPVN 7 | ||
#define PERL_constant_ISSV 8 | ||
#define PERL_constant_ISUNDEF 9 | ||
#define PERL_constant_ISUV 10 | ||
#define PERL_constant_ISYES 11 | ||
|
||
#ifndef NVTYPE | ||
typedef double NV; /* 5.6 and later define NVTYPE, and typedef NV to it. */ | ||
#endif | ||
#ifndef aTHX_ | ||
#define aTHX_ /* 5.6 or later define this for threading support. */ | ||
#endif | ||
#ifndef pTHX_ | ||
#define pTHX_ /* 5.6 or later define this for threading support. */ | ||
#endif | ||
|
||
static int | ||
constant (pTHX_ const char *name, STRLEN len) { | ||
/* Initially switch on the length of the name. */ | ||
/* When generated this function returned values for the list of names given | ||
in this section of perl code. Rather than manually editing these functions | ||
to add or remove constants, which would result in this comment and section | ||
of code becoming inaccurate, we recommend that you edit this section of | ||
code, and use it to regenerate a new set of constant functions which you | ||
then use to replace the originals. | ||
Regenerate these constant functions by feeding this entire source file to | ||
perl -x | ||
#!/usr/bin/perl -w | ||
use ExtUtils::Constant qw (constant_types C_constant XS_constant); | ||
my $types = {map {($_, 1)} qw()}; | ||
my @names = (qw()); | ||
print constant_types(), "\n"; # macro defs | ||
foreach (C_constant ("Hash::v10", 'constant', 'IV', $types, undef, 3, @names) ) { | ||
print $_, "\n"; # C constant subs | ||
} | ||
print "\n#### XS Section:\n"; | ||
print XS_constant ("Hash::v10", $types); | ||
__END__ | ||
*/ | ||
|
||
switch (len) { | ||
} | ||
return PERL_constant_NOTFOUND; | ||
} | ||
|
Oops, something went wrong.