Examples of MetaFile


Examples of org.hive2hive.core.model.MetaFile

  protected void doExecute() throws InvalidProcessStateException {
    File file = context.getFile();

    logger.trace("Creating new meta file for file '{}'.", file.getName());

    MetaFile metaFile = null;
    if (context.isLargeFile()) {
      metaFile = new MetaFileLarge(context.generateOrGetMetaKeys().getPublic(), context.getMetaChunks());
    } else {
      // create new meta file with new version
      FileVersion version = new FileVersion(0, FileUtil.getFileSize(file), System.currentTimeMillis(),
View Full Code Here

Examples of org.hive2hive.core.model.MetaFile

    this.networkManager = networkManager;
  }

  @Override
  protected void doExecute() throws InvalidProcessStateException, ProcessExecutionException {
    MetaFile metaFile = context.consumeMetaFile();
    if (metaFile == null) {
      throw new ProcessExecutionException("Meta document not found.");
    } else if (!metaFile.isSmall()) {
      throw new ProcessExecutionException("Meta document is not a small meta file.");
    }

    MetaFileSmall metaFileSmall = (MetaFileSmall) metaFile;
    // cast the versions to the public interface
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.