Java 类org.apache.hadoop.hdfs.server.namenode.FsImageProto.INodeReferenceSection 实例源码

项目:hadoop    文件:FSImageFormatPBSnapshot.java   
private INodeReference loadINodeReference(
    INodeReferenceSection.INodeReference r) throws IOException {
  long referredId = r.getReferredId();
  INode referred = fsDir.getInode(referredId);
  WithCount withCount = (WithCount) referred.getParentReference();
  if (withCount == null) {
    withCount = new INodeReference.WithCount(null, referred);
  }
  final INodeReference ref;
  if (r.hasDstSnapshotId()) { // DstReference
    ref = new INodeReference.DstReference(null, withCount,
        r.getDstSnapshotId());
  } else {
    ref = new INodeReference.WithName(null, withCount, r.getName()
        .toByteArray(), r.getLastSnapshotId());
  }
  return ref;
}
项目:aliyun-oss-hadoop-fs    文件:FSImageFormatPBSnapshot.java   
private INodeReference loadINodeReference(
    INodeReferenceSection.INodeReference r) throws IOException {
  long referredId = r.getReferredId();
  INode referred = fsDir.getInode(referredId);
  WithCount withCount = (WithCount) referred.getParentReference();
  if (withCount == null) {
    withCount = new INodeReference.WithCount(null, referred);
  }
  final INodeReference ref;
  if (r.hasDstSnapshotId()) { // DstReference
    ref = new INodeReference.DstReference(null, withCount,
        r.getDstSnapshotId());
  } else {
    ref = new INodeReference.WithName(null, withCount, r.getName()
        .toByteArray(), r.getLastSnapshotId());
  }
  return ref;
}
项目:big-c    文件:FSImageFormatPBSnapshot.java   
private INodeReference loadINodeReference(
    INodeReferenceSection.INodeReference r) throws IOException {
  long referredId = r.getReferredId();
  INode referred = fsDir.getInode(referredId);
  WithCount withCount = (WithCount) referred.getParentReference();
  if (withCount == null) {
    withCount = new INodeReference.WithCount(null, referred);
  }
  final INodeReference ref;
  if (r.hasDstSnapshotId()) { // DstReference
    ref = new INodeReference.DstReference(null, withCount,
        r.getDstSnapshotId());
  } else {
    ref = new INodeReference.WithName(null, withCount, r.getName()
        .toByteArray(), r.getLastSnapshotId());
  }
  return ref;
}
项目:hadoop-2.6.0-cdh5.4.3    文件:FSImageFormatPBSnapshot.java   
private INodeReference loadINodeReference(
    INodeReferenceSection.INodeReference r) throws IOException {
  long referredId = r.getReferredId();
  INode referred = fsDir.getInode(referredId);
  WithCount withCount = (WithCount) referred.getParentReference();
  if (withCount == null) {
    withCount = new INodeReference.WithCount(null, referred);
  }
  final INodeReference ref;
  if (r.hasDstSnapshotId()) { // DstReference
    ref = new INodeReference.DstReference(null, withCount,
        r.getDstSnapshotId());
  } else {
    ref = new INodeReference.WithName(null, withCount, r.getName()
        .toByteArray(), r.getLastSnapshotId());
  }
  return ref;
}
项目:FlexMap    文件:FSImageFormatPBSnapshot.java   
private INodeReference loadINodeReference(
    INodeReferenceSection.INodeReference r) throws IOException {
  long referredId = r.getReferredId();
  INode referred = fsDir.getInode(referredId);
  WithCount withCount = (WithCount) referred.getParentReference();
  if (withCount == null) {
    withCount = new INodeReference.WithCount(null, referred);
  }
  final INodeReference ref;
  if (r.hasDstSnapshotId()) { // DstReference
    ref = new INodeReference.DstReference(null, withCount,
        r.getDstSnapshotId());
  } else {
    ref = new INodeReference.WithName(null, withCount, r.getName()
        .toByteArray(), r.getLastSnapshotId());
  }
  return ref;
}
项目:hadoop-on-lustre2    文件:FSImageFormatPBSnapshot.java   
private INodeReference loadINodeReference(
    INodeReferenceSection.INodeReference r) throws IOException {
  long referredId = r.getReferredId();
  INode referred = fsDir.getInode(referredId);
  WithCount withCount = (WithCount) referred.getParentReference();
  if (withCount == null) {
    withCount = new INodeReference.WithCount(null, referred);
  }
  final INodeReference ref;
  if (r.hasDstSnapshotId()) { // DstReference
    ref = new INodeReference.DstReference(null, withCount,
        r.getDstSnapshotId());
  } else {
    ref = new INodeReference.WithName(null, withCount, r.getName()
        .toByteArray(), r.getLastSnapshotId());
  }
  return ref;
}
项目:hadoop-on-lustre2    文件:LsrPBImage.java   
private void loadINodeReferenceSection(InputStream in) throws IOException {
  if (LOG.isDebugEnabled()) {
    LOG.debug("Loading inode reference section");
  }
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    refList.add(e);
    if (LOG.isTraceEnabled()) {
      LOG.trace("Loaded inode reference named '" + e.getName()
          + "' referring to id " + e.getReferredId() + "");
    }
  }
  if (LOG.isDebugEnabled()) {
    LOG.debug("Loaded " + refList.size() + " inode references");
  }
}
项目:hadoop    文件:FSImageFormatPBSnapshot.java   
/**
 * The sequence of the ref node in refList must be strictly the same with
 * the sequence in fsimage
 */
