2020-09-08 18:37:17 +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
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
|
|
|
2020-09-15 21:22:47 +08:00
|
|
|
#include "jsonnet_base_sandbox.h"
|
2020-09-08 18:37:17 +08:00
|
|
|
|
2020-09-15 17:40:43 +08:00
|
|
|
int main(int argc, char* argv[]) {
|
2020-09-08 19:11:08 +08:00
|
|
|
google::InitGoogleLogging(argv[0]);
|
|
|
|
gflags::ParseCommandLineFlags(&argc, &argv, true);
|
2020-09-08 18:37:17 +08:00
|
|
|
|
2020-09-10 18:19:06 +08:00
|
|
|
if (!(argc == 3)) {
|
|
|
|
std::cerr << "Usage:\n"
|
|
|
|
<< basename(argv[0]) << " absolute/path/to/INPUT.jsonnet"
|
2020-09-08 18:37:17 +08:00
|
|
|
<< " absolute/path/to/OUTPUT\n";
|
|
|
|
return EXIT_FAILURE;
|
2020-09-08 19:11:08 +08:00
|
|
|
}
|
2020-09-08 18:37:17 +08:00
|
|
|
|
2020-09-08 19:11:08 +08:00
|
|
|
std::string in_file(argv[1]);
|
|
|
|
std::string out_file(argv[2]);
|
|
|
|
|
|
|
|
// Initialize sandbox.
|
2020-09-15 21:22:47 +08:00
|
|
|
JsonnetBaseSandbox sandbox(in_file, out_file);
|
2020-09-08 19:11:08 +08:00
|
|
|
absl::Status status = sandbox.Init();
|
2020-09-15 00:24:21 +08:00
|
|
|
CHECK(status.ok()) << "Sandbox initialization failed: " << status;
|
2020-09-08 19:11:08 +08:00
|
|
|
|
|
|
|
JsonnetApi api(&sandbox);
|
|
|
|
|
|
|
|
// Initialize library's main structure.
|
2020-09-15 00:24:21 +08:00
|
|
|
sapi::StatusOr<JsonnetVm*> jsonnet_vm = api.c_jsonnet_make();
|
2020-09-08 19:11:08 +08:00
|
|
|
sapi::v::RemotePtr vm_pointer(jsonnet_vm.value());
|
|
|
|
CHECK(jsonnet_vm.ok()) << "JsonnetVm initialization failed: "
|
|
|
|
<< jsonnet_vm.status();
|
|
|
|
|
|
|
|
// Read input file.
|
2020-09-08 23:03:22 +08:00
|
|
|
std::string in_file_in_sandboxee(std::string("/input/") +
|
|
|
|
basename(&in_file[0]));
|
|
|
|
sapi::v::ConstCStr in_file_var(in_file_in_sandboxee.c_str());
|
2020-09-15 00:24:21 +08:00
|
|
|
sapi::StatusOr<char*> input =
|
2020-09-08 19:11:08 +08:00
|
|
|
api.c_read_input(false, in_file_var.PtrBefore());
|
2020-09-15 00:24:21 +08:00
|
|
|
CHECK(input.ok()) << "Reading input file failed: " << input.status();
|
2020-09-08 19:11:08 +08:00
|
|
|
|
|
|
|
// Process jsonnet data.
|
|
|
|
sapi::v::RemotePtr input_pointer(input.value());
|
|
|
|
sapi::v::Int error;
|
2020-09-18 20:27:31 +08:00
|
|
|
sapi::StatusOr<char*> output = api.c_jsonnet_evaluate_snippet(
|
2020-09-08 19:11:08 +08:00
|
|
|
&vm_pointer, in_file_var.PtrBefore(), &input_pointer, error.PtrAfter());
|
|
|
|
CHECK(output.ok() && !error.GetValue())
|
2020-09-08 23:03:22 +08:00
|
|
|
<< "Jsonnet code evaluation failed: " << output.status() << " "
|
|
|
|
<< error.GetValue() << "\n"
|
|
|
|
<< "Make sure all files used by your jsonnet file are in the same "
|
2020-09-16 00:16:05 +08:00
|
|
|
"directory as your file.";
|
2020-09-08 19:11:08 +08:00
|
|
|
|
|
|
|
// Write data to file.
|
|
|
|
std::string out_file_in_sandboxee(std::string("/output/") +
|
|
|
|
basename(&out_file[0]));
|
|
|
|
sapi::v::ConstCStr out_file_var(out_file_in_sandboxee.c_str());
|
|
|
|
sapi::v::RemotePtr output_pointer(output.value());
|
2020-09-10 18:19:06 +08:00
|
|
|
sapi::StatusOr<bool> success;
|
|
|
|
|
|
|
|
success = api.c_write_output_file(&output_pointer, out_file_var.PtrBefore());
|
|
|
|
|
2020-09-08 19:11:08 +08:00
|
|
|
CHECK(success.ok() && success.value())
|
2020-09-15 00:24:21 +08:00
|
|
|
<< "Writing to output file failed: " << success.status() << " "
|
2020-09-08 19:11:08 +08:00
|
|
|
<< success.value();
|
|
|
|
|
|
|
|
// Clean up.
|
2020-09-15 00:24:21 +08:00
|
|
|
sapi::StatusOr<char*> result =
|
2020-09-08 19:11:08 +08:00
|
|
|
api.c_jsonnet_realloc(&vm_pointer, &output_pointer, 0);
|
2020-09-08 23:03:22 +08:00
|
|
|
CHECK(result.ok()) << "JsonnetVm realloc failed: " << result.status();
|
2020-09-08 19:11:08 +08:00
|
|
|
|
|
|
|
status = api.c_jsonnet_destroy(&vm_pointer);
|
2020-09-08 23:03:22 +08:00
|
|
|
CHECK(status.ok()) << "JsonnetVm destroy failed: " << status;
|
2020-09-08 19:11:08 +08:00
|
|
|
|
|
|
|
status = api.c_free_input(&input_pointer);
|
2020-09-08 23:03:22 +08:00
|
|
|
CHECK(status.ok()) << "Input freeing failed: " << status;
|
2020-09-08 19:11:08 +08:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2020-09-10 21:27:22 +08:00
|
|
|
}
|