blob: ff9579b975d95a6158de042b33e82e10e095fdbd [file] [log] [blame]
// Copyright 2018 The Bazel Authors. All rights reserved.
//
// Licensed 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 com.google.devtools.build.lib.skylarkbuildapi.repository;
import com.google.devtools.build.lib.skylarkinterface.SkylarkCallable;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModule;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModuleCategory;
/**
* A structure callable from Skylark that stores the result of repository_ctx.execute() method. It
* contains the standard output stream content, the standard error stream content and the execution
* return code.
*/
@SkylarkModule(
name = "exec_result",
category = SkylarkModuleCategory.NONE,
doc =
"A structure storing result of repository_ctx.execute() method. It contains the standard"
+ " output stream content, the standard error stream content and the execution return"
+ " code."
)
public interface SkylarkExecutionResultApi {
@SkylarkCallable(
name = "return_code",
structField = true,
doc = "The return code returned after the execution of the program. 256 if an error happened"
+ " while executing the command."
)
public int getReturnCode();
@SkylarkCallable(
name = "stdout",
structField = true,
doc = "The content of the standard output returned by the execution."
)
public String getStdout();
@SkylarkCallable(
name = "stderr",
structField = true,
doc = "The content of the standard error output returned by the execution."
)
public String getStderr();
}