blob: 8fb9b18ff739311ce3c43576639f851af8b2fbbf [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.karaf.shell.commands;
import java.util.Collection;
import java.util.Collections;
import org.apache.felix.gogo.commands.Argument;
import org.apache.felix.gogo.commands.Command;
import org.apache.felix.service.command.Function;
import org.apache.karaf.shell.console.AbstractAction;
/**
* Execute a closure on a list of arguments.
*/
@Command(scope = "shell", name = "each", description = "Execute a closure on a list of arguments.")
public class EachAction extends AbstractAction {
@Argument(name = "values", index = 0, multiValued = false, required = true, description = "The collection of arguments to iterate on")
Collection<Object> values;
@Argument(name = "function", index = 1, multiValued = false, required = true, description = "The function to execute")
Function function;
@Override
protected Object doExecute() throws Exception {
for (Object v : values) {
function.execute(session, Collections.singletonList(v));
}
return null;
}
}