summaryrefslogtreecommitdiffstats
path: root/kabc/tests/bigwrite.cpp
blob: 167f5d44dadddcfa8bf089785a84437eeb73249a (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 <klocale.h>
#include <tdecmdlineargs.h>

#include "addressbook.h"
#include "vcardformat.h"
#include "plugins/file/resourcefile.h"

using namespace KABC;

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;
  }
}