aboutsummaryrefslogtreecommitdiffstats
path: root/components/scripts/python/ccsdk_netconf/netconfclient.py
blob: 341aae738fead580812c516e4a2d67b7255fb15a (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
from netconf_constant import CONFIG_TARGET_RUNNING, CONFIG_TARGET_CANDIDATE, \
  CONFIG_DEFAULT_OPERATION_REPLACE

class NetconfClient:

  def __init__(self, log, component_function, requirement_name):
    self.log = log
    self.component_function = component_function
    netconf_device = self.component_function.initializeNetconfConnection(
        requirement_name)
    self.netconf_rpc_client = netconf_device.netconfRpcService
    self.netconf_session = netconf_device.netconfSession

  def disconnect(self):
    self.netconf_session.disconnect()
    return

  def connect(self):
    self.netconf_session.connect()
    return

  def lock(self, message_id, config_target=CONFIG_TARGET_CANDIDATE,
      message_timeout=30):
    device_response = self.netconf_rpc_client.lock(message_id, config_target,
                                                   message_timeout)
    return device_response

  def get_config(self, message_id, filter="",
      config_target=CONFIG_TARGET_RUNNING, message_timeout=30):
    device_response = self.netconf_rpc_client.getConfig(message_id, filter,
                                                        config_target,
                                                        message_timeout)
    return device_response

  def edit_config(self, message_id, message_content, lock=False,
      config_target=CONFIG_TARGET_CANDIDATE,
      edit_default_peration=CONFIG_DEFAULT_OPERATION_REPLACE,
      deleteConfig=False, validate=False, commit=False, discard_change=False,
      unlock=False, message_timeout=30):
    device_response = self.netconf_rpc_client.editConfig(message_id,
                                                         message_content, lock,
                                                         config_target,
                                                         edit_default_peration,
                                                         deleteConfig, validate,
                                                         commit, discard_change,
                                                         unlock,
                                                         message_timeout)
    return device_response

  def commit(self, message_id, discard_change=True,
      message_timeout=30):
    device_response = self.netconf_rpc_client.commit(message_id, discard_change,
                                                     message_timeout)
    return device_response

  def unlock(self, message_id, config_target=CONFIG_TARGET_CANDIDATE,
      message_timeout=30):
    device_response = self.netconf_rpc_client.unLock(message_id, config_target,
                                                     message_timeout)
    return device_response

  def validate(self, message_id, config_target=CONFIG_TARGET_CANDIDATE,
      message_timeout=30):
    device_response = self.netconf_rpc_client.validate(message_id,
                                                       config_target,
                                                       message_timeout)
    return device_response

  def discard_change(self, message_id, message_timeout=30):
    device_response = self.netconf_rpc_client.discardConfig(message_id,
                                                            message_timeout)
    return device_response