Compare commits
6 Commits
32ae97d764
...
d034306374
Author | SHA1 | Date | |
---|---|---|---|
d034306374 | |||
eca0efc71f | |||
614670c7f7 | |||
7bae08c08f | |||
d8cb560f68 | |||
|
21c7186b81 |
9
Makefile
9
Makefile
@ -19,10 +19,19 @@ $(OUTPUT): $(SRC)
|
|||||||
nomime: $(SRC)
|
nomime: $(SRC)
|
||||||
$(CXX) $(SRC) -o $(OUTPUT) -D NO_MIME
|
$(CXX) $(SRC) -o $(OUTPUT) -D NO_MIME
|
||||||
|
|
||||||
|
noemojis: $(SRC)
|
||||||
|
$(CXX) $(SRC) $(CXXFLAGS) -o $(OUTPUT) -D NO_EMOJIS
|
||||||
|
|
||||||
check: $(OUTPUT)
|
check: $(OUTPUT)
|
||||||
$(CXX) $(SRC) $(CXXFLAGS) -o $(OUTPUT)
|
$(CXX) $(SRC) $(CXXFLAGS) -o $(OUTPUT)
|
||||||
rm -f $(OUTPUT)
|
rm -f $(OUTPUT)
|
||||||
|
|
||||||
|
install: $(OUTPUT)
|
||||||
|
cp $(OUTPUT) /usr/bin/
|
||||||
|
|
||||||
|
userinstall: $(OUTPUT)
|
||||||
|
cp $(OUTPUT) ~/.local/bin/
|
||||||
|
|
||||||
# Clean up generated files
|
# Clean up generated files
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OUTPUT)
|
rm -f $(OUTPUT)
|
||||||
|
@ -78,3 +78,5 @@ pavlik@pavlik-MacBookPro9-2:~/rgb-terminal$ fileinfo . # Current directory
|
|||||||
Hidden: 0 files and 1 folders.
|
Hidden: 0 files and 1 folders.
|
||||||
Permissions: drwxrwxr-x
|
Permissions: drwxrwxr-x
|
||||||
```
|
```
|
||||||
|
## Coming soon
|
||||||
|
* Created, last modified and last opened dates.
|
||||||
|
2
archives.h
Normal file
2
archives.h
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
// MIME types for archives
|
||||||
|
#define ARCHIVES {"application/x-archive", "application/x-cpio", "application/x-shar", "application/x-iso9660-image", "application/x-sbx", "application/x-tar", "application/x-brotli", "application/x-bzip2", "application/vnd.genozip", "application/gzip", "application/x-lzip", "application/x-lzma", "application/x-lzop", "application/x-snappy-framed", "application/x-xz", "application/x-compress", "application/x-compress", "application/zstd", "application/x-7z-compressed", "application/x-ace-compressed", "application/x-astrotite-afa", "application/x-alz-compressed", "application/vnd.android.package-archive", "application/x-freearc", "application/x-arj", "application/x-b1", "application/vnd.ms-cab-compressed", "application/x-cfs-compressed", "application/x-dar", "application/x-dgc-compressed", "application/x-apple-diskimage", "application/x-gca-compressed", "application/java-archive", "application/x-lzh", "application/x-lzx", "application/x-rar-compressed", "application/x-stuffit", "application/x-stuffitx", "application/x-gtar", "application/x-ms-wim", "application/x-xar", "application/zip", "application/x-zoo"}
|
156
main.cpp
156
main.cpp
@ -7,16 +7,35 @@
|
|||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#ifndef NO_MIME
|
#ifndef NO_MIME
|
||||||
#include <magic.h>
|
#include "mime.h"
|
||||||
|
#include "archives.h" // Run make nomime
|
||||||
#endif
|
#endif
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <array>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
|
||||||
|
#include <fstream>
|
||||||
|
#include "devinfo.c"
|
||||||
|
|
||||||
|
void ListPartitions(const std::string& device) {
|
||||||
|
std::ifstream file("/proc/partitions");
|
||||||
|
std::string line;
|
||||||
|
|
||||||
|
while (std::getline(file, line)) {
|
||||||
|
if (line.find(device) != std::string::npos) {
|
||||||
|
std::cout << line << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
enum FileType {
|
enum FileType {
|
||||||
Unknown,
|
Unknown,
|
||||||
File, Folder,
|
File, Folder,
|
||||||
|
BLKFile, CHRFile,
|
||||||
|
FIFO, Symlink,
|
||||||
|
Socket,
|
||||||
#ifndef NO_MIME
|
#ifndef NO_MIME
|
||||||
Archive, Audio,
|
Archive, Audio,
|
||||||
Application,
|
Application,
|
||||||
@ -25,12 +44,12 @@ enum FileType {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
std::vector<int> get_files_in_directory(const std::string& path)
|
std::array<int, 4> get_files_in_directory(const std::string& path)
|
||||||
{
|
{
|
||||||
DIR* dp = opendir(path.c_str());
|
DIR* dp = opendir(path.c_str());
|
||||||
// int normal, hidden;
|
// int normal, hidden;
|
||||||
int normal[2] = {0,0};
|
std::array<int, 2> normal = {0, 0};
|
||||||
int hidden[2] = {0,0};
|
std::array<int, 2> hidden = {0, 0};
|
||||||
if (dp != nullptr) {
|
if (dp != nullptr) {
|
||||||
struct dirent* ep;
|
struct dirent* ep;
|
||||||
while((ep = readdir(dp))) {
|
while((ep = readdir(dp))) {
|
||||||
@ -48,11 +67,11 @@ std::vector<int> get_files_in_directory(const std::string& path)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
perror("Couldn't open the directory");
|
perror("Couldn't open the directory");
|
||||||
std::vector<int> result;
|
std::array<int, 4> result;
|
||||||
result.insert(result.end(), normal[0]);
|
result[0] = normal[0];
|
||||||
result.insert(result.end(), normal[1]);
|
result[1] = normal[1];
|
||||||
result.insert(result.end(), hidden[0]);
|
result[2] = hidden[0];
|
||||||
result.insert(result.end(), hidden[1]);
|
result[3] = hidden[1];
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,53 +79,10 @@ bool starts_with(const std::string& prefix, const std::string& string) {
|
|||||||
return string.rfind(prefix, 0) == 0;
|
return string.rfind(prefix, 0) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef NO_MIME
|
||||||
bool is_archive(const std::string& mime_type)
|
bool is_archive(const std::string& mime_type)
|
||||||
{
|
{
|
||||||
const std::string archives[] = {
|
const std::string archives[] = ARCHIVES;
|
||||||
"application/x-archive",
|
|
||||||
"application/x-cpio",
|
|
||||||
"application/x-shar",
|
|
||||||
"application/x-iso9660-image",
|
|
||||||
"application/x-sbx",
|
|
||||||
"application/x-tar",
|
|
||||||
"application/x-brotli",
|
|
||||||
"application/x-bzip2",
|
|
||||||
"application/vnd.genozip",
|
|
||||||
"application/gzip",
|
|
||||||
"application/x-lzip",
|
|
||||||
"application/x-lzma",
|
|
||||||
"application/x-lzop",
|
|
||||||
"application/x-snappy-framed",
|
|
||||||
"application/x-xz",
|
|
||||||
"application/x-compress",
|
|
||||||
"application/x-compress",
|
|
||||||
"application/zstd",
|
|
||||||
"application/x-7z-compressed",
|
|
||||||
"application/x-ace-compressed",
|
|
||||||
"application/x-astrotite-afa",
|
|
||||||
"application/x-alz-compressed",
|
|
||||||
"application/vnd.android.package-archive",
|
|
||||||
"application/x-freearc",
|
|
||||||
"application/x-arj",
|
|
||||||
"application/x-b1",
|
|
||||||
"application/vnd.ms-cab-compressed",
|
|
||||||
"application/x-cfs-compressed",
|
|
||||||
"application/x-dar",
|
|
||||||
"application/x-dgc-compressed",
|
|
||||||
"application/x-apple-diskimage",
|
|
||||||
"application/x-gca-compressed",
|
|
||||||
"application/java-archive",
|
|
||||||
"application/x-lzh",
|
|
||||||
"application/x-lzx",
|
|
||||||
"application/x-rar-compressed",
|
|
||||||
"application/x-stuffit",
|
|
||||||
"application/x-stuffitx",
|
|
||||||
"application/x-gtar",
|
|
||||||
"application/x-ms-wim",
|
|
||||||
"application/x-xar",
|
|
||||||
"application/zip",
|
|
||||||
"application/x-zoo"
|
|
||||||
};
|
|
||||||
int len = sizeof(archives)/sizeof(archives[0]);
|
int len = sizeof(archives)/sizeof(archives[0]);
|
||||||
|
|
||||||
for(int i = 0; i < len; ++i)
|
for(int i = 0; i < len; ++i)
|
||||||
@ -118,6 +94,7 @@ bool is_archive(const std::string& mime_type)
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
std::string get_name_from_filetype(const enum FileType fs)
|
std::string get_name_from_filetype(const enum FileType fs)
|
||||||
{
|
{
|
||||||
@ -136,6 +113,16 @@ std::string get_name_from_filetype(const enum FileType fs)
|
|||||||
return "File";
|
return "File";
|
||||||
case FileType::Folder:
|
case FileType::Folder:
|
||||||
return "Folder";
|
return "Folder";
|
||||||
|
case FileType::BLKFile:
|
||||||
|
return "Block special file";
|
||||||
|
case FileType::CHRFile:
|
||||||
|
return "Character special file";
|
||||||
|
case FileType::FIFO:
|
||||||
|
return "Pipe or FIFO special file";
|
||||||
|
case FileType::Socket:
|
||||||
|
return "UNIX socket";
|
||||||
|
case FileType::Symlink:
|
||||||
|
return "Symbolic";
|
||||||
#ifndef NO_MIME
|
#ifndef NO_MIME
|
||||||
case FileType::Text:
|
case FileType::Text:
|
||||||
return "Text";
|
return "Text";
|
||||||
@ -146,8 +133,10 @@ std::string get_name_from_filetype(const enum FileType fs)
|
|||||||
return "Unknown";
|
return "Unknown";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string get_emoji_from_filetype(const enum FileType fs)
|
std::string get_emoji_from_filetype(const enum FileType fs)
|
||||||
{
|
{
|
||||||
|
#ifndef NO_EMOJIS
|
||||||
switch (fs) {
|
switch (fs) {
|
||||||
#ifndef NO_MIME
|
#ifndef NO_MIME
|
||||||
case FileType::Application:
|
case FileType::Application:
|
||||||
@ -163,6 +152,16 @@ std::string get_emoji_from_filetype(const enum FileType fs)
|
|||||||
return "📄";
|
return "📄";
|
||||||
case FileType::Folder:
|
case FileType::Folder:
|
||||||
return "📁";
|
return "📁";
|
||||||
|
case FileType::BLKFile:
|
||||||
|
return "🪄";
|
||||||
|
case FileType::CHRFile:
|
||||||
|
return "🖨️";
|
||||||
|
case FileType::FIFO:
|
||||||
|
return "🤝";
|
||||||
|
case FileType::Socket:
|
||||||
|
return "🔌";
|
||||||
|
case FileType::Symlink:
|
||||||
|
return "🔗";
|
||||||
#ifndef NO_MIME
|
#ifndef NO_MIME
|
||||||
case FileType::Text:
|
case FileType::Text:
|
||||||
return "📝";
|
return "📝";
|
||||||
@ -172,9 +171,14 @@ std::string get_emoji_from_filetype(const enum FileType fs)
|
|||||||
default:
|
default:
|
||||||
return "?";
|
return "?";
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
return "";
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string readable_fs(const long int size /*in bytes*/, const double divide_by = 1024, const std::string& suffix = "B")
|
std::string readable_fs(const long int size /*in bytes*/,
|
||||||
|
const double divide_by = 1024,
|
||||||
|
const std::string& suffix = "B")
|
||||||
{
|
{
|
||||||
if(size < 1024) {
|
if(size < 1024) {
|
||||||
char buffer[128];
|
char buffer[128];
|
||||||
@ -245,7 +249,7 @@ std::string print_permissions(mode_t mode, bool is_dir) {
|
|||||||
other += (mode & S_IWOTH) ? "w" : "-";
|
other += (mode & S_IWOTH) ? "w" : "-";
|
||||||
other += (mode & S_IXOTH) ? "x" : "-";
|
other += (mode & S_IXOTH) ? "x" : "-";
|
||||||
|
|
||||||
|
|
||||||
return (is_dir ? "d" : "-") + user + group + other;
|
return (is_dir ? "d" : "-") + user + group + other;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -253,11 +257,25 @@ std::string basename(const std::string& filepath) {
|
|||||||
return filepath.substr(filepath.find_last_of("/\\") + 1);
|
return filepath.substr(filepath.find_last_of("/\\") + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FileType getFileType(mode_t st_mode) {
|
||||||
|
if(S_ISBLK(st_mode)) return FileType::BLKFile;
|
||||||
|
if(S_ISCHR(st_mode)) return FileType::CHRFile;
|
||||||
|
if(S_ISDIR(st_mode)) return FileType::Folder;
|
||||||
|
if(S_ISFIFO(st_mode)) return FileType::FIFO;
|
||||||
|
if(S_ISLNK(st_mode)) return FileType::Symlink;
|
||||||
|
if(S_ISSOCK(st_mode)) return FileType::Socket;
|
||||||
|
if(S_ISREG(st_mode)) return FileType::File;
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
bool absolute = false;
|
bool absolute = false;
|
||||||
|
#ifndef NO_EMOJIS
|
||||||
bool emojis = true;
|
bool emojis = true;
|
||||||
// char* filename = "/home/pavlik/Desktop/twrp-3.7.0_9-0-starlte.img";
|
#else
|
||||||
|
bool emojis = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (argc < 2) {
|
if (argc < 2) {
|
||||||
std::cerr << "Usage:\n\t" << argv[0] << " [args] filename ...\n";
|
std::cerr << "Usage:\n\t" << argv[0] << " [args] filename ...\n";
|
||||||
std::cerr << "Args:" << std::endl;
|
std::cerr << "Args:" << std::endl;
|
||||||
@ -293,7 +311,8 @@ int main(int argc, char *argv[])
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
// start
|
// start
|
||||||
int is_file = S_ISREG(file_stat.st_mode);
|
FileType file = getFileType(file_stat.st_mode);
|
||||||
|
bool is_file = file == FileType::File;
|
||||||
char temp[4097] = {'\0'};
|
char temp[4097] = {'\0'};
|
||||||
if (realpath(c_filename, temp) == nullptr) {
|
if (realpath(c_filename, temp) == nullptr) {
|
||||||
perror("realpath");
|
perror("realpath");
|
||||||
@ -302,14 +321,13 @@ int main(int argc, char *argv[])
|
|||||||
std::string full_name(temp); // = malloc(4097);
|
std::string full_name(temp); // = malloc(4097);
|
||||||
// delete[] temp;
|
// delete[] temp;
|
||||||
std::string name = basename(full_name);
|
std::string name = basename(full_name);
|
||||||
if(!is_file) name += "/";
|
if(file == FileType::Folder) name += "/";
|
||||||
#ifndef NO_MIME
|
#ifndef NO_MIME
|
||||||
std::string mime_type = get_mime(full_name);
|
std::string mime_type = get_mime(full_name);
|
||||||
#endif
|
//file = (is_file) ? FileType::File : FileType::Folder;
|
||||||
FileType file;
|
|
||||||
#ifdef NO_MIME
|
|
||||||
file = (is_file) ? FileType::File : FileType::Folder;
|
|
||||||
#else
|
#else
|
||||||
|
std::string mime_type = "application/octet-stream (no mime)";
|
||||||
|
#endif
|
||||||
if (starts_with("inode/directory", mime_type) || !is_file) {
|
if (starts_with("inode/directory", mime_type) || !is_file) {
|
||||||
file = FileType::Folder;
|
file = FileType::Folder;
|
||||||
} else if (is_archive(mime_type)) {
|
} else if (is_archive(mime_type)) {
|
||||||
@ -325,9 +343,9 @@ int main(int argc, char *argv[])
|
|||||||
} else if (starts_with("text", mime_type)) {
|
} else if (starts_with("text", mime_type)) {
|
||||||
file = FileType::Text;
|
file = FileType::Text;
|
||||||
} else {
|
} else {
|
||||||
file = FileType::Unknown;
|
file = FileType::Binary;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
std::string type = get_name_from_filetype(file);
|
std::string type = get_name_from_filetype(file);
|
||||||
std::string emoji = get_emoji_from_filetype(file);
|
std::string emoji = get_emoji_from_filetype(file);
|
||||||
if (emojis) printf("%s ", emoji.c_str());
|
if (emojis) printf("%s ", emoji.c_str());
|
||||||
@ -343,17 +361,19 @@ int main(int argc, char *argv[])
|
|||||||
std::string _1000 = readable_fs(file_stat.st_size, 1024, "iB");
|
std::string _1000 = readable_fs(file_stat.st_size, 1024, "iB");
|
||||||
if (file_stat.st_size >= 1000) printf("\tFile size: %s or %s (%li bytes)\n", _1024.c_str(), _1000.c_str(), file_stat.st_size);
|
if (file_stat.st_size >= 1000) printf("\tFile size: %s or %s (%li bytes)\n", _1024.c_str(), _1000.c_str(), file_stat.st_size);
|
||||||
else printf("\tFile size: %li bytes\n", file_stat.st_size);
|
else printf("\tFile size: %li bytes\n", file_stat.st_size);
|
||||||
} else {
|
} else if (file == FileType::Folder) {
|
||||||
auto insides = get_files_in_directory(full_name);
|
auto insides = get_files_in_directory(full_name);
|
||||||
printf("\tContents:\n");
|
printf("\tContents:\n");
|
||||||
printf("\t\tNormal: %i files and %i folders.\n", insides[0], insides[1]);
|
printf("\t\tNormal: %i files and %i folders.\n", insides[0], insides[1]);
|
||||||
printf("\t\tHidden: %i files and %i folders.\n", insides[2], insides[3]);
|
printf("\t\tHidden: %i files and %i folders.\n", insides[2], insides[3]);
|
||||||
}
|
} else if (file == FileType::CHRFile) {
|
||||||
|
ListPartitions(full_name);
|
||||||
|
}
|
||||||
printf("\tPermissions: %s\n", print_permissions(file_stat.st_mode, !is_file).c_str());
|
printf("\tPermissions: %s\n", print_permissions(file_stat.st_mode, !is_file).c_str());
|
||||||
if (i != last-1) {
|
if (i != last-1) {
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user