Skip to content

Commit 247afad

Browse files
authored
Merge pull request #8 from tobozo/1.2.7
1.2.7
2 parents 3bbad14 + e68d6f4 commit 247afad

12 files changed

+5507
-285
lines changed

License

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
21
ESP32-yaml
2+
-------------------------------------------------------------------------------
33
Project Page: https://github.com/tobozo/esp32-yaml
44
Copyright 2022 tobozo http://github.com/tobozo
55

@@ -25,8 +25,13 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2525
OTHER DEALINGS IN THE SOFTWARE.
2626

2727

28+
-------------------------------------------------------------------------------
29+
ESP32-yaml is bundled with libyaml and cJSON
30+
-------------------------------------------------------------------------------
31+
2832

2933
libyaml
34+
-------------------------------------------------------------------------------
3035
Copyright (c) 2017-2020 Ingy döt Net
3136
Copyright (c) 2006-2016 Kirill Simonov
3237

@@ -47,3 +52,28 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4752
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4853
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4954
SOFTWARE.
55+
56+
57+
58+
cJSON
59+
-------------------------------------------------------------------------------
60+
Copyright (c) 2009-2017 Dave Gamble and cJSON contributors
61+
62+
Permission is hereby granted, free of charge, to any person obtaining a copy
63+
of this software and associated documentation files (the "Software"), to deal
64+
in the Software without restriction, including without limitation the rights
65+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
66+
copies of the Software, and to permit persons to whom the Software is
67+
furnished to do so, subject to the following conditions:
68+
69+
The above copyright notice and this permission notice shall be included in
70+
all copies or substantial portions of the Software.
71+
72+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
73+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
74+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
75+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
76+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
77+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
78+
THE SOFTWARE.
79+

ReadMe.md

+56-24
Original file line numberDiff line numberDiff line change
@@ -2,51 +2,58 @@
22

33
This arduino library is based on [libyaml](https://github.com/yaml/libyaml).
44

5-
It provides several ways to serialize/deserialize YAML<=>JSON using cJSON or ArduinoJson objects.
5+
It provides several ways to convert YAML<=>JSON using libyaml, cJSON or ArduinoJson objects.
66

77
Supported platforms (some untested):
88

9-
- esp32
10-
- esp8266
11-
- samd
12-
- rp2040
9+
- ESP32
10+
- RP2040
11+
- ESP8266
12+
- SAMD
13+
1314

1415

1516
### Usage
1617

17-
#### cJSON
18+
```cpp
19+
#include <ArduinoYaml.h>
20+
21+
```
22+
23+
or
24+
25+
```cpp
26+
#include <YAMLDuino.h>
27+
28+
```
29+
30+
31+
32+
33+
#### pure libyaml
34+
35+
YAML is a superset of JSON, so native conversion from JSON is possible without any additional JSON library.
1836

1937
```cpp
20-
#include <cJSON.h> // note: cJSON is built-in with esp32
2138
#include <ArduinoYaml.h>
2239

23-
// cJSON object to YAML string
24-
size_t serializeYml( cJSON* src_obj, String &dest_string );
25-
// cJSON object to YAML stream
26-
size_t serializeYml( cJSON* src_obj, Stream &dest_stream );
27-
// JSON stream to cJSON object to YAML stream, disabled on some architectures
40+
// JSON stream to YAML stream
2841
size_t serializeYml( Stream &json_src_stream, Stream &yml_dest_stream );
2942

30-
// YAML string to cJSON object
31-
int deserializeYml( cJSON* dest_obj, const char* src_yaml_str );
32-
// YAML stream to cJSON object
33-
int deserializeYml( cJSON* dest_obj, Stream &src_stream );
3443
```
3544
45+
3646
#### ArduinoJson
3747
3848
3949
```cpp
40-
41-
#include <ArduinoJson.h>
50+
#include <ArduinoJson.h> // include this first or functions will be disabled
4251
#include <ArduinoYaml.h>
4352
4453
// ArduinoJSON object to YAML string
4554
size_t serializeYml( JsonVariant src_obj, String &dest_string );
4655
// ArduinoJSON object to YAML stream
4756
size_t serializeYml( JsonVariant src_obj, Stream &dest_stream );
48-
// JSON stream to JsonObject to YAML stream, disabled on some architectures
49-
size_t serializeYml( Stream &json_src_stream, Stream &yml_dest_stream );
5057
// Deserialize YAML string to ArduinoJSON object
5158
DeserializationError deserializeYml( JsonObject &dest_obj, const char* src_yaml_str );
5259
// Deserialize YAML stream to ArduinoJSON object
@@ -60,15 +67,40 @@ Supported platforms (some untested):
6067

6168

6269

70+
#### cJSON
71+
72+
⚠️ cJSON has a memory leak with floats, the leak happens only once though, and may be
73+
avoided by quoting the float, which won't affect yaml output.
74+
75+
76+
```cpp
77+
// #include <cJSON.h> // no need to include, cJSON is built-in with esp32 and also bundled with ArduinoYaml
78+
#include <ArduinoYaml.h>
79+
80+
// cJSON object to YAML string
81+
size_t serializeYml( cJSON* src_obj, String &dest_string );
82+
// cJSON object to YAML stream
83+
size_t serializeYml( cJSON* src_obj, Stream &dest_stream );
84+
// YAML string to cJSON object
85+
int deserializeYml( cJSON* dest_obj, const char* src_yaml_str );
86+
// YAML stream to cJSON object
87+
int deserializeYml( cJSON* dest_obj, Stream &src_stream );
88+
89+
```
90+
91+
92+
93+
94+
6395
### Credits and special thanks to:
6496
65-
- [libyaml](https://github.com/yaml/libyaml)
66-
- [yaml2json](https://github.com/vikman90/yaml2json)
67-
- [@bblanchon](https://github.com/bblanchon)
97+
- [@yaml](https://github.com/yaml)
6898
- [@DaveGamble](https://github.com/DaveGamble)
69-
- [@espressif](https://github.com/espressif)
99+
- [@bblanchon](https://github.com/bblanchon)
100+
- [@vikman90](https://github.com/vikman90/yaml2json)
70101
71102
### Additional resources:
72103
73104
- ArduinoJson : https://github.com/bblanchon/ArduinoJson
74105
- cJSON : https://github.com/DaveGamble/cJSON
106+
- libyaml : https://github.com/yaml/libyaml

0 commit comments

Comments
 (0)