All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.zeebe.snapshots.MutableChecksumsSFV Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
 * one or more contributor license agreements. See the NOTICE file distributed
 * with this work for additional information regarding copyright ownership.
 * Licensed under the Camunda License 1.0. You may not use this file
 * except in compliance with the Camunda License 1.0.
 */
package io.camunda.zeebe.snapshots;

import java.io.IOException;
import java.nio.file.Path;

/** Mutable checksum collection in simple file verification (SFV) file format */
public interface MutableChecksumsSFV extends ImmutableChecksumsSFV {

  /**
   * Update the checksum collection, and add a new checksum from a given file path.
   *
   * @param filePath the path to a file for which a checksum is created and added to the collection
   * @throws IOException when reading of given file fails
   */
  void updateFromFile(final Path filePath) throws IOException;

  /**
   * Update the checksum collection, and add a new checksum from given bytes, likely a read file or
   * soon to be written file.
   *
   * 

Useful, if we want to avoid re-reading files etc. * * @param fileName the name of the file (which relates to the given bytes), that is used in the * checksum collection in SFV file format * @param bytes the bytes for which the checksum should be created */ void updateFromBytes(final String fileName, final byte[] bytes); /** * Build the checksum collection from a SFV format string array. * * @param lines the lines (in SFV) to build up the checksum collection */ void updateFromSfvFile(final String... lines); /** * Update the checksum map with the given checksum * * @param filePath path to file * @param checksum check of file given */ void updateFromChecksum(final Path filePath, final long checksum); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy