blob: a539497b83c6d1d684ae893a372db9bab949dd5b [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;
Hyunsun Moon0e058f22017-04-19 17:00:52 +090019import org.onosproject.cli.AbstractShellCommand;
Hyunsun Moon0d457362017-06-27 17:19:41 +090020import org.onosproject.openstacknode.api.NodeState;
21import org.onosproject.openstacknode.api.OpenstackNode;
22import org.onosproject.openstacknode.api.OpenstackNodeAdminService;
23import org.onosproject.openstacknode.api.OpenstackNodeService;
Hyunsun Moon0e058f22017-04-19 17:00:52 +090024
Jian Lif7934d52018-07-10 16:27:02 +090025import static java.lang.Thread.sleep;
26
Hyunsun Moon0e058f22017-04-19 17:00:52 +090027/**
28 * Re-installs flow rules for OpenStack networking.
29 */
30@Command(scope = "onos", name = "openstack-sync-rules",
31 description = "Re-installs flow rules for OpenStack networking")
32public class OpenstackSyncRulesCommand extends AbstractShellCommand {
33
Jian Lif7934d52018-07-10 16:27:02 +090034 private static final long SLEEP_MS = 3000; // we wait 3s for init each node
Jian Li88ae51e2018-07-10 02:23:35 +090035
Hyunsun Moon0e058f22017-04-19 17:00:52 +090036 @Override
Ray Milkey86ad7bb2018-09-27 12:32:28 -070037 protected void doExecute() {
Hyunsun Moon0e058f22017-04-19 17:00:52 +090038 // All handlers in this application reacts the node complete event and
39 // tries to re-configure flow rules for the complete node.
Hyunsun Moon0d457362017-06-27 17:19:41 +090040 OpenstackNodeService osNodeService = AbstractShellCommand.get(OpenstackNodeService.class);
41 OpenstackNodeAdminService osNodeAdminService = AbstractShellCommand.get(OpenstackNodeAdminService.class);
42 if (osNodeService == null) {
Hyunsun Moon0e058f22017-04-19 17:00:52 +090043 error("Failed to re-install flow rules for OpenStack networking.");
44 return;
45 }
Hyunsun Moon0d457362017-06-27 17:19:41 +090046 osNodeService.completeNodes().forEach(osNode -> {
47 OpenstackNode updated = osNode.updateState(NodeState.INIT);
48 osNodeAdminService.updateNode(updated);
Jian Li88ae51e2018-07-10 02:23:35 +090049
Jian Lif7934d52018-07-10 16:27:02 +090050 try {
51 sleep(SLEEP_MS);
52 } catch (InterruptedException e) {
53 log.error("Exception caused during node synchronization...");
54 }
Jian Li88ae51e2018-07-10 02:23:35 +090055
Jian Lif7934d52018-07-10 16:27:02 +090056 if (osNodeService.node(osNode.hostname()).state() == NodeState.COMPLETE) {
57 print("Finished sync rules for node %s", osNode.hostname());
58 } else {
59 error("Failed to sync rules for node %s", osNode.hostname());
Jian Li88ae51e2018-07-10 02:23:35 +090060 }
Hyunsun Moon0d457362017-06-27 17:19:41 +090061 });
Hyunsun Moon0e058f22017-04-19 17:00:52 +090062 print("Successfully requested re-installing flow rules.");
63 }
64}