Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
46d8f620
Commit
46d8f620
authored
Sep 25, 2010
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tdb2: tdb_summary() implementation for tdb2.
parent
8a462e5a
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
396 additions
and
0 deletions
+396
-0
ccan/tdb2/_info
ccan/tdb2/_info
+1
-0
ccan/tdb2/summary.c
ccan/tdb2/summary.c
+330
-0
ccan/tdb2/tdb2.h
ccan/tdb2/tdb2.h
+5
-0
ccan/tdb2/test/run-summary.c
ccan/tdb2/test/run-summary.c
+60
-0
No files found.
ccan/tdb2/_info
View file @
46d8f620
...
...
@@ -78,6 +78,7 @@ int main(int argc, char *argv[])
printf("ccan/likely\n");
printf("ccan/asearch\n");
printf("ccan/build_assert\n");
printf("ccan/tally\n");
return 0;
}
...
...
ccan/tdb2/summary.c
0 → 100644
View file @
46d8f620
This diff is collapsed.
Click to expand it.
ccan/tdb2/tdb2.h
View file @
46d8f620
...
...
@@ -63,6 +63,9 @@ enum TDB_ERROR {TDB_SUCCESS=0, TDB_ERR_CORRUPT, TDB_ERR_IO, TDB_ERR_LOCK,
TDB_ERR_OOM
,
TDB_ERR_EXISTS
,
TDB_ERR_NOEXIST
,
TDB_ERR_EINVAL
,
TDB_ERR_RDONLY
,
TDB_ERR_NESTING
};
/* flags for tdb_summary. Logical or to combine. */
enum
tdb_summary_flags
{
TDB_SUMMARY_HISTOGRAMS
=
1
};
/* debugging uses one of the following levels */
enum
tdb_debug_level
{
TDB_DEBUG_FATAL
=
0
,
TDB_DEBUG_ERROR
,
TDB_DEBUG_WARNING
,
TDB_DEBUG_TRACE
};
...
...
@@ -143,6 +146,8 @@ int tdb_check(struct tdb_context *tdb,
enum
TDB_ERROR
tdb_error
(
struct
tdb_context
*
tdb
);
const
char
*
tdb_errorstr
(
struct
tdb_context
*
tdb
);
char
*
tdb_summary
(
struct
tdb_context
*
tdb
,
enum
tdb_summary_flags
flags
);
extern
struct
tdb_data
tdb_null
;
#ifdef __cplusplus
...
...
ccan/tdb2/test/run-summary.c
0 → 100644
View file @
46d8f620
#include <ccan/tdb2/tdb.c>
#include <ccan/tdb2/free.c>
#include <ccan/tdb2/lock.c>
#include <ccan/tdb2/io.c>
#include <ccan/tdb2/hash.c>
#include <ccan/tdb2/check.c>
#include <ccan/tdb2/summary.c>
#include <ccan/tap/tap.h>
#include "logging.h"
int
main
(
int
argc
,
char
*
argv
[])
{
unsigned
int
i
,
j
;
struct
tdb_context
*
tdb
;
int
flags
[]
=
{
TDB_INTERNAL
,
TDB_DEFAULT
,
TDB_NOMMAP
,
TDB_INTERNAL
|
TDB_CONVERT
,
TDB_CONVERT
,
TDB_NOMMAP
|
TDB_CONVERT
};
struct
tdb_data
key
=
{
(
unsigned
char
*
)
&
j
,
sizeof
(
j
)
};
struct
tdb_data
data
=
{
(
unsigned
char
*
)
&
j
,
sizeof
(
j
)
};
char
*
summary
;
plan_tests
(
sizeof
(
flags
)
/
sizeof
(
flags
[
0
])
*
(
1
+
2
*
7
)
+
1
);
for
(
i
=
0
;
i
<
sizeof
(
flags
)
/
sizeof
(
flags
[
0
]);
i
++
)
{
tdb
=
tdb_open
(
"run-summary.tdb"
,
flags
[
i
],
O_RDWR
|
O_CREAT
|
O_TRUNC
,
0600
,
&
tap_log_attr
);
ok1
(
tdb
);
if
(
!
tdb
)
continue
;
/* Put some stuff in there. */
for
(
j
=
0
;
j
<
500
;
j
++
)
if
(
tdb_store
(
tdb
,
key
,
data
,
TDB_REPLACE
)
!=
0
)
fail
(
"Storing in tdb"
);
for
(
j
=
0
;
j
<=
TDB_SUMMARY_HISTOGRAMS
;
j
+=
TDB_SUMMARY_HISTOGRAMS
)
{
summary
=
tdb_summary
(
tdb
,
j
);
ok1
(
strstr
(
summary
,
"Number of records: 500
\n
"
));
ok1
(
strstr
(
summary
,
"Smallest/average/largest keys: 4/4/4
\n
"
));
ok1
(
strstr
(
summary
,
"Smallest/average/largest data: 4/4/4
\n
"
));
ok1
(
strstr
(
summary
,
"Free bucket 8"
));
ok1
(
strstr
(
summary
,
"Free bucket 16"
));
ok1
(
strstr
(
summary
,
"Free bucket 24"
));
if
(
j
==
TDB_SUMMARY_HISTOGRAMS
)
ok1
(
strstr
(
summary
,
"|"
)
&&
strstr
(
summary
,
"*"
));
else
ok1
(
!
strstr
(
summary
,
"|"
)
&&
!
strstr
(
summary
,
"*"
));
free
(
summary
);
}
tdb_close
(
tdb
);
}
ok1
(
tap_log_messages
==
0
);
return
exit_status
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment