8
8
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
9
9
* with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10
10
******************************************************************************/
11
- /**
11
+ /**
12
12
* @file persistence_db_viewer.c
13
13
* @ingroup Persistence client library tools
14
14
* @author Ingo Huerner
15
-
16
15
*
17
16
* @see
18
17
*/
@@ -60,21 +59,21 @@ typedef enum dbType_
60
59
61
60
62
61
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
69
68
};
70
69
71
70
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"
78
77
};
79
78
80
79
@@ -102,7 +101,7 @@ void printDBcontent(const char* appname, dbType type)
102
101
int handle = 0 , listSize = 0 , ret = 0 ;
103
102
104
103
char * resourceList = NULL ;
105
- char filename [512 ] = {0 };
104
+ char filename [512 ] = { 0 };
106
105
107
106
static const char * nameTemplate = "/Data/mnt-c/%s/%s" ;
108
107
static const char * cache = "cached.itz" ;
@@ -111,8 +110,6 @@ void printDBcontent(const char* appname, dbType type)
111
110
static const char * confDef = "configurable-default-data.itz" ;
112
111
static const size_t bufSize = 8192 ;
113
112
114
- memset (filename , 0 , 512 - 1 );
115
-
116
113
printf ("---------------------------------------------------------------------\n" );
117
114
if (type == dbTypeCached )
118
115
{
@@ -145,10 +142,10 @@ void printDBcontent(const char* appname, dbType type)
145
142
if (handle >= 0 )
146
143
{
147
144
listSize = persComDbGetSizeKeysList (handle );
148
- if (listSize > 0 && listSize < 2048 )
145
+ if (listSize > 0 )
149
146
{
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 );
152
149
153
150
if (resourceList != NULL )
154
151
{
@@ -164,17 +161,19 @@ void printDBcontent(const char* appname, dbType type)
164
161
if (resourceList [i ] == '\0' )
165
162
{
166
163
numResources ++ ;
167
- resourceStartIdx [++ idx ] = i + 1 ;
164
+ resourceStartIdx [++ idx ] = i + 1 ;
168
165
}
169
166
}
170
167
171
168
printf ("NumOf resources: %d \n" , numResources );
172
169
173
170
for (i = 0 ; i < numResources ; ++ i )
174
171
{
175
- memset (buffer , 0 , sizeof (buffer ));
176
172
printf ("Key[%d]: %s\n" , i , & resourceList [resourceStartIdx [i ]]);
173
+
174
+ memset (buffer , 0 , sizeof (buffer ));
177
175
persComDbReadKey (handle , & resourceList [resourceStartIdx [i ]], buffer , (int )sizeof (buffer ));
176
+
178
177
printf (" value: %s\n\n" , buffer );
179
178
}
180
179
}
@@ -200,7 +199,6 @@ void printDBcontent(const char* appname, dbType type)
200
199
201
200
202
201
203
-
204
202
void printRCTcontent (const char * appname , int full )
205
203
{
206
204
int handle = -1 , listSize = 0 , ret = 0 ;
@@ -217,37 +215,33 @@ void printRCTcontent(const char* appname, int full)
217
215
if (handle >= 0 )
218
216
{
219
217
listSize = persComRctGetSizeResourcesList (handle );
220
- if (listSize > 0 && listSize < 2048 )
218
+ if (listSize > 0 )
221
219
{
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 );
224
222
225
223
if (resourceList != NULL )
226
224
{
227
- int i = 0 , idx = 1 , numResources = 0 ;
228
- int resourceStartIdx [256 ] = {0 };
229
-
230
- memset (resourceStartIdx , 0 , 256 - 1 );
231
225
ret = persComRctGetResourcesList (handle , resourceList , listSize );
232
-
233
226
if (ret != 0 )
234
227
{
235
- resourceStartIdx [idx ] = 0 ; // initial start
228
+ int i = 0 , idx = 0 , numResources = 0 ;
229
+ int resourceStartIdx [256 ] = { 0 };
236
230
237
- for (i = 1 ; i < listSize ; i ++ )
231
+ for (i = 1 ; i < listSize ; ++ i )
238
232
{
239
233
if (resourceList [i ] == '\0' )
240
234
{
241
235
numResources ++ ;
242
- resourceStartIdx [idx ++ ] = i + 1 ;
236
+ resourceStartIdx [++ idx ] = i + 1 ;
243
237
}
244
238
}
245
239
246
240
printf ("---------------------------------------------------------------------\n" );
247
241
printf ("RCT keys [%d]: %s \n" , numResources , filename );
248
242
printf ("---------------------------------------------------------------------\n" );
249
243
250
- for (i = 0 ; i < numResources ; i ++ )
244
+ for (i = 0 ; i < numResources ; ++ i )
251
245
{
252
246
PersistenceConfigurationKey_s psConfig_out ;
253
247
printf ("RCT[%d] : \"%s\"\n" , i , & resourceList [resourceStartIdx [i ]]);
@@ -395,6 +389,7 @@ void printAvailableApplication(const char* thePath)
395
389
}
396
390
397
391
392
+
398
393
int main (int argc , char * argv [])
399
394
{
400
395
int ret = 0 , opt = 0 , printAllAppsContent = -1 , listAllApps = -1 ;
@@ -457,13 +452,11 @@ int main(int argc, char *argv[])
457
452
printAppManual ();
458
453
}
459
454
460
-
461
455
if (listAllApps == 1 )
462
456
{
463
457
printAvailableApplication (persPath );
464
458
}
465
459
466
-
467
460
if (printAllAppsContent == 1 )
468
461
{
469
462
printAllApplicationDBs (persPath , dbTypeAccum );
@@ -473,7 +466,6 @@ int main(int argc, char *argv[])
473
466
printSingleApplicationDBs (singleAppName , persPath , dbTypeAccum );
474
467
}
475
468
476
-
477
469
// unregister debug log and trace
478
470
DLT_UNREGISTER_APP ();
479
471
0 commit comments