Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

DirectoryStatus: cache last used

Changeset 7aaa1ee7ff7c

Parent 7eb6164ccfef

by Adrian Buehlmann

Changes to 3 files · Browse files at 7aaa1ee7ff7c Showing diff from parent 7eb6164ccfef Diff from another changeset...

 
95
96
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@@ -95,3 +95,35 @@
    return 1;  } + + +struct CacheEntry +{ + std::string hgroot_; + DirectoryStatus ds_; + unsigned tickcount_; + + CacheEntry(): tickcount_(0) {}; +}; + + +DirectoryStatus* DirectoryStatus::get(const std::string& hgroot) +{ + static CacheEntry ce; + + unsigned tc = GetTickCount(); + + if (ce.hgroot_ == hgroot && (tc - ce.tickcount_) < 2000) + return &ce.ds_; + + ce.hgroot_.clear(); + + if (ce.ds_.read(hgroot) == 0) + return 0; + + ce.hgroot_ = hgroot; + ce.tickcount_ = GetTickCount(); + return &ce.ds_; +} + +
 
32
33
34
 
 
 
 
35
36
37
 
32
33
34
35
36
37
38
39
 
40
@@ -32,6 +32,9 @@
  V v_;    public: + static DirectoryStatus* get(const std::string& hgroot); + char status(const std::string& relpath) const; + +private:   int read(const std::string& hgroot); - char status(const std::string& relpath) const;  };
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
   // Copyright (C) 2009 Benjamin Pollack  // Copyright (C) 2009 Adrian Buehlmann  //  // This program is free software: you can redistribute it and/or modify  // it under the terms of the GNU General Public License as published by  // the Free Software Foundation, either version 2 of the License, or  // (at your option) any later version.  //  // This program is distributed in the hope that it will be useful,  // but WITHOUT ANY WARRANTY; without even the implied warranty of  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  // GNU General Public License for more details.  //  // You should have received a copy of the GNU General Public License  // along with this program. If not, see <http://www.gnu.org/licenses/>.    #include "stdafx.h"    #include "QueryDirstate.h"  #include "dirstate.h"  #include "DirectoryStatus.h"  #include "Dirstatecache.h"  #include "TortoiseUtils.h"  #include "Winstat.h"    #include <shlwapi.h>      int HgQueryDirstate(   const std::string& path, const char& filterStatus, char& outStatus)  {   if (PathIsRoot(path.c_str()))   return 0;     std::string hgroot = GetHgRepoRoot(path);   if (hgroot.empty())   return 0;     size_t offset = hgroot.length();   if (path[offset] == '\\')   offset++;   const char* relpathptr = path.c_str() + offset;     std::string relpath = relpathptr;     for (size_t i = 0; i < relpath.size(); ++i)   {   if (relpath[i] == '\\')   relpath[i] = '/';   }     if (relpath == ".hg"   || (relpath.size() > 4 && relpath.compare(0, 4, ".hg/") == 0))   return 0; // don't descend into .hg dir     if (PathIsDirectory(path.c_str()))   { - std::auto_ptr<DirectoryStatus> pds(new DirectoryStatus()); - if (!pds->read(hgroot)) + DirectoryStatus* pds = DirectoryStatus::get(hgroot); + if (!pds)   return 0;     outStatus = pds->status(relpath);   }   else   {   Dirstate* pds = Dirstatecache::get(hgroot);   if (!pds)   {   TDEBUG_TRACE("HgQueryDirstate: Dirstatecache::get("   << hgroot << ") returns no Dirstate");   return 0;   }     if (filterStatus == 'A' && pds->num_added() == 0)   return 0;     const Direntry* e = pds->root().get(relpath);   if (!e)   return 0;     Winstat stat;   if (0 != stat.lstat(path.c_str())) {   TDEBUG_TRACE("HgQueryDirstate: lstat(" << path << ") failed");   return 0;   }     outStatus = e->status(stat);   }     return 1;  }