blob: e285d1e838f04878e96e25ba034da7a28344877b [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.netbeans.modules.cordova.project;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.prefs.Preferences;
import org.netbeans.api.project.Project;
import org.netbeans.api.project.ProjectManager;
import org.netbeans.api.project.ProjectUtils;
import org.netbeans.modules.cordova.platforms.api.PlatformManager;
import org.netbeans.spi.project.ProjectConfigurationProvider;
import org.netbeans.spi.project.support.ant.AntProjectHelper;
import org.openide.filesystems.FileChangeAdapter;
import org.openide.filesystems.FileChangeListener;
import org.openide.filesystems.FileEvent;
import org.openide.filesystems.FileObject;
import org.openide.filesystems.FileRenameEvent;
import org.openide.filesystems.FileUtil;
import org.openide.util.EditableProperties;
import org.openide.util.Exceptions;
import org.openide.util.Utilities;
/**
* @author Jan Becicka
*/
public class MobileConfigurationsProvider implements ProjectConfigurationProvider<MobileConfigurationImpl>{
private Project p;
private Map<String, MobileConfigurationImpl> configs;
private FileObject configDir;
private FileObject nbProjectDir;
private PropertyChangeSupport support = new PropertyChangeSupport(this);
private static final Logger LOGGER = Logger.getLogger(MobileConfigurationsProvider.class.getName());
private FileChangeListener fclWeakNB;
private FileChangeListener fclWeakConfig;
private static final String PROP_CONFIG = "config"; //NOI18N
private final FileChangeListener fcl = new FileChangeAdapter() {
@Override
public void fileFolderCreated(FileEvent fe) {
update(fe);
}
@Override
public void fileDataCreated(FileEvent fe) {
update(fe);
}
@Override
public void fileDeleted(FileEvent fe) {
update(fe);
}
@Override
public void fileRenamed(FileRenameEvent fe) {
update(fe);
}
};
private void update(FileEvent ev) {
LOGGER.log(Level.FINEST, "Received {0}", ev);
Set<String> oldConfigs = configs != null ? configs.keySet() : Collections.<String>emptySet();
configDir = p.getProjectDirectory().getFileObject("nbproject/configs"); // NOI18N
if (configDir != null) {
if (fclWeakConfig != null) {
configDir.removeFileChangeListener(fclWeakConfig);
}
fclWeakConfig = FileUtil.weakFileChangeListener(fcl, configDir);
configDir.addFileChangeListener(fclWeakConfig);
LOGGER.log(Level.FINEST, "(Re-)added listener to {0}", configDir);
} else {
LOGGER.log(Level.FINEST, "No nbproject/configs exists");
}
calculateConfigs();
Set<String> newConfigs = configs.keySet();
if (!oldConfigs.equals(newConfigs)) {
LOGGER.log(Level.FINER, "Firing " + ProjectConfigurationProvider.PROP_CONFIGURATIONS + ": {0} -> {1}", new Object[]{oldConfigs, newConfigs});
support.firePropertyChange(ProjectConfigurationProvider.PROP_CONFIGURATIONS, null, null);
}
}
public MobileConfigurationsProvider(Project p) {
this.p = p;
this.nbProjectDir = p.getProjectDirectory().getFileObject("nbproject"); // NOI18N
if (nbProjectDir != null) {
fclWeakNB = FileUtil.weakFileChangeListener(fcl, nbProjectDir);
nbProjectDir.addFileChangeListener(fclWeakNB);
LOGGER.log(Level.FINEST, "Added listener to {0}", nbProjectDir);
configDir = nbProjectDir.getFileObject("configs"); // NOI18N
if (configDir != null) {
fclWeakConfig = FileUtil.weakFileChangeListener(fcl, configDir);
configDir.addFileChangeListener(fclWeakConfig);
LOGGER.log(Level.FINEST, "Added listener to {0}", configDir);
}
}
}
private void calculateConfigs() {
configs = new HashMap<String, MobileConfigurationImpl>();
if (configDir != null) {
for (FileObject kid : configDir.getChildren()) {
if (!kid.hasExt("properties")) { // NOI18N
continue;
}
MobileConfigurationImpl conf = MobileConfigurationImpl.create(p, kid);
configs.put(conf.getId(), conf);
}
}
LOGGER.log(Level.FINEST, "Calculated configurations: {0}", configs);
}
@Override
public Collection<MobileConfigurationImpl> getConfigurations() {
if (configs == null) {
calculateConfigs();
}
Collection<MobileConfigurationImpl> l = new ArrayList<MobileConfigurationImpl>(configs.values());
return l;
}
@Override
public void addPropertyChangeListener(PropertyChangeListener lst) {
support.addPropertyChangeListener(lst);
}
@Override
public void removePropertyChangeListener(PropertyChangeListener lst) {
support.removePropertyChangeListener(lst);
}
// @Override
public List<String> getNewConfigurationTypes() {
return Arrays.asList(new String[]{PlatformManager.ANDROID_TYPE, PlatformManager.IOS_TYPE});
}
// @Override
public String createConfiguration(String configurationType, String configurationName) {
EditableProperties props = new EditableProperties(true);
props.put("type", configurationType); //NOI18N
props.put("display.name", configurationName); //NOI18N
FileObject conf;
try {
conf = ConfigUtils.createConfigFile(p.getProjectDirectory(), configurationType, props);
MobileConfigurationImpl cfg = MobileConfigurationImpl.create(p, conf);
return cfg.getId();
} catch (IOException ex) {
Exceptions.printStackTrace(ex);
}
return null;
}
@Override
public MobileConfigurationImpl getActiveConfiguration() {
if (configs == null) {
calculateConfigs();
}
Preferences c = ProjectUtils.getPreferences(p, MobileConfigurationsProvider.class, false);
String config = c.get(PROP_CONFIG, null);;
if (config != null && configs.containsKey(config)) {
return configs.get(config);
}
return getDefaultConfiguration();
}
@Override
public void setActiveConfiguration(MobileConfigurationImpl c) throws IllegalArgumentException, IOException {
if (configs == null) {
calculateConfigs();
}
Preferences prefs = ProjectUtils.getPreferences(p, MobileConfigurationsProvider.class, false);
prefs.put(PROP_CONFIG, c.getId());
}
private MobileConfigurationImpl getDefaultConfiguration() {
if (configs.size() > 0) {
return configs.values().iterator().next();
} else {
return null;
}
}
@Override
public boolean hasCustomizer() {
return false;
}
@Override
public void customize() {
}
@Override
public boolean configurationsAffectAction(String command) {
return false;
}
}