/* * Copyright 2013 Red Hat Inc. and/or its affiliates and other 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.switchyard.deploy.karaf; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.felix.gogo.commands.Command; import org.apache.felix.gogo.commands.Option; import org.switchyard.admin.Application; import org.switchyard.admin.Reference; import org.switchyard.admin.SwitchYard; /** * Shell command for read-references. */ @Command(scope = "switchyard", name = "read-reference", description = "Returns a details about a SwitchYard reference deployed on the system.") public class ReadReferenceCommand extends AbstractSwitchYardServiceCommand { @Option(name = "--application", aliases = "-a", description = "If specified, only details for the named application are returned.", multiValued = true) private List<String> _applicationNames; @Option(name = "--reference", aliases = "-r", description = "If specified, only details for the named reference are returned.", multiValued = true) private List<String> _referenceNames; @Option(name = "--regex", description = "If specified, treat the name(s) as a regular expression.") private boolean _regex; @Override protected Object doExecute(final SwitchYard switchYard) throws Exception { final Pattern applicationPattern = compilePattern(_applicationNames, _regex); final Pattern referencePattern = compilePattern(_referenceNames, _regex); for (Application application : switchYard.getApplications()) { final String applicationName = application.getName().toString(); final Matcher applicationMatcher = applicationPattern.matcher(applicationName); if (applicationMatcher.find()) { System.out.println(application.getName() + " = ["); for (Reference reference : application.getReferences()) { final String referenceName = reference.getName().toString(); final Matcher referenceMatcher = referencePattern.matcher(referenceName); if (referenceMatcher.find()) { System.out.println(PrintUtil.printReference(reference, 1)); } } System.out.println("]"); } } return null; } }