mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
I used Intellij IDEA to automatically refactor code to achive 3 goals. 1) get rid of anonymouse classes, and replace the with lamba to get more readeable and clean code (like in TableWaitingDialog). 2) make effectively final variables actually final to avoid inadvertent changes on it in further releases and keep objects as immutable, as possible. 3) Get rid of unused imports (most of the changes) in whole project classes.
227 lines
8.3 KiB
Java
227 lines
8.3 KiB
Java
/*
|
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification, are
|
|
* permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
* conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
* provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* The views and conclusions contained in the software and documentation are those of the
|
|
* authors and should not be interpreted as representing official policies, either expressed
|
|
* or implied, of BetaSteward_at_googlemail.com.
|
|
*/
|
|
package mage.server.util;
|
|
|
|
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.InputStream;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Scanner;
|
|
import java.util.concurrent.Executors;
|
|
import java.util.concurrent.ScheduledExecutorService;
|
|
import java.util.concurrent.TimeUnit;
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
import java.util.concurrent.locks.ReadWriteLock;
|
|
import java.util.concurrent.locks.ReentrantReadWriteLock;
|
|
import org.apache.log4j.Logger;
|
|
|
|
/**
|
|
* Handles server messages (Messages of the Day). Reloads messages every 5
|
|
* minutes.
|
|
*
|
|
* @author nantuko
|
|
*/
|
|
public class ServerMessagesUtil {
|
|
|
|
private static final ServerMessagesUtil instance = new ServerMessagesUtil();
|
|
|
|
private static final Logger log = Logger.getLogger(ServerMessagesUtil.class);
|
|
private static final String SERVER_MSG_TXT_FILE = "server.msg.txt";
|
|
private static ScheduledExecutorService updateExecutor;
|
|
|
|
private final List<String> messages = new ArrayList<>();
|
|
private final ReadWriteLock lock = new ReentrantReadWriteLock();
|
|
|
|
private static String pathToExternalMessages = null;
|
|
|
|
private static boolean ignore = false;
|
|
|
|
private static long startDate;
|
|
private static final AtomicInteger gamesStarted = new AtomicInteger(0);
|
|
private static final AtomicInteger tournamentsStarted = new AtomicInteger(0);
|
|
private static final AtomicInteger lostConnection = new AtomicInteger(0);
|
|
private static final AtomicInteger reconnects = new AtomicInteger(0);
|
|
|
|
static {
|
|
pathToExternalMessages = System.getProperty("messagesPath");
|
|
}
|
|
|
|
public ServerMessagesUtil() {
|
|
updateExecutor = Executors.newSingleThreadScheduledExecutor();
|
|
updateExecutor.scheduleAtFixedRate(() -> reloadMessages(), 5, 5 * 60, TimeUnit.SECONDS);
|
|
}
|
|
|
|
public static ServerMessagesUtil getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
public List<String> getMessages() {
|
|
lock.readLock().lock();
|
|
try {
|
|
return messages;
|
|
} finally {
|
|
lock.readLock().unlock();
|
|
}
|
|
}
|
|
|
|
private void reloadMessages() {
|
|
log.debug("Reading server messages...");
|
|
List<String> motdMessages = readFromFile();
|
|
List<String> newMessages = new ArrayList<>();
|
|
if (motdMessages != null) {
|
|
newMessages.addAll(motdMessages);
|
|
}
|
|
newMessages.add(getServerStatistics());
|
|
newMessages.add(getServerStatistics2());
|
|
|
|
lock.writeLock().lock();
|
|
try {
|
|
messages.clear();
|
|
messages.addAll(newMessages);
|
|
} finally {
|
|
lock.writeLock().unlock();
|
|
}
|
|
}
|
|
|
|
private List<String> readFromFile() {
|
|
if (ignore) {
|
|
return null;
|
|
}
|
|
File externalFile = null;
|
|
if (pathToExternalMessages != null) {
|
|
externalFile = new File(pathToExternalMessages);
|
|
if (!externalFile.exists()) {
|
|
log.warn("Couldn't find server.msg.txt using external path: " + pathToExternalMessages);
|
|
pathToExternalMessages = null; // not to repeat error action again
|
|
externalFile = null;
|
|
} else if (!externalFile.canRead()) {
|
|
log.warn("Couldn't read (no access) server.msg.txt using external path: " + pathToExternalMessages);
|
|
pathToExternalMessages = null; // not to repeat error action again
|
|
}
|
|
}
|
|
InputStream is = null;
|
|
if (externalFile != null) {
|
|
try {
|
|
is = new FileInputStream(externalFile);
|
|
} catch (Exception f) {
|
|
log.error(f, f);
|
|
pathToExternalMessages = null; // not to repeat error action again
|
|
}
|
|
} else {
|
|
File file = new File(SERVER_MSG_TXT_FILE);
|
|
if (!file.exists() || !file.canRead()) {
|
|
log.warn("Couldn't find server.msg.txt using path: " + SERVER_MSG_TXT_FILE);
|
|
} else {
|
|
try {
|
|
is = new FileInputStream(file);
|
|
} catch (Exception f) {
|
|
log.error(f, f);
|
|
ignore = true;
|
|
}
|
|
}
|
|
}
|
|
if (is == null) {
|
|
log.warn("Couldn't find server.msg");
|
|
return null;
|
|
}
|
|
Scanner scanner = new Scanner(is);
|
|
List<String> newMessages = new ArrayList<>();
|
|
while (scanner.hasNextLine()) {
|
|
String message = scanner.nextLine();
|
|
if (!message.trim().isEmpty()) {
|
|
newMessages.add(message.trim());
|
|
}
|
|
}
|
|
return newMessages;
|
|
}
|
|
|
|
private String getServerStatistics() {
|
|
long current = System.currentTimeMillis();
|
|
long hours = ((current - startDate) / (1000 * 60 * 60));
|
|
StringBuilder statistics = new StringBuilder("Server uptime: ");
|
|
statistics.append(hours);
|
|
statistics.append(" hour(s), games played: ");
|
|
statistics.append(gamesStarted.get());
|
|
statistics.append(" tournaments started: ");
|
|
statistics.append(tournamentsStarted.get());
|
|
return statistics.toString();
|
|
}
|
|
|
|
private String getServerStatistics2() {
|
|
long current = System.currentTimeMillis();
|
|
long minutes = ((current - startDate) / (1000 * 60));
|
|
if (minutes == 0) {
|
|
minutes = 1;
|
|
}
|
|
StringBuilder statistics = new StringBuilder("Disconnects: ");
|
|
statistics.append(lostConnection.get());
|
|
statistics.append(" avg/hour ").append(lostConnection.get() * 60 / minutes);
|
|
statistics.append(" Reconnects: ").append(reconnects.get());
|
|
statistics.append(" avg/hour ").append(reconnects.get() * 60 / minutes);
|
|
return statistics.toString();
|
|
}
|
|
|
|
// private Timer timer = new Timer(1000 * 60, new ActionListener() {
|
|
// public void actionPerformed(ActionEvent e) {
|
|
// reloadMessages();
|
|
// }
|
|
// });
|
|
public void setStartDate(long milliseconds) {
|
|
this.startDate = milliseconds;
|
|
}
|
|
|
|
public void incGamesStarted() {
|
|
int value;
|
|
do {
|
|
value = gamesStarted.get();
|
|
} while (!gamesStarted.compareAndSet(value, value + 1));
|
|
}
|
|
|
|
public void incTournamentsStarted() {
|
|
int value;
|
|
do {
|
|
value = tournamentsStarted.get();
|
|
} while (!tournamentsStarted.compareAndSet(value, value + 1));
|
|
}
|
|
|
|
public void incReconnects() {
|
|
int value;
|
|
do {
|
|
value = reconnects.get();
|
|
} while (!reconnects.compareAndSet(value, value + 1));
|
|
}
|
|
|
|
public void incLostConnection() {
|
|
int value;
|
|
do {
|
|
value = lostConnection.get();
|
|
} while (!lostConnection.compareAndSet(value, value + 1));
|
|
}
|
|
|
|
}
|