forked from google/jsonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request google#77 from davidzchen/cpp2
Add C++ API.
- Loading branch information
Showing
18 changed files
with
606 additions
and
111,482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
new_http_archive( | ||
name = "gmock_archive", | ||
url = "https://googlemock.googlecode.com/files/gmock-1.7.0.zip", | ||
sha256 = "26fcbb5925b74ad5fc8c26b0495dfc96353f4d553492eb97e85a8a6d2f43095b", | ||
build_file = "gmock.BUILD", | ||
) | ||
|
||
bind( | ||
name = "gtest", | ||
actual = "@gmock_archive//:gtest", | ||
) | ||
|
||
bind( | ||
name = "gtest_main", | ||
actual = "@gmock_archive//:gtest_main", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
cc_library( | ||
name = "libjsonnet++", | ||
srcs = ["libjsonnet++.cc"], | ||
deps = [ | ||
"//:libjsonnet", | ||
"//include:libjsonnet++", | ||
], | ||
includes = ["include"], | ||
) | ||
|
||
cc_test( | ||
name = "libjsonnet++_test", | ||
srcs = ["libjsonnet++_test.cc"], | ||
data = ["//cpp/testdata"], | ||
deps = [ | ||
":libjsonnet++", | ||
"//external:gtest_main", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
// Copyright 2015 Google Inc. 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. | ||
|
||
#include "libjsonnet++.h" | ||
|
||
namespace jsonnet { | ||
|
||
Jsonnet::Jsonnet() {} | ||
Jsonnet::~Jsonnet() { | ||
if (vm_ != nullptr) { | ||
::jsonnet_destroy(vm_); | ||
} | ||
} | ||
|
||
/* static */ | ||
std::string Jsonnet::Version() { | ||
return ::jsonnet_version(); | ||
} | ||
|
||
bool Jsonnet::Init() { | ||
vm_ = static_cast<struct JsonnetVm*>(::jsonnet_make()); | ||
return vm_ != nullptr; | ||
} | ||
|
||
void Jsonnet::SetMaxStack(uint32_t depth) { | ||
::jsonnet_max_stack(vm_, static_cast<unsigned>(depth)); | ||
} | ||
|
||
void Jsonnet::SetGcMinObjects(uint32_t objects) { | ||
::jsonnet_gc_min_objects(vm_, static_cast<unsigned>(objects)); | ||
} | ||
|
||
void Jsonnet::SetGcGrowthTrigger(double growth) { | ||
::jsonnet_gc_growth_trigger(vm_, growth); | ||
} | ||
|
||
void Jsonnet::SetStringOutput(bool string_output) { | ||
::jsonnet_string_output(vm_, string_output); | ||
} | ||
|
||
void Jsonnet::AddImportPath(const std::string& path) { | ||
::jsonnet_jpath_add(vm_, path.c_str()); | ||
} | ||
|
||
void Jsonnet::SetMaxTrace(uint32_t lines) { | ||
::jsonnet_max_trace(vm_, static_cast<unsigned>(lines)); | ||
} | ||
|
||
void Jsonnet::BindExtVar(const std::string& key, const std::string& value) { | ||
::jsonnet_ext_var(vm_, key.c_str(), value.c_str()); | ||
} | ||
|
||
void Jsonnet::BindExtCodeVar(const std::string& key, | ||
const std::string& value) { | ||
::jsonnet_ext_code(vm_, key.c_str(), value.c_str()); | ||
} | ||
|
||
bool Jsonnet::EvaluateFile(const std::string& filename, std::string* output) { | ||
if (output == nullptr) { | ||
return false; | ||
} | ||
int error = 0; | ||
const char* jsonnet_output = | ||
::jsonnet_evaluate_file(vm_, filename.c_str(), &error); | ||
if (error != 0) { | ||
last_error_.assign(jsonnet_output); | ||
return false; | ||
} | ||
output->assign(jsonnet_output); | ||
return true; | ||
} | ||
|
||
bool Jsonnet::EvaluateSnippet(const std::string& filename, | ||
const std::string& snippet, | ||
std::string* output) { | ||
if (output == nullptr) { | ||
return false; | ||
} | ||
int error = 0; | ||
const char* jsonnet_output = ::jsonnet_evaluate_snippet( | ||
vm_, filename.c_str(), snippet.c_str(), &error); | ||
if (error != 0) { | ||
last_error_.assign(jsonnet_output); | ||
return false; | ||
} | ||
output->assign(jsonnet_output); | ||
return true; | ||
} | ||
|
||
namespace { | ||
void ParseMultiOutput(const char* jsonnet_output, | ||
std::map<std::string, std::string>* outputs) { | ||
for (const char* c = jsonnet_output; *c != '\0'; ) { | ||
const char *filename = c; | ||
const char *c2 = c; | ||
while (*c2 != '\0') ++c2; | ||
++c2; | ||
const char *json = c2; | ||
while (*c2 != '\0') ++c2; | ||
++c2; | ||
c = c2; | ||
outputs->insert(std::make_pair(filename, json)); | ||
} | ||
} | ||
} // namespace | ||
|
||
bool Jsonnet::EvaluateFileMulti( | ||
const std::string& filename, | ||
std::map<std::string, std::string>* outputs) { | ||
if (outputs == nullptr) { | ||
return false; | ||
} | ||
int error = 0; | ||
const char* jsonnet_output = | ||
::jsonnet_evaluate_file_multi(vm_, filename.c_str(), &error); | ||
if (error != 0) { | ||
last_error_.assign(jsonnet_output); | ||
return false; | ||
} | ||
ParseMultiOutput(jsonnet_output, outputs); | ||
return true; | ||
} | ||
|
||
bool Jsonnet::EvaluateSnippetMulti( | ||
const std::string& filename, | ||
const std::string& snippet, | ||
std::map<std::string, std::string>* outputs) { | ||
if (outputs == nullptr) { | ||
return false; | ||
} | ||
int error = 0; | ||
const char* jsonnet_output = ::jsonnet_evaluate_snippet_multi( | ||
vm_, filename.c_str(), snippet.c_str(), &error); | ||
if (error != 0) { | ||
last_error_.assign(jsonnet_output); | ||
return false; | ||
} | ||
ParseMultiOutput(jsonnet_output, outputs); | ||
return true; | ||
} | ||
|
||
std::string Jsonnet::LastError() const { | ||
return last_error_; | ||
} | ||
|
||
} // namespace jsonnet |
Oops, something went wrong.