# Copyright (C) 2015 GRNET S.A.
#
# 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 3 of the License, or
# (at your option) any later version.
#
# 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
# along with this program. If not, see .
from ws4py.client import WebSocketBaseClient
import cmd
import sys
import logging
from agkyra import config
LOG = logging.getLogger(__name__)
class AgkyraCLI(cmd.Cmd, WebSocketBaseClient):
"""The CLI for Agkyra is connected to a protocol server"""
cnf = config.AgkyraConfig()
def preloop(self):
"""Prepare agkyra shell"""
self.prompt = '\xe2\x9a\x93 '
self.default('')
def precmd(self):
print 'PRE'
def postcmd(self):
print 'POST'
def do_config(self, line):
"""Commands for managing the agkyra settings
list [global|cloud|sync [setting]] List all or some settings
set Set a setting
delete [setting] Delete a setting or group
"""
args = line.split(' ')
try:
method = getattr(self, 'config_' + args[0])
method(args[1:])
except AttributeError:
self.do_help('config')
def print_option(self, section, name, option):
"""Print a configuration option"""
section = '%s.%s' % (section, name) if name else section
value = self.cnf.get(section, option)
sys.stdout.write(' %s: %s\n' % (option, value))
def list_section(self, section, name):
"""list contents of a section"""
content = dict(self.cnf.items(section))
if section in 'global' and name:
self.print_option(section, '', name)
else:
if name:
content = content[name]
for option in content.keys():
self.print_option(section, name, option)
def list_section_type(self, section):
"""print the contents of a configuration section"""
names = ['', ] if section in ('global', ) else self.cnf.keys(section)
assert names, 'Section %s not found' % section
for name in names:
print section, name
self.list_section(section, name)
def list_sections(self):
"""List all configuration sections"""
for section in self.cnf.sections():
self.list_section_type(section)
def config_list(self, args):
"""List (all or some) options
list List all options
list List global | cloud | sync options
list global OPTION Get global option
list NAME List options a cloud or sync
list NAME OPTION List an option from a cloud or sync
"""
try:
{
0: self.list_sections,
1: self.list_section_type,
2: self.list_section,
3: self.print_option
}[len(args)](*args)
except Exception as e:
LOG.debug('%s\n' % e)
sys.stderr.write(self.config_list.__doc__ + '\n')
def set_global_setting(self, section, option, value):
assert section in ('global'), 'Syntax error'
self.cnf.set(section, option, value)
def set_setting(self, section, name, option, value):
assert section in self.cnf.sections(), 'Syntax error'
self.cnf.set('%s.%s' % (section, name), option, value)
def config_set(self, args):
"""Set an option
set global OPTION VALUE Set a global option
set NAME OPTION VALUE Set an option on cloud or sync
Creates a sync or cloud, if it
does not exist
"""
try:
{
3: self.set_global_setting,
4: self.set_setting
}[len(args)](*args)
self.cnf.write()
except Exception as e:
LOG.debug('%s\n' % e)
sys.stderr.write(self.config_set.__doc__ + '\n')
def delete_option(self, section, name, option):
"""Delete a config secttion (sync or cloud)"""
assert section in self.cnf.sections(), 'Syntax error'
if section == config.CLOUD_PREFIX:
self.cnf.remove_from_cloud(name, option)
elif section == config.SYNC_PREFIX:
self.cnf.remove_from_sync(name, option)
else:
self.cnf.remove_option('%s.%s' % (section, name), option)
def config_delete(self, args):
"""Delete an option
delete global OPTION Delete a global option
delete NAME Delete a sync or cloud
delete NAME OPTION Delete a sync or cloud option
"""
try:
{
2: self.cnf.remove_option,
3: self.delete_option
}[len(args)](*args)
self.cnf.write()
except Exception as e:
LOG.debug('%s\n' % e)
sys.stderr.write(self.config_delete.__doc__ + '\n')
# AgkyraCLI().run_onecmd(sys.argv)
# or run a shell with
# AgkyraCLI().cmdloop()