-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.md
653 lines (568 loc) · 16.3 KB
/
README.md
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
# CXML ![](https://img.shields.io/badge/license-MIT-blue)![](https://img.shields.io/badge/language-c%2B%2B-blue)![](https://img.shields.io/badge/version-2.0-blue)
c++ 解析 xml 文档 支持 xpath 语法
- [CXML](#cxml-----https---imgshieldsio-badge-license-mit-blue-----https---imgshieldsio-badge-language-c-2b-2b-blue-----https---imgshieldsio-badge-version-20-blue-)
- [前言](#--)
- [如何使用](#----)
- [下载安装](#----)
- [使用 DEMO](#---demo)
- [支持的 xpath 语法](#----xpath---)
- [Cmakelists](#cmakelists)
- [编译](#--)
- [结果](#--)
- [设计](#--)
- [1.主逻辑](#1---)
- [1.读入](#1--)
- [2.解析](#2--)
- [2.如何解析](#2----)
- [3. 如何建立 XML 树](#3------xml--)
- [4.如何解析 xpath 语法](#4-----xpath---)
- [思路:](#---)
- [常量名](#---)
- [双指针算法入队](#-------)
- [switch 处理队列操作](#switch-------)
- [bfs 算法](#bfs---)
- [dfs 搜索](#dfs---)
- [5.用到的数据结构](#5-------)
- [6.用到的 STL 容器](#6----stl---)
- [6.用到的算法](#6-----)
- [2.后期完善工作](#2------)
- [欢迎 Fork 和 Pr](#---fork---pr)
<small><i><a href='http://ecotrust-canada.github.io/markdown-toc/'>Table of contents generated with markdown-toc</a></i></small>
## 前言
因为我叫 codecat,所以我的 XML 就叫 CXML
这次设计这个代码主要是学完 c++基础的,想结合数据结构和 c++基础的东西来做一个比较实际的项目
# 如何使用
## 下载安装
```
git clone https://github.com/CodeCat-maker/cxml.git
```
## 使用 DEMO
```c++
#include "src/parser.hpp"
#include "src/xpath.hpp"
extern int CXML_PARSER_STATUS; //解析状态
extern int XPATH_PARSE_STATUE;
int main()
{
using std::cout;
using std::endl;
clock_t start, end;
start = clock();
CXMLNode *root = parse_from_string("\
<bookstore company=\"codecat\" boss=\"man\">\n\
<book category=\"CHILDREN\">\n\
<title>Harry Potter</title>\n\
<author>J K.Rowlingk</author>\n\
<year>2005</year><br>\n\
<price>29.99 </price>\n\
</book>\n\
<book category=\"WEB\">\n\
<title>Learning XML</title>\n\
<author>Erik T.Ray</author>\n\
<year>2003 </year>\n\
<price>39.95 </price>\n\
</book>\n\
</bookstore>");
//cout << root->children.size() << endl;
if (CXML_PARSER_STATUS == CXML_SYNTAX_ERROR)
{
std::puts(">xml解析异常");
return 0;
}
else
{
std::puts(">xml解析成功");
}
const CXMLNode_result *result1 = xpath("/bookstore/book[@category=CHILDREN]/@category//text()", root);
const CXMLNode_result *result2 = xpath("/bookstore/book/title/../price/text()", root);
if (XPATH_PARSE_STATUE == XPATH_SYNTAX_ERROR)
{
std::puts(">xpath解析异常");
return 0;
}
else
{
std::puts(">xpath解析成功");
}
cout << "测试样例1:" << result1->text << endl;
cout << "测试样例2:" << result2->text << endl;
end = clock();
cout << "\n\n函数运行花费:" << (double)(end - start) / CLOCKS_PER_SEC << "秒";
return 0;
}
```
## 支持的 xpath 语法
- /name 选择当前元素子元素中的 name 元素
- //name 选择当前元素后代元素中的 name 元素
- /. 选择当前元素
- /.. 选择父元素
- /name[@attr=value] 属性筛选,选择 attr 属性的值为 value 的 name 元素(属性值不加分号)
- /name[@attr] 属性筛选,选择有 attr 属性的元素
- /name[n] 选择当前元素下第 n 个 name 元素
- /text() 返回当前元素中的文本
- /@attr 返回当前元素 attr 属性的值
- //text() 返回当前元素以及它所有后代元素中的文本
- //@attr 返回当前元素以及它所有后代元素中 attr 属性的值
## Cmakelists
```cmake
cmake_minimum_required(VERSION 3.13)
project(cxml)
set(CMAKE_CXX_STANDARD 11)
add_subdirectory(src)
add_executable(cxml main.cpp)
target_link_libraries(cxml CxmlFunction)
```
## 编译
```
cd build
cmake .
make ..
```
## 结果
```
>xml解析成功
>xpath解析成功
测试样例1:Harry Potter J K.Rowlingk 2005 29.99
测试样例2:29.99
函数运行花费:0.000135秒
```
# 设计
## 1.主逻辑
### 1.读入
1.从文档读入
2.从字符串读入
### 2.解析
1.解析当前标签名
2.解析标签属性
3.解析标签值
4.构建 xml 树
故文档结构就是这个样子了:
```
cxml.hpp
cxml_class.cc
cxml_class.hpp
xpath.hpp
xpath.cc
cxml.cc
parser.hpp
```
### 2.如何解析
```c++
CXMLNode *parse_from_string(const string cxml);
CXMLNode *parse_from_string(const string cxml)
{
//如果为空直接返回异常
if (cxml.length() == 0)
{
CXML_PARSER_STATUS = CXML_CONTENT_EMPTY;
return nullptr;
}
string str = cxml;
//删除DOCTYPE这一行
if (str.find("!DOCTYPE") < maxLength)
{
str = str.substr(str.find(">") + 1);
}
//删除xml这一行
if (str.find("?xml") < maxLength)
{
str = str.substr(str.find(">") + 1);
}
//开始解析
CXMLNode *root = new CXMLNode();
CXMLNode *head = new CXMLNode();
root->parent = head;
st.push(head);
head->children.push_back(parse_node(str, root));
return head;
}
```
到这里,其实 XML 中建立 XML 树这部分的思路就是这样了。剩下的就是如何解析字符串和如何建立树的问题了
解析字符串很简单 就不详细说明了
### 3. 如何建立 XML 树
首先我们来看一个例子:
```xml
<bookstore company=\"codecat\" boss=\"man\">\n\
<book category=\"CHILDREN\">\n\
<title>Harry Potter</title>\n\
<author>J K.Rowlingk</author>\n\
<year>2005</year>\n\
<price>29.99 </price>\n\
</book>\n\
<book category=\"WEB\">\n\
<title>Learning XML</title>\n\
<author>Erik T.Ray</author>\n\
<year>2003 </year>\n\
<price>39.95 </price>\n\
</book>\n\
</bookstore>"
```
那么接下来就是如何建立这棵树了
![](https://i.bmp.ovh/imgs/2022/02/f99c226b653a1ac8.png)
根目录树结构
```json
{
"Node": {
"name": [],
"next": [],
"perv": []
},
"content": {
"__r_": []
},
"parent": "NULL",
"children": {
"[0]": {
"Node": {
"name": {
"__r_": {
"std::__1::__compressed_pair_elem<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__rep, 0, false>": []
}
},
"next": "NULL",
"perv": "NULL"
},
"content": {
"__r_": {
"std::__1::__compressed_pair_elem<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__rep, 0, false>": []
}
},
"parent": {
"Node": {
"name": [],
"next": [],
"perv": []
},
"content": {
"__r_": []
},
"parent": "NULL",
"children": {
"[0]": []
},
"attr": "NULL",
"text": "NULL"
},
"children": {
"[0]": {
"Node": {
"name": [],
"next": [],
"perv": []
},
"content": {
"__r_": []
},
"parent": {
"Node": [],
"content": [],
"parent": [],
"children": [],
"attr": [],
"text": []
},
"children": {
"[0]": [],
"[1]": [],
"[2]": [],
"[3]": [],
"[4]": []
},
"attr": {
"Node": [],
"attributes": [],
"nums": []
},
"text": {
"Node": [],
"content": [],
"lens": []
}
},
"[1]": {
"Node": {
"name": [],
"next": [],
"perv": []
},
"content": {
"__r_": []
},
"parent": {
"Node": [],
"content": [],
"parent": [],
"children": [],
"attr": [],
"text": []
},
"children": {
"[0]": [],
"[1]": [],
"[2]": [],
"[3]": []
},
"attr": {
"Node": [],
"attributes": [],
"nums": []
},
"text": {
"Node": [],
"content": [],
"lens": []
}
}
},
"attr": {
"Node": {
"name": [],
"next": [],
"perv": []
},
"attributes": {
"[0]": [],
"[1]": []
},
"nums": "2"
},
"text": {
"Node": {
"name": [],
"next": [],
"perv": []
},
"content": {
"__r_": []
},
"lens": "0"
}
}
},
"attr": "NULL",
"text": "NULL"
}
```
我在这里建树的思路是:
建立一个 stack 堆,将标签<name>都丢进去,一层一层,如果遇到</name>的,就将 stack 栈顶 pop 出来,代表当前节点已经废弃,并且入栈的时候按照的是父子关系,因为如果有不是子的就已经 pop 出去了,所以我们很容易建立一个关系
递归处理
```c++
CXMLNode *parse_node(const string cxml, CXMLNode *root)
{
std::puts("==========");
string str = cxml;
strip(str);
if (str.find("<") > maxLength)
return nullptr;
root = parse_node_element_name(str, root);
root = parse_node_element_attr(str, root);
root = parse_node_element_text(str, root);
//如果解析名称为单口标签
//cout << root->name << " " << st.top()->name << std::endl;
if (is_open(root->name) == true)
{
//递归下一个
}
if (root->name.find(st.top()->name) < root->name.length() && st.top()->name != "")
{
strip(str);
str.erase(0, str.find("</" + root->name + ">") + root->name.length() + 3);
cout << "出栈" << root->name << std::endl;
CXMLNode *brother = new CXMLNode();
//st.top()->parent->children.push_back(brother);
st.pop();
cout << "栈顶元素:" << st.top()->name << std::endl;
parse_node(str, brother);
}
else
{
strip(str);
str = str.substr(str.find(">") + 1);
//cout << str << std::endl;
CXMLNode *child = new CXMLNode();
root->parent = st.top();
cout << "栈顶元素:" << st.top()->name << std::endl;
st.top()->children.push_back(root);
st.push(root);
cout << "入栈:" << root->name << std::endl;
//root->children.push_back(child);
parse_node(str, child);
}
return root;
}
```
### 4.如何解析 xpath 语法
#### 思路:
从左到右用双指针算法将操作名称和操作对象名放入队列中,利用队列先进先出的特性,依次进行解析
##### 常量名
```c++
const string options[] = {
"get_parent_node", // /.. 选择父元素 ✅
"get_this_node", // /. 选择当前元素 ✅
"get_all_nodes", // /* 匹配任意元素
"get_node_from_genera_by_name", // //name 选择当前元素后代元素中的name元素 ✅
"get_node_from_child_by_name", // /name 选择当前元素子代元素中的name元素 ✅
"get_node_by_array_and_name", // /name[n] 选择当前元素下第n个name元素 ✅
"get_node_by_attr_and_name", // /name[@attr] 属性筛选,选择有attr属性的元素 ✅
"get_node_by_attrValue_and_name", // /name[@attr=value] 属性筛选,选择attr属性的值为value的name元素(属性值不加分号) ✅
"get_text_from_this", // /text() 返回当前元素中的文本 ✅
"get_texts_from_genera", // //text() 返回当前元素以及它所有后代元素中的文本 ✅
"get_attr_from_this", // /@attr 返回当前元素attr属性的值 ✅
"get_all_attr" // @* 匹配任意属性};
};
```
##### 双指针算法入队
```c++
bool get_xpath_option(const string exp)
{
int l(0), r(0);
int len = 0;
while (len <= exp.length())
{
if ((exp[len] == '/'))
{
if (exp[len + 1] == '/')
r = l + 2;
else
r = l + 1;
while (r <= exp.length())
{
if (exp[r] == '/')
break;
r++;
}
string tmp_option = exp.substr(l, r - l);
//cout << tmp_option << " ";
queue_option.push(parse_option(tmp_option));
}
len = r;
l = r;
}
//string name = exp.substr(0, len);
return true;
}
```
##### switch 处理队列操作
```c++
bool do_xpath_option(CXMLNode *root, CXMLNode_result *result)
{
CXMLNode *node = root;
string ret_text;
while (queue_option.empty() == false)
{
pair<string, string> op = queue_option.front();
queue_option.pop();
string option = op.first;
string name = op.second;
//cout << option << " " << name << endl;
switch (str2int(option.c_str()))
{
case str2int("get_node_from_genera_by_name"):
node = xpath_get_node_from_genera_by_name(name, node);
result->element = node;
break;
case str2int("get_node_from_child_by_name"):
node = xpath_get_node_from_child_by_name(name, node);
result->element = node;
break;
case str2int("get_node_by_array_and_name"):
node = xpath_get_node_by_array_and_name(name, node);
result->element = node;
break;
case str2int("get_node_by_attr_and_name"):
node = xpath_get_node_by_attr_and_name(name, node);
result->element = node;
break;
case str2int("get_node_by_attrValue_and_name"):
node = xpath_get_node_by_attrValue_and_name(name, node);
result->element = node;
break;
case str2int("get_text_from_this"):
ret_text = xpath_get_text_from_this(node);
result->text = ret_text;
return true;
case str2int("get_texts_from_genera"):
ret_text = xpath_get_texts_from_genera(node);
result->text = ret_text;
return true;
case str2int("get_this_node"):
node = xpath_get_this_node(node);
result->element = node;
break;
case str2int("get_parent_node"):
node = xpath_get_parent_node(node);
result->element = node;
break;
case str2int("get_attr_from_this"):
ret_text = xpath_get_attr_from_this(name, node);
result->text = ret_text;
return true;
default:
return false;
}
}
return true;
}
```
##### bfs 算法
搜索全部文本名称
```c++
string xpath_get_texts_from_genera(CXMLNode *root)
{
pair<CXMLNode *, bool> d;
queue<CXMLNode *> q;
q.push(root);
string ret;
while (!q.empty())
{
auto p = q.front();
q.pop();
for (auto m : p->children)
{
auto t = m->text;
ret += t->content + " ";
q.push(m);
}
}
return ret;
}
```
##### dfs 搜索
搜索符合条件的元素
```c++
map<CXMLNode *, bool> used;
//选择当前元素后代元素中的name元素
CXMLNode *xpath_get_node_from_genera_by_name(const string name, CXMLNode *root)
{
if (root->name == name)
{
return root;
}
for (auto m : root->children)
{
if (used.count(m) == 0)
{
used.insert({m, true});
CXMLNode *result = xpath_get_node_from_genera_by_name(name, m);
if (result != nullptr)
return result;
used.erase(m);
}
}
return nullptr;
}
```
### 5.用到的数据结构
栈、双链表,树,队列,元组
### 6.用到的 STL 容器
vector 动态数组
map 哈希表
string 字符串
pair 元组
stack 栈
queue 队列
#### 6.用到的算法
dfs bfs 双指针
## 2.后期完善工作
1.支持 html 解析
# 欢迎 Fork 和 Pr