mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2021-2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "generated/rascsi_interface.pb.h"
|
|
#include "command_context.h"
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
using namespace std;
|
|
using namespace filesystem;
|
|
using namespace rascsi_interface;
|
|
|
|
class RascsiImage
|
|
{
|
|
public:
|
|
|
|
RascsiImage();
|
|
~RascsiImage() = default;
|
|
|
|
void SetDepth(int d) { depth = d; }
|
|
int GetDepth() const { return depth; }
|
|
string GetDefaultFolder() const { return default_folder; }
|
|
string SetDefaultFolder(const string&);
|
|
bool CreateImage(const CommandContext&, const PbCommand&) const;
|
|
bool DeleteImage(const CommandContext&, const PbCommand&) const;
|
|
bool RenameImage(const CommandContext&, const PbCommand&) const;
|
|
bool CopyImage(const CommandContext&, const PbCommand&) const;
|
|
bool SetImagePermissions(const CommandContext&, const PbCommand&) const;
|
|
|
|
private:
|
|
|
|
bool CheckDepth(string_view) const;
|
|
string GetFullName(const string& filename) const { return default_folder + "/" + filename; }
|
|
bool CreateImageFolder(const CommandContext&, const string&) const;
|
|
bool ValidateParams(const CommandContext&, const PbCommand&, const string&, string&, string&) const;
|
|
|
|
static bool IsValidSrcFilename(const string&);
|
|
static bool IsValidDstFilename(const string&);
|
|
static bool ChangeOwner(const CommandContext&, const path&, bool);
|
|
static string GetHomeDir();
|
|
static pair<int, int> GetUidAndGid();
|
|
|
|
string default_folder;
|
|
|
|
int depth = 1;
|
|
};
|