]> git.evergreen-ils.org Git - OpenSRF.git/blob - bin/opensrf-perl.pl.in
cc99759d9f8a816b75339898e5191162b9fde4ee
[OpenSRF.git] / bin / opensrf-perl.pl.in
1 #!/usr/bin/perl
2 # ---------------------------------------------------------------
3 # Copyright (C) 2008  Georgia Public Library Service
4 # Bill Erickson <erickson@esilibrary.com>
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 # ---------------------------------------------------------------
16 use strict; use warnings;
17 use Getopt::Long;
18 use Net::Domain qw/hostfqdn/;
19 use POSIX qw/setsid :sys_wait_h/;
20 use OpenSRF::Utils::Logger q/$logger/;
21 use OpenSRF::System;
22 use OpenSRF::Transport::PeerHandle;
23 use OpenSRF::Utils::SettingsClient;
24 use OpenSRF::Transport::Listener;
25 use OpenSRF::Utils;
26 use OpenSRF::Utils::Config;
27
28 my $opt_action = undef;
29 my $opt_service = undef;
30 my $opt_config = "@CONF_DIR@/opensrf_core.xml";
31 my $opt_pid_dir = "@PID_DIR@/run/opensrf";
32 my $opt_no_daemon = 0;
33 my $opt_settings_pause = 0;
34 my $opt_localhost = 0;
35 my $opt_help = 0;
36 my $verbose = 0;
37 my $sclient;
38 my $hostname = $ENV{OSRF_HOSTNAME} || hostfqdn();
39 my @hosted_services;
40
41 GetOptions(
42     'action=s' => \$opt_action,
43     'service=s' => \$opt_service,
44     'config=s' => \$opt_config,
45     'pid-dir=s' => \$opt_pid_dir,
46     'no-daemon' => \$opt_no_daemon,
47     'settings-startup-pause=i' => \$opt_settings_pause,
48     'localhost' => \$opt_localhost,
49     'help' => \$opt_help,
50     'verbose' => \$verbose,
51 );
52
53 if ($opt_localhost) {
54     $hostname = 'localhost';
55     $ENV{OSRF_HOSTNAME} = $hostname;
56 }
57
58 sub haltme {
59     kill('INT', -$$); #kill all in process group
60     exit;
61 };
62 $SIG{INT} = \&haltme;
63 $SIG{TERM} = \&haltme;
64
65 sub get_pid_file {
66     my $service = shift;
67     return "$opt_pid_dir/$service.pid";
68 }
69
70 # stop a specific service
71 sub do_stop {
72     my $service = shift;
73     my $pid_file = get_pid_file($service);
74     if(-e $pid_file) {
75         my $pid = `cat $pid_file`;
76         chomp $pid;
77         msg("stopping service pid=$pid $service", 1);
78         kill('INT', $pid);
79         waitpid($pid, 0);
80         unlink $pid_file;
81     } else {
82         msg("$service not running");
83     }
84     return 1;
85 }
86
87 sub do_init {
88     OpenSRF::System->bootstrap_client(config_file => $opt_config);
89     die "Unable to bootstrap client for requests\n"
90         unless OpenSRF::Transport::PeerHandle->retrieve;
91
92     load_settings(); # load the settings config if we can
93
94     my $sclient = OpenSRF::Utils::SettingsClient->new;
95     my $apps = $sclient->config_value("activeapps", "appname");
96
97     # disconnect the top-level network handle
98     OpenSRF::Transport::PeerHandle->retrieve->disconnect;
99
100     if($apps) {
101         $apps = [$apps] unless ref $apps;
102         for my $app (@$apps) {
103             push(@hosted_services, $app) 
104                 if $sclient->config_value('apps', $app, 'language') =~ /perl/i;
105         }
106     }
107     return 1;
108 }
109
110 # start a specific service
111 sub do_start {
112     my $service = shift;
113
114     if(-e get_pid_file($service)) {
115         msg("$service is already running");
116         return;
117     }
118
119     load_settings() if $service eq 'opensrf.settings';
120
121     if(grep { $_ eq $service } @hosted_services) {
122         return unless do_daemon($service);
123         OpenSRF::System->run_service($service);
124     }
125
126     msg("$service is not configured to run on $hostname");
127     return 1;
128 }
129
130 sub do_start_all {
131     msg("starting all services for $hostname", 1);
132     if(grep {$_ eq 'opensrf.settings'} @hosted_services) {
133         do_start('opensrf.settings');
134         # in batch mode, give opensrf.settings plenty of time to start 
135         # before any non-Perl services try to connect
136         sleep $opt_settings_pause if $opt_settings_pause;
137     }
138     for my $service (@hosted_services) {
139         do_start($service) unless $service eq 'opensrf.settings';
140     }
141     return 1;
142 }
143
144 sub do_stop_all {
145     msg("stopping all services for $hostname", 1);
146     do_stop($_) for @hosted_services;
147     return 1;
148 }
149
150 # daemonize us.  return true if we're the child, false if parent
151 sub do_daemon {
152     return 1 if $opt_no_daemon;
153     my $service = shift;
154     my $pid_file = get_pid_file($service);
155     #exit if OpenSRF::Utils::safe_fork();
156     return 0 if OpenSRF::Utils::safe_fork();
157     msg("starting service pid=$$ $service", 1);
158     chdir('/');
159     setsid();
160     close STDIN;
161     close STDOUT;
162     close STDERR;
163     open STDIN, '</dev/null';
164     open STDOUT, '>/dev/null';
165     open STDERR, '>/dev/null';
166     `echo $$ > $pid_file`;
167     return 1;
168 }
169
170 # parses the local settings file
171 sub load_settings {
172     my $conf = OpenSRF::Utils::Config->current;
173     my $cfile = $conf->bootstrap->settings_config;
174     return unless $cfile;
175     my $parser = OpenSRF::Utils::SettingsParser->new();
176     $parser->initialize( $cfile );
177     $OpenSRF::Utils::SettingsClient::host_config =
178         $parser->get_server_config($conf->env->hostname);
179 }
180
181 sub msg {
182     my $m = shift;
183     my $v = shift;
184     print "* $m\n" unless $v and not $verbose;
185 }
186
187 sub do_help {
188     print <<HELP;
189
190     Usage: perl $0 --pid-dir @TMP@ --config @CONF_DIR@/opensrf_core.xml --service opensrf.settings --action start
191
192     --action <action>
193         Actions include start, stop, restart, and start_all, stop_all, and restart_all
194
195     --service <service>
196         Specifies which OpenSRF service to control
197
198     --config <file>
199         OpenSRF configuration file 
200         
201     --pid-dir <dir>
202         Directory where process-specific PID files are kept
203         
204     --no-daemon
205         Do not detach and run as a daemon process.  Useful for debugging.
206
207     --settings-startup-pause
208         How long to give the opensrf.settings server to start up when running 
209         in batch mode (start_all).  The purpose is to give plenty of time for
210         the settings server to be up and active before any non-Perl services
211         attempt to connect.
212
213     --localhost
214         Force the hostname to be 'localhost', instead of the fully qualified
215         domain name for the machine.
216         
217     --help
218         Print this help message
219 HELP
220 exit;
221 }
222
223
224 do_help() if $opt_help or not $opt_action;
225 do_init() and do_start($opt_service) if $opt_action eq 'start';
226 do_stop($opt_service) if $opt_action eq 'stop';
227 do_init() and do_stop($opt_service) and do_start($opt_service) if $opt_action eq 'restart';
228 do_init() and do_start_all() if $opt_action eq 'start_all';
229 do_init() and do_stop_all() if $opt_action eq 'stop_all';
230 do_init() and do_stop_all() and do_start_all() if $opt_action eq 'restart_all';
231
232