blob: ab7fec7cff6d32313d4b8615e8d0e319a6c98e4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#include <sys/times.h>
#include <tdeaboutdata.h>
#include <tdeapplication.h>
#include <kdebug.h>
#include <tdelocale.h>
#include <tdecmdlineargs.h>
#include "addressbook.h"
#include "vcardformat.h"
#include "plugins/file/resourcefile.h"
using namespace TDEABC;
int main(int argc,char **argv)
{
TDEAboutData aboutData("bigwrite","BigWriteKabc","0.1");
TDECmdLineArgs::init(argc,argv,&aboutData);
TDEApplication app( false, false );
AddressBook ab;
ResourceFile r( "my.kabc", "vcard" );
ab.addResource( &r );
for( int i = 0; i < 5000; ++i ) {
Addressee a;
a.setGivenName( "number" + TQString::number( i ) );
a.setFamilyName( "Name" );
a.insertEmail( TQString::number( i ) + "@domain" );
ab.insertAddressee( a );
}
printf( "\n" );
Ticket *t = ab.requestSaveTicket( &r );
if ( t ) {
struct tms start;
times( &start );
#if 0
kdDebug() << "utime : " << int( start.tms_utime ) << endl;
kdDebug() << "stime : " << int( start.tms_stime ) << endl;
kdDebug() << "cutime: " << int( start.tms_cutime ) << endl;
kdDebug() << "cstime: " << int( start.tms_cstime ) << endl;
#endif
if ( !ab.save( t ) ) {
kdDebug() << "Can't save." << endl;
}
struct tms end;
times( &end );
#if 0
kdDebug() << "utime : " << int( end.tms_utime ) << endl;
kdDebug() << "stime : " << int( end.tms_stime ) << endl;
kdDebug() << "cutime: " << int( end.tms_cutime ) << endl;
kdDebug() << "cstime: " << int( end.tms_cstime ) << endl;
#endif
kdDebug() << "UTime: " << int( end.tms_utime ) - int( start.tms_utime ) << endl;
kdDebug() << "STime: " << int( end.tms_stime ) - int( start.tms_stime ) << endl;
} else {
kdDebug() << "No ticket for save." << endl;
}
}
|