neoctl.py 1.45 KB
Newer Older
1 2
#!/usr/bin/env python
#
3 4
# neoadmin - run an administrator node of NEO
#
5
# Copyright (C) 2009-2012  Nexedi SA
6
#
7 8 9 10
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
11
#
12 13 14 15 16 17
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
18
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 20

from optparse import OptionParser
21
from neo.lib import logging
Olivier Cros's avatar
Olivier Cros committed
22
from neo.lib.util import parseNodeAddress
23 24 25 26 27

parser = OptionParser()
parser.add_option('-a', '--address', help = 'specify the address (ip:port) ' \
    'of an admin node', default = '127.0.0.1:9999')
parser.add_option('--handler', help = 'specify the connection handler')
28
parser.add_option('-l', '--logfile', help = 'specify a logging file')
29 30 31

def main(args=None):
    (options, args) = parser.parse_args(args=args)
Olivier Cros's avatar
Olivier Cros committed
32
    if options.address is not None:
33
        address = parseNodeAddress(options.address, 9999)
34
    else:
Olivier Cros's avatar
Olivier Cros committed
35
        address = ('127.0.0.1', 9999)
36

37
    logging.setup(options.logfile)
38 39
    from neo.neoctl.app import Application

Olivier Cros's avatar
Olivier Cros committed
40
    print Application(address).execute(args)
41