1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2016 - 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 // gitdll.cpp : Defines the exported functions for the DLL application.
23 #include "../build/libgit-defines.h"
25 #pragma warning(disable: 4100 4018 4127 4244 4267)
26 #include "git-compat-util.h"
38 #include "run-command.h"
42 extern char g_last_error
[];
43 const char * g_prefix
;
45 extern void die_dll(const char *err
, va_list params
);
46 extern void handle_error(const char* err
, va_list params
);
47 extern void handle_warning(const char* warn
, va_list params
);
48 extern int die_is_recursing_dll(void);
50 extern void free_all_pack(void);
51 extern void reset_git_env(void);
52 extern void drop_attr_stack(void);
53 extern void git_atexit_dispatch(void);
54 extern void git_atexit_clear(void);
55 extern void invalidate_ref_cache(const char* submodule
);
56 extern void cmd_log_init(int argc
, const char** argv
, const char* prefix
, struct rev_info
* rev
, struct setup_revision_opt
* opt
);
57 extern int estimate_commit_count(struct rev_info
* rev
, struct commit_list
* list
);
58 extern int log_tree_commit(struct rev_info
*, struct commit
*);
59 extern int write_entry(struct cache_entry
* ce
, char* path
, const struct checkout
* state
, int to_tempfile
);
60 extern struct object
* deref_tag(struct object
* o
, const char* warn
, int warnlen
);
61 extern void diff_flush_stat(struct diff_filepair
* p
, struct diff_options
* o
, struct diffstat_t
* diffstat
);
62 extern void free_diffstat_info(struct diffstat_t
* diffstat
);
63 extern int for_each_reflog_ent(const char* refname
, each_reflog_ent_fn fn
, void* cb_data
);
64 extern int for_each_ref_in(const char* prefix
, each_ref_fn fn
, void* cb_data
);
68 set_die_routine(die_dll
);
69 set_error_routine(handle_error
);
70 set_warn_routine(handle_warning
);
71 set_die_is_recursing_routine(die_is_recursing_dll
);
74 int git_get_sha1(const char *name
, GIT_HASH sha1
)
76 return get_sha1(name
,sha1
);
79 static int convert_slash(char * path
)
92 char path
[MAX_PATH
+1];
95 _setmode(_fileno(stdin
), _O_BINARY
);
96 _setmode(_fileno(stdout
), _O_BINARY
);
97 _setmode(_fileno(stderr
), _O_BINARY
);
99 GetModuleFileName(NULL
, path
, MAX_PATH
);
102 git_extract_argv0_path(path
);
104 // set HOME if not set already
105 gitsetenv("HOME", get_windows_home_directory(), 0);
107 g_prefix
= setup_git_directory();
108 git_config(git_default_config
, NULL
);
113 static int git_parse_commit_author(struct GIT_COMMIT_AUTHOR
* author
, const char* pbuff
)
118 end
=strchr(pbuff
,'<');
123 author
->NameSize
= (int)(end
- pbuff
- 1);
126 end
= strchr(pbuff
, '>');
130 author
->Email
= pbuff
;
131 author
->EmailSize
= (int)(end
- pbuff
);
135 author
->Date
= atol(pbuff
);
136 end
= strchr(pbuff
, ' ');
141 author
->TimeZone
= atol(pbuff
);
146 int git_parse_commit(GIT_COMMIT
*commit
)
153 p
= (struct commit
*)commit
->m_pGitCommit
;
155 memcpy(commit
->m_hash
, p
->object
.oid
.hash
, GIT_HASH_SIZE
);
157 commit
->m_Encode
= NULL
;
158 commit
->m_EncodeSize
= 0;
160 commit
->buffer
= detach_commit_buffer(commit
->m_pGitCommit
, NULL
);
162 pbuf
= commit
->buffer
;
165 if (strncmp(pbuf
, "author", 6) == 0)
167 ret
= git_parse_commit_author(&commit
->m_Author
,pbuf
+ 7);
171 else if (strncmp(pbuf
, "committer", 9) == 0)
173 ret
= git_parse_commit_author(&commit
->m_Committer
,pbuf
+ 10);
177 pbuf
= strchr(pbuf
,'\n');
181 else if (strncmp(pbuf
, "encoding", 8) == 0)
184 commit
->m_Encode
=pbuf
;
185 end
= strchr(pbuf
,'\n');
186 commit
->m_EncodeSize
= (int)(end
-pbuf
);
189 // the headers end after the first empty line
190 else if (*pbuf
== '\n')
194 commit
->m_Subject
=pbuf
;
195 end
= strchr(pbuf
,'\n');
197 commit
->m_SubjectSize
= (int)strlen(pbuf
);
200 commit
->m_SubjectSize
= (int)(end
- pbuf
);
202 commit
->m_Body
= pbuf
;
203 commit
->m_BodySize
= (int)strlen(pbuf
);
208 pbuf
= strchr(pbuf
,'\n');
215 int git_get_commit_from_hash(GIT_COMMIT
* commit
, const GIT_HASH hash
)
224 memset(commit
,0,sizeof(GIT_COMMIT
));
226 commit
->m_pGitCommit
= p
= lookup_commit(hash
);
231 ret
= parse_commit(p
);
235 return git_parse_commit(commit
);
238 int git_get_commit_first_parent(GIT_COMMIT
*commit
,GIT_COMMIT_LIST
*list
)
240 struct commit
*p
= commit
->m_pGitCommit
;
245 *list
= (GIT_COMMIT_LIST
*)p
->parents
;
248 int git_get_commit_next_parent(GIT_COMMIT_LIST
*list
, GIT_HASH hash
)
250 struct commit_list
*l
;
254 l
= *(struct commit_list
**)list
;
259 memcpy(hash
, l
->item
->object
.oid
.hash
, GIT_HASH_SIZE
);
261 *list
= (GIT_COMMIT_LIST
*)l
->next
;
267 int git_free_commit(GIT_COMMIT
*commit
)
269 struct commit
*p
= commit
->m_pGitCommit
;
272 free_commit_list(p
->parents
);
275 free_tree_buffer(p
->tree
);
277 #pragma warning(push)
278 #pragma warning(disable: 4090)
280 free(commit
->buffer
);
283 p
->object
.parsed
= 0;
287 memset(commit
,0,sizeof(GIT_COMMIT
));
291 char **strtoargv(char *arg
, int *size
)
313 argv
=malloc(strlen(arg
)+1 + (count
+2)*sizeof(void*));
314 p
=(char*)(argv
+count
+2);
333 if((*arg
== space
) || (*arg
== 0))
349 int git_open_log(GIT_LOG
* handle
, char * arg
)
351 struct rev_info
*p_Rev
;
355 struct setup_revision_opt opt
;
358 unsigned int obj_size
= get_max_object_index();
359 for(i
=0; i
<obj_size
; i
++)
361 struct object
*ob
= get_indexed_object(i
);
365 if (ob
->parsed
&& ob
->type
== OBJ_COMMIT
)
367 struct commit
* commit
= (struct commit
*)ob
;
368 free_commit_list(commit
->parents
);
369 commit
->parents
= NULL
;
371 free_tree_buffer(commit
->tree
);
379 argv
= strtoargv(arg
,&argc
);
384 p_Rev
= malloc(sizeof(struct rev_info
));
391 memset(p_Rev
,0,sizeof(struct rev_info
));
393 invalidate_ref_cache(NULL
);
395 init_revisions(p_Rev
, g_prefix
);
398 memset(&opt
, 0, sizeof(opt
));
401 cmd_log_init(argc
, argv
, g_prefix
,p_Rev
,&opt
);
403 p_Rev
->pPrivate
= argv
;
408 int git_get_log_firstcommit(GIT_LOG handle
)
410 return prepare_revision_walk(handle
);
413 int git_get_log_estimate_commit_count(GIT_LOG handle
)
415 struct rev_info
*p_Rev
;
416 p_Rev
=(struct rev_info
*)handle
;
418 return estimate_commit_count(p_Rev
, p_Rev
->commits
);
421 int git_get_log_nextcommit(GIT_LOG handle
, GIT_COMMIT
*commit
, int follow
)
428 memset(commit
, 0, sizeof(GIT_COMMIT
));
430 commit
->m_pGitCommit
= get_revision(handle
);
431 if( commit
->m_pGitCommit
== NULL
)
434 if (follow
&& !log_tree_commit(handle
, commit
->m_pGitCommit
))
436 commit
->m_ignore
= 1;
439 commit
->m_ignore
= 0;
441 ret
=git_parse_commit(commit
);
448 struct notes_tree
**display_notes_trees
;
449 int git_close_log(GIT_LOG handle
)
453 struct rev_info
*p_Rev
;
454 p_Rev
=(struct rev_info
*)handle
;
456 free(p_Rev
->pPrivate
);
461 if (display_notes_trees
)
462 free_notes(*display_notes_trees
);
463 display_notes_trees
= 0;
467 int git_open_diff(GIT_DIFF
*diff
, char * arg
)
469 struct rev_info
*p_Rev
;
474 argv
= strtoargv(arg
,&argc
);
476 p_Rev
= malloc(sizeof(struct rev_info
));
477 memset(p_Rev
,0,sizeof(struct rev_info
));
479 p_Rev
->pPrivate
= argv
;
480 *diff
= (GIT_DIFF
)p_Rev
;
482 init_revisions(p_Rev
, g_prefix
);
483 git_config(git_diff_basic_config
, NULL
); /* no "diff" UI options */
486 argc
= setup_revisions(argc
, argv
, p_Rev
, NULL
);
490 int git_close_diff(GIT_DIFF handle
)
492 git_diff_flush(handle
);
495 struct rev_info
*p_Rev
;
496 p_Rev
=(struct rev_info
*)handle
;
498 free(p_Rev
->pPrivate
);
503 int git_diff_flush(GIT_DIFF diff
)
505 struct diff_queue_struct
*q
= &diff_queued_diff
;
506 struct rev_info
*p_Rev
;
508 p_Rev
= (struct rev_info
*)diff
;
513 for (i
= 0; i
< q
->nr
; i
++)
514 diff_free_filepair(q
->queue
[i
]);
520 q
->nr
= q
->alloc
= 0;
523 if (p_Rev
->diffopt
.close_file
)
524 fclose(p_Rev
->diffopt
.file
);
526 free_diffstat_info(&p_Rev
->diffstat
);
530 int git_root_diff(GIT_DIFF diff
, GIT_HASH hash
,GIT_FILE
*file
, int *count
, int isstat
)
533 struct rev_info
*p_Rev
;
535 struct diff_queue_struct
*q
= &diff_queued_diff
;
537 p_Rev
= (struct rev_info
*)diff
;
539 ret
=diff_root_tree_sha1(hash
, "", &p_Rev
->diffopt
);
546 diffcore_std(&p_Rev
->diffopt
);
548 memset(&p_Rev
->diffstat
, 0, sizeof(struct diffstat_t
));
549 for (i
= 0; i
< q
->nr
; i
++) {
550 struct diff_filepair
*p
= q
->queue
[i
];
551 //if (check_pair_status(p))
552 diff_flush_stat(p
, &p_Rev
->diffopt
, &p_Rev
->diffstat
);
563 int git_do_diff(GIT_DIFF diff
, GIT_HASH hash1
, GIT_HASH hash2
, GIT_FILE
* file
, int *count
,int isstat
)
565 struct rev_info
*p_Rev
;
568 struct diff_queue_struct
*q
= &diff_queued_diff
;
570 p_Rev
= (struct rev_info
*)diff
;
572 ret
= diff_tree_sha1(hash1
,hash2
,"",&p_Rev
->diffopt
);
581 diffcore_std(&p_Rev
->diffopt
);
582 memset(&p_Rev
->diffstat
, 0, sizeof(struct diffstat_t
));
583 for (i
= 0; i
< q
->nr
; i
++) {
584 struct diff_filepair
*p
= q
->queue
[i
];
585 //if (check_pair_status(p))
586 diff_flush_stat(p
, &p_Rev
->diffopt
, &p_Rev
->diffstat
);
597 int git_get_diff_file(GIT_DIFF diff
,GIT_FILE file
,int i
, char **newname
, char ** oldname
, int *status
, int *IsBin
, int *inc
, int *dec
)
599 struct diff_queue_struct
*q
= &diff_queued_diff
;
600 struct rev_info
*p_Rev
;
601 p_Rev
= (struct rev_info
*)diff
;
603 q
= (struct diff_queue_struct
*)file
;
609 assert(newname
&& oldname
&& status
);
611 *newname
= q
->queue
[i
]->two
->path
;
612 *oldname
= q
->queue
[i
]->one
->path
;
613 *status
= q
->queue
[i
]->status
;
615 if(p_Rev
->diffstat
.files
)
618 for(j
=0;j
<p_Rev
->diffstat
.nr
;j
++)
620 if(strcmp(*newname
,p_Rev
->diffstat
.files
[j
]->name
)==0)
623 if( j
== p_Rev
->diffstat
.nr
)
631 *IsBin
= p_Rev
->diffstat
.files
[j
]->is_binary
;
633 *inc
= (int)p_Rev
->diffstat
.files
[j
]->added
;
635 *dec
= (int)p_Rev
->diffstat
.files
[j
]->deleted
;
646 int git_add_exclude(const char *string
, const char *base
,
647 int baselen
, struct exclude_list
*which
, int lineno
)
649 add_exclude(string
, base
, baselen
, which
, lineno
);
653 int git_create_exclude_list(EXCLUDE_LIST
*which
)
655 *which
= malloc(sizeof(struct exclude_list
));
656 memset(*which
,0,sizeof(struct exclude_list
));
660 int git_free_exclude_list(EXCLUDE_LIST which
)
663 struct exclude_list
*p
= (struct exclude_list
*) which
;
665 for(i
=0; i
<p
->nr
;i
++)
667 free(p
->excludes
[i
]);
674 int git_check_excluded_1(const char *pathname
,
675 int pathlen
, const char *basename
, int *dtype
,
678 return is_excluded_from_list(pathname
, pathlen
, basename
, dtype
, el
);
681 int git_get_notes(GIT_HASH hash
, char **p_note
)
686 format_display_notes(hash
, &sb
, "utf-8", 1);
687 *p_note
= strbuf_detach(&sb
,&size
);
694 int (*fn
)(int, const char **, const char *);
698 #define RUN_SETUP (1<<0)
700 static struct cmd_struct commands
[] = {
701 { "notes", cmd_notes
, RUN_SETUP
},
702 { "update-index", cmd_update_index
, RUN_SETUP
},
705 int git_run_cmd(char *cmd
, char *arg
)
714 for(i
=0;i
< sizeof(commands
) / sizeof(struct cmd_struct
);i
++)
716 if(strcmp(cmd
,commands
[i
].cmd
)==0)
720 argv
= strtoargv(arg
,&argc
);
722 ret
= commands
[i
].fn(argc
, argv
, NULL
);
738 void git_exit_cleanup(void)
740 git_atexit_dispatch();
744 int git_for_each_reflog_ent(const char *ref
, each_reflog_ent_fn fn
, void *cb_data
)
746 return for_each_reflog_ent(ref
,fn
,cb_data
);
749 static int update_some(const unsigned char* sha1
, struct strbuf
* base
,
750 const char *pathname
, unsigned mode
, int stage
, void *context
)
752 struct cache_entry
*ce
;
753 UNREFERENCED_PARAMETER(stage
);
755 ce
= (struct cache_entry
*)context
;
758 return READ_TREE_RECURSIVE
;
760 hashcpy(ce
->sha1
, sha1
);
761 memcpy(ce
->name
, base
->buf
, base
->len
);
762 memcpy(ce
->name
+ base
->len
, pathname
, strlen(pathname
));
763 ce
->ce_flags
= create_ce_flags((unsigned int)(strlen(pathname
) + base
->len
));
764 ce
->ce_mode
= create_ce_mode(mode
);
769 int git_checkout_file(const char* ref
, const char* path
, char* outputpath
)
771 struct cache_entry
*ce
;
775 struct checkout state
;
776 struct pathspec pathspec
;
777 const char *matchbuf
[1];
778 ret
= get_sha1(ref
, sha1
);
782 reprepare_packed_git();
783 root
= parse_tree_indirect(sha1
);
791 ce
= xcalloc(1, cache_entry_size(strlen(path
)));
794 parse_pathspec(&pathspec
, PATHSPEC_ALL_MAGIC
, PATHSPEC_PREFER_CWD
, path
, matchbuf
);
795 pathspec
.items
[0].nowildcard_len
= pathspec
.items
[0].len
;
796 ret
= read_tree_recursive(root
, "", 0, 0, &pathspec
, update_some
, ce
);
797 clear_pathspec(&pathspec
);
805 memset(&state
, 0, sizeof(state
));
807 state
.refresh_cache
= 0;
809 ret
= write_entry(ce
, outputpath
, &state
, 0);
822 static int get_config(const char *key_
, const char *value_
, void *cb
)
824 struct config_buf
*buf
;
825 buf
=(struct config_buf
*)cb
;
826 if(strcmp(key_
, buf
->key
))
830 strncpy(buf
->buf
,value_
,buf
->size
);
844 // wchar_t wrapper for program_data_config()
845 const wchar_t* wget_program_data_config(void)
847 static const wchar_t *programdata_git_config
= NULL
;
848 wchar_t wpointer
[MAX_PATH
];
850 if (programdata_git_config
)
851 return programdata_git_config
;
853 if (xutftowcs_path(wpointer
, program_data_config()) < 0)
856 programdata_git_config
= _wcsdup(wpointer
);
858 return programdata_git_config
;
861 // wchar_t wrapper for git_etc_gitconfig()
862 const wchar_t *wget_msysgit_etc(void)
864 static const wchar_t *etc_gitconfig
= NULL
;
865 wchar_t wpointer
[MAX_PATH
];
868 return etc_gitconfig
;
870 if (xutftowcs_path(wpointer
, git_etc_gitconfig()) < 0)
873 etc_gitconfig
= _wcsdup(wpointer
);
875 return etc_gitconfig
;
878 int git_get_config(const char *key
, char *buffer
, int size
)
880 char *local
, *global
, *globalxdg
;
881 const char *home
, *system
, *programdata
;
882 struct config_buf buf
;
883 struct git_config_source config_source
= { 0 };
890 home
= get_windows_home_directory();
893 global
= xstrdup(mkpath("%s/.gitconfig", home
));
894 globalxdg
= xstrdup(mkpath("%s/.config/git/config", home
));
902 system
= git_etc_gitconfig();
903 programdata
= git_program_data_config();
905 local
= git_pathdup("config");
909 config_source
.file
= local
;
910 git_config_with_options(get_config
, &buf
, &config_source
, 1);
912 if (!buf
.seen
&& global
)
914 config_source
.file
= global
;
915 git_config_with_options(get_config
, &buf
, &config_source
, 1);
917 if (!buf
.seen
&& globalxdg
)
919 config_source
.file
= globalxdg
;
920 git_config_with_options(get_config
, &buf
, &config_source
, 1);
922 if (!buf
.seen
&& system
)
924 config_source
.file
= system
;
925 git_config_with_options(get_config
, &buf
, &config_source
, 1);
927 if (!buf
.seen
&& programdata
)
929 config_source
.file
= programdata
;
930 git_config_with_options(get_config
, &buf
, &config_source
, 1);
943 // taken from msysgit: compat/mingw.c
944 const char *get_windows_home_directory(void)
946 static const char *home_directory
= NULL
;
947 struct strbuf buf
= STRBUF_INIT
;
950 return home_directory
;
952 home_directory
= getenv("HOME");
953 if (home_directory
&& *home_directory
)
955 home_directory
= _strdup(home_directory
);
956 return home_directory
;
959 strbuf_addf(&buf
, "%s%s", getenv("HOMEDRIVE"), getenv("HOMEPATH"));
960 home_directory
= strbuf_detach(&buf
, NULL
);
962 return home_directory
;
965 // wchar_t wrapper for get_windows_home_directory()
966 const wchar_t *wget_windows_home_directory(void)
968 static const wchar_t *home_directory
= NULL
;
969 wchar_t wpointer
[MAX_PATH
];
972 return home_directory
;
974 if (xutftowcs_path(wpointer
, get_windows_home_directory()) < 0)
977 home_directory
= _wcsdup(wpointer
);
979 return home_directory
;
982 int get_set_config(const char *key
, const char *value
, CONFIG_TYPE type
)
984 char * config_exclusive_filename
= NULL
;
990 config_exclusive_filename
= git_pathdup("config");
993 case CONFIG_XDGGLOBAL
:
995 const char *home
= get_windows_home_directory();
998 if (type
== CONFIG_GLOBAL
)
999 config_exclusive_filename
= xstrdup(mkpath("%s/.gitconfig", home
));
1001 config_exclusive_filename
= xstrdup(mkpath("%s/.config/git/config", home
));
1007 if(!config_exclusive_filename
)
1010 ret
= git_config_set_multivar_in_file_gently(config_exclusive_filename
, key
, value
, NULL
, 0);
1011 free(config_exclusive_filename
);
1015 struct mailmap_info
{
1020 struct mailmap_entry
{
1021 /* name and email for the simple mail-only case */
1025 /* name and email for the complex mail and name matching case */
1026 struct string_list namemap
;
1029 int git_read_mailmap(GIT_MAILMAP
*mailmap
)
1031 struct string_list
*map
;
1038 if ((map
= (struct string_list
*)calloc(1, sizeof(struct string_list
))) == NULL
)
1041 if ((result
= read_mailmap(map
, NULL
)) != 0)
1060 int git_lookup_mailmap(GIT_MAILMAP mailmap
, const char** email1
, const char** name1
, const char* email2
, void* payload
, const char *(*author2_cb
)(void*))
1062 struct string_list
*map
;
1068 map
= (struct string_list
*)mailmap
;
1070 while (imax
>= imin
)
1072 int i
= imin
+ ((imax
- imin
) / 2);
1073 struct string_list_item
*si
= (struct string_list_item
*)&map
->items
[i
];
1074 struct mailmap_entry
*me
= (struct mailmap_entry
*)si
->util
;
1075 int comp
= map
->cmp(si
->string
, email2
);
1081 const char *author2
= author2_cb(payload
);
1083 for (j
= 0; j
< me
->namemap
.nr
; ++j
)
1085 struct string_list_item
*sj
= (struct string_list_item
*)&me
->namemap
.items
[j
];
1086 struct mailmap_info
*mi
= (struct mailmap_info
*)sj
->util
;
1088 if (!map
->cmp(sj
->string
, author2
))
1091 *email1
= mi
->email
;
1100 *email1
= me
->email
;
1114 void git_free_mailmap(GIT_MAILMAP mailmap
)
1119 clear_mailmap((struct string_list
*)mailmap
);