aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorramki krishnan <ramkri123@gmail.com>2018-08-20 22:26:35 +0000
committerGerrit Code Review <gerrit@onap.org>2018-08-20 22:26:35 +0000
commitceae24f79c17537cf71727dd81b782bfd84df067 (patch)
tree2a61b58835e42a41d05f5134755e2b79298a2538
parent83b497ea3505c2d90ec21f2dbc42c5d13954b26c (diff)
parente6f5d446c245a6594dd5ae3edad4293849819c62 (diff)
Merge "New route optimiser file added for the timebeing"
-rw-r--r--osdf/optimizers/routeopt/simple_route_opt.py74
1 files changed, 74 insertions, 0 deletions
diff --git a/osdf/optimizers/routeopt/simple_route_opt.py b/osdf/optimizers/routeopt/simple_route_opt.py
new file mode 100644
index 0000000..762ccea
--- /dev/null
+++ b/osdf/optimizers/routeopt/simple_route_opt.py
@@ -0,0 +1,74 @@
+# -------------------------------------------------------------------------
+# Copyright (c) 2018 Huawei Intellectual Property
+#
+# Licensed 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.
+#
+# -------------------------------------------------------------------------
+#
+
+import requests
+from requests.auth import HTTPBasicAuth
+
+
+class RouteOpt:
+
+ """
+ This values will need to deleted..
+ only added for the debug purpose
+ """
+ aai_host = "https:\\192.168.17.26:8443"
+ aai_headers = {
+ "X-TransactionId": "9999",
+ "X-FromAppId": "OOF",
+ "Content-Type": "applicatoin/json",
+ "Real-Time": "true"
+ }
+
+
+ def getRoute(self, request):
+ """
+ This method checks
+ :param logical_link:
+ :return:
+ """
+
+ print(request["srcPort"])
+ print(request["dstport"])
+ src_access_node_id = request["srcPort"]["src-access-node-id"]
+ dst_access_node_id = request["dstPort"]["dst-access-node-id"]
+
+ ingress_p_interface = None
+ egress_p_interface = None
+
+ logical_links = self.get_logical_links()
+
+ """
+ TODO: Logic to be extended for the repose filling
+ """
+
+
+ def get_logical_links(self):
+ """
+ This method returns list of all cross ONAP links
+ from /aai/v14/network/logical-links?operation-status="Up"
+ :return: logical-links[]
+ """
+ logical_link_url = "/aai/v14/network/logical-links?operation-status=\"Up\""
+ aai_req_url = self.aai_host + logical_link_url
+
+ response = requests.get(aai_req_url,
+ headers=self.aai_headers,
+ auth=HTTPBasicAuth("", ""))
+
+ if response.status_code == 200:
+ return response.json