Java implementation of FrostFS SDK
Find a file
Bruk Ori 7c3d6f8165
Some checks failed
DCO / DCO (pull_request) Failing after 25s
Merge branch 'master' into feature/unit-tests-crypto
2024-08-27 18:39:15 +03:00
.forgejo/workflows Initial commit 2024-05-23 10:51:32 +03:00
client [#4] add checkstyle 2024-07-30 14:43:31 +03:00
cryptography [#6] cover the cryptography module with junit tests 2024-08-21 10:57:47 +03:00
models [#6] fix naming 2024-08-27 18:30:41 +03:00
protos [#1] provide naming conventions 2024-07-24 15:49:12 +03:00
.gitignore [#1] Define SDK structure, add operations with container and object 2024-07-24 15:49:11 +03:00
checkstyle.xml [#4] add checkstyle 2024-07-30 14:43:31 +03:00
CONTRIBUTING.md [#1] Define SDK structure, add operations with container and object 2024-07-24 15:49:11 +03:00
LICENSE Initial commit 2024-05-23 10:51:32 +03:00
pom.xml [#6] add junit dependency 2024-08-21 10:56:01 +03:00
README.md [#1] update README.md 2024-07-25 12:24:05 +03:00

frostfs-sdk-java

Java implementation of FrostFS SDK

Prerequisites

Get the key for your wallet

  1. Get the address
cat <path_to_your_wallet> | jq .accounts[0].address | tr -d '"'
  1. Get the key
neo-go wallet export -w <path_to_your_wallet> -d <address_from_p1>

Example usage

Container operations

import info.frostfs.sdk.dto.container.Container;
import info.frostfs.sdk.dto.netmap.PlacementPolicy;
import info.frostfs.sdk.dto.netmap.Replica;
import info.frostfs.sdk.enums.BasicAcl;
import info.frostfs.sdk.jdo.ClientSettings;
import info.frostfs.sdk.FrostFSClient;

public class ContainerExample {

    public void example() {
        ClientSettings clientSettings = new ClientSettings(<your_key>, <your_host>);
        FrostFSClient frostFSClient = new FrostFSClient(clientSettings);

        // Create container
        var placementPolicy = new PlacementPolicy(true, new Replica[]{new Replica(1)});
        var containerId = frostFSClient.createContainer(new Container(BasicAcl.PUBLIC_RW, placementPolicy));

        // Get container
        var container = frostFSClient.getContainer(containerId);

        // List containers
        var containerIds = frostFSClient.listContainers();

        // Delete container
        frostFSClient.deleteContainer(containerId);
    }
}

Object operations

import info.frostfs.sdk.enums.ObjectType;
import info.frostfs.sdk.dto.container.ContainerId;
import info.frostfs.sdk.dto.object.ObjectAttribute;
import info.frostfs.sdk.dto.object.ObjectFilter;
import info.frostfs.sdk.dto.object.ObjectHeader;
import info.frostfs.sdk.dto.object.ObjectId;
import info.frostfs.sdk.jdo.PutObjectParameters;
import info.frostfs.sdk.FrostFSClient;

import java.io.FileInputStream;
import java.io.IOException;

public class ObjectExample {

    public void example() {
        ClientSettings clientSettings = new ClientSettings(<your_key>, <your_host>);
        FrostFSClient frostFSClient = new FrostFSClient(clientSettings);

        // Put object
        ObjectId objectId;
        try (FileInputStream fis = new FileInputStream("cat.jpg")) {
            var cat = new ObjectHeader(
                    containerId, ObjectType.REGULAR, new ObjectAttribute[]{new ObjectAttribute("Filename", "cat.jpg")}
            );

            var params = new PutObjectParameters(cat, fis);
            objectId = frostFSClient.putObject(params);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }

        // Get object
        var obj = frostFSClient.getObject(containerId, objectId);

        // Get object header
        var objectHeader = frostFSClient.getObjectHead(containerId, objectId);

        // Search regular objects
        var objectIds = frostFSClient.searchObjects(containerId, ObjectFilter.RootFilter());
    }
}