hadoop ExecutionTypeRequestPBImpl 源码

  • 2022-10-20
  • 浏览 (133)

haddop ExecutionTypeRequestPBImpl 代码

文件路径:/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/api/records/impl/pb/ExecutionTypeRequestPBImpl.java

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.hadoop.yarn.api.records.impl.pb;

import org.apache.hadoop.yarn.api.records.ExecutionTypeRequest;
import org.apache.hadoop.yarn.api.records.ExecutionType;
import org.apache.hadoop.yarn.proto.YarnProtos.ExecutionTypeRequestProto;
import org.apache.hadoop.yarn.proto.YarnProtos.ExecutionTypeRequestProtoOrBuilder;

/**
 * Implementation of <code>ExecutionTypeRequest</code>.
 */
public class ExecutionTypeRequestPBImpl extends ExecutionTypeRequest {
  private ExecutionTypeRequestProto proto =
      ExecutionTypeRequestProto.getDefaultInstance();
  private ExecutionTypeRequestProto.Builder builder = null;
  private boolean viaProto = false;

  public ExecutionTypeRequestPBImpl() {
    builder = ExecutionTypeRequestProto.newBuilder();
  }

  public ExecutionTypeRequestPBImpl(ExecutionTypeRequestProto proto) {
    this.proto = proto;
    viaProto = true;
  }

  private void maybeInitBuilder() {
    if (viaProto || builder == null) {
      builder = ExecutionTypeRequestProto.newBuilder(proto);
    }
    viaProto = false;
  }

  public ExecutionTypeRequestProto getProto() {
    proto = viaProto ? proto : builder.build();
    viaProto = true;
    return proto;
  }

  @Override
  public ExecutionType getExecutionType() {
    ExecutionTypeRequestProtoOrBuilder p = viaProto ? proto : builder;
    if (!p.hasExecutionType()) {
      return null;
    }
    return ProtoUtils.convertFromProtoFormat(p.getExecutionType());
  }

  @Override
  public void setExecutionType(ExecutionType execType) {
    maybeInitBuilder();
    if (execType == null) {
      builder.clearExecutionType();
      return;
    }
    builder.setExecutionType(ProtoUtils.convertToProtoFormat(execType));
  }

  @Override
  public void setEnforceExecutionType(boolean enforceExecutionType) {
    maybeInitBuilder();
    builder.setEnforceExecutionType(enforceExecutionType);
  }

  @Override
  public boolean getEnforceExecutionType() {
    ExecutionTypeRequestProtoOrBuilder p = viaProto ? proto : builder;
    return p.getEnforceExecutionType();
  }

  @Override
  public int compareTo(ExecutionTypeRequest other) {
    return this.getExecutionType().compareTo(other.getExecutionType());
  }

  @Override
  public String toString() {
    return "{Execution Type: " + getExecutionType()
        + ", Enforce Execution Type: " + getEnforceExecutionType() + "}";
  }
}

相关信息

hadoop 源码目录

相关文章

hadoop ApplicationAttemptIdPBImpl 源码

hadoop ApplicationAttemptReportPBImpl 源码

hadoop ApplicationIdPBImpl 源码

hadoop ApplicationReportPBImpl 源码

hadoop ApplicationResourceUsageReportPBImpl 源码

hadoop ApplicationSubmissionContextPBImpl 源码

hadoop ApplicationTimeoutPBImpl 源码

hadoop CollectorInfoPBImpl 源码

hadoop ContainerIdPBImpl 源码

hadoop ContainerLaunchContextPBImpl 源码

0  赞