public void loadINodeReferenceSection(InputStream in) throws IOException {
  final List<INodeReference> refList = parent.getLoaderContext()
      .getRefList();
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    INodeReference ref = loadINodeReference(e);
    refList.add(ref);
  }
}
项目:hadoop    文件:FSImageFormatPBSnapshot.java   
/**
 * This can only be called after serializing both INode_Dir and SnapshotDiff
 */
public void serializeINodeReferenceSection(OutputStream out)
    throws IOException {
  final List<INodeReference> refList = parent.getSaverContext()
      .getRefList();
  for (INodeReference ref : refList) {
    INodeReferenceSection.INodeReference.Builder rb = buildINodeReference(ref);
    rb.build().writeDelimitedTo(out);
  }
  parent.commitSection(headers, SectionName.INODE_REFERENCE);
}
项目:hadoop    文件:FSImageFormatPBSnapshot.java   
private INodeReferenceSection.INodeReference.Builder buildINodeReference(
    INodeReference ref) throws IOException {
  INodeReferenceSection.INodeReference.Builder rb =
      INodeReferenceSection.INodeReference.newBuilder().
        setReferredId(ref.getId());
  if (ref instanceof WithName) {
    rb.setLastSnapshotId(((WithName) ref).getLastSnapshotId()).setName(
        ByteString.copyFrom(ref.getLocalNameBytes()));
  } else if (ref instanceof DstReference) {
    rb.setDstSnapshotId(ref.getDstSnapshotId());
  }
  return rb;
}
项目:hadoop    文件:PBImageXmlWriter.java   
private void dumpINodeReferenceSection(InputStream in) throws IOException {
  out.print("<INodeReferenceSection>");
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    dumpINodeReference(e);
  }
  out.print("</INodeReferenceSection>");
}
项目:hadoop    文件:PBImageXmlWriter.java   
private void dumpINodeReference(INodeReferenceSection.INodeReference r) {
  out.print("<ref>");
  o("referredId", r.getReferredId()).o("name", r.getName().toStringUtf8())
      .o("dstSnapshotId", r.getDstSnapshotId())
      .o("lastSnapshotId", r.getLastSnapshotId());
  out.print("</ref>\n");
}
项目:aliyun-oss-hadoop-fs    文件:FSImageFormatPBSnapshot.java   
/**
 * The sequence of the ref node in refList must be strictly the same with
 * the sequence in fsimage
 */
