
org.ow2.shelbie.commands.config.internal.PropertySetAction Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2010 OW2 Shelbie
* 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.ow2.shelbie.commands.config.internal;
import org.apache.felix.gogo.commands.Action;
import org.apache.felix.gogo.commands.Argument;
import org.apache.felix.gogo.commands.Command;
import org.apache.felix.ipojo.annotations.Component;
import org.apache.felix.ipojo.annotations.HandlerDeclaration;
import org.apache.felix.ipojo.annotations.Requires;
import org.apache.felix.service.command.CommandSession;
import org.osgi.service.cm.Configuration;
import org.osgi.service.cm.ConfigurationAdmin;
import java.util.Dictionary;
import java.util.List;
@Component
@Command(name="set",
scope="config",
description="Update a given Configuration with given properties")
@HandlerDeclaration(" ")
public class PropertySetAction implements Action {
@Argument(name = "pid",
required = true,
index = 0,
description = "Service PID of the Configuration to update.")
private String pid;
@Argument(name = "properties",
index = 1,
multiValued = true,
description = "Properties that will be placed (and override if existing) in the updated Configuration.")
private List properties;
@Requires
private ConfigurationAdmin ca;
public Object execute(CommandSession session) throws Exception {
Configuration config = ca.getConfiguration(pid, null);
if (config != null) {
Dictionary p = getProperties(config);
// Update the Configuration
if (p != null) {
config.update(p);
}
}
return null;
}
private Dictionary getProperties(Configuration config) {
Dictionary p = null;
// Merge new properties inside the old set of properties
boolean changed = false;
if (properties != null) {
p = config.getProperties();
if (p != null) {
for (String property : properties) {
String[] sections = property.split("=");
if (sections.length == 2) {
Object old = p.get(sections[0]);
if (!sections[1].equals(old)) {
p.put(sections[0], sections[1]);
changed = true;
}
} else {
// Warning there are some invalid properties here
return null;
}
}
}
if (!changed) {
p = null;
}
}
return p;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy