summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/backend/otodoaccesssql.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/libopie2/opiepim/backend/otodoaccesssql.cpp b/libopie2/opiepim/backend/otodoaccesssql.cpp
index 6f65c48..12a8bea 100644
--- a/libopie2/opiepim/backend/otodoaccesssql.cpp
+++ b/libopie2/opiepim/backend/otodoaccesssql.cpp
@@ -396,162 +396,167 @@ namespace {
396 FindCustomQuery::~FindCustomQuery() { 396 FindCustomQuery::~FindCustomQuery() {
397 } 397 }
398 QString FindCustomQuery::query()const{ 398 QString FindCustomQuery::query()const{
399 return single(); // Multiple requests not supported ! 399 return single(); // Multiple requests not supported !
400 } 400 }
401 QString FindCustomQuery::single()const{ 401 QString FindCustomQuery::single()const{
402 QString qu = "select uid, type, value from custom_data where uid = "; 402 QString qu = "select uid, type, value from custom_data where uid = ";
403 qu += QString::number(m_uid); 403 qu += QString::number(m_uid);
404 return qu; 404 return qu;
405 } 405 }
406 406
407}; 407};
408 408
409 409
410namespace Opie { 410namespace Opie {
411OPimTodoAccessBackendSQL::OPimTodoAccessBackendSQL( const QString& file ) 411OPimTodoAccessBackendSQL::OPimTodoAccessBackendSQL( const QString& file )
412 : OPimTodoAccessBackend(),/* m_dict(15),*/ m_driver(NULL), m_dirty(true) 412 : OPimTodoAccessBackend(),/* m_dict(15),*/ m_driver(NULL), m_dirty(true)
413{ 413{
414 QString fi = file; 414 QString fi = file;
415 if ( fi.isEmpty() ) 415 if ( fi.isEmpty() )
416 fi = Global::applicationFileName( "todolist", "todolist.db" ); 416 fi = Global::applicationFileName( "todolist", "todolist.db" );
417 OSQLManager man; 417 OSQLManager man;
418 m_driver = man.standard(); 418 m_driver = man.standard();
419 m_driver->setUrl(fi); 419 m_driver->setUrl(fi);
420 // fillDict(); 420 // fillDict();
421} 421}
422 422
423OPimTodoAccessBackendSQL::~OPimTodoAccessBackendSQL(){ 423OPimTodoAccessBackendSQL::~OPimTodoAccessBackendSQL(){
424 if( m_driver ) 424 if( m_driver )
425 delete m_driver; 425 delete m_driver;
426} 426}
427 427
428bool OPimTodoAccessBackendSQL::load(){ 428bool OPimTodoAccessBackendSQL::load(){
429 if (!m_driver->open() ) 429 if (!m_driver->open() )
430 return false; 430 return false;
431 431
432 CreateQuery creat; 432 CreateQuery creat;
433 OSQLResult res = m_driver->query(&creat ); 433 OSQLResult res = m_driver->query(&creat );
434 434
435 m_dirty = true; 435 m_dirty = true;
436 return true; 436 return true;
437} 437}
438bool OPimTodoAccessBackendSQL::reload(){ 438bool OPimTodoAccessBackendSQL::reload(){
439 return load(); 439 return load();
440} 440}
441 441
442bool OPimTodoAccessBackendSQL::save(){ 442bool OPimTodoAccessBackendSQL::save(){
443 return m_driver->close(); // Shouldn't m_driver->sync be better than close ? (eilers) 443 return m_driver->close(); // Shouldn't m_driver->sync be better than close ? (eilers)
444} 444}
445QArray<int> OPimTodoAccessBackendSQL::allRecords()const { 445QArray<int> OPimTodoAccessBackendSQL::allRecords()const {
446 if (m_dirty ) 446 if (m_dirty )
447 update(); 447 update();
448 448
449 return m_uids; 449 return m_uids;
450} 450}
451QArray<int> OPimTodoAccessBackendSQL::queryByExample( const OPimTodo& , int, const QDateTime& ){ 451QArray<int> OPimTodoAccessBackendSQL::queryByExample( const OPimTodo& , int, const QDateTime& ){
452 QArray<int> ints(0); 452 QArray<int> ints(0);
453 return ints; 453 return ints;
454} 454}
455OPimTodo OPimTodoAccessBackendSQL::find(int uid ) const{ 455OPimTodo OPimTodoAccessBackendSQL::find(int uid ) const{
456 FindQuery query( uid ); 456 FindQuery query( uid );
457 return todo( m_driver->query(&query) ); 457 return todo( m_driver->query(&query) );
458 458
459} 459}
460
461// Remember: uid is already in the list of uids, called ints !
460OPimTodo OPimTodoAccessBackendSQL::find( int uid, const QArray<int>& ints, 462OPimTodo OPimTodoAccessBackendSQL::find( int uid, const QArray<int>& ints,
461 uint cur, Frontend::CacheDirection dir ) const{ 463 uint cur, Frontend::CacheDirection dir ) const{
462 uint CACHE = readAhead(); 464 uint CACHE = readAhead();
463 odebug << "searching for " << uid << "" << oendl; 465 odebug << "searching for " << uid << "" << oendl;
464 QArray<int> search( CACHE ); 466 QArray<int> search( CACHE );
465 uint size =0; 467 uint size =0;
466 OPimTodo to; 468 OPimTodo to;
467 469
468 // we try to cache CACHE items 470 // we try to cache CACHE items
469 switch( dir ) { 471 switch( dir ) {
470 /* forward */ 472 /* forward */
471 case 0: // FIXME: Not a good style to use magic numbers here (eilers) 473 case Frontend::Forward:
472 for (uint i = cur; i < ints.count() && size < CACHE; i++ ) { 474 for (uint i = cur; i < ints.count() && size < CACHE; i++ ) {
473 odebug << "size " << size << " " << ints[i] << "" << oendl; 475 odebug << "size " << size << " " << ints[i] << "" << oendl;
474 search[size] = ints[i]; 476 search[size] = ints[i];
475 size++; 477 size++;
476 } 478 }
477 break; 479 break;
478 /* reverse */ 480 /* reverse */
479 case 1: // FIXME: Not a good style to use magic numbers here (eilers) 481 case Frontend::Reverse:
480 for (uint i = cur; i != 0 && size < CACHE; i-- ) { 482 for (uint i = cur; i != 0 && size < CACHE; i-- ) {
481 search[size] = ints[i]; 483 search[size] = ints[i];
482 size++; 484 size++;
483 } 485 }
484 break; 486 break;
485 } 487 }
488
486 search.resize( size ); 489 search.resize( size );
487 FindQuery query( search ); 490 FindQuery query( search );
488 OSQLResult res = m_driver->query( &query ); 491 OSQLResult res = m_driver->query( &query );
489 if ( res.state() != OSQLResult::Success ) 492 if ( res.state() != OSQLResult::Success )
490 return to; 493 return to;
491 494
492 return todo( res ); 495 todo( res ); //FIXME: Don't like polymorphism here. It makes the code hard to read here..(eilers)
496 return cacheFind( uid );
493} 497}
498
494void OPimTodoAccessBackendSQL::clear() { 499void OPimTodoAccessBackendSQL::clear() {
495 ClearQuery cle; 500 ClearQuery cle;
496 OSQLResult res = m_driver->query( &cle ); 501 OSQLResult res = m_driver->query( &cle );
497 CreateQuery qu; 502 CreateQuery qu;
498 res = m_driver->query(&qu); 503 res = m_driver->query(&qu);
499} 504}
500bool OPimTodoAccessBackendSQL::add( const OPimTodo& t) { 505bool OPimTodoAccessBackendSQL::add( const OPimTodo& t) {
501 InsertQuery ins( t ); 506 InsertQuery ins( t );
502 OSQLResult res = m_driver->query( &ins ); 507 OSQLResult res = m_driver->query( &ins );
503 508
504 if ( res.state() == OSQLResult::Failure ) 509 if ( res.state() == OSQLResult::Failure )
505 return false; 510 return false;
506 int c = m_uids.count(); 511 int c = m_uids.count();
507 m_uids.resize( c+1 ); 512 m_uids.resize( c+1 );
508 m_uids[c] = t.uid(); 513 m_uids[c] = t.uid();
509 514
510 return true; 515 return true;
511} 516}
512bool OPimTodoAccessBackendSQL::remove( int uid ) { 517bool OPimTodoAccessBackendSQL::remove( int uid ) {
513 RemoveQuery rem( uid ); 518 RemoveQuery rem( uid );
514 OSQLResult res = m_driver->query(&rem ); 519 OSQLResult res = m_driver->query(&rem );
515 520
516 if ( res.state() == OSQLResult::Failure ) 521 if ( res.state() == OSQLResult::Failure )
517 return false; 522 return false;
518 523
519 m_dirty = true; 524 m_dirty = true;
520 return true; 525 return true;
521} 526}
522/* 527/*
523 * FIXME better set query 528 * FIXME better set query
524 * but we need the cache for that 529 * but we need the cache for that
525 * now we remove 530 * now we remove
526 */ 531 */
527bool OPimTodoAccessBackendSQL::replace( const OPimTodo& t) { 532bool OPimTodoAccessBackendSQL::replace( const OPimTodo& t) {
528 remove( t.uid() ); 533 remove( t.uid() );
529 bool b= add(t); 534 bool b= add(t);
530 m_dirty = false; // we changed some stuff but the UID stayed the same 535 m_dirty = false; // we changed some stuff but the UID stayed the same
531 return b; 536 return b;
532} 537}
533QArray<int> OPimTodoAccessBackendSQL::overDue() { 538QArray<int> OPimTodoAccessBackendSQL::overDue() {
534 OverDueQuery qu; 539 OverDueQuery qu;
535 return uids( m_driver->query(&qu ) ); 540 return uids( m_driver->query(&qu ) );
536} 541}
537QArray<int> OPimTodoAccessBackendSQL::effectiveToDos( const QDate& s, 542QArray<int> OPimTodoAccessBackendSQL::effectiveToDos( const QDate& s,
538 const QDate& t, 543 const QDate& t,
539 bool u) { 544 bool u) {
540 EffQuery ef(s, t, u ); 545 EffQuery ef(s, t, u );
541 return uids (m_driver->query(&ef) ); 546 return uids (m_driver->query(&ef) );
542} 547}
543/* 548/*
544 * 549 *
545 */ 550 */
546QArray<int> OPimTodoAccessBackendSQL::sorted( bool asc, int sortOrder, 551QArray<int> OPimTodoAccessBackendSQL::sorted( bool asc, int sortOrder,
547 int sortFilter, int cat ) { 552 int sortFilter, int cat ) {
548 odebug << "sorted " << asc << ", " << sortOrder << "" << oendl; 553 odebug << "sorted " << asc << ", " << sortOrder << "" << oendl;
549 QString query; 554 QString query;
550 query = "select uid from todolist WHERE "; 555 query = "select uid from todolist WHERE ";
551 556
552 /* 557 /*
553 * Sort Filter stuff 558 * Sort Filter stuff
554 * not that straight forward 559 * not that straight forward
555 * FIXME: Replace magic numbers 560 * FIXME: Replace magic numbers
556 * 561 *
557 */ 562 */