forked from lix-project/hydra
* Update to Catalyst 5.9.
This commit is contained in:
parent
6d81bafae4
commit
5f93e6437f
2
deps.nix
2
deps.nix
|
@ -9,7 +9,6 @@ with pkgs;
|
||||||
perlPackages.CatalystPluginSessionStateCookie
|
perlPackages.CatalystPluginSessionStateCookie
|
||||||
perlPackages.CatalystAuthenticationStoreDBIxClass
|
perlPackages.CatalystAuthenticationStoreDBIxClass
|
||||||
perlPackages.CatalystViewTT
|
perlPackages.CatalystViewTT
|
||||||
perlPackages.CatalystEngineHTTPPrefork
|
|
||||||
perlPackages.CatalystViewDownload
|
perlPackages.CatalystViewDownload
|
||||||
perlPackages.CatalystViewJSON
|
perlPackages.CatalystViewJSON
|
||||||
perlPackages.XMLSimple
|
perlPackages.XMLSimple
|
||||||
|
@ -31,5 +30,6 @@ with pkgs;
|
||||||
perlPackages.CryptRandPasswd
|
perlPackages.CryptRandPasswd
|
||||||
perlPackages.TestMore
|
perlPackages.TestMore
|
||||||
perlPackages.SysHostnameLong
|
perlPackages.SysHostnameLong
|
||||||
|
perlPackages.Starman
|
||||||
perlPackages.nixPerl
|
perlPackages.nixPerl
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,38 +1,10 @@
|
||||||
#! @perl@ -w -I@nix@/libexec/nix
|
#! @perl@
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use Getopt::Long;
|
|
||||||
use Pod::Usage;
|
|
||||||
eval "use Catalyst::Helper;";
|
|
||||||
|
|
||||||
if ($@) {
|
use Catalyst::ScriptRunner;
|
||||||
die <<END;
|
Catalyst::ScriptRunner->run('Hydra', 'Create');
|
||||||
To use the Catalyst development tools including catalyst.pl and the
|
|
||||||
generated script/myapp_create.pl you need Catalyst::Helper, which is
|
|
||||||
part of the Catalyst-Devel distribution. Please install this via a
|
|
||||||
vendor package or by running one of -
|
|
||||||
|
|
||||||
perl -MCPAN -e 'install Catalyst::Devel'
|
|
||||||
perl -MCPANPLUS -e 'install Catalyst::Devel'
|
|
||||||
END
|
|
||||||
}
|
|
||||||
|
|
||||||
my $force = 0;
|
|
||||||
my $mech = 0;
|
|
||||||
my $help = 0;
|
|
||||||
|
|
||||||
GetOptions(
|
|
||||||
'nonew|force' => \$force,
|
|
||||||
'mech|mechanize' => \$mech,
|
|
||||||
'help|?' => \$help
|
|
||||||
);
|
|
||||||
|
|
||||||
pod2usage(1) if ( $help || !$ARGV[0] );
|
|
||||||
|
|
||||||
my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
|
|
||||||
|
|
||||||
pod2usage(1) unless $helper->mk_component( 'Hydra', @ARGV );
|
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
||||||
|
@ -45,26 +17,28 @@ hydra_create.pl - Create a new Catalyst Component
|
||||||
hydra_create.pl [options] model|view|controller name [helper] [options]
|
hydra_create.pl [options] model|view|controller name [helper] [options]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-force don't create a .new file where a file to be created exists
|
--force don't create a .new file where a file to be created exists
|
||||||
-mechanize use Test::WWW::Mechanize::Catalyst for tests if available
|
--mechanize use Test::WWW::Mechanize::Catalyst for tests if available
|
||||||
-help display this help and exits
|
--help display this help and exits
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
hydra_create.pl controller My::Controller
|
hydra_create.pl controller My::Controller
|
||||||
hydra_create.pl controller My::Controller BindLex
|
|
||||||
hydra_create.pl -mechanize controller My::Controller
|
hydra_create.pl -mechanize controller My::Controller
|
||||||
hydra_create.pl view My::View
|
hydra_create.pl view My::View
|
||||||
hydra_create.pl view MyView TT
|
hydra_create.pl view HTML TT
|
||||||
hydra_create.pl view TT TT
|
|
||||||
hydra_create.pl model My::Model
|
hydra_create.pl model My::Model
|
||||||
hydra_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
|
hydra_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
|
||||||
dbi:SQLite:/tmp/my.db
|
dbi:SQLite:/tmp/my.db
|
||||||
hydra_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
|
hydra_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
|
||||||
dbi:Pg:dbname=foo root 4321
|
[Loader opts like db_schema, naming] dbi:Pg:dbname=foo root 4321
|
||||||
|
[connect_info opts like quote_char, name_sep]
|
||||||
|
|
||||||
See also:
|
See also:
|
||||||
perldoc Catalyst::Manual
|
perldoc Catalyst::Manual
|
||||||
perldoc Catalyst::Manual::Intro
|
perldoc Catalyst::Manual::Intro
|
||||||
|
perldoc Catalyst::Helper::Model::DBIC::Schema
|
||||||
|
perldoc Catalyst::Model::DBIC::Schema
|
||||||
|
perldoc Catalyst::View::TT
|
||||||
|
|
||||||
=head1 DESCRIPTION
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
|
@ -80,7 +54,7 @@ Catalyst Contributors, see Catalyst.pm
|
||||||
|
|
||||||
=head1 COPYRIGHT
|
=head1 COPYRIGHT
|
||||||
|
|
||||||
This library is free software, you can redistribute it and/or modify
|
This library is free software. You can redistribute it and/or modify
|
||||||
it under the same terms as Perl itself.
|
it under the same terms as Perl itself.
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
|
@ -1,106 +1,44 @@
|
||||||
#! @perl@ -w -I@nix@/libexec/nix
|
#! @perl@ -w -I@nix@/libexec/nix
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$ENV{CATALYST_ENGINE} ||= 'HTTP::Prefork';
|
$ENV{CATALYST_SCRIPT_GEN} = 40;
|
||||||
$ENV{CATALYST_SCRIPT_GEN} = 32;
|
|
||||||
require Catalyst::Engine::HTTP;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
use strict;
|
use Catalyst::ScriptRunner;
|
||||||
use warnings;
|
Catalyst::ScriptRunner->run('Hydra', 'Server');
|
||||||
use Getopt::Long;
|
|
||||||
use Pod::Usage;
|
|
||||||
use FindBin;
|
|
||||||
use lib "$FindBin::Bin/../lib";
|
|
||||||
use Hydra::Helper::Nix;
|
|
||||||
|
|
||||||
my $debug = 0;
|
|
||||||
my $fork = 0;
|
|
||||||
my $help = 0;
|
|
||||||
my $host = undef;
|
|
||||||
my $port = $ENV{HYDRA_PORT} || $ENV{CATALYST_PORT} || 3000;
|
|
||||||
my $keepalive = 0;
|
|
||||||
my $restart = $ENV{HYDRA_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
|
|
||||||
my $restart_delay = 1;
|
|
||||||
my $restart_regex = '(?:/|^)(?!\.#).+(?:\.yml$|\.yaml$|\.conf|\.pm)$';
|
|
||||||
my $restart_directory = undef;
|
|
||||||
my $follow_symlinks = 0;
|
|
||||||
|
|
||||||
my @argv = @ARGV;
|
|
||||||
|
|
||||||
$ENV{'HYDRA_CONFIG'} = getHydraConf if ! $ENV{'HYDRA_CONFIG'} ;
|
|
||||||
|
|
||||||
GetOptions(
|
|
||||||
'debug|d' => \$debug,
|
|
||||||
'fork' => \$fork,
|
|
||||||
'help|?' => \$help,
|
|
||||||
'host=s' => \$host,
|
|
||||||
'port=s' => \$port,
|
|
||||||
'keepalive|k' => \$keepalive,
|
|
||||||
'restart|r' => \$restart,
|
|
||||||
'restartdelay|rd=s' => \$restart_delay,
|
|
||||||
'restartregex|rr=s' => \$restart_regex,
|
|
||||||
'restartdirectory=s@' => \$restart_directory,
|
|
||||||
'followsymlinks' => \$follow_symlinks,
|
|
||||||
);
|
|
||||||
|
|
||||||
pod2usage(1) if $help;
|
|
||||||
|
|
||||||
if ( $restart && $ENV{CATALYST_ENGINE} eq 'HTTP' ) {
|
|
||||||
$ENV{CATALYST_ENGINE} = 'HTTP::Restarter';
|
|
||||||
}
|
|
||||||
if ( $debug ) {
|
|
||||||
$ENV{CATALYST_DEBUG} = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
# This is require instead of use so that the above environment
|
|
||||||
# variables can be set at runtime.
|
|
||||||
require Hydra;
|
|
||||||
|
|
||||||
Hydra->run( $port, $host, {
|
|
||||||
argv => \@argv,
|
|
||||||
'fork' => $fork,
|
|
||||||
keepalive => $keepalive,
|
|
||||||
restart => $restart,
|
|
||||||
restart_delay => $restart_delay,
|
|
||||||
restart_regex => qr/$restart_regex/,
|
|
||||||
restart_directory => $restart_directory,
|
|
||||||
follow_symlinks => $follow_symlinks,
|
|
||||||
min_servers => 2,
|
|
||||||
max_servers => 10,
|
|
||||||
min_spare_servers => 2,
|
|
||||||
max_spare_servers => 5,
|
|
||||||
} );
|
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
||||||
=head1 NAME
|
=head1 NAME
|
||||||
|
|
||||||
hydra_server.pl - Catalyst Testserver
|
hydra_server.pl - Catalyst Test Server
|
||||||
|
|
||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
hydra_server.pl [options]
|
hydra_server.pl [options]
|
||||||
|
|
||||||
Options:
|
-d --debug force debug mode
|
||||||
-d -debug force debug mode
|
-f --fork handle each request in a new process
|
||||||
-f -fork handle each request in a new process
|
|
||||||
(defaults to false)
|
(defaults to false)
|
||||||
-? -help display this help and exits
|
-? --help display this help and exits
|
||||||
-host host (defaults to all)
|
-h --host host (defaults to all)
|
||||||
-p -port port (defaults to 3000)
|
-p --port port (defaults to 3000)
|
||||||
-k -keepalive enable keep-alive connections
|
-k --keepalive enable keep-alive connections
|
||||||
-r -restart restart when files get modified
|
-r --restart restart when files get modified
|
||||||
(defaults to false)
|
(defaults to false)
|
||||||
-rd -restartdelay delay between file checks
|
-rd --restart_delay delay between file checks
|
||||||
-rr -restartregex regex match files that trigger
|
(ignored if you have Linux::Inotify2 installed)
|
||||||
|
-rr --restart_regex regex match files that trigger
|
||||||
a restart when modified
|
a restart when modified
|
||||||
(defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
|
(defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
|
||||||
-restartdirectory the directory to search for
|
--restart_directory the directory to search for
|
||||||
modified files, can be set mulitple times
|
modified files, can be set multiple times
|
||||||
(defaults to '[SCRIPT_DIR]/..')
|
(defaults to '[SCRIPT_DIR]/..')
|
||||||
-follow_symlinks follow symlinks in search directories
|
--follow_symlinks follow symlinks in search directories
|
||||||
(defaults to false. this is a no-op on Win32)
|
(defaults to false. this is a no-op on Win32)
|
||||||
|
--background run the process in the background
|
||||||
|
--pidfile specify filename for pid file
|
||||||
|
|
||||||
See also:
|
See also:
|
||||||
perldoc Catalyst::Manual
|
perldoc Catalyst::Manual
|
||||||
perldoc Catalyst::Manual::Intro
|
perldoc Catalyst::Manual::Intro
|
||||||
|
@ -115,7 +53,8 @@ Catalyst Contributors, see Catalyst.pm
|
||||||
|
|
||||||
=head1 COPYRIGHT
|
=head1 COPYRIGHT
|
||||||
|
|
||||||
This library is free software, you can redistribute it and/or modify
|
This library is free software. You can redistribute it and/or modify
|
||||||
it under the same terms as Perl itself.
|
it under the same terms as Perl itself.
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue