Files
flowframes/CodeLegacy/MiscUtils/FormatUtils.cs

216 lines
7.3 KiB
C#

using Flowframes.Data;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Flowframes.MiscUtils
{
class FormatUtils
{
public static string Bytes(long sizeBytes)
{
try
{
string[] suf = { "B", "KB", "MB", "GB", "TB", "PB", "EB" };
if (sizeBytes == 0)
return "0" + suf[0];
long bytes = Math.Abs(sizeBytes);
int place = Convert.ToInt32(Math.Floor(Math.Log(bytes, 1024)));
double num = Math.Round(bytes / Math.Pow(1024, place), 1);
return ($"{Math.Sign(sizeBytes) * num} {suf[place]}");
}
catch
{
return "N/A B";
}
}
public static string Time(long milliseconds, bool allowMs = true)
{
return Time(TimeSpan.FromMilliseconds(milliseconds), allowMs);
}
public static string Time(TimeSpan span, bool allowMs = true)
{
if (span.TotalHours >= 1f)
return span.ToString(@"hh\:mm\:ss");
if (span.TotalMinutes >= 1f)
return span.ToString(@"mm\:ss");
if (span.TotalSeconds >= 1f || !allowMs)
{
string format = span.TotalSeconds < 10f ? @"%s\.f" : @"%s";
return span.ToString(format) + "s";
}
return span.ToString(@"fff") + "ms";
}
public static string TimeSw(Stopwatch sw)
{
long elapsedMs = sw.ElapsedMilliseconds;
return Time(elapsedMs);
}
public static long TimestampToSecs(string timestamp, bool hasMilliseconds = true)
{
try
{
string[] values = timestamp.Split(':');
int hours = int.Parse(values[0]);
int minutes = int.Parse(values[1]);
int seconds = int.Parse(values[2].Split('.')[0]);
long secs = hours * 3600 + minutes * 60 + seconds;
if (hasMilliseconds)
{
int milliseconds = int.Parse(values[2].Split('.')[1].Substring(0, 2)) * 10;
if (milliseconds >= 500)
secs++;
}
return secs;
}
catch (Exception e)
{
Logger.Log($"TimestampToSecs({timestamp}) Exception: {e.Message}", true);
return 0;
}
}
public static long TimestampToMs(string timestamp)
{
try
{
if (timestamp.IsEmpty() || timestamp == "N/A")
return 0;
string[] values = timestamp.Split(':');
if (values.Length < 3)
return 0;
int hours = int.Parse(values[0]);
int minutes = int.Parse(values[1]);
int seconds = int.Parse(values[2].Split('.')[0]);
long ms = 0;
if (timestamp.Contains("."))
{
int milliseconds = int.Parse(values[2].Split('.')[1].Substring(0, 2)) * 10;
ms = hours * 3600000 + minutes * 60000 + seconds * 1000 + milliseconds;
}
else
{
ms = hours * 3600000 + minutes * 60000 + seconds * 1000;
}
return ms;
}
catch (Exception e)
{
Logger.Log($"MsFromTimeStamp({timestamp}) Exception: {e.Message}", true);
return 0;
}
}
public static string SecsToTimestamp(long seconds)
{
return (new DateTime(1970, 1, 1)).AddSeconds(seconds).ToString("HH:mm:ss");
}
public static string MsToTimestamp(long milliseconds)
{
return (new DateTime(1970, 1, 1)).AddMilliseconds(milliseconds).ToString("HH:mm:ss");
}
public static string Ratio(long numFrom, long numTo)
{
float ratio = ((float)numFrom / (float)numTo) * 100f;
return ratio.ToString("0.00") + "%";
}
public static int RatioInt(long numFrom, long numTo)
{
double ratio = Math.Round(((float)numFrom / (float)numTo) * 100f);
return (int)ratio;
}
public static string RatioIntStr(long numFrom, long numTo)
{
double ratio = Math.Round(((float)numFrom / (float)numTo) * 100f);
return ratio + "%";
}
public static string ConcatStrings(string[] strings, char delimiter = ',', bool distinct = false)
{
string outStr = "";
strings = strings.Where(s => !string.IsNullOrWhiteSpace(s)).ToArray();
if (distinct)
strings = strings.Distinct().ToArray();
for (int i = 0; i < strings.Length; i++)
{
outStr += strings[i];
if (i + 1 != strings.Length)
outStr += delimiter;
}
return outStr;
}
public static System.Drawing.Size ParseSize(string str)
{
try
{
string[] values = str.Split('x');
return new System.Drawing.Size(values[0].GetInt(), values[1].GetInt());
}
catch
{
return new System.Drawing.Size();
}
}
public static string BeautifyFfmpegStats(string line)
{
line = line.Remove("q=-0.0").Remove("q=-1.0").Remove("size=N/A").Remove("bitrate=N/A").Replace("frame=", "Frame: ")
.Replace("fps=", "FPS: ").Replace("q=", "QP: ").Replace("time=", "Time: ").Replace("speed=", "Relative Speed: ")
.Replace("bitrate=", "Bitrate: ").Replace("Lsize=", "Size: ").Replace("size=", "Size: ").TrimWhitespaces();
if (!line.Contains("Bitrate: ") && line.Contains(" 0x"))
line = line.Split(" QP: ").FirstOrDefault().Trim() + " (Analysing...)";
return line;
}
public static string CapsIfShort(string codec, int capsIfShorterThan = 5)
{
if (codec.Length < capsIfShorterThan)
return codec.Upper();
else
return codec.ToTitleCase();
}
/// <summary> Show fraction in a nicely readable way, including a decimal approximation. Tilde symbol will be added before the approx number unless <paramref name="showTildeForApprox"/> is False. </summary>
public static string Fraction(Fraction f, bool showTildeForApprox = true)
{
// No need to show "24/1" since we can just show "24"
if (f.Denominator == 1)
return f.Numerator.ToString();
// If number is actually fractional, show the fraction as well as the approx. decimal number
string decimalStr = f.GetFloat().ToString("0.###");
bool isPrecise = decimalStr == f.GetFloat().ToString("0.####"); // If 0.___ matches with 0.____ it means we have enough decimal places and thus it's precise
string t = showTildeForApprox && !isPrecise ? "~" : "";
return $"{f} ({t}{decimalStr})";
}
}
}