1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
//! The crate contains a [`json_to_table`] function which builds a [`Table`] from an ordinary json.
//!
//! You can build the table either generally or in a squash.
//! See the examples below.
//!
//! ```
//! use serde_json::json;
//! use json_to_table::json_to_table;
//!
//! let value = json!(
//!     {
//!         "name": "John Doe",
//!         "age": 43,
//!         "address": {
//!             "street": "10 Downing Street",
//!             "city": "London"
//!         },
//!         "phones": [
//!             "+44 1234567",
//!             "+44 2345678"
//!         ]
//!     }
//! );
//!
//! // recursive table
//! let table = json_to_table(&value).to_string();
//!
//! println!("{}", table);
//!
//! assert_eq!(
//!     table,
//!     concat!(
//!         "+---------+----------------------------------+\n",
//!         "| address | +--------+---------------------+ |\n",
//!         "|         | | city   |  London             | |\n",
//!         "|         | +--------+---------------------+ |\n",
//!         "|         | | street |  10 Downing Street  | |\n",
//!         "|         | +--------+---------------------+ |\n",
//!         "+---------+----------------------------------+\n",
//!         "| age     |  43                              |\n",
//!         "+---------+----------------------------------+\n",
//!         "| name    |  John Doe                        |\n",
//!         "+---------+----------------------------------+\n",
//!         "| phones  | +---------------+                |\n",
//!         "|         | |  +44 1234567  |                |\n",
//!         "|         | +---------------+                |\n",
//!         "|         | |  +44 2345678  |                |\n",
//!         "|         | +---------------+                |\n",
//!         "+---------+----------------------------------+",
//!     ),
//! );
//!
//! // squash tables together
//! let table = json_to_table(&value).collapse().to_string();
//!
//! assert_eq!(
//!     table,
//!     concat!(
//!         "+---------+--------+-------------------+\n",
//!         "| address | city   | London            |\n",
//!         "|         +--------+-------------------+\n",
//!         "|         | street | 10 Downing Street |\n",
//!         "+---------+--------+-------------------+\n",
//!         "| age     | 43                         |\n",
//!         "+---------+----------------------------+\n",
//!         "| name    | John Doe                   |\n",
//!         "+---------+----------------------------+\n",
//!         "| phones  | +44 1234567                |\n",
//!         "|         +----------------------------+\n",
//!         "|         | +44 2345678                |\n",
//!         "+---------+----------------------------+",
//!     ),
//! );
//! ```
//!
//! [`Table`]: tabled::Table

#![deny(unused_must_use)]
#![warn(
    missing_docs,
    rust_2018_idioms,
    missing_debug_implementations,
    unreachable_pub
)]
#![allow(clippy::uninlined_format_args)]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/zhiburt/tabled/86ac146e532ce9f7626608d7fd05072123603a2e/assets/tabled-gear.svg"
)]

use serde_json::Value;

pub use table::{JsonTable, Orientation};
use tabled::{builder::Builder, Table};

mod table;

/// The function converts a given [`Value`] to a [`JsonTable`].
///
/// ```
/// let json = serde_json::json!({
///     "key1": "value1",
///     "key2": {
///         "key1": 123,
///         "key2": [1, 2, 3, 4, 5],
///     },
///     "key3": [
///         {"key": 123.3},
///         2,
///         "asd"
///     ],
///     "key4": 1234.567
/// });
///     
/// let table = json_to_table::json_to_table(&json).to_string();
///
/// assert_eq!(
///     table,
///     concat!(
///         "+------+-----------------------+\n",
///         "| key1 |  value1               |\n",
///         "+------+-----------------------+\n",
///         "| key2 | +------+---------+    |\n",
///         "|      | | key1 |  123    |    |\n",
///         "|      | +------+---------+    |\n",
///         "|      | | key2 | +-----+ |    |\n",
///         "|      | |      | |  1  | |    |\n",
///         "|      | |      | +-----+ |    |\n",
///         "|      | |      | |  2  | |    |\n",
///         "|      | |      | +-----+ |    |\n",
///         "|      | |      | |  3  | |    |\n",
///         "|      | |      | +-----+ |    |\n",
///         "|      | |      | |  4  | |    |\n",
///         "|      | |      | +-----+ |    |\n",
///         "|      | |      | |  5  | |    |\n",
///         "|      | |      | +-----+ |    |\n",
///         "|      | +------+---------+    |\n",
///         "+------+-----------------------+\n",
///         "| key3 | +-------------------+ |\n",
///         "|      | | +-----+---------+ | |\n",
///         "|      | | | key |  123.3  | | |\n",
///         "|      | | +-----+---------+ | |\n",
///         "|      | +-------------------+ |\n",
///         "|      | |  2                | |\n",
///         "|      | +-------------------+ |\n",
///         "|      | |  asd              | |\n",
///         "|      | +-------------------+ |\n",
///         "+------+-----------------------+\n",
///         "| key4 |  1234.567             |\n",
///         "+------+-----------------------+",
///     ),
/// )
/// ```
pub fn json_to_table(value: &Value) -> JsonTable<&Value> {
    JsonTable::new(value)
}

/// The function converts a given [`Value`] to a [`Table`].
///
/// It's quite different from [`json_to_table`], cause it is not recursive
/// and treats `json` `object` and `array` as string values.
///
/// ```
/// let json = serde_json::json!({
///     "key1": "value1",
///     "key2": {
///         "key1": 123,
///         "key2": [1, 2, 3, 4, 5],
///     },
///     "key3": [
///         {"key": 123.3},
///         2,
///         "asd"
///     ],
///     "key4": 1234.567
/// });
///     
/// let table = json_to_table::parse(&json).to_string();
///
/// assert_eq!(
///     table,
///     concat!(
///         "+------+---------------------------------+\n",
///         "| key1 | value1                          |\n",
///         "+------+---------------------------------+\n",
///         "| key2 | {\"key1\":123,\"key2\":[1,2,3,4,5]} |\n",
///         "+------+---------------------------------+\n",
///         "| key3 | [{\"key\":123.3},2,\"asd\"]         |\n",
///         "+------+---------------------------------+\n",
///         "| key4 | 1234.567                        |\n",
///         "+------+---------------------------------+",
///     ),
/// )
/// ```
///
/// [`Table`]: tabled::Table
pub fn parse(value: &Value) -> Table {
    json_into_table(value)
}

fn json_into_table(value: &Value) -> Table {
    match value {
        Value::Array(array) => {
            let list = array.iter().map(json_value_to_string).collect::<Vec<_>>();
            Builder::from(vec![list]).build()
        }
        Value::Object(map) => {
            let list = map
                .iter()
                .map(|(key, value)| vec![key.clone(), json_value_to_string(value)])
                .collect::<Vec<_>>();

            Builder::from(list).build()
        }
        Value::Null => Builder::default().build(),
        Value::Bool(value) => single_value_table(value),
        Value::Number(value) => single_value_table(value),
        Value::String(value) => single_value_table(value),
    }
}

fn single_value_table<V: ToString>(value: V) -> Table {
    Builder::from(vec![vec![value.to_string()]]).build()
}

fn json_value_to_string(value: &Value) -> String {
    match value {
        Value::Null => String::new(),
        Value::Bool(value) => value.to_string(),
        Value::Number(value) => value.to_string(),
        Value::String(value) => value.to_string(),
        Value::Array(_) | Value::Object(_) => {
            serde_json::to_string(value).unwrap_or_else(|_| format!("{:?}", value))
        }
    }
}