public void loadINodeReferenceSection(InputStream in) throws IOException {
  final List<INodeReference> refList = parent.getLoaderContext()
      .getRefList();
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    INodeReference ref = loadINodeReference(e);
    refList.add(ref);
  }
}
项目:aliyun-oss-hadoop-fs    文件:FSImageFormatPBSnapshot.java   
/**
 * This can only be called after serializing both INode_Dir and SnapshotDiff
 */
public void serializeINodeReferenceSection(OutputStream out)
    throws IOException {
  final List<INodeReference> refList = parent.getSaverContext()
      .getRefList();
  for (INodeReference ref : refList) {
    INodeReferenceSection.INodeReference.Builder rb = buildINodeReference(ref);
    rb.build().writeDelimitedTo(out);
  }
  parent.commitSection(headers, SectionName.INODE_REFERENCE);
}
项目:aliyun-oss-hadoop-fs    文件:FSImageFormatPBSnapshot.java   
private INodeReferenceSection.INodeReference.Builder buildINodeReference(
    INodeReference ref) throws IOException {
  INodeReferenceSection.INodeReference.Builder rb =
      INodeReferenceSection.INodeReference.newBuilder().
        setReferredId(ref.getId());
  if (ref instanceof WithName) {
    rb.setLastSnapshotId(((WithName) ref).getLastSnapshotId()).setName(
        ByteString.copyFrom(ref.getLocalNameBytes()));
  } else if (ref instanceof DstReference) {
    rb.setDstSnapshotId(ref.getDstSnapshotId());
  }
  return rb;
}
项目:aliyun-oss-hadoop-fs    文件:PBImageXmlWriter.java   
private void dumpINodeReferenceSection(InputStream in) throws IOException {
  out.print("<INodeReferenceSection>");
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    dumpINodeReference(e);
  }
  out.print("</INodeReferenceSection>");
}
项目:aliyun-oss-hadoop-fs    文件:PBImageXmlWriter.java   
private void dumpINodeReference(INodeReferenceSection.INodeReference r) {
  out.print("<ref>");
  o("referredId", r.getReferredId()).o("name", r.getName().toStringUtf8())
      .o("dstSnapshotId", r.getDstSnapshotId())
      .o("lastSnapshotId", r.getLastSnapshotId());
  out.print("</ref>\n");
}
项目:big-c    文件:FSImageFormatPBSnapshot.java   
/**
 * The sequence of the ref node in refList must be strictly the same with
 * the sequence in fsimage
 */
public void loadINodeReferenceSection(InputStream in) throws IOException {
  final List<INodeReference> refList = parent.getLoaderContext()
      .getRefList();
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    INodeReference ref = loadINodeReference(e);
    refList.add(ref);
  }
}
项目:big-c    文件:FSImageFormatPBSnapshot.java   
/**
 * This can only be called after serializing both INode_Dir and SnapshotDiff
 */
public void serializeINodeReferenceSection(OutputStream out)
    throws IOException {
  final List<INodeReference> refList = parent.getSaverContext()
      .getRefList();
  for (INodeReference ref : refList) {
    INodeReferenceSection.INodeReference.Builder rb = buildINodeReference(ref);
    rb.build().writeDelimitedTo(out);
  }
  parent.commitSection(headers, SectionName.INODE_REFERENCE);
}
项目:big-c    文件:FSImageFormatPBSnapshot.java   
private INodeReferenceSection.INodeReference.Builder buildINodeReference(
    INodeReference ref) throws IOException {
  INodeReferenceSection.INodeReference.Builder rb =
      INodeReferenceSection.INodeReference.newBuilder().
        setReferredId(ref.getId());
  if (ref instanceof WithName) {
    rb.setLastSnapshotId(((WithName) ref).getLastSnapshotId()).setName(
        ByteString.copyFrom(ref.getLocalNameBytes()));
  } else if (ref instanceof DstReference) {
    rb.setDstSnapshotId(ref.getDstSnapshotId());
  }
  return rb;
}
项目:big-c    文件:PBImageXmlWriter.java   
private void dumpINodeReferenceSection(InputStream in) throws IOException {
  out.print("<INodeReferenceSection>");
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    dumpINodeReference(e);
  }
  out.print("</INodeReferenceSection>");
}
项目:big-c    文件:PBImageXmlWriter.java   
private void dumpINodeReference(INodeReferenceSection.INodeReference r) {
  out.print("<ref>");
  o("referredId", r.getReferredId()).o("name", r.getName().toStringUtf8())
      .o("dstSnapshotId", r.getDstSnapshotId())
      .o("lastSnapshotId", r.getLastSnapshotId());
  out.print("</ref>\n");
}
项目:hadoop-2.6.0-cdh5.4.3    文件:FSImageFormatPBSnapshot.java   
/**
 * The sequence of the ref node in refList must be strictly the same with
 * the sequence in fsimage
 */
