Skip to content
This repository was archived by the owner on Oct 26, 2021. It is now read-only.

Commit d1f47ac

Browse files
author
Maxim Danilov
committedFeb 16, 2018
Fixed: persistence_db_viewer does not show content of big databases
Added .gitignore
1 parent 61bfcb1 commit d1f47ac

File tree

2 files changed

+129
-38
lines changed

2 files changed

+129
-38
lines changed
 

‎.gitignore

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# Autotools.gitignore
2+
3+
# http://www.gnu.org/software/automake
4+
5+
Makefile.in
6+
/ar-lib
7+
/mdate-sh
8+
/py-compile
9+
/test-driver
10+
/ylwrap
11+
12+
# http://www.gnu.org/software/autoconf
13+
14+
/autom4te.cache
15+
/autoscan.log
16+
/autoscan-*.log
17+
/aclocal.m4
18+
/compile
19+
/config.guess
20+
/config.h.in
21+
/config.sub
22+
/configure
23+
/configure.scan
24+
/depcomp
25+
/install-sh
26+
/missing
27+
/stamp-h1
28+
29+
# https://www.gnu.org/software/libtool/
30+
31+
/ltmain.sh
32+
33+
# http://www.gnu.org/software/texinfo
34+
35+
/texinfo.tex
36+
37+
# http://www.gnu.org/software/m4/
38+
39+
m4/libtool.m4
40+
m4/ltoptions.m4
41+
m4/ltsugar.m4
42+
m4/ltversion.m4
43+
m4/lt~obsolete.m4
44+
autom4te.cache
45+
46+
# C.gitignore
47+
48+
# Prerequisites
49+
*.d
50+
51+
# Object files
52+
*.o
53+
*.ko
54+
*.obj
55+
*.elf
56+
57+
# Linker output
58+
*.ilk
59+
*.map
60+
*.exp
61+
62+
# Precompiled Headers
63+
*.gch
64+
*.pch
65+
66+
# Libraries
67+
*.lib
68+
*.a
69+
*.la
70+
*.lo
71+
72+
# Shared objects (inc. Windows DLLs)
73+
*.dll
74+
*.so
75+
*.so.*
76+
*.dylib
77+
78+
# Executables
79+
*.exe
80+
*.out
81+
*.app
82+
*.i*86
83+
*.x86_64
84+
*.hex
85+
86+
# Debug files
87+
*.dSYM/
88+
*.su
89+
*.idb
90+
*.pdb
91+
92+
# Kernel Module Compile Results
93+
*.mod*
94+
*.cmd
95+
.tmp_versions/
96+
modules.order
97+
Module.symvers
98+
Mkfile.old
99+
dkms.conf

‎tools/persistence_db_viewer.c

+30-38
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@
88
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
99
* with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
1010
******************************************************************************/
11-
/**
11+
/**
1212
* @file persistence_db_viewer.c
1313
* @ingroup Persistence client library tools
1414
* @author Ingo Huerner
15-
1615
*
1716
* @see
1817
*/
@@ -60,21 +59,21 @@ typedef enum dbType_
6059

6160

6261
unsigned int gDbMaskArray[] = {
63-
dbTypeNone,
64-
dbTypeCached,
65-
dbTypeWriteThrough,
66-
dbTypeDefault,
67-
dbTypeConfDefault,
68-
dbTypeRCT
62+
dbTypeNone,
63+
dbTypeCached,
64+
dbTypeWriteThrough,
65+
dbTypeDefault,
66+
dbTypeConfDefault,
67+
dbTypeRCT
6968
};
7069

7170
const char* gDbNameArray[] = {
72-
"none",
73-
"cached",
74-
"wt",
75-
"default",
76-
"confDefault",
77-
"RCT"
71+
"none",
72+
"cached",
73+
"wt",
74+
"default",
75+
"confDefault",
76+
"RCT"
7877
};
7978

8079

@@ -102,7 +101,7 @@ void printDBcontent(const char* appname, dbType type)
102101
int handle = 0, listSize = 0, ret = 0;
103102

104103
char* resourceList = NULL;
105-
char filename[512] = {0};
104+
char filename[512] = { 0 };
106105

107106
static const char* nameTemplate = "/Data/mnt-c/%s/%s";
108107
static const char* cache = "cached.itz";
@@ -111,8 +110,6 @@ void printDBcontent(const char* appname, dbType type)
111110
static const char* confDef = "configurable-default-data.itz";
112111
static const size_t bufSize = 8192;
113112

