xxxxxxxxxx
1391TNV/
2│
3├── bin/
4│ │
5│ ├── client
6│ ├── http
7│ ├── id
8│ ├── storage
9│ └── tracker
10│
11├── data/
12| |
13│ └── 000/
14│ │
15│ └── 000/
16│ │
17│ └── 000/
18│
19├── docs/
20│ │
21│ ├── 01_overview.txt
22│ ├── 02_overall.txt
23│ ├── 03_protocol.txt
24│ ├── 04_database.txt
25│ ├── 05_depenv.txt
26│ ├── 06_project.txt
27│ ├── 07_code.txt
28│ ├── 08_test.txt
29│ ├── 09_gluster.txt
30│ └── 10_plan.txt
31│
32├── download/
33│
34├── etc/
35│ │
36│ ├── http.cfg
37│ ├── id.cfg
38│ ├── storage.cfg
39│ └── tracker.cfg
40│
41├── lib/
42│ │
43│ └── libclient.a
44│
45├── sql/
46│ │
47│ ├── id.sql
48│ ├── storage.sql
49│ └── tracker.sql
50│
51├── src/
52│ │
53│ ├── 01_common/
54│ │ │
55│ │ ├── 01_types.h
56│ │ ├── 02_proto.h
57│ │ ├── 03_util.h
58│ │ └── 04_util.cpp
59│ │
60│ ├── 02_tracker/
61│ │ │
62│ │ ├── 01_globals.h
63│ │ ├── 02_globals.cpp
64│ │ ├── 03_cache.h
65│ │ ├── 04_cache.cpp
66│ │ ├── 05_db.h
67│ │ ├── 06_db.cpp
68│ │ ├── 07_service.h
69│ │ ├── 08_service.cpp
70│ │ ├── 09_status.h
71│ │ ├── 10_status.cpp
72│ │ ├── 11_server.h
73│ │ ├── 12_server.cpp
74│ │ ├── 13_main.cpp
75│ │ └── Makefile
76│ │
77│ ├── 03_id/
78│ │ │
79│ │ ├── 01_globals.h
80│ │ ├── 02_globals.cpp
81│ │ ├── 03_db.h
82│ │ ├── 04_db.cpp
83│ │ ├── 05_service.h
84│ │ ├── 06_service.cpp
85│ │ ├── 07_server.h
86│ │ ├── 08_server.cpp
87│ │ ├── 09_main.cpp
88│ │ └── Makefile
89│ │
90│ ├── 04_storage/
91│ │ │
92│ │ ├── 01_globals.h
93│ │ ├── 02_globals.cpp
94│ │ ├── 03_cache.h
95│ │ ├── 04_cache.cpp
96│ │ ├── 05_db.h
97│ │ ├── 06_db.cpp
98│ │ ├── 07_file.h
99│ │ ├── 08_file.cpp
100│ │ ├── 09_id.h
101│ │ ├── 10_id.cpp
102│ │ ├── 11_service.h
103│ │ ├── 12_service.cpp
104│ │ ├── 13_tracker.h
105│ │ ├── 14_tracker.cpp
106│ │ ├── 15_server.h
107│ │ ├── 16_server.cpp
108│ │ ├── 17_main.cpp
109│ │ └── Makefile
110│ │
111│ ├── 05_client/
112│ │ │
113│ │ ├── 01_conn.h
114│ │ ├── 02_conn.cpp
115│ │ ├── 03_pool.h
116│ │ ├── 04_pool.cpp
117│ │ ├── 05_mngr.h
118│ │ ├── 06_mngr.cpp
119│ │ ├── 07_client.h
120│ │ ├── 08_client.cpp
121│ │ ├── 09_main.cpp
122│ │ └── Makefile
123│ │
124│ ├── 06_http/
125│ │ │
126│ │ ├── 01_status.h
127│ │ ├── 02_globals.h
128│ │ ├── 03_globals.cpp
129│ │ ├── 04_service.h
130│ │ ├── 05_service.cpp
131│ │ ├── 06_server.h
132│ │ ├── 07_server.cpp
133│ │ ├── 08_main.cpp
134│ │ └── Makefile
135│ │
136│ ├── install
137│ └── uninstall
138│
139└── upload/