summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2017-08-18 08:34:57 +0700
committerDaniil Baturin <daniil@baturin.org>2017-08-18 08:37:34 +0700
commite55d9affac8159b09b503fca4a364192a24eb52e (patch)
tree120c6d119a319c3534515808cf07f22a1803b85f /python
parent1f811659c65e841bb589baaf1f85512242884752 (diff)
downloadvyatta-cfg-e55d9affac8159b09b503fca4a364192a24eb52e.tar.gz
vyatta-cfg-e55d9affac8159b09b503fca4a364192a24eb52e.zip
T353: remove the python library from vyatta-cfg.
Diffstat (limited to 'python')
-rw-r--r--python/setup.py20
-rw-r--r--python/vyos/__init__.py0
-rw-r--r--python/vyos/config/config.py119
3 files changed, 0 insertions, 139 deletions
diff --git a/python/setup.py b/python/setup.py
deleted file mode 100644
index 9181ce0..0000000
--- a/python/setup.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import os
-from setuptools import setup
-
-setup(
- name = "vyos",
- version = "1.2.0",
- author = "VyOS maintainers and contributors",
- author_email = "maintainers@vyos.net",
- description = ("VyOS configuration libraries."),
- license = "MIT",
- keywords = "vyos",
- url = "http://vyos.io",
- packages=['vyos'],
- long_description="VyOS configuration libraries",
- classifiers=[
- "Development Status :: 3 - Alpha",
- "Topic :: Utilities",
- "License :: OSI Approved :: MIT License",
- ],
-)
diff --git a/python/vyos/__init__.py b/python/vyos/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/python/vyos/__init__.py
+++ /dev/null
diff --git a/python/vyos/config/config.py b/python/vyos/config/config.py
deleted file mode 100644
index a791555..0000000
--- a/python/vyos/config/config.py
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright (c) 2016 VyOS maintainers and contributors
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the Software
-# is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
-# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
-# OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
-# IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-import subprocess
-import re
-
-__cli_shell_api = '/bin/cli-shell-api'
-
-class VyOSError(Exception):
- pass
-
-
-def _make_command(op, path):
- args = path.split()
- cmd = [__cli_shell_api, op] + args
- return cmd
-
-def _run(cmd):
- p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
- out = p.stdout.read()
- p.wait()
- if p.returncode != 0:
- raise VyOSError()
- else:
- return out
-
-
-def exists(path):
- try:
- _run(_make_command('exists', path))
- return True
- except VyOSError:
- return False
-
-def session_changed():
- try:
- _run(_make_command('sessionChanged', ''))
- return True
- except VyOSError:
- return False
-
-def in_session():
- try:
- _run(_make_command('inSession', ''))
- return True
- except VyOSError:
- return False
-
-def is_multi(path):
- try:
- _run(_make_command('isMulti', path))
- return True
- except VyOSError:
- return False
-
-def is_tag(path):
- try:
- _run(_make_command('isTag', path))
- return True
- except VyOSError:
- return False
-
-def is_leaf(path):
- try:
- _run(_make_command('isLeaf', path))
- return True
- except VyOSError:
- return False
-
-def return_value(path):
- if is_multi(path):
- raise VyOSError("Cannot use return_value on multi node: {0}".format(path))
- elif not is_leaf(path):
- raise VyOSError("Cannot use return_value on non-leaf node: {0}".format(path))
- else:
- try:
- out = _run(_make_command('returnValue', path))
- return out
- except VyOSError:
- raise VyOSError("Path doesn't exist: {0}".format(path))
-
-def return_values(path):
- if not is_multi(path):
- raise VyOSError("Cannot use return_values on non-multi node: {0}".format(path))
- elif not is_leaf(path):
- raise VyOSError("Cannot use return_values on non-leaf node: {0}".format(path))
- else:
- try:
- out = _run(_make_command('returnValues', path))
- return out
- except VyOSError:
- raise VyOSError("Path doesn't exist: {0}".format(path))
-
-def list_nodes(path):
- if is_tag(path):
- try:
- out = _run(_make_command('listNodes', path))
- values = out.split()
- return list(map(lambda x: re.sub(r'^\'(.*)\'$', r'\1',x), values))
- except VyOSError:
- raise VyOSError("Path doesn't exist: {0}".format(path))
- else:
- raise VyOSError("Cannot use list_nodes on a non-tag node: {0}".format(path))