summaryrefslogtreecommitdiff
path: root/cpp/src/qpidd.cpp
blob: e199c72683fc1a13d87088d13a5f4ac0dff78575 (plain)
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
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
#include <Broker.h>
#include <iostream>
#include <memory>
#include <config.h>
#include <fstream>
#include <signal.h>
#include <Daemon.h>
#include <boost/format.hpp>

using boost::format;
using namespace qpid;
using namespace qpid::broker;
using namespace qpid::sys;
using namespace std;

Broker::shared_ptr brokerPtr;

void handle_signal(int /*signal*/){
    std::cerr << "Shutting down..." << std::endl;
    brokerPtr->shutdown();
}


/** Command line options */
struct QpiddOptions : public Broker::Options
{
    bool help;
    bool version;
    bool daemon;
    bool quit;
    bool kill;
    bool check;
    bool ppid;
    int wait;
    string config;
    po::options_description desc;
    
    QpiddOptions() :
        help(false), version(false), daemon(false),
        quit(false), kill(false), check(false), ppid(false), wait(10),
        config("/etc/qpidd.conf"),
        desc("Options")
    {
        using namespace po;
        desc.add_options()
            ("daemon,d", optValue(daemon), "Run as a daemon.")
            ("quit,q", optValue(quit), "Stop the running daemon politely.")
            ("kill,k", optValue(kill), "Kill the running daemon harshly.")
            ("check,c", optValue(check), "If daemon is running return 0.")
            ("wait", optValue(wait, "SECONDS"),
             "Maximum wait for daemon response.")
            ("ppid", optValue(ppid), "Print daemon pid to stdout" );
        po::options_description brokerOpts;
        Broker::Options::addTo(desc);
        desc.add_options()
            ("config", optValue(config, "FILE"), "Configuation file")
            ("help,h", optValue(help), "Print help message")
            ("version,v", optValue(version), "Print version information");
    }

    void parse(int argc, char* argv[]) {
        po::variables_map vm;
        // Earlier sources get precedence.
        po::store(po::parse_command_line(argc, argv, desc), vm);
        try { 
            po::store(po::parse_environment(desc, po::env2option), vm);
        }
        catch (const logic_error& e) {
            throw logic_error(string("parsing environment variables: ")
                              + e.what());
        }
        po::notify(vm);         // So we can use the value of config.
        try {
            ifstream conf(config.c_str());
            po::store(po::parse_config_file(conf, desc), vm);
        }
        catch (const logic_error& e) {
            throw logic_error(string("parsing config file: ")+ e.what());
        }
        po::notify(vm);
    };
    
    void usage(ostream& out) const {
        out << "Usage: qpidd [OPTIONS]" << endl << endl
            << desc << endl;
    };
};

ostream& operator<<(ostream& out, const QpiddOptions& config)  {
    config.usage(out); return out;
}

int main(int argc, char* argv[])
{
    QpiddOptions config;
    try {
        config.parse(argc, argv);
        string name=(format("%s.%d")
                     % Daemon::nameFromArgv0(argv[0])
                     % (config.port)).str();
        // Spelled 'demon' to avoid clash with daemon.h function.
        Daemon demon(name, config.wait);

        // Options that just print information.
        if(config.help) {
            config.usage(cout);
            return 0;
        }
        if (config.version) {
            cout << "qpidd (" << PACKAGE_NAME << ") version "
                 << PACKAGE_VERSION << endl;
            return 0;
        }

        // Options that affect an already running daemon.
        if (config.quit || config.kill || config.check) {
            pid_t pid = demon.check();
            if (config.ppid && pid > 0)
                cout << pid << endl;
            if (config.kill)
                demon.kill();
            else if (config.quit)
                demon.quit();
            if (config.check && pid <= 0)
                return 1;
            return 0;
        }

        // Starting the broker:
        signal(SIGINT, handle_signal);
        if (config.daemon) {
            pid_t pid = demon.fork();
            if (pid == 0) {  // Child
                try {
                    brokerPtr=Broker::create(config);
                    demon.ready();   // Notify parent we're ready.
                    brokerPtr->run();
                } catch (const exception& e) {
                    // TODO aconway 2007-04-26: Log this, cerr is lost.
                    cerr << "Broker daemon failed: " << e.what() << endl;
                    demon.failed(); // Notify parent we failed.
                    return 1;
                }
            }
            else if (pid > 0) { // Parent
                if (config.ppid)
                    cout << pid << endl;
                return 0;
            }
            else { // pid < 0
                throw Exception("fork failed"+strError(errno));
            }
        } // Non-daemon broker.
        else {
            brokerPtr = Broker::create(config);
            brokerPtr->run(); 
        }
        return 0;
    }
    catch(const po::error& e) {
        // Command line parsing error.
        cerr << "Error: " << e.what() << endl
             << "Type 'qpidd --help' for usage." << endl;
    }
    catch(const exception& e) {
        cerr << "Error: " << e.what() << endl;
    }
    return 1;
}