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

shellext: new Dirstatecache.h and cpp

Changeset 0682d7ac9234

Parent 6c05aa69d95b

by Adrian Buehlmann

Changes to 4 files · Browse files at 0682d7ac9234 Showing diff from parent 6c05aa69d95b Diff from another changeset...

Change 1 of 1 Show Entire File tortoise/​shellext/​Dirstatecache.cpp Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
93
94
95
96
97
98
@@ -0,0 +1,98 @@
+ +// 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 "Dirstatecache.h" +#include "dirstate.h" +#include "Winstat.h" + +#include <list> + + +Dirstate* Dirstatecache::get(const std::string& hgroot) +{ + typedef std::list<E>::iterator Iter; + + static std::list<Dirstatecache::E> _cache; + + Iter iter = _cache.begin(); + + for (;iter != _cache.end(); ++iter) + { + if (hgroot == iter->hgroot) + break; + } + + bool isnew = false; + + if (iter == _cache.end()) + { + if (_cache.size() >= 10) + { + TDEBUG_TRACE("Dirstatecache::get: dropping " << _cache.back().hgroot); + delete _cache.back().dstate; + _cache.back().dstate = 0; + _cache.pop_back(); + } + E e; + e.hgroot = hgroot; + _cache.push_front(e); + iter = _cache.begin(); + isnew = true; + } + + unsigned tc = GetTickCount(); + + std::string path = hgroot + "\\.hg\\dirstate"; + + Winstat stat; + + bool stat_done = false; + + if (isnew || (tc - iter->tickcount) > 500) + { + if (0 != stat.lstat(path.c_str())) + { + TDEBUG_TRACE("Dirstatecache::get: lstat(" << path <<") failed"); + return 0; + } + iter->tickcount = tc; + stat_done = true; + TDEBUG_TRACE("Dirstatecache::get: lstat(" << path <<") ok "); + } + + if (stat_done && iter->dstate_mtime < stat.mtime) + { + iter->dstate_mtime = stat.mtime; + if (iter->dstate) { + delete iter->dstate; + iter->dstate = 0; + TDEBUG_TRACE("Dirstatecache::get: refreshing " << hgroot); + } else { + TDEBUG_TRACE("Dirstatecache::get: reading " << hgroot); + } + unsigned tc0 = GetTickCount(); + iter->dstate = Dirstate::read(path).release(); + unsigned tc1 = GetTickCount(); + unsigned delta = tc1 - tc0; + TDEBUG_TRACE("Dirstatecache::get: read done in " << delta << " ticks, " + << _cache.size() << " repos in cache"); + } + + return iter->dstate; +}
Change 1 of 1 Show Entire File tortoise/​shellext/​Dirstatecache.h Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@@ -0,0 +1,42 @@
+ +// 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/>. + +#ifndef _DIRSTATECACHE_H +#define _DIRSTATECACHE_H + +#include <string> + +class Dirstate; + +class Dirstatecache +{ + struct E + { + Dirstate* dstate; + __time64_t dstate_mtime; + + std::string hgroot; + unsigned tickcount; + + E(): dstate(0), dstate_mtime(0), tickcount(0) {} + }; + +public: + static Dirstate* get(const std::string& hgroot); +}; + +#endif
 
14
15
16
 
17
18
19
 
14
15
16
17
18
19
20
@@ -14,6 +14,7 @@
  ShellUtils2.o \   StringUtils.o \   dirstate.o \ + Dirstatecache.o \   QueryDirstate.o    BASE_LDFLAGS=-lole32 -lkernel32 -luser32 -lgdi32 -lshlwapi -lwininet \
 
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
93
94
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
 
20
21
22
23
24
25
26
27
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
30
31
@@ -20,109 +20,12 @@
 #include "QueryDirstate.h"  #include "dirstate.h"  #include "DirectoryStatus.h" +#include "Dirstatecache.h"  #include "TortoiseUtils.h"  #include "Winstat.h"    #include <shlwapi.h>   -#include <vector> -#include <list> - - -#define HASH_LENGTH 20 - - -class Dirstatecache -{ - struct E - { - Dirstate* dstate; - __time64_t dstate_mtime; - - std::string hgroot; - unsigned tickcount; - - E(): dstate(0), dstate_mtime(0), tickcount(0) {} - }; - -public: - static Dirstate* get(const std::string& hgroot); -}; - - -Dirstate* Dirstatecache::get(const std::string& hgroot) -{ - typedef std::list<E>::iterator Iter; - - static std::list<Dirstatecache::E> _cache; - - Iter iter = _cache.begin(); - - for (;iter != _cache.end(); ++iter) - { - if (hgroot == iter->hgroot) - break; - } - - bool isnew = false; - - if (iter == _cache.end()) - { - if (_cache.size() >= 10) - { - TDEBUG_TRACE("Dirstatecache::get: dropping " << _cache.back().hgroot); - delete _cache.back().dstate; - _cache.back().dstate = 0; - _cache.pop_back(); - } - E e; - e.hgroot = hgroot; - _cache.push_front(e); - iter = _cache.begin(); - isnew = true; - } - - unsigned tc = GetTickCount(); - - std::string path = hgroot + "\\.hg\\dirstate"; - - Winstat stat; - - bool stat_done = false; - - if (isnew || (tc - iter->tickcount) > 500) - { - if (0 != stat.lstat(path.c_str())) - { - TDEBUG_TRACE("Dirstatecache::get: lstat(" << path <<") failed"); - return 0; - } - iter->tickcount = tc; - stat_done = true; - TDEBUG_TRACE("Dirstatecache::get: lstat(" << path <<") ok "); - } - - if (stat_done && iter->dstate_mtime < stat.mtime) - { - iter->dstate_mtime = stat.mtime; - if (iter->dstate) { - delete iter->dstate; - iter->dstate = 0; - TDEBUG_TRACE("Dirstatecache::get: refreshing " << hgroot); - } else { - TDEBUG_TRACE("Dirstatecache::get: reading " << hgroot); - } - unsigned tc0 = GetTickCount(); - iter->dstate = Dirstate::read(path).release(); - unsigned tc1 = GetTickCount(); - unsigned delta = tc1 - tc0; - TDEBUG_TRACE("Dirstatecache::get: read done in " << delta << " ticks, " - << _cache.size() << " repos in cache"); - } - - return iter->dstate; -} -    int HgQueryDirstate(   const std::string& path, const char& filterStatus, char& outStatus)