Fix TGitCache RunTime 4->1 check fail problem. Add submodule status at shell extension
[TortoiseGit.git] / src / TGitCache / ShellUpdater.h
blobab8486fce758529705a9875c32093c291e8f0ab8
1 // TortoiseSVN - a Windows shell extension for easy version control
3 // External Cache Copyright (C) 2005 - 2006 - Will Dean, Stefan Kueng
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #pragma once
21 #include "TGitPath.h"
23 /**
24 * \ingroup TSVNCache
25 * Handles notifications to the shell about status changes. This is done
26 * in a separate thread to avoid deadlocks.
28 class CShellUpdater
30 public:
31 CShellUpdater(void);
32 ~CShellUpdater(void);
34 public:
35 void Initialise();
36 void AddPathForUpdate(const CTGitPath& path);
37 void Stop();
39 private:
40 static unsigned int __stdcall ThreadEntry(void* pContext);
41 void WorkerThread();
43 private:
44 CComAutoCriticalSection m_critSec;
45 HANDLE m_hThread;
46 std::deque<CTGitPath> m_pathsToUpdate;
47 HANDLE m_hTerminationEvent;
48 HANDLE m_hWakeEvent;
50 bool m_bItemsAddedSinceLastUpdate;
51 volatile LONG m_bRunning;