Package org.spoutcraft.client.packet

Source Code of org.spoutcraft.client.packet.PacketSendPrecache

/*
* This file is part of Spoutcraft.
*
* Copyright (c) 2011 SpoutcraftDev <http://spoutcraft.org/>
* Spoutcraft is licensed under the GNU Lesser General Public License.
*
* Spoutcraft is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Spoutcraft 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.spoutcraft.client.packet;

import java.io.File;
import java.io.IOException;
import java.util.zip.DataFormatException;
import java.util.zip.Deflater;
import java.util.zip.Inflater;

import org.apache.commons.io.FileUtils;
import org.apache.commons.io.output.ByteArrayOutputStream;

import org.spoutcraft.api.io.SpoutInputStream;
import org.spoutcraft.api.io.SpoutOutputStream;
import org.spoutcraft.client.precache.PrecacheManager;
import org.spoutcraft.client.precache.PrecacheTuple;

public class PacketSendPrecache implements CompressablePacket {
  private byte[] fileData;
  private String plugin;
  private String version;
  private boolean compressed = false;

  public PacketSendPrecache() {
  }

  public PacketSendPrecache(File file) {
    try {
      this.fileData = FileUtils.readFileToByteArray(file);
    } catch (IOException e) {
      e.printStackTrace();
    }
  }

  // TODO move to separate thread?
  public void compress() {
    if (!compressed) {
      Deflater deflater = new Deflater();
      deflater.setInput(fileData);
      deflater.setLevel(Deflater.BEST_COMPRESSION);
      deflater.finish();
      ByteArrayOutputStream bos = new ByteArrayOutputStream(fileData.length);
      byte[] buffer = new byte[1024];
      while (!deflater.finished()) {
        int bytesCompressed = deflater.deflate(buffer);
        bos.write(buffer, 0, bytesCompressed);
      }
      try {
        bos.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
      fileData = bos.toByteArray();
      compressed = true;
    }
  }

  public boolean isCompressed() {
    return compressed;
  }

  public void decompress() {
    if (compressed) {
      Inflater decompressor = new Inflater();
      decompressor.setInput(fileData);

      ByteArrayOutputStream bos = new ByteArrayOutputStream(fileData.length);

      byte[] buf = new byte[1024];
      while (!decompressor.finished()) {
        try {
          int count = decompressor.inflate(buf);
          bos.write(buf, 0, count);
        } catch (DataFormatException e) {
        }
      }
      try {
        bos.close();
      } catch (IOException e) {
      }

      fileData = bos.toByteArray();
    }
  }

  public void readData(SpoutInputStream input) throws IOException {
    this.plugin = input.readString();
    this.version = input.readString();
    compressed = input.readBoolean();
    int size = input.readInt();
    this.fileData = new byte[size];
    input.read(fileData);
  }

  public void writeData(SpoutOutputStream output) throws IOException {
    output.writeString(plugin);
    output.writeString(version);
    output.writeBoolean(compressed);
    output.writeInt(fileData.length);
    output.write(fileData);
  }

  public void failure(int playerId) {
  }

  public PacketType getPacketType() {
    return PacketType.PacketSendPrecache;
  }

  public int getVersion() {
    return 0;
  }

  public void run(int playerId) {
    // Packet recieved, grabbing the zip file
    File zip = PrecacheManager.getPluginPreCacheFile(plugin, version);
    if (zip.exists()) {
      zip.delete();
    }

    try {
      FileUtils.writeByteArrayToFile(zip, fileData);
    } catch (IOException e) {
      e.printStackTrace();
    }

    PrecacheTuple plugin = PrecacheManager.getPrecacheTuple(this.plugin, version);
    if (plugin != null) {
      PrecacheManager.setCached(plugin);
    }
    PrecacheManager.doNextCache();
  }
}
TOP

Related Classes of org.spoutcraft.client.packet.PacketSendPrecache

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.