Fix carriage return
This commit is contained in:
parent
efa039b64b
commit
676684397e
5 changed files with 103 additions and 78 deletions
|
@ -1,3 +1,3 @@
|
|||
class Constants {
|
||||
static const VERSION = "1.2.082424+0006";
|
||||
static const VERSION = "1.2.082424+0701";
|
||||
}
|
||||
|
|
|
@ -147,55 +147,6 @@ class FileInformationCache {
|
|||
_registry[path] = info;
|
||||
}
|
||||
|
||||
Future<String> generateHTMLReport(
|
||||
{bool ascending = false, String VERSION = ""}) async {
|
||||
String header = '''
|
||||
<html>
|
||||
<title>MKFSReport</title>
|
||||
<body style="background-color: black;color: #00D2FA">
|
||||
<h2>File System Report</h2><br/>
|
||||
<b>Generated by mkfsreport v${VERSION}</b><br/>
|
||||
<b>Bundled <a href="https://git.zontreck.com/AriasCreations/LibAC-dart">LibAC</a> Version: ${Constants.VERSION}</b><br/>
|
||||
<pre style="color: #7a0c17">
|
||||
MKFSREPORT and LibAC are provided free of charge with no implied warranties. The software is provided as-is.
|
||||
|
||||
This program was created by Tara Piccari, as a part of the Aria's Creations common code library as a helper utility.
|
||||
Aria's Creations is a alias for online-only works. Aria is an anagram derived from my name. piccARI, tarA. You place my last name first, take the last 3, skip the first 3 in my first name and take the remaining character(s) and you have my alias.
|
||||
|
||||
This utility analyzed the specified folder path to generate a detailed report of directory and file sizes as seen below.
|
||||
</pre><br/>
|
||||
''';
|
||||
|
||||
header += '''
|
||||
<table>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<th>Path</th>
|
||||
<th>Size</th>
|
||||
</tr>
|
||||
''';
|
||||
|
||||
for (var entry in (await getOrderedList(ascending: ascending))) {
|
||||
header += '''
|
||||
<tr>
|
||||
<td>${entry.isFile ? "FILE" : "DIR"}</td>
|
||||
<td>${entry.path}</td>
|
||||
<td>${entry.toString()}</td>
|
||||
</tr>
|
||||
''';
|
||||
}
|
||||
|
||||
header += '''
|
||||
</table>
|
||||
''';
|
||||
|
||||
header += '''
|
||||
</body>
|
||||
</html>
|
||||
''';
|
||||
return header;
|
||||
}
|
||||
|
||||
Future<List<FileInfo>> getOrderedList({bool ascending = false}) async {
|
||||
List<FileInfo> infoList = [];
|
||||
for (var entry in _registry.entries) {
|
||||
|
@ -267,12 +218,12 @@ class FileInfo {
|
|||
|
||||
Future<int> getFileSize(String path,
|
||||
{bool cacheSize = false, bool verbose = false}) async {
|
||||
if (verbose) prnt("> Checking size of file $path\r");
|
||||
if (verbose) await prnt("${trunc("> Checking size of file $path")}\r");
|
||||
/*final fileBytes = await File(path).readAsBytes();
|
||||
int size = fileBytes.lengthInBytes;*/
|
||||
final size = await File(path).length();
|
||||
|
||||
if (verbose) prnt(">> Size of file $path is $size bytes\r");
|
||||
if (verbose) await prnt("${trunc(">> Size of file $path")} is $size bytes\r");
|
||||
|
||||
if (cacheSize) {
|
||||
FileInformationCache FIC = FileInformationCache.obtain();
|
||||
|
@ -287,10 +238,9 @@ Future<int> getDirectorySize(String path,
|
|||
bool cacheSize = false,
|
||||
bool verbose = false}) async {
|
||||
int totalSize = 0;
|
||||
if (verbose) prnt("> Check dir size of $path\r");
|
||||
final entityList = await Directory(path)
|
||||
.list(recursive: recursive, followLinks: true)
|
||||
.toList();
|
||||
if (verbose) await prnt("${trunc("> Check dir size of $path")}\r");
|
||||
final entityList =
|
||||
await Directory(path).list(recursive: false, followLinks: true).toList();
|
||||
|
||||
await Future.forEach(entityList, (entity) async {
|
||||
if (entity is File) {
|
||||
|
@ -302,7 +252,8 @@ Future<int> getDirectorySize(String path,
|
|||
}
|
||||
});
|
||||
|
||||
if (verbose) prnt(">> Size of dir $path is $totalSize bytes\r");
|
||||
if (verbose)
|
||||
await prnt("${trunc(">> Size of dir $path")} is $totalSize bytes\r");
|
||||
|
||||
if (cacheSize) {
|
||||
FileInformationCache FIC = FileInformationCache.obtain();
|
||||
|
@ -313,7 +264,7 @@ Future<int> getDirectorySize(String path,
|
|||
return totalSize;
|
||||
}
|
||||
|
||||
void prnt(String text) {
|
||||
Future<void> prnt(String text) async {
|
||||
// Convert the string to a list of runes to handle escape sequences properly.
|
||||
final runes = text.runes.toList();
|
||||
|
||||
|
@ -321,23 +272,28 @@ void prnt(String text) {
|
|||
final char = runes[i];
|
||||
|
||||
// Check for escape sequences
|
||||
if (char == 0x5C && i + 1 < runes.length) {
|
||||
// '\\' character in UTF-16
|
||||
final nextChar = runes[i + 1];
|
||||
if (nextChar == 0x72) {
|
||||
// 'r' character in UTF-16
|
||||
// Handle '\r' escape sequence
|
||||
stdout.write('\r'); // Move the cursor back to the beginning of the line
|
||||
stdout.write(
|
||||
' ' * stdout.terminalColumns); // Erase the entire line with spaces
|
||||
stdout.write(
|
||||
'\r'); // Move the cursor back to the start of the line again after clearing
|
||||
i++; // Skip the 'r' character
|
||||
continue;
|
||||
}
|
||||
final charStr = String.fromCharCode(char);
|
||||
if (charStr == '\r') {
|
||||
// 'r' character in UTF-16
|
||||
// Handle '\r' escape sequence
|
||||
stdout.write('\r'); // Move the cursor back to the beginning of the line
|
||||
stdout.write(' '.padLeft(
|
||||
stdout.terminalColumns - 1)); // Erase the entire line with spaces
|
||||
stdout.write(
|
||||
'\r'); // Move the cursor back to the start of the line again after clearing
|
||||
continue;
|
||||
}
|
||||
|
||||
// Write the character as-is
|
||||
stdout.write(String.fromCharCode(char));
|
||||
}
|
||||
|
||||
await stdout.flush();
|
||||
}
|
||||
|
||||
String trunc(String input) {
|
||||
if (input.length > stdout.terminalColumns - 32) {
|
||||
return "${input.substring(0, (stdout.terminalColumns / 2).round())}...";
|
||||
} else
|
||||
return input;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue