statoolinfosweb/src/fr/devinsy/statoolinfos/core/CrawlCache.java

246 lines
5.9 KiB
Java
Raw Normal View History

2020-09-13 01:28:27 +02:00
/*
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org>
*
* This file is part of StatoolInfos, simple service statistics tool.
*
* StatoolInfos is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* StatoolInfos 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with StatoolInfos. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.devinsy.statoolinfos.core;
import java.io.File;
import java.io.IOException;
import java.net.URL;
2020-09-13 01:28:27 +02:00
2020-09-15 03:16:26 +02:00
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.io.FileUtils;
2020-09-13 01:28:27 +02:00
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2020-09-15 03:16:26 +02:00
import fr.devinsy.statoolinfos.properties.PathPropertyList;
import fr.devinsy.statoolinfos.properties.PathPropertyUtils;
2020-09-13 01:28:27 +02:00
/**
* The Class CrawlCache.
*/
public class CrawlCache
{
private static Logger logger = LoggerFactory.getLogger(CrawlCache.class);
private File directory;
/**
* Instantiates a new crawl cache.
*
* @param directory
* the directory
2020-09-13 01:28:27 +02:00
* @throws StatoolInfosException
* the statool infos exception
2020-09-13 01:28:27 +02:00
*/
public CrawlCache(final File directory) throws StatoolInfosException
{
if (directory == null)
{
throw new IllegalArgumentException("Null parameter.");
}
else if (StringUtils.isBlank(directory.getName()))
{
throw new IllegalArgumentException("Blank directory.");
}
else if (!directory.exists())
{
throw new IllegalArgumentException("Directory does not exist.");
}
else
{
this.directory = directory;
}
}
/**
* Builds the file.
*
* @param key
* the key
* @return the file
*/
private File buildFile(final String key)
2020-09-13 01:28:27 +02:00
{
File result;
result = new File(this.directory, DigestUtils.md5Hex(key));
2020-09-13 01:28:27 +02:00
//
return result;
}
/**
* Clear file in cache. Only files ending with ".property" are deleted.
*/
public void clear()
{
for (File file : this.directory.listFiles())
{
if ((file.isFile()) && ((file.getName().endsWith(".properties")) || file.getName().length() == 32))
2020-09-13 01:28:27 +02:00
{
logger.info("Deleting " + file.getName());
file.delete();
}
}
}
/**
* Restore file.
*
* @param url
* the url
* @return the file
*/
public File restoreFile(final URL url)
{
File result;
if (url == null)
{
throw new IllegalArgumentException("Null parameter.");
}
else
{
result = buildFile(url.toString());
}
//
return result;
}
/**
* Restore properties.
2020-09-13 01:28:27 +02:00
*
* @param url
* the url
* @return the path property list
* @throws IOException
* Signals that an I/O exception has occurred.
2020-09-13 01:28:27 +02:00
*/
public PathPropertyList restoreProperties(final URL url) throws IOException
2020-09-13 01:28:27 +02:00
{
PathPropertyList result;
if (url == null)
{
result = new PathPropertyList();
}
else
{
File file = buildFile(url.toString() + ".properties");
result = PathPropertyUtils.load(file);
}
//
return result;
}
/**
* Store.
*
* @param url
* the url
* @return the file
* @throws IOException
*/
public File store(final URL url) throws IOException
{
File result;
2020-09-13 01:28:27 +02:00
if (StringUtils.startsWith(url.getProtocol(), "http"))
{
final int TIMEOUT = 5000;
result = restoreFile(url);
FileUtils.copyURLToFile(url, result, TIMEOUT, TIMEOUT);
}
else
{
result = null;
}
2020-09-13 01:28:27 +02:00
//
return result;
}
/**
* Store.
*
* @param url
* the url
* @param properties
* the properties
* @return the file
2020-09-13 01:28:27 +02:00
* @throws IOException
* Signals that an I/O exception has occurred.
2020-09-13 01:28:27 +02:00
*/
public File storeProperties(final URL url, final PathPropertyList properties) throws IOException
2020-09-13 01:28:27 +02:00
{
File result;
if ((url == null) || (!StringUtils.startsWith(url.getProtocol(), "http")))
2020-09-15 03:16:26 +02:00
{
result = null;
}
else
{
String key = url.toString() + ".properties";
result = buildFile(key);
2020-09-13 01:28:27 +02:00
2020-09-15 03:16:26 +02:00
PathPropertyUtils.save(result, properties);
}
//
return result;
}
/**
* Store quietly.
*
* @param url
* the url
* @return the file
*/
public File storeQuietly(final URL url)
{
File result;
try
{
if ((url == null) || (!StringUtils.startsWith(url.getProtocol(), "http")))
{
result = null;
}
else
{
final int TIMEOUT = 5000;
result = restoreFile(url);
FileUtils.copyURLToFile(url, result, TIMEOUT, TIMEOUT);
}
}
catch (IOException exception)
2020-09-15 03:16:26 +02:00
{
logger.info("Store faile for {}: {}", url, exception.getMessage());
2020-09-15 03:16:26 +02:00
result = null;
}
2020-09-13 01:28:27 +02:00
//
return result;
}
}