summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/Backup.java
blob: ef55dfc1ab3d72cb133f3e113e0b437afd666b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.earth2me.essentials;

import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.bukkit.command.CommandSender;
import org.bukkit.craftbukkit.CraftServer;

public class Backup implements Runnable {
	private static final Logger logger = Logger.getLogger("Minecraft");
	private CraftServer server;
	private boolean running = false;
	private int taskId = -1;
	private boolean active = false;

	public Backup() {
		server = (CraftServer)Essentials.getStatic().getServer();
		if (server.getOnlinePlayers().length > 0) {
			startTask();
		}
	}	

	void onPlayerJoin() {
		startTask();
	}
	
	private void startTask() {
		if (!running) {
			long interval = Essentials.getStatic().getSettings().getBackupInterval()*1200; // minutes -> ticks
			if (interval < 1200) {
				return;
			}
			taskId = server.getScheduler().scheduleSyncRepeatingTask(Essentials.getStatic(), this, interval, interval);
			running = true;
		}
	}

	public void run() {
		if (active) return;
		active = true;
		final String command = Essentials.getStatic().getSettings().getBackupCommand();
		if (command == null || "".equals(command)) {
			return;
		}
		logger.log(Level.INFO, "Backup started");
		final CommandSender cs = server.getServer().console;
		server.dispatchCommand(cs, "save-all");
		server.dispatchCommand(cs, "save-off");
		
		server.getScheduler().scheduleAsyncDelayedTask(Essentials.getStatic(),
			new Runnable() {

			public void run() {
				try {
					Process child = Runtime.getRuntime().exec(command);
					child.waitFor();
				} catch (InterruptedException ex) {
					logger.log(Level.SEVERE, null, ex);
				} catch (IOException ex) {
					logger.log(Level.SEVERE, null, ex);
				} finally {
					server.getScheduler().scheduleSyncDelayedTask(Essentials.getStatic(),
						new Runnable() {

						public void run() {
							server.dispatchCommand(cs, "save-on");
							if (server.getOnlinePlayers().length == 0) {
								running = false;
								if (taskId != -1) {
									server.getScheduler().cancelTask(taskId);
								}
							}
							active = false;
							logger.log(Level.INFO, "Backup finished");
						}
					});
				}
			}
		});
	}

}