Code Monkey home page Code Monkey logo

filestorage's Introduction

SKALE Filestorage

Build Status codecov Discord

Filestorage - smart contract, that controls decentralized file storage on SKALE chains.

Description

Filestorage is a cost-effective storage layer within Ethereum capable of handling files up to 100MB. Filestorage uses UNIX-based filesystem of SKALE chains. Filestorage smart contract is a set of functions to interact with files on EVM. This contract may be predeployed on SKALE chains. It contains functions to work with Filestorage precompiled smart contracts.

Smart contract language - Solidity 0.8.9

API Reference

Filestorage space handling

To start using Filestorage (upload/delete files and create/remove directories) the space should be allocated for specific account, it could be done from account that is given ALLOCATOR_ROLE. Rules of occupying space in Filestorage:

  1. For directory 4096 bytes is taken
  2. File could be uploaded up to 100 MB (104857600 bytes)
  3. Occupying space for file is rounded up to the nearest multiple of 4096 bytes
  4. Empty file takes 4096 bytes of free space

After deleting file/directory's amount of space is freed according to the rules above

FileStorage managing API

reserveSpace

function reserveSpace(address userAddress, uint reservedSpace)

Reserves the Filestorage space for specific address. Could be called only with ALLOCATOR_ROLE

Parameters:

Parameter Description
address userAddress Address to allocate space for
uint reservedSpace Amount of space to reserve in bytes

Set version

function setVersion(string newVersion)

Set the Filestorage version. Could be called only with DEFAULT_ADMIN_ROLE

Parameters:

Parameter Description
string newVersion New version of the Filestorage

Get version

function version()

Get the Filestorage version.

Parameters:

Parameter Description
string Version of the Filestorage

getTotalStorageSpace

function getTotalStorageSpace()

Gets total space in Filestorage in bytes.

Returns:

Parameter Description
uint Space in bytes

getTotalReservedSpace

function getTotalStorageSpace()

Gets total reserved space in Filestorage in bytes.

Returns:

Parameter Description
uint Space in bytes

getReservedSpace

function getReservedSpace(address owner)

Gets reserved space for account.

Parameters:

Parameter Description
address owner Account address

Returns:

Parameter Description
uint Size of reserved space for account

getOccupiedSpace

function getOccupiedSpace(address owner)

Gets occupied space for account.

Parameters:

Parameter Description
address owner Account address

Returns:

Parameter Description
uint Size of occupied space for account in bytes

File interaction methods

To begin the uploading process, the file should be broken into chunks of 1MB (< 1MB for the last chunk) which are uploaded as separate transactions to FileStorage.sol. The pipeline of the uploading file is:

  1. creating empty file of fixed size on EVM by calling startUpload,
  2. uploading data chunk by chunk with uploadChunk,
  3. checking the file validity and finishing process with finishUpload.

startUpload

function startUpload(string memory filePath, uint256 fileSize)

Creates empty file on EVM with specific name and size. Owner of the file - message sender.

  • Function is called by file owner
  • Maximum amount of directories and files in one directory is 8196
  • Maximum filesize is 100,000,000 bytes
  • Owner should have enough free space

Parameters:

Parameter Description
string filePath Path to the file in account directory
uint256 fileSize Uploaded file size in bytes

uploadChunk

function uploadChunk(string memory filePath, uint position, bytes memory data)

Uploads 1MB chunk of data from specific position in specific file by file owner.

  • Function is called by file owner.

Parameters:

Parameter Description
string filePath Path to the file in account directory
uint position Uploaded chunk position
bytes data Uploaded chunk data

finishUpload

function finishUpload(string memory filePath)

Finishes uploading of the file. Checks whether all chunks are uploaded correctly.

  • Function is called by file owner.

Parameters:

Parameter Description
string filePath Path to the file in account directory

deleteFile

function deleteFile(string memory filePath)

Deletes file from Filestorage.

  • Function is called by file owner.

Parameters:

Parameter Description
string filePath Path to the file in account directory

readChunk

function readChunk(string memory storagePath, uint position, uint length)
        public
        view
        returns (bytes32[MAX_BLOCK_COUNT] memory out)

Reads chunk from file from specific position with specific length. Returns bytes32 array of fixed size with requested data.

  • Maximum length of the chunk to read is 1Mb

Parameters:

Parameter Description
string storagePath Full path of the file in Filestorage
uint position First byte to read from
uint length Uploaded chunk length

Returns:

Parameter Description
bytes32[] out Requested chunk data split across bytes32 array

getFileSize

function getFileSize(string memory storagePath) 
        public 
        view 
        returns (uint fileSize)

Gets size of the requested file in bytes.

Parameters:

Parameter Description
string storagePath Full path of the file in Filestorage

Returns:

Parameter Description
uint fileSize Size of requested file

getFileStatus

function getFileStatus(string memory storagePath) 
        public 
        view 
        returns (int)

Returns status of the requested file:

  • 0 - file does not exist
  • 1 - file is created but has not finished uploading
  • 2 - file is fully uploaded

Parameters:

Parameter Description
string storagePath Full path of the file in Filestorage

Returns:

Parameter Description
uint fileStatus Status of requested file

Directory interaction methods

Filestorage is represented with UNIX-based filesystem that consisted of files and directories. Directories are stored in Directory structure that contains information about its content in ContentInfo structure. Maximum amount of content in separate directory is 8196.

createDirectory

function createDirectory(string memory directoryPath)

Creates directory in Filestorage. Owner of the directory - message sender.

  • Function is called by directory owner
  • Maximum amount of directories and files in one directory is 8196

Parameters:

Parameter Description
string directoryPath Path to the directory in account root directory

deleteDirectory

function deleteDirectory(string memory directoryPath)

Deletes directory from Filestorage.

  • Function is called by directory owner

Parameters:

Parameter Description
string directoryPath Path to the directory in account root directory

listDirectory

function listDirectory(string memory storagePath) 
        public 
        view 
        returns (ContentInfo[])

List information about content of the specific directory.

Parameters:

Parameter Description
string storagePath Full path of the directory in Filestorage

Returns:

Parameter Description
ContentInfo[] Array of content stored in directory

Object ContentInfo can be file or directory and contains:

Field Description
string name Content name
bool isFile Whether content is file
uint size File size, in bytes
int status File uploading status
bool[] isChunkUploaded Array with statuses of each chunk (true - chunk uploaded, false - otherwise)

Build

Create an .env file with following data:

ENTRYPOINT='SKALE endpoint'
PRIVATEKEY='Private key for test account'

Compile FileStorage.sol:

truffle compile

Test

Tests run only on SKALE chains. Create an .env file with following data:

ENTRYPOINT='SKALE endpoint'
SCHAIN_OWNER_PK='Private key of SKALE endpoint owner (or account with money)'
PRIVATEKEY='Private key for test account'

Run tests:

truffle test --network skaled

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.