public void loadINodeReferenceSection(InputStream in) throws IOException {
  final List<INodeReference> refList = parent.getLoaderContext()
      .getRefList();
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    INodeReference ref = loadINodeReference(e);
    refList.add(ref);
  }
}
项目:hadoop-2.6.0-cdh5.4.3    文件:FSImageFormatPBSnapshot.java   
/**
 * This can only be called after serializing both INode_Dir and SnapshotDiff
 */
public void serializeINodeReferenceSection(OutputStream out)
    throws IOException {
  final List<INodeReference> refList = parent.getSaverContext()
      .getRefList();
  for (INodeReference ref : refList) {
    INodeReferenceSection.INodeReference.Builder rb = buildINodeReference(ref);
    rb.build().writeDelimitedTo(out);
  }
  parent.commitSection(headers, SectionName.INODE_REFERENCE);
}
项目:hadoop-2.6.0-cdh5.4.3    文件:FSImageFormatPBSnapshot.java   
private INodeReferenceSection.INodeReference.Builder buildINodeReference(
    INodeReference ref) throws IOException {
  INodeReferenceSection.INodeReference.Builder rb =
      INodeReferenceSection.INodeReference.newBuilder().
        setReferredId(ref.getId());
  if (ref instanceof WithName) {
    rb.setLastSnapshotId(((WithName) ref).getLastSnapshotId()).setName(
        ByteString.copyFrom(ref.getLocalNameBytes()));
  } else if (ref instanceof DstReference) {
    rb.setDstSnapshotId(ref.getDstSnapshotId());
  }
  return rb;
}
项目:hadoop-2.6.0-cdh5.4.3    文件:PBImageXmlWriter.java   
private void dumpINodeReferenceSection(InputStream in) throws IOException {
  out.print("<INodeReferenceSection>");
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    dumpINodeReference(e);
  }
  out.print("</INodeReferenceSection>");
}
项目:hadoop-2.6.0-cdh5.4.3    文件:PBImageXmlWriter.java   
private void dumpINodeReference(INodeReferenceSection.INodeReference r) {
  out.print("<ref>");
  o("referredId", r.getReferredId()).o("name", r.getName().toStringUtf8())
      .o("dstSnapshotId", r.getDstSnapshotId())
      .o("lastSnapshotId", r.getLastSnapshotId());
  out.print("</ref>\n");
}
项目:FlexMap    文件:FSImageFormatPBSnapshot.java   
/**
 * The sequence of the ref node in refList must be strictly the same with
 * the sequence in fsimage
 */
public void loadINodeReferenceSection(InputStream in) throws IOException {
  final List<INodeReference> refList = parent.getLoaderContext()
      .getRefList();
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    INodeReference ref = loadINodeReference(e);
    refList.add(ref);
  }
}
项目:FlexMap    文件:FSImageFormatPBSnapshot.java   
/**
 * This can only be called after serializing both INode_Dir and SnapshotDiff
 */
