blob: 6d4818ad29b5f3d3d49e382b13e69d8d6c23114e [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.sling.installer.factories.configuration.impl;
import org.apache.sling.installer.api.tasks.InstallationContext;
import org.apache.sling.installer.api.tasks.ResourceState;
import org.apache.sling.installer.api.tasks.TaskResourceGroup;
import org.apache.sling.installer.factories.configuration.ConfigurationConstants;
import org.apache.sling.installer.factories.configuration.impl.Coordinator.Operation;
import org.osgi.service.cm.Configuration;
import org.osgi.service.cm.ConfigurationAdmin;
/**
* Task to install a configuration
*/
public class ConfigInstallTask extends AbstractConfigTask {
private static final String CONFIG_INSTALL_ORDER = "20-";
public ConfigInstallTask(final TaskResourceGroup r, final ConfigurationAdmin configAdmin) {
super(r, configAdmin);
}
@Override
public String getSortKey() {
return CONFIG_INSTALL_ORDER + getCompositePid();
}
@Override
public void execute(final InstallationContext ctx) {
synchronized ( Coordinator.SHARED ) {
// Get or create configuration, but do not
// update if the new one has the same values.
boolean created = false;
try {
String location = (String)this.getResource().getDictionary().get(ConfigurationConstants.PROPERTY_BUNDLE_LOCATION);
if ( location == null ) {
location = Activator.DEFAULT_LOCATION; // default
} else if ( location.length() == 0 ) {
location = null;
}
Configuration config = getConfiguration();
if (config == null) {
created = true;
config = createConfiguration(location);
} else {
if (ConfigUtil.isSameData(config.getProperties(), getResource().getDictionary())) {
this.getLogger().debug("Configuration {} already installed with same data, update request ignored: {}",
config.getPid(), getResource());
config = null;
} else {
config.setBundleLocation(location);
}
}
if (config != null) {
config.update(getDictionary());
ctx.log("Installed configuration {} from resource {}", config.getPid(), getResource());
if ( this.factoryPid != null ) {
this.aliasPid = config.getPid();
}
this.setFinishedState(ResourceState.INSTALLED, this.getCompositeAliasPid());
this.getLogger().debug("Configuration " + config.getPid()
+ " " + (created ? "created" : "updated")
+ " from " + getResource());
final Operation op = new Coordinator.Operation(config.getPid(), config.getFactoryPid(), false);
Coordinator.SHARED.add(op);
} else {
this.setFinishedState(ResourceState.IGNORED, this.getCompositeAliasPid());
}
} catch (Exception e) {
this.getLogger().debug("Exception during installation of config " + this.getResource() + " : " + e.getMessage() + ". Retrying later.", e);
}
}
}
}