Java implementation of FrostFS SDK
sdk
Find a file
Bruk Ori b0db7df192 [#1] add client environment
add client cut
code cleanup
Signed-off-by: Ori Bruk <o.bruk@yadro.com>
2024-07-24 15:49:12 +03:00
.forgejo/workflows Initial commit 2024-05-23 10:51:32 +03:00
client [#1] add client environment 2024-07-24 15:49:12 +03:00
cryptography [#1] add client environment 2024-07-24 15:49:12 +03:00
models [#1] add client environment 2024-07-24 15:49:12 +03:00
protos [#1] add client environment 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
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 [#1] add client environment 2024-07-24 15:49:12 +03:00
README.md [#1] add client environment 2024-07-24 15:49:12 +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

import info.FrostFS.sdk.enums.BasicAcl;
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.services.FrostFSClient;

public class ContainerExample {

    public void example() {
        Client client = new Client( < your_key >);
        GrpcClient grpcClient = new GrpcClient( < your_host >);
        FrostFSClient frostFSClient = new FrostFSClient(grpcClient, client);

        // 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

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.services.FrostFSClient;

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

public class ObjectExample {

    public void example() {
        Client client = new Client( < your_key >);
        GrpcClient grpcClient = new GrpcClient( < your_host >);
        FrostFSClient frostFSClient = new FrostFSClient(grpcClient, client);

        // Put object
        info.FrostFS.sdk.dto.object.ObjectId objectId;
        try (FileInputStream fis = new FileInputStream("cat.jpg")) {
            var cat = new ObjectHeader(
                    containerId, ObjectType.REGULAR, new ObjectAttribute[]{new ObjectAttribute("Filename", "cat.jpg")}
            );
            objectId = frostFSClient.putObject(cat, fis);
        } 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());
    }
}