Skip to content

Commit d8f15a8

Browse files
authored
Merge pull request #419 from Peefy/more-cpp-api-docs
docs: add more cpp API documents
2 parents cf42494 + 9cbe6cf commit d8f15a8

File tree

8 files changed

+540
-8
lines changed

8 files changed

+540
-8
lines changed

docs/reference/xlang-api/c-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Validate code using schema and JSON/YAML data strings.
105105
<details><summary>Example</summary>
106106
<p>
107107
108-
```rust
108+
```c
109109
#include <kcl_lib.h>
110110
111111
int validate(const char* code_str, const char* data_str)

docs/reference/xlang-api/cpp-api.md

+134-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Validate code using schema and JSON/YAML data strings.
8080
<details><summary>Example</summary>
8181
<p>
8282

83-
```rust
83+
```cpp
8484
#include "kcl_lib.hpp"
8585
#include <iostream>
8686

@@ -113,3 +113,136 @@ int main()
113113
114114
</p>
115115
</details>
116+
117+
### override_file
118+
119+
Override KCL file with arguments. See [https://www.kcl-lang.io/docs/user_docs/guides/automation](https://www.kcl-lang.io/docs/user_docs/guides/automation) for more override spec guide.
120+
121+
<details><summary>Example</summary>
122+
<p>
123+
124+
The content of `main.k` is
125+
126+
```c++
127+
a = 1
128+
129+
b = {
130+
"a": 1
131+
"b": 2
132+
}
133+
```
134+
135+
C++ Code
136+
137+
```cpp
138+
#include "kcl_lib.hpp"
139+
#include <iostream>
140+
141+
int main()
142+
{
143+
auto args = kcl_lib::OverrideFileArgs {
144+
.file = rust::String("main.k"),
145+
.specs = rust::Vec({ rust::String("b.a=2") }),
146+
};
147+
auto result = kcl_lib::override_file(args);
148+
std::cout << result.result << std::endl;
149+
std::cout << result.parse_errors.size() << std::endl;
150+
return 0;
151+
}
152+
```
153+
154+
</p>
155+
</details>
156+
157+
### update_dependencies
158+
159+
Download and update dependencies defined in the `kcl.mod` file and return the external package name and location list.
160+
161+
<details><summary>Example</summary>
162+
<p>
163+
164+
The content of `module/kcl.mod` is
165+
166+
```yaml
167+
[package]
168+
name = "mod_update"
169+
edition = "0.0.1"
170+
version = "0.0.1"
171+
172+
[dependencies]
173+
helloworld = { oci = "oci://ghcr.io/kcl-lang/helloworld", tag = "0.1.0" }
174+
flask = { git = "https://github.com/kcl-lang/flask-demo-kcl-manifests", commit = "ade147b" }
175+
```
176+
177+
C++ Code
178+
179+
```c++
180+
#include "kcl_lib.hpp"
181+
#include <iostream>
182+
183+
int main()
184+
{
185+
auto args = kcl_lib::UpdateDependenciesArgs {
186+
.manifest_path = rust::String("../test_data/update_dependencies"),
187+
};
188+
auto result = kcl_lib::update_dependencies(args);
189+
std::cout << result.external_pkgs[0].pkg_name.c_str() << std::endl;
190+
std::cout << result.external_pkgs[1].pkg_name.c_str() << std::endl;
191+
return 0;
192+
}
193+
```
194+
195+
</p>
196+
</details>
197+
198+
Call `exec_program` with external dependencies
199+
200+
<details><summary>Example</summary>
201+
<p>
202+
203+
The content of `module/kcl.mod` is
204+
205+
```yaml
206+
[package]
207+
name = "mod_update"
208+
edition = "0.0.1"
209+
version = "0.0.1"
210+
211+
[dependencies]
212+
helloworld = { oci = "oci://ghcr.io/kcl-lang/helloworld", tag = "0.1.0" }
213+
flask = { git = "https://github.com/kcl-lang/flask-demo-kcl-manifests", commit = "ade147b" }
214+
```
215+
216+
The content of `module/main.k` is
217+
218+
```c++
219+
import helloworld
220+
import flask
221+
222+
a = helloworld.The_first_kcl_program
223+
```
224+
225+
C++ Code
226+
227+
```c++
228+
#include "kcl_lib.hpp"
229+
#include <iostream>
230+
231+
int main()
232+
{
233+
auto args = kcl_lib::UpdateDependenciesArgs {
234+
.manifest_path = rust::String("../test_data/update_dependencies"),
235+
};
236+
auto result = kcl_lib::update_dependencies(args);
237+
auto exec_args = kcl_lib::ExecProgramArgs {
238+
.k_filename_list = rust::Vec({ rust::String("../test_data/update_dependencies/main.k") }),
239+
.external_pkgs = result.external_pkgs,
240+
};
241+
auto exec_result = kcl_lib::exec_program(exec_args);
242+
std::cout << exec_result.yaml_result.c_str() << std::endl;
243+
return 0;
244+
}
245+
```
246+
247+
</p>
248+
</details>

i18n/zh-CN/docusaurus-plugin-content-docs/current/reference/xlang-api/c-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Validate code using schema and JSON/YAML data strings.
105105
<details><summary>Example</summary>
106106
<p>
107107
108-
```rust
108+
```c
109109
#include <kcl_lib.h>
110110
111111
int validate(const char* code_str, const char* data_str)

i18n/zh-CN/docusaurus-plugin-content-docs/current/reference/xlang-api/cpp-api.md

+134-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Validate code using schema and JSON/YAML data strings.
8080
<details><summary>Example</summary>
8181
<p>
8282

83-
```rust
83+
```cpp
8484
#include "kcl_lib.hpp"
8585
#include <iostream>
8686

@@ -113,3 +113,136 @@ int main()
113113
114114
</p>
115115
</details>
116+
117+
### override_file
118+
119+
Override KCL file with arguments. See [https://www.kcl-lang.io/docs/user_docs/guides/automation](https://www.kcl-lang.io/docs/user_docs/guides/automation) for more override spec guide.
120+
121+
<details><summary>Example</summary>
122+
<p>
123+
124+
The content of `main.k` is
125+
126+
```c++
127+
a = 1
128+
129+
b = {
130+
"a": 1
131+
"b": 2
132+
}
133+
```
134+
135+
C++ Code
136+
137+
```cpp
138+
#include "kcl_lib.hpp"
139+
#include <iostream>
140+
141+
int main()
142+
{
143+
auto args = kcl_lib::OverrideFileArgs {
144+
.file = rust::String("main.k"),
145+
.specs = rust::Vec({ rust::String("b.a=2") }),
146+
};
147+
auto result = kcl_lib::override_file(args);
148+
std::cout << result.result << std::endl;
149+
std::cout << result.parse_errors.size() << std::endl;
150+
return 0;
151+
}
152+
```
153+
154+
</p>
155+
</details>
156+
157+
### update_dependencies
158+
159+
Download and update dependencies defined in the `kcl.mod` file and return the external package name and location list.
160+
161+
<details><summary>Example</summary>
162+
<p>
163+
164+
The content of `module/kcl.mod` is
165+
166+
```yaml
167+
[package]
168+
name = "mod_update"
169+
edition = "0.0.1"
170+
version = "0.0.1"
171+
172+
[dependencies]
173+
helloworld = { oci = "oci://ghcr.io/kcl-lang/helloworld", tag = "0.1.0" }
174+
flask = { git = "https://github.com/kcl-lang/flask-demo-kcl-manifests", commit = "ade147b" }
175+
```
176+
177+
C++ Code
178+
179+
```c++
180+
#include "kcl_lib.hpp"
181+
#include <iostream>
182+
183+
int main()
184+
{
185+
auto args = kcl_lib::UpdateDependenciesArgs {
186+
.manifest_path = rust::String("../test_data/update_dependencies"),
187+
};
188+
auto result = kcl_lib::update_dependencies(args);
189+
std::cout << result.external_pkgs[0].pkg_name.c_str() << std::endl;
190+
std::cout << result.external_pkgs[1].pkg_name.c_str() << std::endl;
191+
return 0;
192+
}
193+
```
194+
195+
</p>
196+
</details>
197+
198+
Call `exec_program` with external dependencies
199+
200+
<details><summary>Example</summary>
201+
<p>
202+
203+
The content of `module/kcl.mod` is
204+
205+
```yaml
206+
[package]
207+
name = "mod_update"
208+
edition = "0.0.1"
209+
version = "0.0.1"
210+
211+
[dependencies]
212+
helloworld = { oci = "oci://ghcr.io/kcl-lang/helloworld", tag = "0.1.0" }
213+
flask = { git = "https://github.com/kcl-lang/flask-demo-kcl-manifests", commit = "ade147b" }
214+
```
215+
216+
The content of `module/main.k` is
217+
218+
```c++
219+
import helloworld
220+
import flask
221+
222+
a = helloworld.The_first_kcl_program
223+
```
224+
225+
C++ Code
226+
227+
```c++
228+
#include "kcl_lib.hpp"
229+
#include <iostream>
230+
231+
int main()
232+
{
233+
auto args = kcl_lib::UpdateDependenciesArgs {
234+
.manifest_path = rust::String("../test_data/update_dependencies"),
235+
};
236+
auto result = kcl_lib::update_dependencies(args);
237+
auto exec_args = kcl_lib::ExecProgramArgs {
238+
.k_filename_list = rust::Vec({ rust::String("../test_data/update_dependencies/main.k") }),
239+
.external_pkgs = result.external_pkgs,
240+
};
241+
auto exec_result = kcl_lib::exec_program(exec_args);
242+
std::cout << exec_result.yaml_result.c_str() << std::endl;
243+
return 0;
244+
}
245+
```
246+
247+
</p>
248+
</details>

i18n/zh-CN/docusaurus-plugin-content-docs/version-0.9/reference/xlang-api/c-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Validate code using schema and JSON/YAML data strings.
105105
<details><summary>Example</summary>
106106
<p>
107107
108-
```rust
108+
```c
109109
#include <kcl_lib.h>
110110
111111
int validate(const char* code_str, const char* data_str)

0 commit comments

Comments
 (0)