Java 类org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.GetSnapshotDiffReportResponseProto 实例源码

项目:hadoop    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:aliyun-oss-hadoop-fs    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result =
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelperClient.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:aliyun-oss-hadoop-fs    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelperClient.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:big-c    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:big-c    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-2.6.0-cdh5.4.3    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop-2.6.0-cdh5.4.3    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-plus    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop-plus    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:FlexMap    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:FlexMap    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-TCP    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop-TCP    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hardfs    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hardfs    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-on-lustre2    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public GetSnapshotDiffReportResponseProto getSnapshotDiffReport(
    RpcController controller, GetSnapshotDiffReportRequestProto request)
    throws ServiceException {
  try {
    SnapshotDiffReport report = server.getSnapshotDiffReport(
        request.getSnapshotRoot(), request.getFromSnapshot(),
        request.getToSnapshot());
    return GetSnapshotDiffReportResponseProto.newBuilder()
        .setDiffReport(PBHelper.convert(report)).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop-on-lustre2    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public SnapshotDiffReport getSnapshotDiffReport(String snapshotRoot,
    String fromSnapshot, String toSnapshot) throws IOException {
  GetSnapshotDiffReportRequestProto req = GetSnapshotDiffReportRequestProto
      .newBuilder().setSnapshotRoot(snapshotRoot)
      .setFromSnapshot(fromSnapshot).setToSnapshot(toSnapshot).build();
  try {
    GetSnapshotDiffReportResponseProto result = 
        rpcProxy.getSnapshotDiffReport(null, req);

    return PBHelper.convert(result.getDiffReport());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}