Merge branch 'new-features'
[TortoiseGit.git] / src / TGitCache / StatusCacheEntry.h
blob843cb6bf73e4f73980d2b5c15c0bc7f10ede23c9
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 struct TSVNCacheResponse;
22 #define CACHETIMEOUT 0x7FFFFFFF
23 extern DWORD cachetimeout;
25 #include "CacheInterface.h"
27 /**
28 * \ingroup TSVNCache
29 * Holds all the status data of one file or folder.
31 class CStatusCacheEntry
33 public:
34 CStatusCacheEntry();
35 CStatusCacheEntry(const git_wc_status_kind status);
36 CStatusCacheEntry(const git_wc_status2_t* pGitStatus, __int64 lastWriteTime, bool bReadOnly, DWORD validuntil = 0);
37 bool HasExpired(long now) const;
38 void BuildCacheResponse(TSVNCacheResponse& response, DWORD& responseLength) const;
39 bool IsVersioned() const;
40 bool DoesFileTimeMatch(__int64 testTime) const;
41 bool ForceStatus(git_wc_status_kind forcedStatus);
42 git_wc_status_kind GetEffectiveStatus() const { return m_highestPriorityLocalStatus; }
43 bool IsKindKnown() const { return ((m_kind != git_node_none)&&(m_kind != git_node_unknown)); }
44 void SetStatus(const git_wc_status2_t* pGitStatus);
45 bool HasBeenSet() const;
46 void Invalidate();
47 bool IsDirectory() const { return ((m_kind == git_node_dir)&&(m_highestPriorityLocalStatus != git_wc_status_ignored)); }
48 bool SaveToDisk(FILE * pFile);
49 bool LoadFromDisk(FILE * pFile);
50 void SetKind(git_node_kind_t kind) {m_kind = kind;}
51 private:
52 void SetAsUnversioned();
54 private:
55 long m_discardAtTime;
56 git_wc_status_kind m_highestPriorityLocalStatus;
57 git_wc_status2_t m_GitStatus;
58 __int64 m_lastWriteTime;
59 bool m_bSet;
60 git_node_kind_t m_kind;
61 bool m_bReadOnly;
63 // Values copied from the 'entries' structure
64 bool m_bSVNEntryFieldSet;
65 CStringA m_sUrl;
66 CStringA m_sOwner;
67 CStringA m_sAuthor;
68 CStringA m_sPresentProps;
69 git_revnum_t m_commitRevision;
71 friend class CGitStatusCache;