Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
db37d3de
Commit
db37d3de
authored
Feb 01, 2013
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1299 from csware/support_local_msysgit_install
Support local msysgit installations
parents
219571a2
45792c92
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
22 deletions
+31
-22
AUTHORS
+1
-0
src/win32/findfile.c
+29
-22
src/win32/findfile.h
+1
-0
No files found.
AUTHORS
View file @
db37d3de
...
...
@@ -64,6 +64,7 @@ Sergey Nikishin
Shawn O. Pearce
Shuhei Tanuma
Steve Frécinaux
Sven Strickroth
Tim Branyen
Tim Clem
Tim Harder
...
...
src/win32/findfile.c
View file @
db37d3de
...
...
@@ -9,8 +9,9 @@
#include "path.h"
#include "findfile.h"
#define REG_MSYSGIT_INSTALL_LOCAL L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Git_is1"
#ifndef _WIN64
#define REG_MSYSGIT_INSTALL
L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Git_is1"
#define REG_MSYSGIT_INSTALL
REG_MSYSGIT_INSTALL_LOCAL
#else
#define REG_MSYSGIT_INSTALL L"SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Git_is1"
#endif
...
...
@@ -113,37 +114,43 @@ int win32_find_system_file_using_registry(git_buf *path, const char *filename)
{
struct
win32_path
root
;
if
(
win32_find_msysgit_in_registry
(
&
root
,
HKEY_CURRENT_USER
,
REG_MSYSGIT_INSTALL_LOCAL
))
{
if
(
win32_find_msysgit_in_registry
(
&
root
,
HKEY_LOCAL_MACHINE
,
REG_MSYSGIT_INSTALL
))
{
giterr_set
(
GITERR_OS
,
"Cannot locate the system's msysgit directory"
);
return
-
1
;
}
}
if
(
win32_find_file
(
path
,
&
root
,
filename
)
<
0
)
{
giterr_set
(
GITERR_OS
,
"The system file '%s' doesn't exist"
,
filename
);
git_buf_clear
(
path
);
return
GIT_ENOTFOUND
;
}
return
0
;
}
int
win32_find_msysgit_in_registry
(
struct
win32_path
*
root
,
const
HKEY
hieve
,
const
wchar_t
*
key
)
{
HKEY
hKey
;
DWORD
dwType
=
REG_SZ
;
DWORD
dwSize
=
MAX_PATH
;
root
.
len
=
0
;
if
(
RegOpenKeyExW
(
HKEY_LOCAL_MACHINE
,
REG_MSYSGIT_INSTALL
,
0
,
KEY_ALL_ACCESS
,
&
hKey
)
==
ERROR_SUCCESS
)
{
if
(
RegQueryValueExW
(
hKey
,
L"InstallLocation"
,
NULL
,
&
dwType
,(
LPBYTE
)
&
root
.
path
,
&
dwSize
)
==
ERROR_SUCCESS
)
{
assert
(
root
)
;
root
->
len
=
0
;
if
(
RegOpenKeyExW
(
hieve
,
key
,
0
,
KEY_ALL_ACCESS
,
&
hKey
)
==
ERROR_SUCCESS
)
{
if
(
RegQueryValueExW
(
hKey
,
L"InstallLocation"
,
NULL
,
&
dwType
,
(
LPBYTE
)
&
root
->
path
,
&
dwSize
)
==
ERROR_SUCCESS
)
{
// InstallLocation points to the root of the msysgit directory
if
(
dwSize
+
4
>
MAX_PATH
)
// 4 = wcslen(L"etc\\")
{
if
(
dwSize
+
4
>
MAX_PATH
)
{
// 4 = wcslen(L"etc\\")
giterr_set
(
GITERR_OS
,
"Cannot locate the system's msysgit directory - path too long"
);
return
-
1
;
}
wcscat
(
root
.
path
,
L"etc
\\
"
);
root
.
len
=
(
DWORD
)
wcslen
(
root
.
path
)
+
1
;
wcscat
(
root
->
path
,
L"etc
\\
"
);
root
->
len
=
(
DWORD
)
wcslen
(
root
->
path
)
+
1
;
}
}
RegCloseKey
(
hKey
);
if
(
!
root
.
len
)
{
giterr_set
(
GITERR_OS
,
"Cannot locate the system's msysgit directory"
);
return
-
1
;
}
if
(
win32_find_file
(
path
,
&
root
,
filename
)
<
0
)
{
giterr_set
(
GITERR_OS
,
"The system file '%s' doesn't exist"
,
filename
);
git_buf_clear
(
path
);
return
GIT_ENOTFOUND
;
}
return
0
;
return
root
->
len
?
0
:
GIT_ENOTFOUND
;
}
src/win32/findfile.h
View file @
db37d3de
...
...
@@ -18,6 +18,7 @@ int win32_expand_path(struct win32_path *s_root, const wchar_t *templ);
int
win32_find_file
(
git_buf
*
path
,
const
struct
win32_path
*
root
,
const
char
*
filename
);
int
win32_find_system_file_using_path
(
git_buf
*
path
,
const
char
*
filename
);
int
win32_find_system_file_using_registry
(
git_buf
*
path
,
const
char
*
filename
);
int
win32_find_msysgit_in_registry
(
struct
win32_path
*
root
,
const
HKEY
hieve
,
const
wchar_t
*
key
);
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment