2025-02-12 00:17:18 +08:00
|
|
|
extern "C"
|
|
|
|
|
{
|
|
|
|
|
#include "disk.h"
|
2025-02-16 10:50:56 +08:00
|
|
|
#include "util/stringUtils.h"
|
2025-02-12 00:17:18 +08:00
|
|
|
}
|
|
|
|
|
#include <fs_info.h>
|
|
|
|
|
#include <Directory.h>
|
|
|
|
|
#include <Path.h>
|
|
|
|
|
|
2025-02-16 10:50:56 +08:00
|
|
|
const char* ffDetectDisksImpl(FFDiskOptions* options, FFlist* disks)
|
2025-02-12 00:17:18 +08:00
|
|
|
{
|
2025-02-15 01:47:18 +01:00
|
|
|
int32 pos = 0;
|
2025-02-12 00:17:18 +08:00
|
|
|
|
|
|
|
|
for (dev_t dev; (dev = next_dev(&pos)) >= B_OK;)
|
|
|
|
|
{
|
|
|
|
|
fs_info fs;
|
2025-03-26 14:42:55 +08:00
|
|
|
if (fs_stat_dev(dev, &fs) < 0) continue;
|
2025-02-16 10:50:56 +08:00
|
|
|
|
|
|
|
|
node_ref node(fs.dev, fs.root);
|
|
|
|
|
BDirectory dir(&node);
|
|
|
|
|
BPath path(&dir);
|
|
|
|
|
if (path.InitCheck() != B_OK) continue;
|
|
|
|
|
|
|
|
|
|
if (__builtin_expect(options->folders.length, 0))
|
|
|
|
|
{
|
2025-09-19 14:54:13 +08:00
|
|
|
if (!ffStrbufSeparatedContainS(&options->folders, path.Path(), FF_DISK_FOLDER_SEPARATOR))
|
2025-02-16 10:50:56 +08:00
|
|
|
continue;
|
|
|
|
|
}
|
2025-02-12 00:17:18 +08:00
|
|
|
|
2025-11-06 13:39:30 +08:00
|
|
|
if (options->hideFolders.length && ffDiskMatchesFolderPatterns(&options->hideFolders, path.Path(), FF_DISK_FOLDER_SEPARATOR))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (options->hideFS.length && ffStrbufSeparatedContainS(&options->hideFS, fs.fsh_name, ':'))
|
|
|
|
|
continue;
|
|
|
|
|
|
2025-02-12 00:17:18 +08:00
|
|
|
FFDisk* disk = (FFDisk*) ffListAdd(disks);
|
|
|
|
|
|
|
|
|
|
disk->bytesTotal = (uint64_t)fs.total_blocks * (uint64_t) fs.block_size;
|
|
|
|
|
disk->bytesFree = (uint64_t)fs.free_blocks * (uint64_t) fs.block_size;
|
|
|
|
|
disk->bytesAvailable = disk->bytesFree;
|
2025-03-26 14:42:55 +08:00
|
|
|
disk->bytesUsed = 0; // To be filled in ./disk.c
|
2025-02-12 00:17:18 +08:00
|
|
|
|
|
|
|
|
disk->filesTotal = (uint32_t) fs.total_nodes;
|
2025-03-26 14:42:55 +08:00
|
|
|
disk->filesUsed = (uint32_t) (fs.total_nodes - fs.free_nodes);
|
2025-02-12 00:17:18 +08:00
|
|
|
|
|
|
|
|
ffStrbufInitS(&disk->mountFrom, fs.device_name);
|
2025-02-16 10:50:56 +08:00
|
|
|
ffStrbufInitS(&disk->mountpoint, path.Path());
|
2025-02-12 00:17:18 +08:00
|
|
|
ffStrbufInitS(&disk->filesystem, fs.fsh_name);
|
|
|
|
|
ffStrbufInitS(&disk->name, fs.volume_name);
|
|
|
|
|
disk->type = FF_DISK_VOLUME_TYPE_NONE;
|
|
|
|
|
if (!(fs.flags & B_FS_IS_PERSISTENT))
|
|
|
|
|
disk->type = (FFDiskVolumeType) (disk->type | FF_DISK_VOLUME_TYPE_HIDDEN_BIT);
|
|
|
|
|
if (fs.flags & B_FS_IS_READONLY)
|
|
|
|
|
disk->type = (FFDiskVolumeType) (disk->type | FF_DISK_VOLUME_TYPE_READONLY_BIT);
|
|
|
|
|
if (fs.flags & B_FS_IS_REMOVABLE)
|
|
|
|
|
disk->type = (FFDiskVolumeType) (disk->type | FF_DISK_VOLUME_TYPE_EXTERNAL_BIT);
|
2025-02-16 10:50:56 +08:00
|
|
|
if (disk->type == FF_DISK_VOLUME_TYPE_NONE) disk->type = FF_DISK_VOLUME_TYPE_REGULAR_BIT;
|
2025-02-12 00:17:18 +08:00
|
|
|
disk->createTime = 0;
|
2025-02-16 10:50:56 +08:00
|
|
|
|
|
|
|
|
time_t crTime;
|
|
|
|
|
if (dir.GetCreationTime(&crTime) == B_OK)
|
|
|
|
|
disk->createTime = (uint64_t) crTime * 1000;
|
2025-02-12 00:17:18 +08:00
|
|
|
}
|
2025-02-16 10:50:56 +08:00
|
|
|
return NULL;
|
2025-02-12 00:17:18 +08:00
|
|
|
}
|