summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugcache.h
blob: bef22493417d61ae5efee350648228f4fad085d6 (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
#ifndef BUGCACHE_H
#define BUGCACHE_H

class KSimpleConfig;

#include "package.h"
#include "bug.h"
#include "bugdetails.h"

class BugCache
{
    public:
        BugCache( const TQString &id );
        ~BugCache();

        void savePackageList( const Package::List &pkgs );
        Package::List loadPackageList();
        void invalidatePackageList();

        void saveBugList( const Package &pkg, const TQString &component, const Bug::List & );
        Bug::List loadBugList( const Package &pkg, const TQString &component, bool disconnected );
        void invalidateBugList( const Package &pkg, const TQString &component );

        void saveBugDetails( const Bug &bug, const BugDetails & );
        BugDetails loadBugDetails( const Bug &bug );
        void invalidateBugDetails( const Bug &bug );
        bool hasBugDetails( const Bug& bug ) const;

        void clear();

    private:
        void init();
    
        void writePerson( KSimpleConfig *file, const TQString &key,
                          const Person &p );
        struct Person readPerson (KSimpleConfig *file, const TQString &key );

        TQString mId;

        KSimpleConfig *m_cachePackages;
        KSimpleConfig *m_cacheBugs;

        TQString mCachePackagesFileName;
        TQString mCacheBugsFileName;
};

#endif