-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirent.cpp
63 lines (52 loc) · 1.84 KB
/
dirent.cpp
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
/*
Copyright 2010 Toshiyuki Terashita.
fuse-autohttpfs is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include "dirent.h"
// class Direntries implements.
void Direntries::from_json(std::string& json)
{
std::string err;
picojson::value root;
picojson::parse<std::string::iterator>(root, json.begin(), json.end(), &err);
if(!err.empty()) throw err;
clear();
// try array: ["name", ... ]
if(json[0]=='[') {
picojson::array obj = root.get<picojson::array>();
picojson::array::iterator it;
for(it=obj.begin(); it!=obj.end(); it++) {
FileStat stat(S_IFDIR);
stat.name = (*it);
push_back(stat);
}
if(size()==0) throw std::string("Empty array.");
return;
}
// try hash: {"name":{"size":length,"mode":"modestr"}, ... }
if(json[0]=='{') {
picojson::object obj = root.get<picojson::object>();
picojson::object::iterator it;
for(it=obj.begin(); it!=obj.end(); it++) {
std::pair<std::string, picojson::value> val = (*it);
FileStat stat;
stat.name = val.first;
stat.from_json(val.second);
push_back(stat);
}
if(size()==0) throw std::string("Empty hash.");
return;
}
throw std::string("Unknown json type.");
}
// vim: sw=2 sts=2 ts=4 expandtab :