public void serializeINodeReferenceSection(OutputStream out)
    throws IOException {
  final List<INodeReference> refList = parent.getSaverContext()
      .getRefList();
  for (INodeReference ref : refList) {
    INodeReferenceSection.INodeReference.Builder rb = buildINodeReference(ref);
    rb.build().writeDelimitedTo(out);
  }
  parent.commitSection(headers, SectionName.INODE_REFERENCE);
}
项目:FlexMap    文件:FSImageFormatPBSnapshot.java   
private INodeReferenceSection.INodeReference.Builder buildINodeReference(
    INodeReference ref) throws IOException {
  INodeReferenceSection.INodeReference.Builder rb =
      INodeReferenceSection.INodeReference.newBuilder().
        setReferredId(ref.getId());
  if (ref instanceof WithName) {
    rb.setLastSnapshotId(((WithName) ref).getLastSnapshotId()).setName(
        ByteString.copyFrom(ref.getLocalNameBytes()));
  } else if (ref instanceof DstReference) {
    rb.setDstSnapshotId(ref.getDstSnapshotId());
  }
  return rb;
}
项目:FlexMap    文件:PBImageXmlWriter.java   
private void dumpINodeReferenceSection(InputStream in) throws IOException {
  out.print("<INodeReferenceSection>");
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    dumpINodeReference(e);
  }
  out.print("</INodeReferenceSection>");
}
项目:FlexMap    文件:PBImageXmlWriter.java   
private void dumpINodeReference(INodeReferenceSection.INodeReference r) {
  out.print("<ref>");
  o("referredId", r.getReferredId()).o("name", r.getName().toStringUtf8())
      .o("dstSnapshotId", r.getDstSnapshotId())
      .o("lastSnapshotId", r.getLastSnapshotId());
  out.print("</ref>\n");
}
项目:hadoop-on-lustre2    文件:FSImageFormatPBSnapshot.java   
/**
 * The sequence of the ref node in refList must be strictly the same with
 * the sequence in fsimage
 */
public void loadINodeReferenceSection(InputStream in) throws IOException {
  final List<INodeReference> refList = parent.getLoaderContext()
      .getRefList();
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    INodeReference ref = loadINodeReference(e);
    refList.add(ref);
  }
}
项目:hadoop-on-lustre2    文件:FSImageFormatPBSnapshot.java   
/**
 * This can only be called after serializing both INode_Dir and SnapshotDiff
 */
public void serializeINodeReferenceSection(OutputStream out)
    throws IOException {
  final List<INodeReference> refList = parent.getSaverContext()
      .getRefList();
  for (INodeReference ref : refList) {
    INodeReferenceSection.INodeReference.Builder rb = buildINodeReference(ref);
    rb.build().writeDelimitedTo(out);
  }
  parent.commitSection(headers, SectionName.INODE_REFERENCE);
}
项目:hadoop-on-lustre2    文件:FSImageFormatPBSnapshot.java   
private INodeReferenceSection.INodeReference.Builder buildINodeReference(
    INodeReference ref) throws IOException {
  INodeReferenceSection.INodeReference.Builder rb =
      INodeReferenceSection.INodeReference.newBuilder().
        setReferredId(ref.getId());
  if (ref instanceof WithName) {
    rb.setLastSnapshotId(((WithName) ref).getLastSnapshotId()).setName(
        ByteString.copyFrom(ref.getLocalNameBytes()));
  } else if (ref instanceof DstReference) {
    rb.setDstSnapshotId(((DstReference) ref).getDstSnapshotId());
  }
  return rb;
}
项目:hadoop-on-lustre2    文件:PBImageXmlWriter.java   
private void dumpINodeReferenceSection(InputStream in) throws IOException {
  out.print("<INodeReferenceSection>");
  while (true) {
    INodeReferenceSection.INodeReference e = INodeReferenceSection
        .INodeReference.parseDelimitedFrom(in);
    if (e == null) {
      break;
    }
    dumpINodeReference(e);
  }
  out.print("</INodeReferenceSection>");
}
项目:hadoop-on-lustre2    文件:PBImageXmlWriter.java   
private void dumpINodeReference(INodeReferenceSection.INodeReference r) {
  out.print("<ref>");
  o("referredId", r.getReferredId()).o("name", r.getName().toStringUtf8())
      .o("dstSnapshotId", r.getDstSnapshotId())
      .o("lastSnapshotId", r.getLastSnapshotId());
  out.print("</ref>\n");
}