Java tutorial
/* * The MIT License (MIT) * * Copyright (c) 2015-2016, Max Roncace <me@caseif.net> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package net.caseif.flint.common.util.helper; import static net.caseif.flint.common.util.helper.JsonSerializer.deserializeLocation; import static net.caseif.flint.common.util.helper.JsonSerializer.serializeLocation; import net.caseif.flint.common.CommonCore; import net.caseif.flint.common.util.file.CommonDataFiles; import net.caseif.flint.util.physical.Location3D; import com.google.common.base.Optional; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import com.google.gson.JsonPrimitive; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.Iterator; import java.util.UUID; public class CommonPlayerHelper { public static void setOfflineFlag(UUID player) { try { File playerStore = CommonDataFiles.OFFLINE_PLAYER_STORE.getFile(); boolean isNew = false; if (!playerStore.exists()) { playerStore.createNewFile(); } JsonArray json; try (FileReader reader = new FileReader(playerStore)) { JsonElement el = new JsonParser().parse(reader); json = el.isJsonArray() ? el.getAsJsonArray() : new JsonArray(); json.add(new JsonPrimitive(player.toString())); } try (FileWriter writer = new FileWriter(playerStore)) { writer.write(json.toString()); } } catch (IOException ex) { CommonCore.logSevere("Failed to mark player as offline!"); ex.printStackTrace(); } } public static boolean checkOfflineFlag(UUID player) { try { File playerStore = CommonDataFiles.OFFLINE_PLAYER_STORE.getFile(); if (!playerStore.exists()) { return false; } JsonArray json; try (FileReader reader = new FileReader(playerStore)) { JsonElement el = new JsonParser().parse(reader); if (!el.isJsonArray()) { return false; } json = el.getAsJsonArray(); } if (json.size() > 0) { JsonArray newArray = new JsonArray(); Iterator<JsonElement> it = json.iterator(); boolean found = false; while (it.hasNext()) { JsonElement el = it.next(); if (el.getAsString().equals(player.toString())) { found = true; } else { newArray.add(el); } } if (found) { try (FileWriter writer = new FileWriter(playerStore)) { writer.write(newArray.toString()); } return true; } } return false; } catch (IOException ex) { CommonCore.logSevere("Failed to mark player as offline!"); throw new RuntimeException(ex); } } /** * Stores the given {@link Location3D} to persistent storage, associated * with the given player. * * @param player The {@link UUID} of the player to store a * {@link Location3D} for * @param location The {@link Location3D} to store * @throws IOException If an exception occurs while saving to disk */ public static void storeLocation(UUID player, Location3D location) throws IOException { File store = CommonDataFiles.PLAYER_LOCATION_STORE.getFile(); JsonObject json = JsonHelper.readOrCreateJson(store); json.add(player.toString(), serializeLocation(location)); try (FileWriter writer = new FileWriter(store)) { writer.append(json.toString()); } } /** * Gets the given player's stored location from persistent storage and pops * it if found. * * @param player The {@link UUID} of the player to load the location of * @return The stored {@link Location3D} * @throws IllegalArgumentException If an error occurs during * deserialization of the stored location * @throws IOException If an exception occurs while saving to disk */ public static Optional<Location3D> getReturnLocation(UUID player) throws IllegalArgumentException, IOException { File store = CommonDataFiles.PLAYER_LOCATION_STORE.getFile(); JsonObject json; if (store.exists()) { try (FileReader reader = new FileReader(store)) { JsonElement el = new JsonParser().parse(reader); if (!el.isJsonObject()) { return Optional.absent(); } json = el.getAsJsonObject(); } } else { return Optional.absent(); } if (json.has(player.toString())) { Location3D l3d = deserializeLocation(json.getAsJsonObject(player.toString())); json.remove(player.toString()); try (FileWriter writer = new FileWriter(store)) { writer.append(json.toString()); } if (!l3d.getWorld().isPresent()) { throw new IllegalArgumentException("World not present in stored location of player " + player); } return Optional.of(l3d); } else { return Optional.absent(); } } }