blob: 1e5ffec6c36fe39b79831f2772fe96210436c1e9 [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.javascript.karma.preferences;
import java.io.File;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.prefs.PreferenceChangeListener;
import java.util.prefs.Preferences;
import org.netbeans.api.annotations.common.CheckForNull;
import org.netbeans.api.project.Project;
import org.netbeans.api.project.ProjectUtils;
import org.netbeans.modules.javascript.karma.util.KarmaUtils;
import org.netbeans.modules.javascript.karma.util.StringUtils;
import org.netbeans.modules.web.browser.api.WebBrowser;
import org.netbeans.spi.project.support.ant.PropertyUtils;
import org.openide.filesystems.FileUtil;
/**
* Project specific Karma preferences.
*/
public final class KarmaPreferences {
public static final String CONFIG = "config"; // NOI18N
private static final String ENABLED = "enabled"; // NOI18N
private static final String AUTOWATCH = "autowatch"; // NOI18N
private static final String DEBUG = "debug"; // NOI18N
private static final String DEBUG_BROWSER_ID = "debug.browser.id"; // NOI18N
private static final String BROWSER_ERROR_FAIL = "browser.error.fail"; // NOI18N
private static final ConcurrentMap<Project, Preferences> CACHE = new ConcurrentHashMap<>();
private KarmaPreferences() {
}
public static boolean isEnabled(Project project) {
return getPreferences(project).getBoolean(ENABLED, false);
}
public static void setEnabled(Project project, boolean enabled) {
getPreferences(project).putBoolean(ENABLED, enabled);
}
@CheckForNull
public static String getConfig(Project project) {
return resolvePath(project, getPreferences(project).get(CONFIG, null));
}
public static void setConfig(Project project, String config) {
getPreferences(project).put(CONFIG, relativizePath(project, config));
}
public static boolean isAutowatch(Project project) {
return getPreferences(project).getBoolean(AUTOWATCH, false);
}
public static void setAutowatch(Project project, boolean autowatch) {
getPreferences(project).putBoolean(AUTOWATCH, autowatch);
}
public static boolean isDebug(Project project) {
return getPreferences(project).getBoolean(DEBUG, false);
}
public static void setDebug(Project project, boolean debug) {
getPreferences(project).putBoolean(DEBUG, debug);
}
public static boolean isDebugBrowserIdSet(Project project) {
return getPreferences(project).get(DEBUG_BROWSER_ID, null) != null;
}
@CheckForNull
public static String getDebugBrowserId(Project project) {
String browserId = getPreferences(project).get(DEBUG_BROWSER_ID, null);
if (browserId != null) {
return browserId;
}
WebBrowser preferredBrowser = KarmaUtils.getPreferredDebugBrowser();
if (preferredBrowser != null) {
return preferredBrowser.getId();
}
return null;
}
public static void setDebugBrowserId(Project project, String browserId) {
getPreferences(project).put(DEBUG_BROWSER_ID, browserId);
}
public static boolean isFailOnBrowserError(Project project) {
return getPreferences(project).getBoolean(BROWSER_ERROR_FAIL, true);
}
public static void setFailOnBrowserError(Project project, boolean fail) {
getPreferences(project).putBoolean(BROWSER_ERROR_FAIL, fail);
}
public static void addPreferenceChangeListener(Project project, PreferenceChangeListener listener) {
getPreferences(project).addPreferenceChangeListener(listener);
}
public static void removePreferenceChangeListener(Project project, PreferenceChangeListener listener) {
getPreferences(project).removePreferenceChangeListener(listener);
}
public static void removeFromCache(final Project project) {
CACHE.remove(project);
}
private static Preferences getPreferences(final Project project) {
assert project != null;
Preferences preferences = CACHE.get(project);
if (preferences == null) {
preferences = ProjectUtils.getPreferences(project, KarmaPreferences.class, false);
Preferences currentPreferences = CACHE.putIfAbsent(project, preferences);
if (currentPreferences != null) {
preferences = currentPreferences;
} else {
// preferences put into cache, run autodetection
detectConfig(project);
}
}
assert preferences != null;
return preferences;
}
private static void detectConfig(Project project) {
if (getConfig(project) != null) {
return;
}
File config = KarmaUtils.findKarmaConfig(KarmaUtils.getKarmaConfigDir(project));
if (config != null) {
setConfig(project, config.getAbsolutePath());
}
}
private static String relativizePath(Project project, String filePath) {
if (!StringUtils.hasText(filePath)) {
return ""; // NOI18N
}
File file = new File(filePath);
String path = PropertyUtils.relativizeFile(FileUtil.toFile(project.getProjectDirectory()), file);
if (path == null
|| path.startsWith("../")) { // NOI18N
// cannot be relativized or outside project
path = file.getAbsolutePath();
}
return path;
}
private static String resolvePath(Project project, String filePath) {
if (!StringUtils.hasText(filePath)) {
return null;
}
return PropertyUtils.resolveFile(FileUtil.toFile(project.getProjectDirectory()), filePath).getAbsolutePath();
}
}