com.jaeksoft.searchlib.util.properties.PropertyManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearchserver Show documentation
Show all versions of opensearchserver Show documentation
OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.
The newest version!
/**
* License Agreement for OpenSearchServer
*
* Copyright (C) 2012-2016 Emmanuel Keller / Jaeksoft
*
* http://www.open-search-server.com
*
* This file is part of OpenSearchServer.
*
* OpenSearchServer is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSearchServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSearchServer.
* If not, see .
**/
package com.jaeksoft.searchlib.util.properties;
import com.jaeksoft.searchlib.SearchLibException;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
public class PropertyManager {
private final HashMap> propertyMap;
private final File propFile;
private final Properties properties;
public PropertyManager(File file) throws IOException {
propFile = file;
propertyMap = new HashMap<>();
properties = new Properties();
if (propFile.exists()) {
FileInputStream inputStream = null;
try {
inputStream = new FileInputStream(propFile);
properties.loadFromXML(inputStream);
} catch (IOException e) {
throw e;
} finally {
if (inputStream != null)
inputStream.close();
}
}
}
void add(PropertyItem> propertyItem) {
propertyMap.put(propertyItem.getName(), propertyItem);
}
public void save() throws IOException {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(propFile);
properties.storeToXML(fos, "");
} catch (IOException e) {
throw e;
} finally {
if (fos != null)
fos.close();
}
}
public PropertyItem newIntegerProperty(String name, Integer defaultValue, Integer min, Integer max)
throws NumberFormatException, IOException {
PropertyItem propertyItem = new PropertyItem(this, name, defaultValue, min, max);
String value = properties.getProperty(name);
if (value != null)
propertyItem.initValue(Integer.parseInt(value));
return propertyItem;
}
public PropertyItem newBooleanProperty(String name, Boolean defaultValue) {
PropertyItem propertyItem = new PropertyItem(this, name, defaultValue, null, null);
String value = properties.getProperty(name);
if (value != null)
propertyItem
.initValue("1".equals(value) || "true".equalsIgnoreCase(value) || "yes".equalsIgnoreCase(value));
return propertyItem;
}
public PropertyItem newStringProperty(String name, String defaultValue) {
PropertyItem propertyItem = new PropertyItem(this, name, defaultValue, null, null);
String value = properties.getProperty(name);
if (value != null)
propertyItem.initValue(value);
return propertyItem;
}
public void put(PropertyItem> propertyItem) throws IOException {
propertyItem.put(properties);
save();
}
public void fillProperties(Map map) {
for (PropertyItem> item : propertyMap.values())
map.put(item.getName(), item.getValue());
}
public void setProperty(String name, Comparable value) throws IOException, SearchLibException {
PropertyItem> item = propertyMap.get(name);
if (item != null)
item.setValueObject(value);
}
}