f258ce1a3f
git-svn-id: svn+ssh://svn.corp.yahoo.com/yahoo/yrl/labs/pnuts/code/logstore@657 8dad8b1f-cf64-0410-95b6-bcf113ffbcfe
32 lines
807 B
C++
32 lines
807 B
C++
/*
|
|
* space_usage.cpp
|
|
*
|
|
* Created on: Mar 1, 2010
|
|
* Author: sears
|
|
*/
|
|
|
|
#include "../tcpclient.h"
|
|
#include "../network.h"
|
|
#include "../datatuple.h"
|
|
|
|
void usage(char * argv[]) {
|
|
fprintf(stderr, "usage %s [host [port]]\n", argv[0]);
|
|
}
|
|
#include "util_main.h"
|
|
int main(int argc, char * argv[]) {
|
|
logstore_handle_t * l = util_open_conn(argc, argv);
|
|
|
|
datatuple * ret = logstore_client_op(l, OP_STAT_SPACE_USAGE);
|
|
|
|
if(ret == NULL) {
|
|
perror("Space usage failed."); return 3;
|
|
}
|
|
|
|
logstore_client_close(l);
|
|
assert(ret->keylen() == sizeof(uint64_t));
|
|
assert(ret->datalen() == sizeof(uint64_t));
|
|
printf("Tree is %lld MB Store file is %lld MB\n", (*(uint64_t*)ret->key()) / (1024*1024), (*(uint64_t*)ret->data()) / (1024*1024));
|
|
datatuple::freetuple(ret);
|
|
;
|
|
return 0;
|
|
}
|