blob: 7c46939b02836618b596a1481a39c33c71a2c10d [file] [log] [blame]
/*
* Copyright 2019-2024 Open Networking Foundation (ONF) and the ONF Contributors
*
* 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.
*/
package org.opencord.bng.cli;
import org.apache.karaf.shell.api.action.Argument;
import org.apache.karaf.shell.api.action.Command;
import org.apache.karaf.shell.api.action.Completion;
import org.apache.karaf.shell.api.action.Option;
import org.apache.karaf.shell.api.action.lifecycle.Service;
import org.onosproject.cli.AbstractShellCommand;
import org.onosproject.net.behaviour.BngProgrammable;
import org.opencord.bng.BngAttachment;
import org.opencord.bng.BngService;
import org.opencord.bng.PppoeBngAttachment;
@Service
@Command(scope = "bng", name = "attachment-enable",
description = "Enable/Disable an attachment")
public class EnableAttachment extends AbstractShellCommand {
@Argument(index = 0, name = "attachmentKey", description = "Attachment Key", required = true)
@Completion(AttachmentKeyCompleter.class)
String attachmentKey = null;
@Option(name = "-d", aliases = "--disable", description = "Disable the specified attachment",
required = false, multiValued = false)
boolean disable = false;
@Override
protected void doExecute() throws Exception {
BngService bngService = AbstractShellCommand.get(BngService.class);
BngAttachment attachment = bngService.getAttachment(attachmentKey);
if (attachment == null) {
print("Attachment " + attachmentKey.toString() + "not found!");
return;
}
if (attachment.lineActive() == !disable) {
print("Attachment is already " + (disable ? "disabled" : "enabled"));
return;
}
if (!attachment.type().equals(BngProgrammable.Attachment.AttachmentType.PPPoE)) {
print((disable ? "Disable" : "Enable") + " supported only for PPPoE attachment");
return;
}
BngAttachment newAttachment = PppoeBngAttachment.builder()
.withPppoeSessionId(attachment.pppoeSessionId())
.withApplicationId(attachment.appId())
.withMacAddress(attachment.macAddress())
.withCTag(attachment.cTag())
.withSTag(attachment.sTag())
.withIpAddress(attachment.ipAddress())
.withOltConnectPoint(attachment.oltConnectPoint())
.withOnuSerial(attachment.onuSerial())
.lineActivated(!disable)
.build();
print(disable ? "Disabling" : "Enabling" + " attachment: " + newAttachment.toString());
bngService.setupAttachment(attachmentKey, newAttachment);
}
}