Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

show filesize also in human readable format #210

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 162 additions & 0 deletions src/main/java/com/zoffcc/applications/trifa/HelperFiletransfer.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.math.BigInteger;
import java.net.URLConnection;
import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;
Expand All @@ -14,6 +15,7 @@
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Base64;
import java.util.Objects;
import java.util.Random;

import static com.zoffcc.applications.sorm.OrmaDatabase.sqldb;
Expand Down Expand Up @@ -820,4 +822,164 @@ static void start_outgoing_ft(Message element)
Log.i(TAG, "MM2MM:EE1:" + e2.getMessage());
}
}

// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// HINT: copied from: https://commons.apache.org/proper/commons-io/apidocs/src-html/org/apache/commons/io/FileUtils.html
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------

/**
* The number of bytes in a kilobyte.
*/
public static final long ONE_KB = 1024;

/**
* The number of bytes in a kilobyte.
*
* @since 2.4
*/
public static final BigInteger ONE_KB_BI = BigInteger.valueOf(ONE_KB);

/**
* The number of bytes in a megabyte.
*/
public static final long ONE_MB = ONE_KB * ONE_KB;

/**
* The number of bytes in a megabyte.
*
* @since 2.4
*/
public static final BigInteger ONE_MB_BI = ONE_KB_BI.multiply(ONE_KB_BI);

/**
* The number of bytes in a gigabyte.
*/
public static final long ONE_GB = ONE_KB * ONE_MB;

/**
* The number of bytes in a gigabyte.
*
* @since 2.4
*/
public static final BigInteger ONE_GB_BI = ONE_KB_BI.multiply(ONE_MB_BI);

/**
* The number of bytes in a terabyte.
*/
public static final long ONE_TB = ONE_KB * ONE_GB;

/**
* The number of bytes in a terabyte.
*
* @since 2.4
*/
public static final BigInteger ONE_TB_BI = ONE_KB_BI.multiply(ONE_GB_BI);

/**
* The number of bytes in a petabyte.
*/
public static final long ONE_PB = ONE_KB * ONE_TB;

/**
* The number of bytes in a petabyte.
*
* @since 2.4
*/
public static final BigInteger ONE_PB_BI = ONE_KB_BI.multiply(ONE_TB_BI);

/**
* The number of bytes in an exabyte.
*/
public static final long ONE_EB = ONE_KB * ONE_PB;

/**
* The number of bytes in an exabyte.
*
* @since 2.4
*/
public static final BigInteger ONE_EB_BI = ONE_KB_BI.multiply(ONE_PB_BI);

/**
* The number of bytes in a zettabyte.
*/
public static final BigInteger ONE_ZB = BigInteger.valueOf(ONE_KB).multiply(BigInteger.valueOf(ONE_EB));

/**
* The number of bytes in a yottabyte.
*/
public static final BigInteger ONE_YB = ONE_KB_BI.multiply(ONE_ZB);

/**
* An empty array of type {@link File}.
*/
public static final File[] EMPTY_FILE_ARRAY = {};

/**
* Returns a human-readable version of the file size, where the input represents a specific number of bytes.
* <p>
* If the size is over 1GB, the size is returned as the number of whole GB, i.e. the size is rounded down to the
* nearest GB boundary.
* </p>
* <p>
* Similarly for the 1MB and 1KB boundaries.
* </p>
*
* @param size the number of bytes
* @return a human-readable display value (includes units - EB, PB, TB, GB, MB, KB or bytes)
* @throws NullPointerException if the given {@link BigInteger} is {@code null}.
* @see <a href="https://issues.apache.org/jira/browse/IO-226">IO-226 - should the rounding be changed?</a>
* @since 2.4
*/
// See https://issues.apache.org/jira/browse/IO-226 - should the rounding be changed?
public static String byteCountToDisplaySize(final BigInteger size) {
Objects.requireNonNull(size, "size");
final String displaySize;

if (size.divide(ONE_EB_BI).compareTo(BigInteger.ZERO) > 0) {
displaySize = size.divide(ONE_EB_BI) + " EB";
} else if (size.divide(ONE_PB_BI).compareTo(BigInteger.ZERO) > 0) {
displaySize = size.divide(ONE_PB_BI) + " PB";
} else if (size.divide(ONE_TB_BI).compareTo(BigInteger.ZERO) > 0) {
displaySize = size.divide(ONE_TB_BI) + " TB";
} else if (size.divide(ONE_GB_BI).compareTo(BigInteger.ZERO) > 0) {
displaySize = size.divide(ONE_GB_BI) + " GB";
} else if (size.divide(ONE_MB_BI).compareTo(BigInteger.ZERO) > 0) {
displaySize = size.divide(ONE_MB_BI) + " MB";
} else if (size.divide(ONE_KB_BI).compareTo(BigInteger.ZERO) > 0) {
displaySize = size.divide(ONE_KB_BI) + " KB";
} else {
displaySize = size + " bytes";
}
return displaySize;
}

/**
* Returns a human-readable version of the file size, where the input represents a specific number of bytes.
* <p>
* If the size is over 1GB, the size is returned as the number of whole GB, i.e. the size is rounded down to the
* nearest GB boundary.
* </p>
* <p>
* Similarly for the 1MB and 1KB boundaries.
* </p>
*
* @param size the number of bytes
* @return a human-readable display value (includes units - EB, PB, TB, GB, MB, KB or bytes)
* @see <a href="https://issues.apache.org/jira/browse/IO-226">IO-226 - should the rounding be changed?</a>
*/
// See https://issues.apache.org/jira/browse/IO-226 - should the rounding be changed?
public static String byteCountToDisplaySize(final long size) {
return byteCountToDisplaySize(BigInteger.valueOf(size));
}
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// HINT: copied from: https://commons.apache.org/proper/commons-io/apidocs/src-html/org/apache/commons/io/FileUtils.html
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
// --------------------------------------------------------------------------
}
13 changes: 11 additions & 2 deletions src/main/kotlin/com/zoffcc/applications/trifa2/ChatMessage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ import androidx.compose.ui.unit.TextUnit
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.vanniktech.emoji.emojiInformation
import com.zoffcc.applications.trifa.HelperFiletransfer.byteCountToDisplaySize
import com.zoffcc.applications.trifa.HelperFiletransfer.check_filename_is_image
import com.zoffcc.applications.trifa.HelperGeneric
import com.zoffcc.applications.trifa.HelperGeneric.cancel_ft_from_ui
Expand Down Expand Up @@ -342,13 +343,17 @@ fun outgoing_filetransfer(message: UIMessage, ui_scale: Float)
{
}
var file_size_in_bytes = "???"
var file_size_human = file_size_in_bytes
try
{
file_size_in_bytes = File(message.filename_fullpath).length().toString() }
file_size_human = byteCountToDisplaySize(File(message.filename_fullpath).length())
file_size_in_bytes = File(message.filename_fullpath).length().toString()
}
catch(_: Exception)
{
}
Tooltip(text = "Filename: " + file_name_without_path + "\n"
+ "Filesize: " + file_size_human + "\n"
+ "Filesize: " + file_size_in_bytes + " Bytes",
textcolor = Color.Black) {
show_filetransfer_image(ui_scale = ui_scale, clickable = true,
Expand Down Expand Up @@ -424,13 +429,17 @@ fun incoming_filetransfer(message: UIMessage, ui_scale: Float)
{
}
var file_size_in_bytes = "???"
var file_size_human = file_size_in_bytes
try
{
file_size_in_bytes = File(message.filename_fullpath).length().toString() }
file_size_human = byteCountToDisplaySize(File(message.filename_fullpath).length())
file_size_in_bytes = File(message.filename_fullpath).length().toString()
}
catch(_: Exception)
{
}
Tooltip(text = "Filename: " + file_name_without_path + "\n"
+ "Filesize: " + file_size_human + "\n"
+ "Filesize: " + file_size_in_bytes + " Bytes",
textcolor = Color.Black) {
show_filetransfer_image(ui_scale = ui_scale, clickable = true,
Expand Down
13 changes: 11 additions & 2 deletions src/main/kotlin/com/zoffcc/applications/trifa2/GroupChatMessage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.vanniktech.emoji.emojiInformation
import com.zoffcc.applications.trifa.HelperFiletransfer
import com.zoffcc.applications.trifa.HelperFiletransfer.byteCountToDisplaySize
import com.zoffcc.applications.trifa.HelperGeneric
import com.zoffcc.applications.trifa.HelperOSFile.open_webpage
import com.zoffcc.applications.trifa.HelperOSFile.show_containing_dir_in_explorer
Expand Down Expand Up @@ -237,13 +238,17 @@ fun group_outgoing_filetransfer(groupmessage: UIGroupMessage, ui_scale: Float)
{
}
var file_size_in_bytes = "???"
var file_size_human = file_size_in_bytes
try
{
file_size_in_bytes = File(groupmessage.filename_fullpath).length().toString() }
file_size_human = byteCountToDisplaySize(File(groupmessage.filename_fullpath).length())
file_size_in_bytes = File(groupmessage.filename_fullpath).length().toString()
}
catch(_: Exception)
{
}
Tooltip(text = "Filename: " + file_name_without_path + "\n"
+ "Filesize: " + file_size_human + "\n"
+ "Filesize: " + file_size_in_bytes + " Bytes",
textcolor = Color.Black) {
group_show_filetransfer_image(ui_scale = ui_scale, clickable = true,
Expand Down Expand Up @@ -331,13 +336,17 @@ fun group_incoming_filetransfer(groupmessage: UIGroupMessage, ui_scale: Float)
{
}
var file_size_in_bytes = "???"
var file_size_human = file_size_in_bytes
try
{
file_size_in_bytes = File(groupmessage.filename_fullpath).length().toString() }
file_size_human = byteCountToDisplaySize(File(groupmessage.filename_fullpath).length())
file_size_in_bytes = File(groupmessage.filename_fullpath).length().toString()
}
catch(_: Exception)
{
}
Tooltip(text = "Filename: " + file_name_without_path + "\n"
+ "Filesize: " + file_size_human + "\n"
+ "Filesize: " + file_size_in_bytes + " Bytes",
textcolor = Color.Black) {
group_show_filetransfer_image(ui_scale = ui_scale, clickable = true,
Expand Down
Loading