org.eclipse.equinox.internal.provisional.p2.artifact.repository.processing.ZipVerifierStep类的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(6.1k)|赞(0)|评价(0)|浏览(113)

本文整理了Java中org.eclipse.equinox.internal.provisional.p2.artifact.repository.processing.ZipVerifierStep类的一些代码示例,展示了ZipVerifierStep类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipVerifierStep类的具体详情如下:
包路径:org.eclipse.equinox.internal.provisional.p2.artifact.repository.processing.ZipVerifierStep
类名称:ZipVerifierStep

ZipVerifierStep介绍

暂无

代码示例

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.equinox.p2.artifact.repository

public void write(int b) throws IOException {
  getDestination().write(b);
  if (valid > 3)
    return;
  if (valid == -1) {
    return;
  }
  if (b != ZIP_HEADER[valid++]) {
    valid = -1;
    setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    return;
  }
}

代码示例来源:origin: org.eclipse.equinox.p2.artifact/repository

public void close() throws IOException {
    if (valid > 3) {
      setStatus(Status.OK_STATUS);
    } else {
      setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    }
    super.close();
  }
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.equinox.p2.artifact.repository

private OutputStream addPreSteps(ProcessingStepHandler handler, IArtifactDescriptor descriptor, OutputStream destination, IProgressMonitor monitor) {
  ArrayList<ProcessingStep> steps = new ArrayList<>();
  if (IArtifactDescriptor.TYPE_ZIP.equals(descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_CONTENTTYPE)))
    steps.add(new ZipVerifierStep());
  Set<String> skipChecksums = DOWNLOAD_MD5_CHECKSUM_ENABLED ? Collections.emptySet() : Collections.singleton(ChecksumHelper.MD5);
  addChecksumVerifiers(descriptor, steps, skipChecksums, IArtifactDescriptor.DOWNLOAD_CHECKSUM);
  // Add steps here if needed
  if (steps.isEmpty())
    return destination;
  ProcessingStep[] stepArray = steps.toArray(new ProcessingStep[steps.size()]);
  // TODO should probably be using createAndLink here
  return handler.link(stepArray, destination, monitor);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.equinox.p2.artifact.repository

public void close() throws IOException {
    if (valid > 3) {
      setStatus(Status.OK_STATUS);
    } else {
      setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    }
    super.close();
  }
}

代码示例来源:origin: org.eclipse.equinox.p2.artifact/repository

private OutputStream addPreSteps(ProcessingStepHandler handler, IArtifactDescriptor descriptor, OutputStream destination, IProgressMonitor monitor) {
  ArrayList<ProcessingStep> steps = new ArrayList<ProcessingStep>();
  if (IArtifactDescriptor.TYPE_ZIP.equals(descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_CONTENTTYPE)))
    steps.add(new ZipVerifierStep());
  if (MD5_CHECK_ENABLED && descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_MD5) != null)
    steps.add(new MD5Verifier(descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_MD5)));
  // Add steps here if needed
  if (steps.isEmpty())
    return destination;
  ProcessingStep[] stepArray = steps.toArray(new ProcessingStep[steps.size()]);
  // TODO should probably be using createAndLink here
  return handler.link(stepArray, destination, monitor);
}

代码示例来源:origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.p2.artifact.repository

public void write(int b) throws IOException {
  getDestination().write(b);
  if (valid > 3)
    return;
  if (valid == -1) {
    return;
  }
  if (b != ZIP_HEADER[valid++]) {
    valid = -1;
    setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    return;
  }
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.equinox.p2.artifact.repository

@Override
  public void close() throws IOException {
    if (valid > 3) {
      setStatus(Status.OK_STATUS);
    } else {
      setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    }
    super.close();
  }
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.equinox.p2.artifact.repository

private OutputStream addPreSteps(ProcessingStepHandler handler, IArtifactDescriptor descriptor, OutputStream destination, IProgressMonitor monitor) {
  ArrayList<ProcessingStep> steps = new ArrayList<ProcessingStep>();
  if (IArtifactDescriptor.TYPE_ZIP.equals(descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_CONTENTTYPE)))
    steps.add(new ZipVerifierStep());
  if (MD5_CHECK_ENABLED && descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_MD5) != null)
    steps.add(new MD5Verifier(descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_MD5)));
  // Add steps here if needed
  if (steps.isEmpty())
    return destination;
  ProcessingStep[] stepArray = steps.toArray(new ProcessingStep[steps.size()]);
  // TODO should probably be using createAndLink here
  return handler.link(stepArray, destination, monitor);
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.equinox.p2.artifact.repository

@Override
public void write(int b) throws IOException {
  getDestination().write(b);
  if (valid > 3)
    return;
  if (valid == -1) {
    return;
  }
  if (b != ZIP_HEADER[valid++]) {
    valid = -1;
    setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    return;
  }
}

代码示例来源:origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.p2.artifact.repository

public void close() throws IOException {
    if (valid > 3) {
      setStatus(Status.OK_STATUS);
    } else {
      setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    }
    super.close();
  }
}

代码示例来源:origin: com.github.veithen.cosmos.bootstrap/org.eclipse.equinox.p2.artifact.repository

private OutputStream addPreSteps(ProcessingStepHandler handler, IArtifactDescriptor descriptor, OutputStream destination, IProgressMonitor monitor) {
  ArrayList<ProcessingStep> steps = new ArrayList<ProcessingStep>();
  if (IArtifactDescriptor.TYPE_ZIP.equals(descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_CONTENTTYPE)))
    steps.add(new ZipVerifierStep());
  if (MD5_CHECK_ENABLED && descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_MD5) != null)
    steps.add(new MD5Verifier(descriptor.getProperty(IArtifactDescriptor.DOWNLOAD_MD5)));
  // Add steps here if needed
  if (steps.isEmpty())
    return destination;
  ProcessingStep[] stepArray = steps.toArray(new ProcessingStep[steps.size()]);
  // TODO should probably be using createAndLink here
  return handler.link(stepArray, destination, monitor);
}

代码示例来源:origin: org.eclipse.equinox.p2.artifact/repository

public void write(int b) throws IOException {
  getDestination().write(b);
  if (valid > 3)
    return;
  if (valid == -1) {
    return;
  }
  if (b != ZIP_HEADER[valid++]) {
    valid = -1;
    setStatus(new Status(IStatus.ERROR, Activator.ID, Messages.ZipVerifierStep_invalid_archive));
    return;
  }
}

相关文章