114-
memset(filename, 0, 512-1);
115-
116113
printf("---------------------------------------------------------------------\n");
117114
if(type == dbTypeCached)
118115
{
@@ -145,10 +142,10 @@ void printDBcontent(const char* appname, dbType type)
145142
if(handle >= 0)
146143
{
147144
listSize = persComDbGetSizeKeysList(handle);
148-
if(listSize > 0 && listSize < 2048)
145+
if(listSize > 0)
149146
{
150-
resourceList = (char*)malloc((size_t)listSize+4);
151-
memset(resourceList, 0, (size_t)listSize+4-1);
147+
resourceList = (char*)malloc((size_t)listSize);
148+
memset(resourceList, 0, (size_t)listSize);
152149

153150
if(resourceList != NULL)
154151
{
@@ -164,17 +161,19 @@ void printDBcontent(const char* appname, dbType type)
164161
if(resourceList[i] == '\0')
165162
{
166163
numResources++;
167-
resourceStartIdx[++idx] = i+1;
164+
resourceStartIdx[++idx] = i + 1;
168165
}
169166
}
170167

171168
printf("NumOf resources: %d \n", numResources);
172169

173170
for(i = 0; i < numResources; ++i)
174171
{
175-
memset(buffer, 0, sizeof(buffer));
176172
printf("Key[%d]: %s\n", i, &resourceList[resourceStartIdx[i]]);
173+
174+
memset(buffer, 0, sizeof(buffer));
177175
persComDbReadKey(handle, &resourceList[resourceStartIdx[i]], buffer, (int)sizeof(buffer));
176+
178177
printf(" value: %s\n\n", buffer);
179178
}
180179
}
@@ -200,7 +199,6 @@ void printDBcontent(const char* appname, dbType type)
200199

201200

202201

203-
204202
void printRCTcontent(const char* appname, int full)
205203
{
206204
int handle = -1, listSize = 0, ret = 0;
@@ -217,37 +215,33 @@ void printRCTcontent(const char* appname, int full)
217215
if(handle >= 0)
218216
{
219217
listSize = persComRctGetSizeResourcesList(handle);
220-
if(listSize > 0 && listSize < 2048)
218+
if(listSize > 0)
221219
{
222-
resourceList = (char*)malloc((size_t)listSize+4);
223-
memset(resourceList, 0, (size_t)listSize+4-1);
220+
resourceList = (char*)malloc((size_t)listSize);
221+
memset(resourceList, 0, (size_t)listSize);
224222

225223
if(resourceList != NULL)
226224
{
227-
int i = 0, idx = 1, numResources = 0;
228-
int resourceStartIdx[256] = {0};
229-
230-
memset(resourceStartIdx, 0, 256-1);
231225
ret = persComRctGetResourcesList(handle, resourceList, listSize);
232-
233226
if(ret != 0)
234227
{
235-
resourceStartIdx[idx] = 0; // initial start
228+
int i = 0, idx = 0, numResources = 0;
229+
int resourceStartIdx[256] = { 0 };
236230

237-
for(i=1; i<listSize; i++ )
231+
for(i = 1; i < listSize; ++i)
238232
{
239233
if(resourceList[i] == '\0')
240234
{
241235
numResources++;
242-
resourceStartIdx[idx++] = i+1;
236+
resourceStartIdx[++idx] = i + 1;
243237
}
244238
}
245239

246240
printf("---------------------------------------------------------------------\n");
247241
printf("RCT keys [%d]: %s \n", numResources, filename);
248242
printf("---------------------------------------------------------------------\n");
249243

250-
for(i=0; i<numResources; i++)
244+
for(i = 0; i < numResources; ++i)
251245
{
252246
PersistenceConfigurationKey_s psConfig_out;
253247
printf("RCT[%d] : \"%s\"\n", i, &resourceList[resourceStartIdx[i]]);
@@ -395,6 +389,7 @@ void printAvailableApplication(const char* thePath)
395389
}
396390

397391

392+
398393
int main(int argc, char *argv[])
399394
{
400395
int ret = 0, opt = 0, printAllAppsContent = -1, listAllApps = -1;
@@ -457,13 +452,11 @@ int main(int argc, char *argv[])
457452
printAppManual();
458453
}
459454

460-
461455
if(listAllApps == 1)
462456
{
463457
printAvailableApplication(persPath);
464458
}
465459

466-
467460
if(printAllAppsContent == 1)
468461
{
469462
printAllApplicationDBs(persPath, dbTypeAccum);
@@ -473,7 +466,6 @@ int main(int argc, char *argv[])
473466
printSingleApplicationDBs(singleAppName, persPath, dbTypeAccum);
474467
}
475468

476-
477469
// unregister debug log and trace
478470
DLT_UNREGISTER_APP();
479471

0 commit comments

Comments
 (0)
This repository has been archived.