2020-08-28 18:33:29 +02:00
|
|
|
/*
|
|
|
|
* FileSystemMessage.h
|
|
|
|
*
|
|
|
|
* Created on: 19.01.2020
|
|
|
|
* Author: Jakob Meier
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FRAMEWORK_MEMORY_FILESYSTEMMESSAGE_H_
|
|
|
|
#define FRAMEWORK_MEMORY_FILESYSTEMMESSAGE_H_
|
|
|
|
|
2020-09-19 19:41:41 +02:00
|
|
|
#include <framework/ipc/CommandMessage.h>
|
|
|
|
#include <framework/storagemanager/StorageManagerIF.h>
|
|
|
|
#include <framework/objectmanager/SystemObject.h>
|
2020-08-28 18:33:29 +02:00
|
|
|
|
|
|
|
class FileSystemMessage {
|
|
|
|
private:
|
|
|
|
FileSystemMessage(); //A private ctor inhibits instantiation
|
|
|
|
public:
|
|
|
|
static const uint8_t MESSAGE_ID = messagetypes::FILE_SYSTEM_MESSAGE;
|
|
|
|
static const Command_t CREATE_FILE = MAKE_COMMAND_ID( 0x01 );
|
|
|
|
static const Command_t DELETE_FILE = MAKE_COMMAND_ID( 0x02 );
|
2020-09-19 19:41:41 +02:00
|
|
|
static const Command_t CREATE_DIRECTORY = MAKE_COMMAND_ID( 0x09 );
|
|
|
|
static const Command_t DELETE_DIRECTORY = MAKE_COMMAND_ID( 0x0A );
|
|
|
|
static const Command_t WRITE = MAKE_COMMAND_ID( 0x80 );
|
|
|
|
static const Command_t READ = MAKE_COMMAND_ID( 0x81 );
|
|
|
|
static const Command_t READ_REPLY = MAKE_COMMAND_ID( 0x82 );
|
|
|
|
static const Command_t COMPLETION_SUCCESS = MAKE_COMMAND_ID(5);
|
|
|
|
static const Command_t COMPLETION_FAILED = MAKE_COMMAND_ID(6);
|
2020-08-28 18:33:29 +02:00
|
|
|
|
2020-09-19 19:41:41 +02:00
|
|
|
static ReturnValue_t setDeleteFileCommand(CommandMessage* message, store_address_t storageID);
|
|
|
|
static ReturnValue_t setCreateDirectoryCommand(CommandMessage* message, store_address_t storageID);
|
|
|
|
static ReturnValue_t setDeleteDirectoryCommand(CommandMessage* message, store_address_t storageID);
|
|
|
|
static ReturnValue_t setWriteCommand(CommandMessage* message, store_address_t storageID);
|
|
|
|
static ReturnValue_t setReadCommand(CommandMessage* message, store_address_t storageID);
|
|
|
|
static ReturnValue_t setReadReply(CommandMessage* message, store_address_t storageID);
|
|
|
|
static store_address_t getStoreId( const CommandMessage* message );
|
|
|
|
static void setCompletionReply(CommandMessage* message, Command_t completionStatus);
|
2020-08-28 18:33:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* FRAMEWORK_MEMORY_FILESYSTEMMESSAGE_H_ */
|