afd49d7bd4
This will allow to creat ProgressInfo object from json object and json Array it needed to report stream file information. Signed-off-by: Amnon Heiman <amnon@scylladb.com>
152 lines
4.5 KiB
Java
152 lines
4.5 KiB
Java
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/*
|
|
* Copyright 2015 ScyllaDB
|
|
*
|
|
* Modified by ScyllaDB
|
|
*/
|
|
|
|
package org.apache.cassandra.streaming;
|
|
|
|
import java.io.Serializable;
|
|
import java.net.InetAddress;
|
|
import java.net.UnknownHostException;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import javax.json.JsonArray;
|
|
import javax.json.JsonObject;
|
|
|
|
import com.google.common.base.Objects;
|
|
|
|
/**
|
|
* ProgressInfo contains file transfer progress.
|
|
*/
|
|
public class ProgressInfo implements Serializable
|
|
{
|
|
/**
|
|
* Direction of the stream.
|
|
*/
|
|
public static enum Direction
|
|
{
|
|
OUT(0),
|
|
IN(1);
|
|
|
|
public final byte code;
|
|
|
|
private Direction(int code)
|
|
{
|
|
this.code = (byte) code;
|
|
}
|
|
|
|
public static Direction fromByte(byte direction)
|
|
{
|
|
return direction == 0 ? OUT : IN;
|
|
}
|
|
}
|
|
|
|
public final InetAddress peer;
|
|
public final int sessionIndex;
|
|
public final String fileName;
|
|
public final Direction direction;
|
|
public final long currentBytes;
|
|
public final long totalBytes;
|
|
|
|
public ProgressInfo(InetAddress peer, int sessionIndex, String fileName, Direction direction, long currentBytes, long totalBytes)
|
|
{
|
|
assert totalBytes > 0;
|
|
|
|
this.peer = peer;
|
|
this.sessionIndex = sessionIndex;
|
|
this.fileName = fileName;
|
|
this.direction = direction;
|
|
this.currentBytes = currentBytes;
|
|
this.totalBytes = totalBytes;
|
|
}
|
|
|
|
static public ProgressInfo fromJsonObject(JsonObject obj) {
|
|
try {
|
|
return new ProgressInfo(InetAddress.getByName(obj.getString("peer")),
|
|
obj.getInt("session_index"),
|
|
obj.getString("file_name"),
|
|
Direction.valueOf(obj.getString("direction")),
|
|
obj.getJsonNumber("current_bytes").longValue(),
|
|
obj.getJsonNumber("total_bytes").longValue());
|
|
} catch (UnknownHostException e) {
|
|
// Not suppose to get here
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
static public Map<String, ProgressInfo> fromJArrray(JsonArray arr) {
|
|
Map<String, ProgressInfo> res = new HashMap<String, ProgressInfo>();
|
|
if (arr != null) {
|
|
for (int i = 0; i < arr.size(); i++) {
|
|
ProgressInfo obj = fromJsonObject(arr.getJsonObject(i).getJsonObject("value"));
|
|
res.put(obj.fileName, obj);
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
/**
|
|
* @return true if file transfer is completed
|
|
*/
|
|
public boolean isCompleted()
|
|
{
|
|
return currentBytes >= totalBytes;
|
|
}
|
|
|
|
/**
|
|
* ProgressInfo is considered to be equal only when all attributes except currentBytes are equal.
|
|
*/
|
|
@Override
|
|
public boolean equals(Object o)
|
|
{
|
|
if (this == o) return true;
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
|
|
ProgressInfo that = (ProgressInfo) o;
|
|
|
|
if (totalBytes != that.totalBytes) return false;
|
|
if (direction != that.direction) return false;
|
|
if (!fileName.equals(that.fileName)) return false;
|
|
if (sessionIndex != that.sessionIndex) return false;
|
|
return peer.equals(that.peer);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode()
|
|
{
|
|
return Objects.hashCode(peer, sessionIndex, fileName, direction, totalBytes);
|
|
}
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
StringBuilder sb = new StringBuilder(fileName);
|
|
sb.append(" ").append(currentBytes);
|
|
sb.append("/").append(totalBytes).append(" bytes");
|
|
sb.append("(").append(currentBytes*100/totalBytes).append("%) ");
|
|
sb.append(direction == Direction.OUT ? "sent to " : "received from ");
|
|
sb.append("idx:").append(sessionIndex);
|
|
sb.append(peer);
|
|
return sb.toString();
|
|
}
|
|
}
|