summaryrefslogtreecommitdiffstats
path: root/vcs/clearcase/clearcasefileinfoprovider.cpp
blob: 8d43d48d69c121f465c5cbde9289a9058945b0f5 (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
//
// C++ Implementation: clearcasefileinfoprovider
//
// Description:
//
//
// Author: KDevelop Authors <kdevelop-devel@kdevelop.org>, (C) 2005
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "clearcasefileinfoprovider.h"
#include "clearcasepart.h"
#include "kdevversioncontrol.h"

#include <kprocess.h>
#include <tqapplication.h>

ClearcaseFileinfoProvider::ClearcaseFileinfoProvider(ClearcasePart *parent)
	: KDevVCSFileInfoProvider( (KDevVersionControl*) parent, "clearcasefileinfoprovider")
{
    vcsInfo_ = NULL;

    connect(parent, TQT_SIGNAL(statusReady(const VCSFileInfoMap&, void*)), TQT_SIGNAL(triggerUpdate(const VCSFileInfoMap&, void*)));

    kdevVCS_ = parent;
}


ClearcaseFileinfoProvider::~ClearcaseFileinfoProvider()
{
}


const VCSFileInfoMap* ClearcaseFileinfoProvider::status( const TQString &dirPath ) {

    if (curDirPath_ == dirPath) return vcsInfo_;

    curDirPath_ = dirPath;

    if (vcsInfo_ != NULL) delete vcsInfo_;
    
    vcsInfo_ = ccManipulator_.retreiveFilesInfos(dirPath);

    return vcsInfo_;
}

bool ClearcaseFileinfoProvider::requestStatus( const TQString &dirPath, void *callerData, bool recursive, bool checkRepos  ) {
 	
    VCSFileInfoMap* vcsDirInfos = ccManipulator_.retreiveFilesInfos(dirPath);

    // update the file tree view
    emit statusReady(*vcsDirInfos, callerData);

    delete vcsDirInfos;
    return true;
}



TQStringList ClearcaseFileinfoProvider::registeredEntryList() const
{
    TQStringList l;
    return l;
}