Reset inheritable flag of debug log file git_shell_ext_debug.txt
[git-cheetah/kirill.git] / explorer / menu.c
blob635a89bc7f63871f8711e2174b20162f9eacf60e
1 #include "../common/cache.h"
3 #include <shlobj.h>
4 #include <tchar.h>
5 #include "../common/menuengine.h"
6 #include "../common/cheetahmenu.h"
7 #include "menu.h"
8 #include "ext.h"
9 #include "../common/debug.h"
10 #include "../common/systeminfo.h"
11 #include "../common/exec.h"
13 #define LONGEST_MENU_ITEM 40
16 * Windows-specific Cheetah menu functions
18 struct windows_menu_data {
19 HMENU menu;
20 UINT index;
21 UINT first;
22 UINT last;
25 void reset_platform(void *platform)
27 /* On Windows, we don't do anything to reset the menu */
31 * menu_item_builder to build a Windows-specific menu separator
33 * Always returns FALSE so the menu engine does not track this item
35 BOOL build_separator(struct git_data *data, const struct menu_item *item,
36 void *platform)
38 struct windows_menu_data *windows_menu = platform;
39 InsertMenu(windows_menu->menu, windows_menu->index,
40 MF_SEPARATOR | MF_BYPOSITION, 0, "");
41 windows_menu->index++;
43 return FALSE;
47 * menu_item_builder to build a simple menu item
49 * Explorer's context menu are limited in the number of comands
50 * that they can use, so build_item would:
51 * - do nothing if that limit is reached and return FALSE to
52 * instruct the menu engine to not track this item
53 * - create item and return TRUE, so the item can be handled later
55 BOOL build_item(struct git_data *data, const struct menu_item *item,
56 void *platform)
58 struct windows_menu_data *windows_menu = platform;
59 if (windows_menu->last < windows_menu->first + next_active_item)
60 return FALSE;
62 InsertMenu(windows_menu->menu, windows_menu->index,
63 MF_STRING | MF_BYPOSITION,
64 windows_menu->first + next_active_item,
65 item->string);
67 if (item->flags & MI_CHECKED)
68 CheckMenuItem(windows_menu->menu, windows_menu->index,
69 MF_BYPOSITION | MF_CHECKED);
71 windows_menu->index++;
72 return TRUE;
75 void *start_submenu(struct git_data *this_, const struct menu_item *item,
76 void *platform)
78 struct windows_menu_data *parent_menu = platform;
79 struct windows_menu_data *submenu =
80 xmalloc(sizeof(struct windows_menu_data));
81 submenu->menu = CreateMenu();
82 InsertMenu(parent_menu->menu, parent_menu->index,
83 MF_POPUP | MF_BYPOSITION, (UINT_PTR)(submenu->menu),
84 item->string);
85 parent_menu->index++;
87 submenu->index = 0;
88 submenu->first = parent_menu->first;
89 submenu->last = parent_menu->last;
91 return submenu;
94 void end_submenu(void *parent, void *submenu)
96 free(submenu);
100 * These are the functions for handling the context menu.
103 inline STDMETHODIMP query_context_menu(void *p, HMENU menu,
104 UINT index, UINT first_command,
105 UINT last_command, UINT flags)
107 struct git_menu *this_menu = p;
108 struct git_data *this_ = this_menu->git_data;
109 struct windows_menu_data windows_menu =
110 { menu, index, first_command, last_command };
112 if (flags & CMF_DEFAULTONLY)
113 return MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL, 0);
115 build_cheetah_menu(this_, &windows_menu);
117 return MAKE_HRESULT(SEVERITY_SUCCESS, FACILITY_NULL,
118 next_active_item);
122 * Perform a couple of transformations, such that a directory
123 * C:\Program Files\Bunch of stuff\in\A dir
124 * becomes
125 * /C/Program\ Files/Bunch\ of\ stuff/in/A\ dir
127 * Assumes path is initially a correctly formed Windows-style path.
128 * Returns a new string.
130 static char *convert_directory_format(const char *path)
132 /* assuming that each character has to be escaped,
133 allocate twice as much memory */
134 char *converted = (char *)calloc(2 * strlen(path) + 1, sizeof(char));
135 char *dst = converted;
137 /* Transform:
138 * "\" -> "/"
139 * chars, special to bash, are escaped with "\"
141 for (; *path; path++)
143 switch (*path)
145 case ' ':
146 case '(':
147 case ')':
148 case ';':
149 case '\'':
150 *(dst++) = '\\';
151 *(dst++) = *path;
152 break;
153 case '\\':
154 *(dst++) = '/';
155 break;
156 default:
157 *(dst++) = *path;
158 break;
161 *dst = '\0';
163 /* X: -> /X */
164 converted[1] = converted[0];
165 converted[0] = '/';
167 return converted;
170 static void free_platform_argv(void *data)
172 free(data);
175 #ifndef _WIN64
176 #define SYSTEMDIR "system32"
177 #else
178 #define SYSTEMDIR "syswow64"
179 #endif
181 static const char *get_cmd(void)
183 static struct strbuf buf = STRBUF_INIT;
185 if (!buf.len)
186 strbuf_addf(&buf, "%s\\" SYSTEMDIR "\\cmd.exe",
187 getenv("WINDIR"));
189 return buf.buf;
192 static void *create_bash_argv(char *wd)
194 /* start is required because exec_program does not create a window */
195 static const char *bash_argv[] = { NULL, "/c", "start",
196 "sh", "-c", NULL, NULL };
197 static const char *command = "cd %s && sh -l -i";
198 void *argv = xmalloc(sizeof(bash_argv));
199 struct strbuf shell_cmd = STRBUF_INIT;
200 char *converted = convert_directory_format(wd);
202 /* strbuf_addf allocates only 64 bytes, so we have to grow it manually */
203 strbuf_grow(&shell_cmd, strlen(converted) + strlen(command) + 1);
204 strbuf_addf(&shell_cmd, command, converted);
205 free(converted);
207 bash_argv[0] = get_cmd();
208 bash_argv[5] = shell_cmd.buf;
210 memcpy(argv, bash_argv, sizeof(bash_argv));
212 /* start the cmd on a system drive, so it does not fail on UNC */
213 strcpy(wd, getenv("SYSTEMDRIVE"));
215 return argv;
218 static void free_bash_argv(void *data)
220 void **argv = (void **)data;
221 free(argv[5]);
222 free(data);
225 const char **menu_get_platform_argv(menu_commands cmd, void *data,
226 free_func_t *free_argv, void **argv_data)
228 char *wd = data;
229 const char **argv;
230 const char *history_argv[] = { "sh", "--login", "-i",
231 "/bin/gitk", "HEAD", "--", NULL, NULL };
232 *free_argv = NULL;
233 *argv_data = NULL;
235 switch(cmd)
237 case MENU_HISTORY:
238 history_argv[6] = wd;
240 argv = xmalloc(sizeof(history_argv));
241 memcpy(argv, history_argv, sizeof(history_argv));
242 *free_argv = free_platform_argv;
244 break;
246 case MENU_BASH:
248 argv = create_bash_argv(wd);
249 *free_argv = free_bash_argv;
251 break;
253 default:
254 return NULL;
257 *argv_data = argv;
259 return argv;
262 inline STDMETHODIMP invoke_command(void *p,
263 LPCMINVOKECOMMANDINFO info)
265 struct git_menu *this_menu = p;
266 struct git_data *this_ = this_menu->git_data;
267 UINT id = LOWORD(info->lpVerb);
269 if (HIWORD(info->lpVerb))
270 return E_INVALIDARG;
272 handle_menu_item(this_, id);
273 return S_OK;
276 inline STDMETHODIMP get_command_string(void *p, UINT id,
277 UINT flags, UINT *reserved,
278 LPSTR name, UINT size)
280 const char *text;
282 if (!(flags & GCS_HELPTEXT))
283 return E_INVALIDARG;
285 text = get_menu_item_text(id);
286 if (!text)
287 return E_INVALIDARG;
289 if (flags & GCS_UNICODE) {
290 size_t len = strlen(text) + 1;
291 LPWSTR tw = xmalloc(len * sizeof(wchar_t));
292 /* need to convert terminating NULL as well */
293 mbstowcs(tw, text, len);
294 lstrcpynW((LPWSTR)name, tw, size);
295 free(tw);
296 } else
297 lstrcpynA(name, text, size);
299 return S_OK;
302 DEFINE_STANDARD_METHODS(git_menu)
304 struct git_menu_virtual_table git_menu_virtual_table = {
305 query_interface_git_menu,
306 add_ref_git_menu,
307 release_git_menu,
308 query_context_menu,
309 invoke_command,
310 get_command_string