blob: 9b6cd4501b85b7a7c4c79c0a8e53e6b58367b298 [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.options;
import java.util.List;
import java.util.prefs.Preferences;
import org.netbeans.api.annotations.common.CheckForNull;
import org.netbeans.modules.javascript.karma.exec.KarmaExecutable;
import org.netbeans.modules.javascript.karma.util.FileUtils;
import org.openide.util.NbPreferences;
public final class KarmaOptions {
private static final String KARMA_PATH = "karma.path"; // NOI18N
// Do not change arbitrary - consult with layer's folder OptionsExport
// Path to Preferences node for storing these preferences
private static final String PREFERENCES_PATH = "karma"; // NOI18N
private static final KarmaOptions INSTANCE = new KarmaOptions();
private final Preferences preferences;
private volatile boolean karmaSearched = false;
private KarmaOptions() {
preferences = NbPreferences.forModule(KarmaOptions.class).node(PREFERENCES_PATH);
}
public static KarmaOptions getInstance() {
return INSTANCE;
}
@CheckForNull
public String getKarma() {
String path = preferences.get(KARMA_PATH, null);
if (path == null
&& !karmaSearched) {
karmaSearched = true;
List<String> files = FileUtils.findFileOnUsersPath(KarmaExecutable.KARMA_NAME);
if (!files.isEmpty()) {
path = files.get(0);
setKarma(path);
}
}
return path;
}
public void setKarma(String karma) {
preferences.put(KARMA_PATH, karma);
}
}