1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseGit
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 #include "UnicodeUtils.h"
20 #include "GitAdminDir.h"
22 GitAdminDir g_GitAdminDir
;
24 GitAdminDir::GitAdminDir()
26 // , m_bVSNETHack(false)
31 GitAdminDir::~GitAdminDir()
37 bool GitAdminDir::Init()
43 m_pool
= svn_pool_create(NULL
);
45 getenv_s(&ret
, NULL
, 0, "GIT_ASP_DOT_NET_HACK");
48 svn_error_clear(svn_wc_set_adm_dir("_git", m_pool
));
57 bool GitAdminDir::Close()
63 svn_pool_destroy(m_pool
);
68 CString
GitAdminDir::GetSuperProjectRoot(const CString
& path
)
70 CString projectroot
=path
;
74 if(PathFileExists(projectroot
+ _T("\\.gitmodules")))
79 projectroot
= projectroot
.Left(projectroot
.ReverseFind('\\'));
81 }while(projectroot
.ReverseFind('\\')>0);
87 bool GitAdminDir::IsAdminDirName(const CString
& name
) const
90 CStringA nameA
= CUnicodeUtils::GetUTF8(name
).MakeLower();
91 return !!svn_wc_is_adm_dir(nameA
, m_pool
);
93 return name
== ".git";
95 CString
GitAdminDir::GetGitTopDir(const CString
& path
)
99 HasAdminDir(path
,!!PathIsDirectory(path
),&str
);
103 bool GitAdminDir::HasAdminDir(const CString
& path
) const
105 return HasAdminDir(path
, !!PathIsDirectory(path
));
108 bool GitAdminDir::HasAdminDir(const CString
& path
,CString
*ProjectTopDir
) const
110 return HasAdminDir(path
, !!PathIsDirectory(path
),ProjectTopDir
);
113 bool GitAdminDir::HasAdminDir(const CString
& path
, bool bDir
,CString
*ProjectTopDir
) const
117 bool bHasAdminDir
= false;
118 CString sDirName
= path
;
121 sDirName
= path
.Left(path
.ReverseFind('\\'));
124 // a .git dir or anything inside it should be left out, only interested in working copy files -- Myagi
129 n
= sDirName
.Find(_T("\\.git"), n
);
135 // check for actual .git dir (and not .gitignore or something else), continue search if false match
137 if (sDirName
[n
] == _T('\\') || sDirName
[n
] == 0)
146 if(PathFileExists(sDirName
+ _T("\\.git")))
149 *ProjectTopDir
=sDirName
;
152 sDirName
= sDirName
.Left(sDirName
.ReverseFind('\\'));
154 }while(sDirName
.ReverseFind('\\')>0);
160 bool GitAdminDir::IsAdminDirPath(const CString
& path
) const
164 bool bIsAdminDir
= false;
165 CString lowerpath
= path
;
166 lowerpath
.MakeLower();
169 while ((ind1
= lowerpath
.Find(_T("\\.git"), ind1
))>=0)
172 if (ind
== (lowerpath
.GetLength() - 5))
177 else if (lowerpath
.Find(_T("\\.git\\"), ind
)>=0)