All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jaeksoft.searchlib.replication.ReplicationList Maven / Gradle / Ivy

Go to download

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) 2010-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.replication; import com.jaeksoft.searchlib.SearchLibException; import com.jaeksoft.searchlib.util.ReadWriteLock; import com.jaeksoft.searchlib.util.XPathParser; import com.jaeksoft.searchlib.util.XmlWriter; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.xml.sax.SAXException; import javax.xml.parsers.ParserConfigurationException; import javax.xml.xpath.XPathExpressionException; import java.io.File; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.URISyntaxException; import java.util.List; import java.util.TreeMap; public class ReplicationList implements XmlWriter.Interface { private final ReadWriteLock rwl = new ReadWriteLock(); private TreeMap replicationMap; private ReplicationItem[] replicationArray; public ReplicationList(ReplicationMaster replicationMaster, File file) throws ParserConfigurationException, SAXException, IOException, XPathExpressionException, SearchLibException, URISyntaxException { replicationMap = new TreeMap<>(); replicationArray = null; if (!file.exists()) return; XPathParser xpp = new XPathParser(file); Node parentNode = xpp.getNode("replicationList"); if (parentNode == null) return; NodeList nodes = xpp.getNodeList(parentNode, "replicationItem"); if (nodes == null) return; for (int i = 0; i < nodes.getLength(); i++) { ReplicationItem replicationItem = new ReplicationItem(replicationMaster, nodes.item(i)); save(null, replicationItem); } } public ReplicationItem[] getArray() { rwl.r.lock(); try { return replicationArray; } finally { rwl.r.unlock(); } } public void populateNameList(List list) { rwl.r.lock(); try { for (String name : replicationMap.keySet()) list.add(name); } finally { rwl.r.unlock(); } } public ReplicationItem get(String replicationItemName) { rwl.r.lock(); try { if (replicationItemName == null) return null; return replicationMap.get(replicationItemName); } finally { rwl.r.unlock(); } } private void buildArray() { replicationArray = new ReplicationItem[replicationMap.size()]; replicationMap.values().toArray(replicationArray); } public int getSize() { rwl.r.lock(); try { if (replicationArray == null) return 0; return replicationArray.length; } finally { rwl.r.unlock(); } } public void save(ReplicationItem oldItem, ReplicationItem newItem) throws SearchLibException { rwl.w.lock(); try { if (oldItem != null) replicationMap.remove(oldItem.getName()); if (newItem != null) { if (replicationMap.containsKey(newItem.getName())) throw new SearchLibException("Replication item already exists: " + newItem.getName()); replicationMap.put(newItem.getName(), newItem); } buildArray(); } finally { rwl.w.unlock(); } } @Override public void writeXml(XmlWriter xmlWriter) throws SAXException, UnsupportedEncodingException { rwl.r.lock(); try { xmlWriter.startElement("replicationList"); for (ReplicationItem item : replicationMap.values()) item.writeXml(xmlWriter); xmlWriter.endElement(); } finally { rwl.r.unlock(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy