sandboxed-api/contrib/jsonnet/examples/jsonnet_base_transaction.cc

89 lines
3.0 KiB
C++
Raw Normal View History

2020-09-12 00:08:04 +08:00
// Copyright 2020 Google LLC
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
2020-09-12 00:08:04 +08:00
//
// 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.
#include "contrib/jsonnet/jsonnet_base_transaction.h"
2020-09-15 00:24:21 +08:00
#include "sandboxed_api/util/fileops.h"
#include "sandboxed_api/util/path.h"
2020-09-15 00:24:21 +08:00
absl::Status JsonnetTransaction::Main() {
using sapi::file::JoinPath;
using sapi::file_util::fileops::Basename;
2020-09-15 00:24:21 +08:00
JsonnetApi api(sandbox());
2020-09-15 17:40:43 +08:00
// Initialize library's main structure.
2020-09-15 18:16:00 +08:00
SAPI_ASSIGN_OR_RETURN(JsonnetVm * jsonnet_vm, api.c_jsonnet_make());
2020-09-15 00:24:21 +08:00
sapi::v::RemotePtr vm_pointer(jsonnet_vm);
2020-09-15 17:40:43 +08:00
// Read input file.
std::string in_file_in_sandboxee(JoinPath("/input", Basename(in_file_)));
2020-09-15 00:24:21 +08:00
sapi::v::ConstCStr in_file_var(in_file_in_sandboxee.c_str());
2020-09-15 18:16:00 +08:00
SAPI_ASSIGN_OR_RETURN(char* input,
api.c_read_input(false, in_file_var.PtrBefore()));
2020-09-15 00:24:21 +08:00
2020-09-15 17:40:43 +08:00
// Process jsonnet data.
2020-09-15 00:24:21 +08:00
sapi::v::RemotePtr input_pointer(input);
sapi::v::Int error;
2020-09-15 18:16:00 +08:00
SAPI_ASSIGN_OR_RETURN(char* output, api.c_jsonnet_evaluate_snippet(
&vm_pointer, in_file_var.PtrBefore(),
&input_pointer, error.PtrAfter()));
2020-09-15 18:16:00 +08:00
TRANSACTION_FAIL_IF_NOT(error.GetValue() == 0,
"Jsonnet code evaluation failed.");
2020-09-15 00:24:21 +08:00
2020-09-15 17:40:43 +08:00
// Write data to file.
std::string out_file_in_sandboxee(JoinPath("/output", Basename(out_file_)));
2020-09-15 00:24:21 +08:00
sapi::v::ConstCStr out_file_var(out_file_in_sandboxee.c_str());
sapi::v::RemotePtr output_pointer(output);
2020-09-15 18:16:00 +08:00
SAPI_ASSIGN_OR_RETURN(
bool success,
api.c_write_output_file(&output_pointer, out_file_var.PtrBefore()));
2020-09-15 00:24:21 +08:00
TRANSACTION_FAIL_IF_NOT(success, "Writing to output file failed.");
2020-09-15 17:40:43 +08:00
// Clean up.
2020-09-15 18:16:00 +08:00
SAPI_ASSIGN_OR_RETURN(char* result,
api.c_jsonnet_realloc(&vm_pointer, &output_pointer, 0));
2020-09-15 00:24:21 +08:00
SAPI_RETURN_IF_ERROR(api.c_jsonnet_destroy(&vm_pointer));
SAPI_RETURN_IF_ERROR(api.c_free_input(&input_pointer));
return absl::OkStatus();
2020-09-15 17:40:43 +08:00
}
int main(int argc, char* argv[]) {
using sapi::file_util::fileops::Basename;
2020-09-15 17:40:43 +08:00
google::InitGoogleLogging(argv[0]);
gflags::ParseCommandLineFlags(&argc, &argv, true);
if (!(argc == 3)) {
std::cerr << "Usage:\n"
<< Basename(argv[0])
<< " /absolute/path/to/INPUT.jsonnet /absolute/path/to/OUTPUT\n";
2020-09-15 17:40:43 +08:00
return EXIT_FAILURE;
}
std::string in_file(argv[1]);
std::string out_file(argv[2]);
JsonnetTransaction jsonnet_transaction(in_file, out_file);
auto result = jsonnet_transaction.Run();
LOG(INFO) << "Transaction result: " << result.message();
CHECK(result.ok());
return EXIT_SUCCESS;
}