blob: 350655f1925e45edb85e00972d9802eae3cb1519 [file] [log] [blame]
Hyunsun Moon0e058f22017-04-19 17:00:52 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Hyunsun Moon0e058f22017-04-19 17:00:52 +09003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.openstacknetworking.cli;
17
Ray Milkey86ad7bb2018-09-27 12:32:28 -070018import org.apache.karaf.shell.api.action.Command;
Ray Milkey7a2dee52018-09-28 10:58:28 -070019import org.apache.karaf.shell.api.action.lifecycle.Service;
Hyunsun Moon0e058f22017-04-19 17:00:52 +090020import org.onosproject.cli.AbstractShellCommand;
Hyunsun Moon0d457362017-06-27 17:19:41 +090021import org.onosproject.openstacknode.api.NodeState;
22import org.onosproject.openstacknode.api.OpenstackNode;
23import org.onosproject.openstacknode.api.OpenstackNodeAdminService;
24import org.onosproject.openstacknode.api.OpenstackNodeService;
Hyunsun Moon0e058f22017-04-19 17:00:52 +090025
Jian Lif7934d52018-07-10 16:27:02 +090026import static java.lang.Thread.sleep;
27
Hyunsun Moon0e058f22017-04-19 17:00:52 +090028/**
29 * Re-installs flow rules for OpenStack networking.
30 */
Ray Milkey7a2dee52018-09-28 10:58:28 -070031@Service
Hyunsun Moon0e058f22017-04-19 17:00:52 +090032@Command(scope = "onos", name = "openstack-sync-rules",
33 description = "Re-installs flow rules for OpenStack networking")
34public class OpenstackSyncRulesCommand extends AbstractShellCommand {
35
Jian Lif7934d52018-07-10 16:27:02 +090036 private static final long SLEEP_MS = 3000; // we wait 3s for init each node
Jian Li88ae51e2018-07-10 02:23:35 +090037
Hyunsun Moon0e058f22017-04-19 17:00:52 +090038 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070039 protected void doExecute() {
Hyunsun Moon0e058f22017-04-19 17:00:52 +090040 // All handlers in this application reacts the node complete event and
41 // tries to re-configure flow rules for the complete node.
Hyunsun Moon0d457362017-06-27 17:19:41 +090042 OpenstackNodeService osNodeService = AbstractShellCommand.get(OpenstackNodeService.class);
43 OpenstackNodeAdminService osNodeAdminService = AbstractShellCommand.get(OpenstackNodeAdminService.class);
44 if (osNodeService == null) {
Hyunsun Moon0e058f22017-04-19 17:00:52 +090045 error("Failed to re-install flow rules for OpenStack networking.");
46 return;
47 }
Hyunsun Moon0d457362017-06-27 17:19:41 +090048 osNodeService.completeNodes().forEach(osNode -> {
49 OpenstackNode updated = osNode.updateState(NodeState.INIT);
50 osNodeAdminService.updateNode(updated);
Jian Li88ae51e2018-07-10 02:23:35 +090051
Jian Lif7934d52018-07-10 16:27:02 +090052 try {
53 sleep(SLEEP_MS);
54 } catch (InterruptedException e) {
55 log.error("Exception caused during node synchronization...");
56 }
Jian Li88ae51e2018-07-10 02:23:35 +090057
Jian Lif7934d52018-07-10 16:27:02 +090058 if (osNodeService.node(osNode.hostname()).state() == NodeState.COMPLETE) {
59 print("Finished sync rules for node %s", osNode.hostname());
60 } else {
61 error("Failed to sync rules for node %s", osNode.hostname());
Jian Li88ae51e2018-07-10 02:23:35 +090062 }
Hyunsun Moon0d457362017-06-27 17:19:41 +090063 });
Hyunsun Moon0e058f22017-04-19 17:00:52 +090064 print("Successfully requested re-installing flow rules.");
65 }
66}