2 * build.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2005 The Geany contributors
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 * Build commands and menu items.
25 * Use intermediate pointers for common subexpressions.
26 * Replace defines with enums.
27 * Other TODOs in code. */
37 #include "filetypesprivate.h"
38 #include "geanymenubuttonaction.h"
39 #include "geanyobject.h"
40 #include "keybindingsprivate.h"
41 #include "msgwindow.h"
43 #include "projectprivate.h"
44 #include "sciwrappers.h"
59 #include <glib/gstdio.h>
63 /* Number of editor indicators to draw - limited as this can affect performance */
64 #define GEANY_BUILD_ERR_HIGHLIGHT_MAX 50
67 GeanyBuildInfo build_info
= {GEANY_GBG_FT
, 0, 0, NULL
, GEANY_FILETYPES_NONE
, NULL
, 0};
69 static gchar
*current_dir_entered
= NULL
;
71 typedef struct RunInfo
77 static RunInfo
*run_info
;
80 static const gchar RUN_SCRIPT_CMD
[] = "geany_run_script_XXXXXX.sh";
83 /* Order is important (see GBO_TO_GBG, GBO_TO_CMD below) */
84 /* * Geany Known Build Commands.
85 * These commands are named after their default use.
86 * Only these commands can currently have keybindings.
90 GEANY_GBO_COMPILE
, /* *< default compile file */
91 GEANY_GBO_BUILD
, /* *< default build file */
92 GEANY_GBO_MAKE_ALL
, /* *< default make */
93 GEANY_GBO_CUSTOM
, /* *< default make user specified target */
94 GEANY_GBO_MAKE_OBJECT
, /* *< default make object, make %e.o */
95 GEANY_GBO_EXEC
, /* *< default execute ./%e */
96 GEANY_GBO_COUNT
/* *< count of how many */
99 /* * Convert @c GeanyBuildType to @c GeanyBuildGroup.
101 * This macro converts @c GeanyBuildType enum values (the "known" commands)
102 * to the group they are part of.
104 * @param gbo the @c GeanyBuildType value.
106 * @return the @c GeanyBuildGroup group that @a gbo is in.
108 * Note this is a macro so that it can be used in static initialisers.
110 #define GBO_TO_GBG(gbo) \
111 ((gbo) > GEANY_GBO_EXEC ? GEANY_GBG_COUNT : \
112 ((gbo) >= GEANY_GBO_EXEC ? GEANY_GBG_EXEC : \
113 ((gbo) >= GEANY_GBO_MAKE_ALL ? GEANY_GBG_NON_FT : GEANY_GBG_FT)))
115 /* * Convert @c GeanyBuildType to command index.
117 * This macro converts @c GeanyBuildType enum values (the "known" commands)
118 * to the index within the group.
120 * @param gbo the @c GeanyBuildType value.
122 * @return the index of the @a gbo command in its group.
124 * Note this is a macro so that it can be used in static initialisers.
126 #define GBO_TO_CMD(gbo) \
127 ((gbo) >= GEANY_GBO_COUNT ? (gbo) - GEANY_GBO_COUNT : \
128 ((gbo) >= GEANY_GBO_EXEC ? (gbo) - GEANY_GBO_EXEC : \
129 ((gbo) >= GEANY_GBO_MAKE_ALL ? \
130 (gbo) - GEANY_GBO_MAKE_ALL : (gbo))))
132 /* pack group (<8) and command (<32) into a user_data pointer */
133 #define GRP_CMD_TO_POINTER(grp, cmd) GUINT_TO_POINTER((((grp)&7) << 5) | ((cmd)&0x1f))
134 #define GBO_TO_POINTER(gbo) (GRP_CMD_TO_POINTER(GBO_TO_GBG(gbo), GBO_TO_CMD(gbo)))
135 #define GPOINTER_TO_CMD(gptr) (GPOINTER_TO_UINT(gptr)&0x1f)
136 #define GPOINTER_TO_GRP(gptr) ((GPOINTER_TO_UINT(gptr)&0xe0) >> 5)
138 static gpointer last_toolbutton_action
= GBO_TO_POINTER(GEANY_GBO_BUILD
);
140 static BuildMenuItems menu_items
= {NULL
, {NULL
, NULL
, NULL
, NULL
}};
144 GtkAction
*run_action
;
145 GtkAction
*compile_action
;
146 GtkAction
*build_action
;
149 GtkWidget
*toolitem_build
;
150 GtkWidget
*toolitem_make_all
;
151 GtkWidget
*toolitem_make_custom
;
152 GtkWidget
*toolitem_make_object
;
153 GtkWidget
*toolitem_set_args
;
157 static guint build_groups_count
[GEANY_GBG_COUNT
] = { 3, 4, 2 };
158 static guint build_items_count
= 9;
160 static void build_exit_cb(GPid pid
, gint status
, gpointer user_data
);
161 static void build_iofunc(GString
*string
, GIOCondition condition
, gpointer data
);
163 static gchar
*build_create_shellscript(const gchar
*working_dir
, const gchar
*cmd
, gboolean autoclose
, GError
**error
);
165 static void build_spawn_cmd(GeanyDocument
*doc
, const gchar
*cmd
, const gchar
*dir
);
166 static void set_stop_button(gboolean stop
);
167 static void run_exit_cb(GPid child_pid
, gint status
, gpointer user_data
);
168 static void on_set_build_commands_activate(GtkWidget
*w
, gpointer u
);
169 static void on_build_next_error(GtkWidget
*menuitem
, gpointer user_data
);
170 static void on_build_previous_error(GtkWidget
*menuitem
, gpointer user_data
);
171 static void kill_process(GPid
*pid
);
172 static void show_build_result_message(gboolean failure
);
173 static void process_build_output_line(gchar
*msg
, gint color
);
174 static void show_build_commands_dialog(void);
175 static void on_build_menu_item(GtkWidget
*w
, gpointer user_data
);
177 void build_finalize(void)
179 g_free(build_info
.dir
);
180 g_free(build_info
.custom_target
);
182 if (menu_items
.menu
!= NULL
&& GTK_IS_WIDGET(menu_items
.menu
))
183 gtk_widget_destroy(menu_items
.menu
);
187 /* note: copied from keybindings.c, may be able to go away */
188 static void add_menu_accel(GeanyKeyGroup
*group
, guint kb_id
,
189 GtkAccelGroup
*accel_group
, GtkWidget
*menuitem
)
191 GeanyKeyBinding
*kb
= keybindings_get_item(group
, kb_id
);
194 gtk_widget_add_accelerator(menuitem
, "activate", accel_group
,
195 kb
->key
, kb
->mods
, GTK_ACCEL_VISIBLE
);
199 /* convenience routines to access parts of GeanyBuildCommand */
200 static gchar
*id_to_str(GeanyBuildCommand
*bc
, gint id
)
206 case GEANY_BC_COMMAND
:
208 case GEANY_BC_WORKING_DIR
:
209 return bc
->working_dir
;
216 static void set_command(GeanyBuildCommand
*bc
, gint id
, gchar
*str
)
221 SETPTR(bc
->label
, str
);
223 case GEANY_BC_COMMAND
:
224 SETPTR(bc
->command
, str
);
226 case GEANY_BC_WORKING_DIR
:
227 SETPTR(bc
->working_dir
, str
);
235 static const gchar
*config_keys
[GEANY_BC_CMDENTRIES_COUNT
] = {
238 "WD" /* working directory */
241 /*-----------------------------------------------------
243 * Execute commands and handle results
245 *-----------------------------------------------------*/
247 /* the various groups of commands not in the filetype struct */
248 static GeanyBuildCommand
*ft_def
= NULL
;
249 static GeanyBuildCommand
*non_ft_proj
= NULL
;
250 static GeanyBuildCommand
*non_ft_pref
= NULL
;
251 static GeanyBuildCommand
*non_ft_def
= NULL
;
252 static GeanyBuildCommand
*exec_proj
= NULL
;
253 static GeanyBuildCommand
*exec_pref
= NULL
;
254 static GeanyBuildCommand
*exec_def
= NULL
;
255 /* and the regexen not in the filetype structure */
256 static gchar
*regex_pref
= NULL
;
257 /* project non-fileregex string */
258 static gchar
*regex_proj
= NULL
;
260 /* control if build commands are printed by get_build_cmd, for debug purposes only*/
261 #ifndef PRINTBUILDCMDS
262 #define PRINTBUILDCMDS FALSE
264 static gboolean printbuildcmds
= PRINTBUILDCMDS
;
267 /* for debug only, print the commands structures in priority order */
268 static void printfcmds(void)
271 GeanyBuildCommand
**cl
[GEANY_GBG_COUNT
][GEANY_BCS_COUNT
] = {
272 /* GEANY_BCS_DEF, GEANY_BCS_FT, GEANY_BCS_HOME_FT, GEANY_BCS_PREF,
273 * GEANY_BCS_FT_PROJ, GEANY_BCS_PROJ */
274 { &ft_def
, NULL
, NULL
, NULL
, NULL
, NULL
},
275 { &non_ft_def
, NULL
, NULL
, &non_ft_pref
, NULL
, &non_ft_proj
},
276 { &exec_def
, NULL
, NULL
, &exec_pref
, NULL
, &exec_proj
}
278 GeanyFiletype
*ft
= NULL
;
281 enum GeanyBuildCmdEntries n
;
282 gint cc
[GEANY_BCS_COUNT
];
285 doc
= document_get_current();
290 printf("filetype %s\n",ft
->name
);
291 cl
[GEANY_GBG_FT
][GEANY_BCS_FT
] = &(ft
->priv
->filecmds
);
292 cl
[GEANY_GBG_FT
][GEANY_BCS_HOME_FT
] = &(ft
->priv
->homefilecmds
);
293 cl
[GEANY_GBG_FT
][GEANY_BCS_PROJ
] = &(ft
->priv
->projfilecmds
);
294 cl
[GEANY_GBG_NON_FT
][GEANY_BCS_FT
] = &(ft
->priv
->ftdefcmds
);
295 cl
[GEANY_GBG_EXEC
][GEANY_BCS_FT
] = &(ft
->priv
->execcmds
);
296 cl
[GEANY_GBG_EXEC
][GEANY_BCS_HOME_FT
] = &(ft
->priv
->homeexeccmds
);
297 cl
[GEANY_GBG_EXEC
][GEANY_BCS_PROJ_FT
] = &(ft
->priv
->projexeccmds
);
299 for (i
= 0; i
< GEANY_BCS_COUNT
; ++i
)
302 for (j
= 0; j
< GEANY_GBG_COUNT
; ++j
)
304 for (k
= 0; k
< build_groups_count
[j
]; ++k
)
305 if (cl
[j
][i
] != NULL
&& *(cl
[j
][i
]) != NULL
&& (*(cl
[j
][i
]))[k
].exists
)
307 for (n
= 0; n
< GEANY_BC_CMDENTRIES_COUNT
; n
++)
309 if ((*(cl
[j
][i
]))[k
].entries
[n
] != NULL
&&
310 (l
= strlen((*(cl
[j
][i
]))[k
].entries
[n
])) > m
)
319 for (i
= 0; i
< GEANY_GBG_COUNT
; ++i
)
321 for (k
= 0; k
< build_groups_count
[i
]; ++k
)
323 for (l
= 0; l
< 2; ++l
)
326 for (j
= 0; j
< GEANY_BCS_COUNT
; ++j
)
328 if (cl
[i
][j
] != NULL
&& *(cl
[i
][j
]) != NULL
&& (*(cl
[i
][j
]))[k
].exists
)
330 for (n
= 0; n
< GEANY_BC_CMDENTRIES_COUNT
; n
++)
332 if ((*(cl
[i
][j
]))[k
].entries
[i
] != NULL
)
333 printf("%c %*.*s",c
,cc
[j
],cc
[j
],(*(cl
[i
][j
]))[k
].entries
[i
]);
335 printf("%c %*.*s",c
,cc
[j
],cc
[j
]," ");
339 printf("%c %*.*s",c
,cc
[j
],cc
[j
]," ");
351 /* macros to save typing and make the logic visible */
352 #define return_cmd_if(src, cmds)\
353 if (cmds != NULL && cmds[cmdindex].exists && below>src)\
356 if (printbuildcmds) \
357 printf("cmd[%u,%u]=%u\n",cmdgrp,cmdindex,src); \
358 return &(cmds[cmdindex]); \
361 #define return_ft_cmd_if(src, cmds)\
362 if (ft != NULL && ft->priv->cmds != NULL \
363 && ft->priv->cmds[cmdindex].exists && below>src)\
366 if (printbuildcmds) \
367 printf("cmd[%u,%u]=%u\n",cmdgrp,cmdindex,src); \
368 return &(ft->priv->cmds[cmdindex]); \
372 /* get the next lowest command taking priority into account */
373 static GeanyBuildCommand
*get_next_build_cmd(GeanyDocument
*doc
, guint cmdgrp
, guint cmdindex
,
374 guint below
, guint
*from
)
376 /* Note: parameter below used in macros above */
377 GeanyFiletype
*ft
= NULL
;
378 guint sink
, *fr
= &sink
;
380 g_return_val_if_fail(doc
== NULL
|| doc
->is_valid
, NULL
);
384 if (cmdgrp
>= GEANY_GBG_COUNT
)
389 doc
= document_get_current();
395 case GEANY_GBG_FT
: /* order proj ft, home ft, ft, defft */
398 return_ft_cmd_if(GEANY_BCS_PROJ
, projfilecmds
);
399 return_ft_cmd_if(GEANY_BCS_PREF
, homefilecmds
);
400 return_ft_cmd_if(GEANY_BCS_FT
, filecmds
);
402 return_cmd_if(GEANY_BCS_DEF
, ft_def
);
404 case GEANY_GBG_NON_FT
: /* order proj, pref, def */
405 return_cmd_if(GEANY_BCS_PROJ
, non_ft_proj
);
406 return_cmd_if(GEANY_BCS_PREF
, non_ft_pref
);
407 return_ft_cmd_if(GEANY_BCS_FT
, ftdefcmds
);
408 return_cmd_if(GEANY_BCS_DEF
, non_ft_def
);
410 case GEANY_GBG_EXEC
: /* order proj, proj ft, pref, home ft, ft, def */
411 return_cmd_if(GEANY_BCS_PROJ
, exec_proj
);
412 return_ft_cmd_if(GEANY_BCS_PROJ_FT
, projexeccmds
);
413 return_cmd_if(GEANY_BCS_PREF
, exec_pref
);
414 return_ft_cmd_if(GEANY_BCS_FT
, homeexeccmds
);
415 return_ft_cmd_if(GEANY_BCS_FT
, execcmds
);
416 return_cmd_if(GEANY_BCS_DEF
, exec_def
);
425 /* shortcut to start looking at the top */
426 static GeanyBuildCommand
*get_build_cmd(GeanyDocument
*doc
, guint grp
, guint cmdindex
, guint
*from
)
428 return get_next_build_cmd(doc
, grp
, cmdindex
, GEANY_BCS_COUNT
, from
);
432 #define return_nonblank_regex(src, ptr)\
434 { *fr = (src); return &(ptr); }
437 /* like get_build_cmd, but for regexen, used by filetypes */
438 gchar
**build_get_regex(GeanyBuildGroup grp
, GeanyFiletype
*ft
, guint
*from
)
440 guint sink
, *fr
= &sink
;
444 if (grp
== GEANY_GBG_FT
)
448 GeanyDocument
*doc
= document_get_current();
454 return_nonblank_regex(GEANY_BCS_PROJ
, ft
->priv
->projerror_regex_string
);
455 return_nonblank_regex(GEANY_BCS_HOME_FT
, ft
->priv
->homeerror_regex_string
);
456 return_nonblank_regex(GEANY_BCS_FT
, ft
->error_regex_string
);
458 else if (grp
== GEANY_GBG_NON_FT
)
460 return_nonblank_regex(GEANY_BCS_PROJ
, regex_proj
);
461 return_nonblank_regex(GEANY_BCS_PREF
, regex_pref
);
467 static GeanyBuildCommand
**get_build_group_pointer(const GeanyBuildSource src
, const GeanyBuildGroup grp
)
470 GeanyFiletype
*ft
= NULL
;
475 if ((doc
= document_get_current()) == NULL
)
477 if ((ft
= doc
->file_type
) == NULL
)
481 case GEANY_BCS_DEF
: return &(ft
->priv
->ftdefcmds
);
482 case GEANY_BCS_FT
: return &(ft
->priv
->filecmds
);
483 case GEANY_BCS_HOME_FT
: return &(ft
->priv
->homefilecmds
);
484 case GEANY_BCS_PREF
: return &(ft
->priv
->homefilecmds
);
485 case GEANY_BCS_PROJ
: return &(ft
->priv
->projfilecmds
);
486 default: return NULL
;
489 case GEANY_GBG_NON_FT
:
492 case GEANY_BCS_DEF
: return &(non_ft_def
);
493 case GEANY_BCS_PREF
: return &(non_ft_pref
);
494 case GEANY_BCS_PROJ
: return &(non_ft_proj
);
495 default: return NULL
;
499 if ((doc
= document_get_current()) != NULL
)
503 case GEANY_BCS_DEF
: return &(exec_def
);
504 case GEANY_BCS_FT
: return ft
? &(ft
->priv
->execcmds
): NULL
;
505 case GEANY_BCS_HOME_FT
: return ft
? &(ft
->priv
->homeexeccmds
): NULL
;
506 case GEANY_BCS_PROJ_FT
: return ft
? &(ft
->priv
->projexeccmds
): NULL
;
507 case GEANY_BCS_PREF
: return &(exec_pref
);
508 case GEANY_BCS_PROJ
: return &(exec_proj
);
509 default: return NULL
;
518 /* get pointer to the command group array */
519 static GeanyBuildCommand
*get_build_group(const GeanyBuildSource src
, const GeanyBuildGroup grp
)
521 GeanyBuildCommand
**g
= get_build_group_pointer(src
, grp
);
522 if (g
== NULL
) return NULL
;
527 /** Remove the specified Build menu item.
529 * Makes the specified menu item configuration no longer exist. This
530 * is different to setting fields to blank because the menu item
531 * will be deleted from the configuration file on saving
532 * (except the system filetypes settings @see Build Menu Configuration
533 * section of the Manual).
535 * @param src the source of the menu item to remove.
536 * @param grp the group of the command to remove.
537 * @param cmd the index (from 0) of the command within the group. A negative
538 * value will remove the whole group.
540 * If any parameter is out of range does nothing.
546 void build_remove_menu_item(const GeanyBuildSource src
, const GeanyBuildGroup grp
, const gint cmd
)
548 GeanyBuildCommand
*bc
;
551 bc
= get_build_group(src
, grp
);
556 for (i
= 0; i
< build_groups_count
[grp
]; ++i
)
557 bc
[i
].exists
= FALSE
;
559 else if ((guint
) cmd
< build_groups_count
[grp
])
560 bc
[cmd
].exists
= FALSE
;
564 /* * Get the @a GeanyBuildCommand structure for the specified Build menu item.
566 * Get the command for any menu item specified by @a src, @a grp and @a cmd even if it is
567 * hidden by higher priority commands.
569 * @param src the source of the specified menu item.
570 * @param grp the group of the specified menu item.
571 * @param cmd the index of the command within the group.
573 * @return a pointer to the @a GeanyBuildCommand structure or @c NULL if it doesn't exist.
574 * This is a pointer to an internal structure and must not be freed.
576 * @see build_menu_update
578 GeanyBuildCommand
*build_get_menu_item(GeanyBuildSource src
, GeanyBuildGroup grp
, guint cmd
)
580 GeanyBuildCommand
*bc
;
582 g_return_val_if_fail(src
< GEANY_BCS_COUNT
, NULL
);
583 g_return_val_if_fail(grp
< GEANY_GBG_COUNT
, NULL
);
584 g_return_val_if_fail(cmd
< build_groups_count
[grp
], NULL
);
586 bc
= get_build_group(src
, grp
);
593 /** Get the string for the menu item field.
595 * Get the current highest priority command specified by @a grp and @a cmd. This is the one
596 * that the menu item will use if activated.
598 * @param grp the group of the specified menu item.
599 * @param cmd the index of the command within the group.
600 * @param fld the field to return
602 * @return @nullable a pointer to the constant string or @c NULL if it doesn't exist.
603 * This is a pointer to an internal structure and must not be freed.
607 const gchar
*build_get_current_menu_item(const GeanyBuildGroup grp
, const guint cmd
,
608 const GeanyBuildCmdEntries fld
)
610 GeanyBuildCommand
*c
;
613 g_return_val_if_fail(grp
< GEANY_GBG_COUNT
, NULL
);
614 g_return_val_if_fail(fld
< GEANY_BC_CMDENTRIES_COUNT
, NULL
);
615 g_return_val_if_fail(cmd
< build_groups_count
[grp
], NULL
);
617 c
= get_build_cmd(NULL
, grp
, cmd
, NULL
);
618 if (c
== NULL
) return NULL
;
621 case GEANY_BC_COMMAND
:
627 case GEANY_BC_WORKING_DIR
:
628 str
= c
->working_dir
;
636 /** Set the string for the menu item field.
638 * Set the specified field of the command specified by @a src, @a grp and @a cmd.
640 * @param src the source of the menu item
641 * @param grp the group of the specified menu item.
642 * @param cmd the index of the menu item within the group.
643 * @param fld the field in the menu item command to set
644 * @param val the value to set the field to, is copied
648 void build_set_menu_item(const GeanyBuildSource src
, const GeanyBuildGroup grp
,
649 const guint cmd
, const GeanyBuildCmdEntries fld
, const gchar
*val
)
651 GeanyBuildCommand
**g
;
653 g_return_if_fail(src
< GEANY_BCS_COUNT
);
654 g_return_if_fail(grp
< GEANY_GBG_COUNT
);
655 g_return_if_fail(fld
< GEANY_BC_CMDENTRIES_COUNT
);
656 g_return_if_fail(cmd
< build_groups_count
[grp
]);
658 g
= get_build_group_pointer(src
, grp
);
659 if (g
== NULL
) return;
662 *g
= g_new0(GeanyBuildCommand
, build_groups_count
[grp
]);
666 case GEANY_BC_COMMAND
:
667 SETPTR((*g
)[cmd
].command
, g_strdup(val
));
668 (*g
)[cmd
].exists
= TRUE
;
671 SETPTR((*g
)[cmd
].label
, g_strdup(val
));
672 (*g
)[cmd
].exists
= TRUE
;
674 case GEANY_BC_WORKING_DIR
:
675 SETPTR((*g
)[cmd
].working_dir
, g_strdup(val
));
676 (*g
)[cmd
].exists
= TRUE
;
681 build_menu_update(NULL
);
684 /** Activate the menu item.
686 * Activate the menu item specified by @a grp and @a cmd.
688 * @param grp the group of the specified menu item.
689 * @param cmd the index of the command within the group.
693 void build_activate_menu_item(const GeanyBuildGroup grp
, const guint cmd
)
695 on_build_menu_item(NULL
, GRP_CMD_TO_POINTER(grp
, cmd
));
699 /* Clear all error indicators in all documents. */
700 static void clear_all_errors(void)
706 editor_indicator_clear_errors(documents
[i
]->editor
);
711 /* Replaces occurrences of %e and %p with the appropriate filenames and
712 * %l with current line number. %d and %p replacements should be in UTF8 */
713 static gchar
*build_replace_placeholder(const GeanyDocument
*doc
, const gchar
*src
)
717 gchar
*executable
= NULL
;
720 g_return_val_if_fail(doc
== NULL
|| doc
->is_valid
, NULL
);
722 stack
= g_string_new(src
);
723 if (doc
!= NULL
&& doc
->file_name
!= NULL
)
725 /* replace %f with the filename (including extension) */
726 replacement
= g_path_get_basename(doc
->file_name
);
727 utils_string_replace_all(stack
, "%f", replacement
);
730 /* replace %d with the absolute path of the dir of the current file */
731 replacement
= g_path_get_dirname(doc
->file_name
);
732 utils_string_replace_all(stack
, "%d", replacement
);
735 /* replace %e with the filename (excluding extension) */
736 executable
= utils_remove_ext_from_filename(doc
->file_name
);
737 replacement
= g_path_get_basename(executable
);
738 utils_string_replace_all(stack
, "%e", replacement
);
741 /* replace %l with the current 1-based line number */
742 line_num
= sci_get_current_line(doc
->editor
->sci
) + 1;
743 replacement
= g_strdup_printf("%i", line_num
);
744 utils_string_replace_all(stack
, "%l", replacement
);
748 /* replace %p with the current project's (absolute) base directory */
749 replacement
= NULL
; /* prevent double free if no replacement found */
752 replacement
= project_get_base_path();
754 else if (strstr(stack
->str
, "%p"))
755 { /* fall back to %d */
756 ui_set_statusbar(FALSE
, _("failed to substitute %%p, no project active"));
757 if (doc
!= NULL
&& doc
->file_name
!= NULL
)
758 replacement
= g_path_get_dirname(doc
->file_name
);
761 utils_string_replace_all(stack
, "%p", replacement
);
765 return g_string_free(stack
, FALSE
); /* don't forget to free src also if needed */
769 /* dir is the UTF-8 working directory to run cmd in. It can be NULL to use the
770 * idx document directory */
771 static void build_spawn_cmd(GeanyDocument
*doc
, const gchar
*cmd
, const gchar
*dir
)
773 GError
*error
= NULL
;
774 gchar
*argv
[] = { "/bin/sh", "-c", NULL
, NULL
};
776 gchar
*utf8_working_dir
;
779 g_return_if_fail(doc
== NULL
|| doc
->is_valid
);
781 if ((doc
== NULL
|| EMPTY(doc
->file_name
)) && EMPTY(dir
))
783 geany_debug("Failed to run command with no working directory");
784 ui_set_statusbar(TRUE
, _("Process failed, no working directory"));
789 SETPTR(current_dir_entered
, NULL
);
791 utf8_working_dir
= !EMPTY(dir
) ? g_strdup(dir
) : g_path_get_dirname(doc
->file_name
);
792 working_dir
= utils_get_locale_from_utf8(utf8_working_dir
);
794 gtk_list_store_clear(msgwindow
.store_compiler
);
795 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow
.notebook
), MSG_COMPILER
);
796 msgwin_compiler_add(COLOR_BLUE
, _("%s (in directory: %s)"), cmd
, utf8_working_dir
);
797 g_free(utf8_working_dir
);
800 cmd_string
= utils_get_locale_from_utf8(cmd
);
801 argv
[2] = cmd_string
;
802 cmd
= NULL
; /* under Unix, use argv to start cmd via sh for compatibility */
804 /* Expand environment variables like %blah%. */
805 cmd_string
= win32_expand_environment_variables(cmd
);
806 argv
[0] = NULL
; /* under Windows, run cmd directly */
810 /* set the build info for the message window */
811 g_free(build_info
.dir
);
812 build_info
.dir
= g_strdup(working_dir
);
813 build_info
.file_type_id
= (doc
== NULL
) ? GEANY_FILETYPES_NONE
: doc
->file_type
->id
;
814 build_info
.message_count
= 0;
816 if (!spawn_with_callbacks(working_dir
, cmd
, argv
, NULL
, 0, NULL
, NULL
, build_iofunc
,
817 GINT_TO_POINTER(0), 0, build_iofunc
, GINT_TO_POINTER(1), 0, build_exit_cb
, NULL
,
818 &build_info
.pid
, &error
))
820 geany_debug("build command spawning failed: %s", error
->message
);
821 ui_set_statusbar(TRUE
, _("Process failed (%s)"), error
->message
);
830 /* Returns: NULL if there was an error, or the command to be executed. If Geany is
831 * set to use a run script, the returned value is a path to the script that runs
832 * the command; otherwise the command itself is returned. working_dir is a pointer
833 * to the working directory from which the command is executed. Both strings are
834 * in the locale encoding. */
835 static gchar
*prepare_run_cmd(GeanyDocument
*doc
, gchar
**working_dir
, guint cmdindex
)
837 GeanyBuildCommand
*cmd
= NULL
;
838 const gchar
*cmd_working_dir
;
839 gboolean autoclose
= FALSE
;
840 gchar
*cmd_string_utf8
, *working_dir_utf8
, *run_cmd
, *cmd_string
;
841 GError
*error
= NULL
;
843 cmd
= get_build_cmd(doc
, GEANY_GBG_EXEC
, cmdindex
, NULL
);
845 cmd_string_utf8
= build_replace_placeholder(doc
, cmd
->command
);
846 cmd_working_dir
= cmd
->working_dir
;
847 if (EMPTY(cmd_working_dir
))
848 cmd_working_dir
= "%d";
849 working_dir_utf8
= build_replace_placeholder(doc
, cmd_working_dir
);
850 *working_dir
= utils_get_locale_from_utf8(working_dir_utf8
);
852 if (EMPTY(*working_dir
) || ! g_file_test(*working_dir
, G_FILE_TEST_EXISTS
) ||
853 ! g_file_test(*working_dir
, G_FILE_TEST_IS_DIR
))
855 ui_set_statusbar(TRUE
, _("Invalid working directory \"%s\""),
856 !EMPTY(working_dir_utf8
) ? working_dir_utf8
: "<NULL>" );
857 utils_free_pointers(3, cmd_string_utf8
, working_dir_utf8
, *working_dir
, NULL
);
861 cmd_string
= utils_get_locale_from_utf8(cmd_string_utf8
);
864 if (vte_info
.have_vte
&& vte_config
.run_in_vte
)
866 if (vte_config
.skip_run_script
)
868 utils_free_pointers(2, cmd_string_utf8
, working_dir_utf8
, NULL
);
872 /* don't wait for user input at the end of script when we are running in VTE */
878 /* Expand environment variables like %blah%. */
879 SETPTR(cmd_string
, win32_expand_environment_variables(cmd_string
));
881 gchar
*helper
= g_build_filename(utils_resource_dir(RESOURCE_DIR_LIBEXEC
), "geany-run-helper", NULL
);
882 /* escape helper appropriately */
883 /* FIXME: check the Windows rules, but it should not matter too much here as \es and "es are not
884 * allowed in paths anyway */
885 run_cmd
= g_strdup_printf("\"%s\" \"%s\" %d %s", helper
, *working_dir
, autoclose
? 1 : 0, cmd_string
);
888 run_cmd
= build_create_shellscript(*working_dir
, cmd_string
, autoclose
, &error
);
891 ui_set_statusbar(TRUE
, _("Failed to execute \"%s\" (start-script could not be created: %s)"),
892 !EMPTY(cmd_string_utf8
) ? cmd_string_utf8
: NULL
, error
->message
);
894 g_free(*working_dir
);
897 utils_free_pointers(3, cmd_string_utf8
, working_dir_utf8
, cmd_string
, NULL
);
902 static void build_run_cmd(GeanyDocument
*doc
, guint cmdindex
)
905 gchar
*run_cmd
= NULL
;
907 if (! DOC_VALID(doc
) || doc
->file_name
== NULL
)
910 run_cmd
= prepare_run_cmd(doc
, &working_dir
, cmdindex
);
914 run_info
[cmdindex
].file_type_id
= doc
->file_type
->id
;
917 if (vte_info
.have_vte
&& vte_config
.run_in_vte
)
921 /* VTE expects commands in UTF-8 */
922 SETPTR(run_cmd
, utils_get_utf8_from_locale(run_cmd
));
923 SETPTR(working_dir
, utils_get_utf8_from_locale(working_dir
));
925 if (vte_config
.skip_run_script
)
926 vte_cmd
= g_strconcat(run_cmd
, "\n", NULL
);
928 vte_cmd
= g_strconcat("\n/bin/sh ", run_cmd
, "\n", NULL
);
930 vte_cwd(working_dir
, TRUE
);
931 if (! vte_send_cmd(vte_cmd
))
933 const gchar
*msg
= _("File not executed because the terminal may contain some input (press Ctrl+C or Enter to clear it).");
934 ui_set_statusbar(FALSE
, "%s", msg
);
935 geany_debug("%s", msg
);
936 if (!vte_config
.skip_run_script
)
941 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow
.notebook
), MSG_VTE
);
942 gtk_widget_grab_focus(vte_config
.vte
);
943 msgwin_show_hide(TRUE
);
945 run_info
[cmdindex
].pid
= 1;
951 gchar
*locale_term_cmd
= utils_get_locale_from_utf8(tool_prefs
.term_cmd
);
952 GError
*error
= NULL
;
955 if (g_regex_match_simple("^[ \"]*cmd([.]exe)?[\" ]", locale_term_cmd
, 0, 0))
957 /* if passing an argument to cmd.exe, respect its quoting rules */
958 GString
*escaped_run_cmd
= g_string_new(NULL
);
959 for (gchar
*p
= run_cmd
; *p
; p
++)
961 if (strchr("()%!^\"<>&| ", *p
)) // cmd.exe metacharacters
962 g_string_append_c(escaped_run_cmd
, '^');
963 g_string_append_c(escaped_run_cmd
, *p
);
965 SETPTR(run_cmd
, g_string_free(escaped_run_cmd
, FALSE
));
969 utils_str_replace_all(&locale_term_cmd
, "%c", run_cmd
);
971 if (spawn_async(working_dir
, locale_term_cmd
, NULL
, NULL
, &(run_info
[cmdindex
].pid
),
974 g_child_watch_add(run_info
[cmdindex
].pid
, (GChildWatchFunc
) run_exit_cb
,
975 (gpointer
) &(run_info
[cmdindex
]));
976 build_menu_update(doc
);
980 gchar
*utf8_term_cmd
= utils_get_utf8_from_locale(locale_term_cmd
);
981 ui_set_statusbar(TRUE
, _("Cannot execute build command \"%s\": %s. "
982 "Check the Terminal setting in Preferences"), utf8_term_cmd
, error
->message
);
983 g_free(utf8_term_cmd
);
988 run_info
[cmdindex
].pid
= (GPid
) 0;
997 static void process_build_output_line(gchar
*msg
, gint color
)
1008 if (build_parse_make_dir(msg
, &tmp
))
1010 SETPTR(current_dir_entered
, tmp
);
1012 msgwin_parse_compiler_error_line(msg
, current_dir_entered
, &filename
, &line
);
1014 if (line
!= -1 && filename
!= NULL
)
1016 GeanyDocument
*doc
= document_find_by_filename(filename
);
1018 /* limit number of indicators */
1019 if (doc
&& editor_prefs
.use_indicators
&&
1020 build_info
.message_count
< GEANY_BUILD_ERR_HIGHLIGHT_MAX
)
1022 if (line
> 0) /* some compilers, like pdflatex report errors on line 0 */
1023 line
--; /* so only adjust the line number if it is greater than 0 */
1024 editor_indicator_set_on_line(doc
->editor
, GEANY_INDICATOR_ERROR
, line
);
1026 build_info
.message_count
++;
1027 color
= COLOR_RED
; /* error message parsed on the line */
1029 if (build_info
.message_count
== 1)
1031 gtk_widget_set_sensitive(build_get_menu_items(-1)->menu_item
[GBG_FIXED
][GBF_NEXT_ERROR
], TRUE
);
1032 gtk_widget_set_sensitive(build_get_menu_items(-1)->menu_item
[GBG_FIXED
][GBF_PREV_ERROR
], TRUE
);
1037 msgwin_compiler_add_string(color
, msg
);
1041 static void build_iofunc(GString
*string
, GIOCondition condition
, gpointer data
)
1043 if (condition
& (G_IO_IN
| G_IO_PRI
))
1045 process_build_output_line(string
->str
,
1046 (GPOINTER_TO_INT(data
)) ? COLOR_DARK_RED
: COLOR_BLACK
);
1051 gboolean
build_parse_make_dir(const gchar
*string
, gchar
**prefix
)
1060 if ((pos
= strstr(string
, "Entering directory")) != NULL
)
1065 /* get the start of the path */
1066 pos
= strstr(string
, "/");
1071 input
= g_strdup(pos
);
1073 /* kill the ' at the end of the path */
1074 len
= strlen(input
);
1075 input
[len
- 1] = '\0';
1076 input
= g_realloc(input
, len
); /* shorten by 1 */
1082 if (strstr(string
, "Leaving directory") != NULL
)
1092 static void show_build_result_message(gboolean failure
)
1098 msg
= _("Compilation failed.");
1099 msgwin_compiler_add_string(COLOR_BLUE
, msg
);
1100 /* If msgwindow is hidden, user will want to display it to see the error */
1101 if (! ui_prefs
.msgwindow_visible
)
1103 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow
.notebook
), MSG_COMPILER
);
1104 msgwin_show_hide(TRUE
);
1107 if (gtk_notebook_get_current_page(GTK_NOTEBOOK(msgwindow
.notebook
)) != MSG_COMPILER
)
1108 ui_set_statusbar(FALSE
, "%s", msg
);
1112 msg
= _("Compilation finished successfully.");
1113 msgwin_compiler_add_string(COLOR_BLUE
, msg
);
1114 if (! ui_prefs
.msgwindow_visible
||
1115 gtk_notebook_get_current_page(GTK_NOTEBOOK(msgwindow
.notebook
)) != MSG_COMPILER
)
1116 ui_set_statusbar(FALSE
, "%s", msg
);
1121 static void build_exit_cb(GPid child_pid
, gint status
, gpointer user_data
)
1123 show_build_result_message(!SPAWN_WIFEXITED(status
) || SPAWN_WEXITSTATUS(status
) != EXIT_SUCCESS
);
1127 /* enable build items again */
1128 build_menu_update(NULL
);
1129 ui_progress_bar_stop();
1133 static void run_exit_cb(GPid child_pid
, gint status
, gpointer user_data
)
1135 RunInfo
*run_info_data
= user_data
;
1137 g_spawn_close_pid(child_pid
);
1139 run_info_data
->pid
= 0;
1140 /* reset the stop button and menu item to the original meaning */
1141 build_menu_update(NULL
);
1145 /* write a little shellscript to call the executable (similar to anjuta_launcher but "internal")
1146 * working_dir and cmd are both in the locale encoding
1147 * it returns the full file name (including path) of the created script in the locale encoding */
1149 static gchar
*build_create_shellscript(const gchar
*working_dir
, const gchar
*cmd
, gboolean autoclose
, GError
**error
)
1153 gboolean success
= TRUE
;
1155 fd
= g_file_open_tmp (RUN_SCRIPT_CMD
, &fname
, error
);
1160 escaped_dir
= g_shell_quote(working_dir
);
1161 str
= g_strdup_printf(
1162 "#!/bin/sh\n\nrm $0\n\ncd %s\n\n%s\n\necho \"\n\n------------------\n(program exited with code: $?)\" \
1163 \n\n%s\n", escaped_dir
, cmd
, (autoclose
) ? "" :
1164 "\necho \"Press return to continue\"\n#to be more compatible with shells like "
1165 "dash\ndummy_var=\"\"\nread dummy_var");
1166 g_free(escaped_dir
);
1168 if (!g_file_set_contents(fname
, str
, -1, error
))
1172 if (success
&& g_chmod(fname
, 0777) != 0)
1178 g_set_error(error
, G_FILE_ERROR
, g_file_error_from_errno(errsv
),
1179 "Failed to make file executable: %s", g_strerror(errsv
));
1197 typedef void Callback(GtkWidget
*w
, gpointer u
);
1199 /* run the command catenating cmd_cat if present */
1200 static void build_command(GeanyDocument
*doc
, GeanyBuildGroup grp
, guint cmd
, gchar
*cmd_cat
)
1203 gchar
*full_command
, *subs_command
;
1204 GeanyBuildCommand
*buildcmd
= get_build_cmd(doc
, grp
, cmd
, NULL
);
1207 if (buildcmd
== NULL
)
1210 cmdstr
= buildcmd
->command
;
1212 if (cmd_cat
!= NULL
)
1215 full_command
= g_strconcat(cmdstr
, cmd_cat
, NULL
);
1217 full_command
= g_strdup(cmd_cat
);
1220 full_command
= cmdstr
;
1222 dir
= build_replace_placeholder(doc
, buildcmd
->working_dir
);
1223 subs_command
= build_replace_placeholder(doc
, full_command
);
1224 build_info
.grp
= grp
;
1225 build_info
.cmd
= cmd
;
1226 build_spawn_cmd(doc
, subs_command
, dir
);
1227 g_free(subs_command
);
1229 if (cmd_cat
!= NULL
)
1230 g_free(full_command
);
1231 build_menu_update(doc
);
1233 ui_progress_bar_start(NULL
);
1237 /*----------------------------------------------------------------
1239 * Create build menu and handle callbacks (&toolbar callbacks)
1241 *----------------------------------------------------------------*/
1242 static void on_make_custom_input_response(const gchar
*input
, gpointer data
)
1244 GeanyDocument
*doc
= document_get_current();
1246 SETPTR(build_info
.custom_target
, g_strdup(input
));
1247 build_command(doc
, GBO_TO_GBG(GEANY_GBO_CUSTOM
), GBO_TO_CMD(GEANY_GBO_CUSTOM
),
1248 build_info
.custom_target
);
1252 static void on_build_menu_item(GtkWidget
*w
, gpointer user_data
)
1254 GeanyDocument
*doc
= document_get_current();
1255 GeanyBuildCommand
*bc
;
1256 guint grp
= GPOINTER_TO_GRP(user_data
);
1257 guint cmd
= GPOINTER_TO_CMD(user_data
);
1259 if (doc
&& doc
->changed
)
1261 if (!document_save_file(doc
, FALSE
))
1264 g_signal_emit_by_name(geany_object
, "build-start");
1266 if (grp
== GEANY_GBG_NON_FT
&& cmd
== GBO_TO_CMD(GEANY_GBO_CUSTOM
))
1268 static GtkWidget
*dialog
= NULL
; /* keep dialog for combo history */
1272 dialog
= dialogs_show_input_persistent(_("Custom Text"), GTK_WINDOW(main_widgets
.window
),
1273 _("Enter custom text here, all entered text is appended to the command."),
1274 build_info
.custom_target
, &on_make_custom_input_response
, NULL
);
1278 gtk_widget_show(dialog
);
1282 else if (grp
== GEANY_GBG_EXEC
)
1284 if (run_info
[cmd
].pid
> (GPid
) 1)
1286 kill_process(&run_info
[cmd
].pid
);
1289 bc
= get_build_cmd(doc
, grp
, cmd
, NULL
);
1290 if (bc
!= NULL
&& strcmp(bc
->command
, "builtin") == 0)
1292 const gchar
*uri_file_prefix
;
1296 uri_file_prefix
= utils_get_uri_file_prefix();
1297 uri
= g_strconcat(uri_file_prefix
, doc
->file_name
, NULL
);
1298 utils_open_browser(uri
);
1302 build_run_cmd(doc
, cmd
);
1305 build_command(doc
, grp
, cmd
, NULL
);
1309 /* group codes for menu items other than the known commands
1310 * value order is important, see the following table for use */
1312 /* the rest in each group */
1313 #define MENU_FT_REST (GEANY_GBG_COUNT + GEANY_GBG_FT)
1314 #define MENU_NON_FT_REST (GEANY_GBG_COUNT + GEANY_GBG_NON_FT)
1315 #define MENU_EXEC_REST (GEANY_GBG_COUNT + GEANY_GBG_EXEC)
1317 #define MENU_SEPARATOR (2*GEANY_GBG_COUNT)
1318 /* the fixed items */
1319 #define MENU_NEXT_ERROR (MENU_SEPARATOR + 1)
1320 #define MENU_PREV_ERROR (MENU_NEXT_ERROR + 1)
1321 #define MENU_COMMANDS (MENU_PREV_ERROR + 1)
1322 #define MENU_DONE (MENU_COMMANDS + 1)
1325 static struct BuildMenuItemSpec
{
1326 const gchar
*stock_id
;
1327 const gint key_binding
;
1328 const guint build_grp
;
1329 const guint build_cmd
;
1330 const gchar
*fix_label
;
1332 } build_menu_specs
[] = {
1333 {GTK_STOCK_CONVERT
, GEANY_KEYS_BUILD_COMPILE
, GBO_TO_GBG(GEANY_GBO_COMPILE
),
1334 GBO_TO_CMD(GEANY_GBO_COMPILE
), NULL
, on_build_menu_item
},
1335 {GEANY_STOCK_BUILD
, GEANY_KEYS_BUILD_LINK
, GBO_TO_GBG(GEANY_GBO_BUILD
),
1336 GBO_TO_CMD(GEANY_GBO_BUILD
), NULL
, on_build_menu_item
},
1337 {NULL
, -1, MENU_FT_REST
,
1338 GBO_TO_CMD(GEANY_GBO_BUILD
) + 1, NULL
, on_build_menu_item
},
1339 {NULL
, -1, MENU_SEPARATOR
,
1340 GBF_SEP_1
, NULL
, NULL
},
1341 {NULL
, GEANY_KEYS_BUILD_MAKE
, GBO_TO_GBG(GEANY_GBO_MAKE_ALL
),
1342 GBO_TO_CMD(GEANY_GBO_MAKE_ALL
), NULL
, on_build_menu_item
},
1343 {NULL
, GEANY_KEYS_BUILD_MAKEOWNTARGET
, GBO_TO_GBG(GEANY_GBO_CUSTOM
),
1344 GBO_TO_CMD(GEANY_GBO_CUSTOM
), NULL
, on_build_menu_item
},
1345 {NULL
, GEANY_KEYS_BUILD_MAKEOBJECT
, GBO_TO_GBG(GEANY_GBO_MAKE_OBJECT
),
1346 GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT
), NULL
, on_build_menu_item
},
1347 {NULL
, -1, MENU_NON_FT_REST
,
1348 GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT
) + 1, NULL
, on_build_menu_item
},
1349 {NULL
, -1, MENU_SEPARATOR
,
1350 GBF_SEP_2
, NULL
, NULL
},
1351 {GTK_STOCK_GO_DOWN
, GEANY_KEYS_BUILD_NEXTERROR
, MENU_NEXT_ERROR
,
1352 GBF_NEXT_ERROR
, N_("_Next Error"), on_build_next_error
},
1353 {GTK_STOCK_GO_UP
, GEANY_KEYS_BUILD_PREVIOUSERROR
, MENU_PREV_ERROR
,
1354 GBF_PREV_ERROR
, N_("_Previous Error"), on_build_previous_error
},
1355 {NULL
, -1, MENU_SEPARATOR
,
1356 GBF_SEP_3
, NULL
, NULL
},
1357 {GTK_STOCK_EXECUTE
, GEANY_KEYS_BUILD_RUN
, GBO_TO_GBG(GEANY_GBO_EXEC
),
1358 GBO_TO_CMD(GEANY_GBO_EXEC
), NULL
, on_build_menu_item
},
1359 {NULL
, -1, MENU_EXEC_REST
,
1360 GBO_TO_CMD(GEANY_GBO_EXEC
) + 1, NULL
, on_build_menu_item
},
1361 {NULL
, -1, MENU_SEPARATOR
,
1362 GBF_SEP_4
, NULL
, NULL
},
1363 {GTK_STOCK_PREFERENCES
, GEANY_KEYS_BUILD_OPTIONS
, MENU_COMMANDS
,
1364 GBF_COMMANDS
, N_("_Set Build Commands"), on_set_build_commands_activate
},
1365 {NULL
, -1, MENU_DONE
,
1370 static void create_build_menu_item(GtkWidget
*menu
, GeanyKeyGroup
*group
, GtkAccelGroup
*ag
,
1371 struct BuildMenuItemSpec
*bs
, const gchar
*lbl
, guint grp
, guint cmd
)
1373 GtkWidget
*item
= gtk_image_menu_item_new_with_mnemonic(lbl
);
1375 if (bs
->stock_id
!= NULL
)
1377 GtkWidget
*image
= gtk_image_new_from_stock(bs
->stock_id
, GTK_ICON_SIZE_MENU
);
1378 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item
), image
);
1380 gtk_widget_show(item
);
1381 if (bs
->key_binding
>= 0)
1382 add_menu_accel(group
, (guint
) bs
->key_binding
, ag
, item
);
1383 gtk_container_add(GTK_CONTAINER(menu
), item
);
1386 g_signal_connect(item
, "activate", G_CALLBACK(bs
->cb
), GRP_CMD_TO_POINTER(grp
,cmd
));
1388 menu_items
.menu_item
[grp
][cmd
] = item
;
1392 static void create_build_menu(BuildMenuItems
*build_menu_items
)
1395 GtkAccelGroup
*accel_group
= gtk_accel_group_new();
1396 GeanyKeyGroup
*keygroup
= keybindings_get_core_group(GEANY_KEY_GROUP_BUILD
);
1399 menu
= gtk_menu_new();
1400 build_menu_items
->menu_item
[GEANY_GBG_FT
] = g_new0(GtkWidget
*, build_groups_count
[GEANY_GBG_FT
]);
1401 build_menu_items
->menu_item
[GEANY_GBG_NON_FT
] = g_new0(GtkWidget
*, build_groups_count
[GEANY_GBG_NON_FT
]);
1402 build_menu_items
->menu_item
[GEANY_GBG_EXEC
] = g_new0(GtkWidget
*, build_groups_count
[GEANY_GBG_EXEC
]);
1403 build_menu_items
->menu_item
[GBG_FIXED
] = g_new0(GtkWidget
*, GBF_COUNT
);
1405 for (i
= 0; build_menu_specs
[i
].build_grp
!= MENU_DONE
; ++i
)
1407 struct BuildMenuItemSpec
*bs
= &(build_menu_specs
[i
]);
1408 if (bs
->build_grp
== MENU_SEPARATOR
)
1410 GtkWidget
*item
= gtk_separator_menu_item_new();
1411 gtk_widget_show(item
);
1412 gtk_container_add(GTK_CONTAINER(menu
), item
);
1413 build_menu_items
->menu_item
[GBG_FIXED
][bs
->build_cmd
] = item
;
1415 else if (bs
->fix_label
!= NULL
)
1417 create_build_menu_item(menu
, keygroup
, accel_group
, bs
, _(bs
->fix_label
),
1418 GBG_FIXED
, bs
->build_cmd
);
1420 else if (bs
->build_grp
>= MENU_FT_REST
&& bs
->build_grp
<= MENU_SEPARATOR
)
1422 guint grp
= bs
->build_grp
- GEANY_GBG_COUNT
;
1423 for (j
= bs
->build_cmd
; j
< build_groups_count
[grp
]; ++j
)
1425 GeanyBuildCommand
*bc
= get_build_cmd(NULL
, grp
, j
, NULL
);
1426 const gchar
*lbl
= (bc
== NULL
) ? "" : bc
->label
;
1427 create_build_menu_item(menu
, keygroup
, accel_group
, bs
, lbl
, grp
, j
);
1432 GeanyBuildCommand
*bc
= get_build_cmd(NULL
, bs
->build_grp
, bs
->build_cmd
, NULL
);
1433 const gchar
*lbl
= (bc
== NULL
) ? "" : bc
->label
;
1434 create_build_menu_item(menu
, keygroup
, accel_group
, bs
, lbl
, bs
->build_grp
, bs
->build_cmd
);
1437 build_menu_items
->menu
= menu
;
1438 gtk_widget_show(menu
);
1439 gtk_menu_item_set_submenu(GTK_MENU_ITEM(ui_lookup_widget(main_widgets
.window
, "menu_build1")), menu
);
1443 /* * Update the build menu to reflect changes in configuration or status.
1445 * Sets the labels and number of visible items to match the highest
1446 * priority configured commands. Also sets sensitivity if build commands are
1447 * running and switches executes to stop when commands are running.
1449 * @param doc The current document, if available, to save looking it up.
1450 * If @c NULL it will be looked up.
1452 * Call this after modifying any fields of a GeanyBuildCommand structure.
1454 * @see Build Menu Configuration section of the Manual.
1457 void build_menu_update(GeanyDocument
*doc
)
1459 guint i
, cmdcount
, cmd
, grp
;
1460 gboolean vis
= FALSE
;
1461 gboolean have_path
, build_running
, exec_running
, have_errors
, cmd_sensitivity
;
1462 gboolean can_compile
, can_build
, can_make
, run_sensitivity
= FALSE
, run_running
= FALSE
;
1463 GeanyBuildCommand
*bc
;
1465 g_return_if_fail(doc
== NULL
|| doc
->is_valid
);
1467 if (menu_items
.menu
== NULL
)
1468 create_build_menu(&menu_items
);
1470 doc
= document_get_current();
1471 have_path
= doc
!= NULL
&& doc
->file_name
!= NULL
;
1472 build_running
= build_info
.pid
> (GPid
) 1;
1473 // note: compiler list store may have been cleared since last build
1474 have_errors
= build_info
.message_count
> 0 &&
1475 gtk_tree_model_iter_n_children(GTK_TREE_MODEL(msgwindow
.store_compiler
), NULL
) > 0;
1476 for (i
= 0; build_menu_specs
[i
].build_grp
!= MENU_DONE
; ++i
)
1478 struct BuildMenuItemSpec
*bs
= &(build_menu_specs
[i
]);
1479 switch (bs
->build_grp
)
1481 case MENU_SEPARATOR
:
1484 gtk_widget_show_all(menu_items
.menu_item
[GBG_FIXED
][bs
->build_cmd
]);
1488 gtk_widget_hide(menu_items
.menu_item
[GBG_FIXED
][bs
->build_cmd
]);
1490 case MENU_NEXT_ERROR
:
1491 case MENU_PREV_ERROR
:
1492 gtk_widget_set_sensitive(menu_items
.menu_item
[GBG_FIXED
][bs
->build_cmd
], have_errors
);
1498 default: /* all configurable commands */
1499 if (bs
->build_grp
>= GEANY_GBG_COUNT
)
1501 grp
= bs
->build_grp
- GEANY_GBG_COUNT
;
1502 cmdcount
= build_groups_count
[grp
];
1506 grp
= bs
->build_grp
;
1507 cmdcount
= bs
->build_cmd
+ 1;
1509 for (cmd
= bs
->build_cmd
; cmd
< cmdcount
; ++cmd
)
1511 GtkWidget
*menu_item
= menu_items
.menu_item
[grp
][cmd
];
1513 bc
= get_build_cmd(doc
, grp
, cmd
, NULL
);
1519 if (grp
< GEANY_GBG_EXEC
)
1522 (grp
== GEANY_GBG_FT
&& bc
!= NULL
&& have_path
&& ! build_running
) ||
1523 (grp
== GEANY_GBG_NON_FT
&& bc
!= NULL
&& ! build_running
);
1524 gtk_widget_set_sensitive(menu_item
, cmd_sensitivity
);
1525 if (bc
!= NULL
&& !EMPTY(label
))
1527 gtk_menu_item_set_label(GTK_MENU_ITEM(menu_item
), label
);
1528 gtk_widget_show_all(menu_item
);
1532 gtk_widget_hide(menu_item
);
1537 exec_running
= run_info
[cmd
].pid
> (GPid
) 1;
1538 cmd_sensitivity
= (bc
!= NULL
) || exec_running
;
1539 gtk_widget_set_sensitive(menu_item
, cmd_sensitivity
);
1540 if (cmd
== GBO_TO_CMD(GEANY_GBO_EXEC
))
1541 run_sensitivity
= cmd_sensitivity
;
1544 image
= gtk_image_new_from_stock(bs
->stock_id
, GTK_ICON_SIZE_MENU
);
1548 image
= gtk_image_new_from_stock(GTK_STOCK_STOP
, GTK_ICON_SIZE_MENU
);
1550 if (cmd
== GBO_TO_CMD(GEANY_GBO_EXEC
))
1551 run_running
= exec_running
;
1552 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item
), image
);
1553 if (bc
!= NULL
&& !EMPTY(label
))
1555 gtk_menu_item_set_label(GTK_MENU_ITEM(menu_item
), label
);
1556 gtk_widget_show_all(menu_item
);
1560 gtk_widget_hide(menu_item
);
1566 run_sensitivity
&= (doc
!= NULL
);
1567 can_build
= get_build_cmd(doc
, GEANY_GBG_FT
, GBO_TO_CMD(GEANY_GBO_BUILD
), NULL
) != NULL
1568 && have_path
&& ! build_running
;
1569 if (widgets
.toolitem_build
!= NULL
)
1570 gtk_widget_set_sensitive(widgets
.toolitem_build
, can_build
);
1572 if (widgets
.toolitem_make_all
!= NULL
)
1573 gtk_widget_set_sensitive(widgets
.toolitem_make_all
,
1574 (can_make
|= get_build_cmd(doc
, GEANY_GBG_FT
, GBO_TO_CMD(GEANY_GBO_MAKE_ALL
), NULL
) != NULL
1575 && ! build_running
));
1576 if (widgets
.toolitem_make_custom
!= NULL
)
1577 gtk_widget_set_sensitive(widgets
.toolitem_make_custom
,
1578 (can_make
|= get_build_cmd(doc
, GEANY_GBG_FT
, GBO_TO_CMD(GEANY_GBO_CUSTOM
), NULL
) != NULL
1579 && ! build_running
));
1580 if (widgets
.toolitem_make_object
!= NULL
)
1581 gtk_widget_set_sensitive(widgets
.toolitem_make_object
,
1582 (can_make
|= get_build_cmd(doc
, GEANY_GBG_FT
, GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT
), NULL
) != NULL
1583 && ! build_running
));
1584 if (widgets
.toolitem_set_args
!= NULL
)
1585 gtk_widget_set_sensitive(widgets
.toolitem_set_args
, TRUE
);
1587 can_compile
= get_build_cmd(doc
, GEANY_GBG_FT
, GBO_TO_CMD(GEANY_GBO_COMPILE
), NULL
) != NULL
1588 && have_path
&& ! build_running
;
1589 gtk_action_set_sensitive(widgets
.compile_action
, can_compile
);
1590 gtk_action_set_sensitive(widgets
.build_action
, can_make
);
1591 gtk_action_set_sensitive(widgets
.run_action
, run_sensitivity
);
1593 /* show the stop command if a program is running from execute 0 , otherwise show run command */
1594 set_stop_button(run_running
);
1599 /* Call build_menu_update() instead of calling this directly. */
1600 static void set_stop_button(gboolean stop
)
1602 const gchar
*button_stock_id
= NULL
;
1603 GtkToolButton
*run_button
;
1605 run_button
= GTK_TOOL_BUTTON(toolbar_get_widget_by_name("Run"));
1606 if (run_button
!= NULL
)
1607 button_stock_id
= gtk_tool_button_get_stock_id(run_button
);
1609 if (stop
&& utils_str_equal(button_stock_id
, GTK_STOCK_STOP
))
1611 if (! stop
&& utils_str_equal(button_stock_id
, GTK_STOCK_EXECUTE
))
1614 /* use the run button also as stop button */
1617 if (run_button
!= NULL
)
1618 gtk_tool_button_set_stock_id(run_button
, GTK_STOCK_STOP
);
1622 if (run_button
!= NULL
)
1623 gtk_tool_button_set_stock_id(run_button
, GTK_STOCK_EXECUTE
);
1628 static void on_set_build_commands_activate(GtkWidget
*w
, gpointer u
)
1630 /* For now, just show the project dialog */
1632 project_build_properties();
1634 show_build_commands_dialog();
1638 static void on_toolbutton_build_activate(GtkWidget
*menuitem
, gpointer user_data
)
1640 last_toolbutton_action
= user_data
;
1641 g_object_set(widgets
.build_action
, "tooltip", _("Build the current file"), NULL
);
1642 on_build_menu_item(menuitem
, user_data
);
1646 static void on_toolbutton_make_activate(GtkWidget
*menuitem
, gpointer user_data
)
1650 last_toolbutton_action
= user_data
;
1651 if (last_toolbutton_action
== GBO_TO_POINTER(GEANY_GBO_MAKE_ALL
))
1652 msg
= _("Build the current file with Make and the default target");
1653 else if (last_toolbutton_action
== GBO_TO_POINTER(GEANY_GBO_CUSTOM
))
1654 msg
= _("Build the current file with Make and the specified target");
1655 else if (last_toolbutton_action
== GBO_TO_POINTER(GEANY_GBO_MAKE_OBJECT
))
1656 msg
= _("Compile the current file with Make");
1659 g_object_set(widgets
.build_action
, "tooltip", msg
, NULL
);
1660 on_build_menu_item(menuitem
, user_data
);
1664 static void kill_process(GPid
*pid
)
1666 GError
*error
= NULL
;
1668 if (spawn_kill_process(*pid
, &error
))
1671 build_menu_update(NULL
);
1675 ui_set_statusbar(TRUE
, _("Process could not be stopped (%s)."), error
->message
);
1676 g_error_free(error
);
1681 static void on_build_next_error(GtkWidget
*menuitem
, gpointer user_data
)
1683 if (ui_tree_view_find_next(GTK_TREE_VIEW(msgwindow
.tree_compiler
),
1684 msgwin_goto_compiler_file_line
))
1686 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow
.notebook
), MSG_COMPILER
);
1689 ui_set_statusbar(FALSE
, _("No more build errors."));
1693 static void on_build_previous_error(GtkWidget
*menuitem
, gpointer user_data
)
1695 if (ui_tree_view_find_previous(GTK_TREE_VIEW(msgwindow
.tree_compiler
),
1696 msgwin_goto_compiler_file_line
))
1698 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow
.notebook
), MSG_COMPILER
);
1701 ui_set_statusbar(FALSE
, _("No more build errors."));
1705 void build_toolbutton_build_clicked(GtkAction
*action
, gpointer unused
)
1707 if (last_toolbutton_action
== GBO_TO_POINTER(GEANY_GBO_BUILD
))
1709 on_build_menu_item(NULL
, GBO_TO_POINTER(GEANY_GBO_BUILD
));
1713 on_build_menu_item(NULL
, last_toolbutton_action
);
1718 /*------------------------------------------------------
1720 * Create and handle the build menu configuration dialog
1722 *-------------------------------------------------------*/
1723 typedef struct RowWidgets
1725 GtkWidget
*entries
[GEANY_BC_CMDENTRIES_COUNT
];
1726 GeanyBuildSource src
;
1727 GeanyBuildSource dst
;
1728 GeanyBuildCommand
*cmdsrc
;
1736 static GdkRGBA insensitive_color
;
1738 static void set_row_color(RowWidgets
*r
, GdkRGBA
*color
)
1740 enum GeanyBuildCmdEntries i
;
1742 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
1744 if (i
== GEANY_BC_LABEL
)
1747 gtk_widget_override_color(r
->entries
[i
], GTK_STATE_FLAG_NORMAL
, color
);
1752 static void set_build_command_entry_text(GtkWidget
*wid
, const gchar
*text
)
1754 if (GTK_IS_BUTTON(wid
))
1755 gtk_button_set_label(GTK_BUTTON(wid
), text
);
1757 gtk_entry_set_text(GTK_ENTRY(wid
), text
);
1761 static void on_clear_dialog_row(GtkWidget
*unused
, gpointer user_data
)
1763 RowWidgets
*r
= user_data
;
1765 enum GeanyBuildCmdEntries i
;
1766 GeanyBuildCommand
*bc
= get_next_build_cmd(NULL
, r
->grp
, r
->cmd
, r
->dst
, &src
);
1772 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
1774 set_build_command_entry_text(r
->entries
[i
],
1775 id_to_str(bc
,i
) != NULL
? id_to_str(bc
,i
) : "");
1781 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
1783 set_build_command_entry_text(r
->entries
[i
], "");
1786 r
->used_dst
= FALSE
;
1787 set_row_color(r
, &insensitive_color
);
1792 static void on_clear_dialog_regex_row(GtkEntry
*regex
, gpointer unused
)
1794 gtk_entry_set_text(regex
,"");
1798 static void on_label_button_clicked(GtkWidget
*wid
, gpointer user_data
)
1800 RowWidgets
*r
= user_data
;
1801 GtkWidget
*top_level
= gtk_widget_get_toplevel(wid
);
1802 const gchar
*old
= gtk_button_get_label(GTK_BUTTON(wid
));
1805 if (gtk_widget_is_toplevel(top_level
) && GTK_IS_WINDOW(top_level
))
1806 str
= dialogs_show_input(_("Set menu item label"), GTK_WINDOW(top_level
), NULL
, old
);
1808 str
= dialogs_show_input(_("Set menu item label"), NULL
, NULL
, old
);
1813 gtk_button_set_label(GTK_BUTTON(wid
), str
);
1816 set_row_color(r
, NULL
);
1820 static void on_entry_focus(GtkWidget
*wid
, GdkEventFocus
*unused
, gpointer user_data
)
1822 RowWidgets
*r
= user_data
;
1825 set_row_color(r
, NULL
);
1829 /* Column headings, array NULL-terminated */
1830 static const gchar
*colheads
[] =
1835 N_("Working directory"),
1842 #define DC_ENTRIES 1
1846 static const guint entry_x_padding
= 3;
1847 static const guint entry_y_padding
= 0;
1850 static RowWidgets
*build_add_dialog_row(GeanyDocument
*doc
, GtkTable
*table
, guint row
,
1851 GeanyBuildSource dst
, guint grp
, guint cmd
, gboolean dir
)
1853 GtkWidget
*label
, *clear
, *clearicon
;
1855 GeanyBuildCommand
*bc
;
1857 enum GeanyBuildCmdEntries i
;
1860 GtkStyleContext
*ctx
;
1862 g_return_val_if_fail(doc
== NULL
|| doc
->is_valid
, NULL
);
1864 text
= g_strdup_printf("%d.", cmd
+ 1);
1865 label
= gtk_label_new(text
);
1868 ctx
= gtk_widget_get_style_context(label
);
1869 gtk_style_context_save(ctx
);
1870 gtk_style_context_get_color(ctx
, GTK_STATE_FLAG_INSENSITIVE
, &insensitive_color
);
1871 gtk_style_context_restore(ctx
);
1873 gtk_table_attach(table
, label
, column
, column
+ 1, row
, row
+ 1, GTK_FILL
,
1874 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
1875 roww
= g_new0(RowWidgets
, 1);
1876 roww
->src
= GEANY_BCS_COUNT
;
1880 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
1882 gint xflags
= (i
== GEANY_BC_COMMAND
) ? GTK_FILL
| GTK_EXPAND
: GTK_FILL
;
1885 if (i
== GEANY_BC_LABEL
)
1887 GtkWidget
*wid
= roww
->entries
[i
] = gtk_button_new();
1888 gtk_button_set_use_underline(GTK_BUTTON(wid
), TRUE
);
1889 gtk_widget_set_tooltip_text(wid
, _("Click to set menu item label"));
1890 g_signal_connect(wid
, "clicked", G_CALLBACK(on_label_button_clicked
), roww
);
1894 roww
->entries
[i
] = gtk_entry_new();
1895 g_signal_connect(roww
->entries
[i
], "focus-in-event", G_CALLBACK(on_entry_focus
), roww
);
1897 gtk_table_attach(table
, roww
->entries
[i
], column
, column
+ 1, row
, row
+ 1, xflags
,
1898 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
1901 clearicon
= gtk_image_new_from_stock(GTK_STOCK_CLEAR
, GTK_ICON_SIZE_MENU
);
1902 clear
= gtk_button_new();
1903 gtk_button_set_image(GTK_BUTTON(clear
), clearicon
);
1904 g_signal_connect(clear
, "clicked", G_CALLBACK(on_clear_dialog_row
), roww
);
1905 gtk_table_attach(table
, clear
, column
, column
+ 1, row
, row
+ 1, GTK_FILL
,
1906 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
1907 roww
->cmdsrc
= bc
= get_build_cmd(doc
, grp
, cmd
, &src
);
1911 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
1913 const gchar
*str
= "";
1917 if ((str
= id_to_str(bc
, i
)) == NULL
)
1919 else if (dst
== src
)
1920 roww
->used_dst
= TRUE
;
1922 set_build_command_entry_text(roww
->entries
[i
], str
);
1924 if (bc
!= NULL
&& (dst
> src
))
1925 set_row_color(roww
, &insensitive_color
);
1926 if (bc
!= NULL
&& (src
> dst
|| (grp
== GEANY_GBG_FT
&& (doc
== NULL
|| doc
->file_type
== NULL
))))
1928 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
1929 gtk_widget_set_sensitive(roww
->entries
[i
], FALSE
);
1930 gtk_widget_set_sensitive(clear
, FALSE
);
1936 typedef struct BuildTableFields
1939 GtkWidget
*fileregex
;
1940 GtkWidget
*nonfileregex
;
1941 gchar
**fileregexstring
;
1942 gchar
**nonfileregexstring
;
1946 GtkWidget
*build_commands_table(GeanyDocument
*doc
, GeanyBuildSource dst
, BuildTableData
*table_data
,
1949 GtkWidget
*label
, *sep
, *clearicon
, *clear
;
1950 BuildTableFields
*fields
;
1954 guint col
, row
, cmdindex
;
1957 gboolean sensitivity
;
1958 guint sep_padding
= entry_y_padding
+ 3;
1960 table
= GTK_TABLE(gtk_table_new(build_items_count
+ 12, 5, FALSE
));
1961 fields
= g_new0(BuildTableFields
, 1);
1962 fields
->rows
= g_new0(RowWidgets
*, build_items_count
);
1963 for (ch
= colheads
, col
= 0; *ch
!= NULL
; ch
++, col
++)
1965 label
= gtk_label_new(_(*ch
));
1966 gtk_table_attach(table
, label
, col
, col
+ 1, 0, 1,
1967 GTK_FILL
, GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
1969 sep
= gtk_separator_new(GTK_ORIENTATION_HORIZONTAL
);
1970 gtk_table_attach(table
, sep
, 0, DC_N_COL
, 1, 2, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
1971 entry_x_padding
, sep_padding
);
1972 if (ft
!= NULL
&& ft
->id
!= GEANY_FILETYPES_NONE
)
1973 txt
= g_strdup_printf(_("%s commands"), ft
->name
);
1975 txt
= g_strdup_printf(_("%s commands"), _("No filetype"));
1977 label
= ui_label_new_bold(txt
);
1979 gtk_misc_set_alignment(GTK_MISC(label
), 0.0, 0.5);
1980 gtk_table_attach(table
, label
, 0, DC_N_COL
, 2, 3, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
1981 entry_x_padding
, entry_y_padding
);
1982 for (row
= 3, cmdindex
= 0, cmd
= 0; cmd
< build_groups_count
[GEANY_GBG_FT
]; ++row
, ++cmdindex
, ++cmd
)
1983 fields
->rows
[cmdindex
] = build_add_dialog_row(doc
, table
, row
, dst
, GEANY_GBG_FT
, cmd
, FALSE
);
1984 label
= gtk_label_new(_("Error regular expression:"));
1985 gtk_table_attach(table
, label
, 0, DC_ENTRIES
+ 1, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
1986 entry_x_padding
, entry_y_padding
);
1987 fields
->fileregex
= gtk_entry_new();
1988 fields
->fileregexstring
= build_get_regex(GEANY_GBG_FT
, NULL
, &src
);
1989 sensitivity
= (ft
== NULL
) ? FALSE
: TRUE
;
1990 if (fields
->fileregexstring
!= NULL
&& *(fields
->fileregexstring
) != NULL
)
1992 gtk_entry_set_text(GTK_ENTRY(fields
->fileregex
), *(fields
->fileregexstring
));
1994 sensitivity
= FALSE
;
1996 gtk_table_attach(table
, fields
->fileregex
, DC_ENTRIES
+ 1, DC_CLEAR
, row
, row
+ 1, GTK_FILL
,
1997 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
1998 clearicon
= gtk_image_new_from_stock(GTK_STOCK_CLEAR
, GTK_ICON_SIZE_MENU
);
1999 clear
= gtk_button_new();
2000 gtk_button_set_image(GTK_BUTTON(clear
), clearicon
);
2001 g_signal_connect_swapped(clear
, "clicked",
2002 G_CALLBACK(on_clear_dialog_regex_row
), (fields
->fileregex
));
2003 gtk_table_attach(table
, clear
, DC_CLEAR
, DC_CLEAR
+ 1, row
, row
+ 1, GTK_FILL
,
2004 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
2005 gtk_widget_set_sensitive(fields
->fileregex
, sensitivity
);
2006 gtk_widget_set_sensitive(clear
, sensitivity
);
2008 sep
= gtk_separator_new(GTK_ORIENTATION_HORIZONTAL
);
2009 gtk_table_attach(table
, sep
, 0, DC_N_COL
, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
2010 entry_x_padding
, sep_padding
);
2012 label
= ui_label_new_bold(_("Independent commands"));
2013 gtk_misc_set_alignment(GTK_MISC(label
), 0.0, 0.5);
2014 gtk_table_attach(table
, label
, 0, DC_N_COL
, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
2015 entry_x_padding
, entry_y_padding
);
2016 for (++row
, cmd
= 0; cmd
< build_groups_count
[GEANY_GBG_NON_FT
]; ++row
, ++cmdindex
, ++cmd
)
2017 fields
->rows
[cmdindex
] = build_add_dialog_row(
2018 doc
, table
, row
, dst
, GEANY_GBG_NON_FT
, cmd
, TRUE
);
2019 label
= gtk_label_new(_("Error regular expression:"));
2020 gtk_table_attach(table
, label
, 0, DC_ENTRIES
+ 1, row
, row
+ 1, GTK_FILL
,
2021 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
2022 fields
->nonfileregex
= gtk_entry_new();
2023 fields
->nonfileregexstring
= build_get_regex(GEANY_GBG_NON_FT
, NULL
, &src
);
2025 if (fields
->nonfileregexstring
!= NULL
&& *(fields
->nonfileregexstring
) != NULL
)
2027 gtk_entry_set_text(GTK_ENTRY(fields
->nonfileregex
), *(fields
->nonfileregexstring
));
2028 sensitivity
= src
> dst
? FALSE
: TRUE
;
2030 gtk_table_attach(table
, fields
->nonfileregex
, DC_ENTRIES
+ 1, DC_CLEAR
, row
, row
+ 1, GTK_FILL
,
2031 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
2032 clearicon
= gtk_image_new_from_stock(GTK_STOCK_CLEAR
, GTK_ICON_SIZE_MENU
);
2033 clear
= gtk_button_new();
2034 gtk_button_set_image(GTK_BUTTON(clear
), clearicon
);
2035 g_signal_connect_swapped(clear
, "clicked",
2036 G_CALLBACK(on_clear_dialog_regex_row
), (fields
->nonfileregex
));
2037 gtk_table_attach(table
, clear
, DC_CLEAR
, DC_CLEAR
+ 1, row
, row
+ 1, GTK_FILL
,
2038 GTK_FILL
| GTK_EXPAND
, entry_x_padding
, entry_y_padding
);
2039 gtk_widget_set_sensitive(fields
->nonfileregex
, sensitivity
);
2040 gtk_widget_set_sensitive(clear
, sensitivity
);
2042 label
= gtk_label_new(NULL
);
2043 ui_label_set_markup(GTK_LABEL(label
), "<i>%s</i>",
2044 _("Note: Item 2 opens a dialog and appends the response to the command."));
2045 gtk_misc_set_alignment(GTK_MISC(label
), 0.0, 0.5);
2046 gtk_table_attach(table
, label
, 0, DC_N_COL
, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
2047 entry_x_padding
, entry_y_padding
);
2049 sep
= gtk_separator_new(GTK_ORIENTATION_HORIZONTAL
);
2050 gtk_table_attach(table
, sep
, 0, DC_N_COL
, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
2051 entry_x_padding
, sep_padding
);
2053 label
= ui_label_new_bold(_("Execute commands"));
2054 gtk_misc_set_alignment(GTK_MISC(label
), 0.0, 0.5);
2055 gtk_table_attach(table
, label
, 0, DC_N_COL
, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
2056 entry_x_padding
, entry_y_padding
);
2057 for (++row
, cmd
= 0; cmd
< build_groups_count
[GEANY_GBG_EXEC
]; ++row
, ++cmdindex
, ++cmd
)
2058 fields
->rows
[cmdindex
] = build_add_dialog_row(doc
, table
, row
, dst
, GEANY_GBG_EXEC
, cmd
, TRUE
);
2059 sep
= gtk_separator_new(GTK_ORIENTATION_HORIZONTAL
);
2060 gtk_table_attach(table
, sep
, 0, DC_N_COL
, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
2061 entry_x_padding
, sep_padding
);
2063 label
= gtk_label_new(NULL
);
2064 ui_label_set_markup(GTK_LABEL(label
), "<i>%s</i>",
2065 _("%d, %e, %f, %p, %l are substituted in command and directory fields, see manual for details."));
2066 gtk_misc_set_alignment(GTK_MISC(label
), 0.0, 0.5);
2067 gtk_table_attach(table
, label
, 0, DC_N_COL
, row
, row
+ 1, GTK_FILL
, GTK_FILL
| GTK_EXPAND
,
2068 entry_x_padding
, entry_y_padding
);
2069 /*printf("%d extra rows in dialog\n", row-build_items_count);*/
2071 *table_data
= fields
;
2072 return GTK_WIDGET(table
);
2076 void build_free_fields(BuildTableData table_data
)
2080 for (cmdindex
= 0; cmdindex
< build_items_count
; ++cmdindex
)
2081 g_free(table_data
->rows
[cmdindex
]);
2082 g_free(table_data
->rows
);
2087 /* string compare where null pointers match null or 0 length strings */
2089 static gint
stcmp(const gchar
*a
, const gchar
*b
)
2091 if (a
== NULL
&& b
== NULL
)
2093 if (a
== NULL
&& b
!= NULL
)
2095 if (a
!= NULL
&& b
== NULL
)
2097 return strcmp(a
, b
);
2102 static const gchar
*get_build_command_entry_text(GtkWidget
*wid
)
2104 if (GTK_IS_BUTTON(wid
))
2105 return gtk_button_get_label(GTK_BUTTON(wid
));
2107 return gtk_entry_get_text(GTK_ENTRY(wid
));
2111 static gboolean
read_row(BuildDestination
*dst
, BuildTableData table_data
, guint drow
, guint grp
, guint cmd
)
2113 gchar
*entries
[GEANY_BC_CMDENTRIES_COUNT
];
2114 gboolean changed
= FALSE
;
2115 enum GeanyBuildCmdEntries i
;
2117 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
2119 entries
[i
] = g_strdup(get_build_command_entry_text(table_data
->rows
[drow
]->entries
[i
]));
2121 if (table_data
->rows
[drow
]->cleared
)
2123 if (dst
->dst
[grp
] != NULL
)
2125 if (*(dst
->dst
[grp
]) == NULL
)
2126 *(dst
->dst
[grp
]) = g_new0(GeanyBuildCommand
, build_groups_count
[grp
]);
2127 (*(dst
->dst
[grp
]))[cmd
].exists
= FALSE
;
2128 (*(dst
->dst
[grp
]))[cmd
].changed
= TRUE
;
2132 if (table_data
->rows
[drow
]->used_dst
== TRUE
)
2134 if (dst
->dst
[grp
] != NULL
)
2136 if (*(dst
->dst
[grp
]) == NULL
)
2137 *(dst
->dst
[grp
]) = g_new0(GeanyBuildCommand
, build_groups_count
[grp
]);
2138 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
2139 set_command(&(*(dst
->dst
[grp
]))[cmd
], i
, entries
[i
]);
2140 (*(dst
->dst
[grp
]))[cmd
].exists
= TRUE
;
2141 (*(dst
->dst
[grp
]))[cmd
].changed
= TRUE
;
2147 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
2154 static gboolean
read_regex(GtkWidget
*regexentry
, gchar
**src
, gchar
**dst
)
2156 gboolean changed
= FALSE
;
2157 const gchar
*reg
= gtk_entry_get_text(GTK_ENTRY(regexentry
));
2159 if (((src
== NULL
/* originally there was no regex */
2160 || *src
== NULL
) /* or it was NULL*/
2161 && !EMPTY(reg
)) /* and something was typed */
2162 || (src
!= NULL
/* originally there was a regex*/
2163 && (*src
== NULL
/* and either it was NULL */
2164 || strcmp(*src
, reg
) != 0))) /* or it has been changed */
2168 SETPTR(*dst
, g_strdup(reg
));
2176 static gboolean
build_read_commands(BuildDestination
*dst
, BuildTableData table_data
, gint response
)
2178 guint cmdindex
, cmd
;
2179 gboolean changed
= FALSE
;
2181 if (response
== GTK_RESPONSE_ACCEPT
)
2183 for (cmdindex
= 0, cmd
= 0; cmd
< build_groups_count
[GEANY_GBG_FT
]; ++cmdindex
, ++cmd
)
2184 changed
|= read_row(dst
, table_data
, cmdindex
, GEANY_GBG_FT
, cmd
);
2185 for (cmd
= 0; cmd
< build_groups_count
[GEANY_GBG_NON_FT
]; ++cmdindex
, ++cmd
)
2186 changed
|= read_row(dst
, table_data
, cmdindex
, GEANY_GBG_NON_FT
, cmd
);
2187 for (cmd
= 0; cmd
< build_groups_count
[GEANY_GBG_EXEC
]; ++cmdindex
, ++cmd
)
2188 changed
|= read_row(dst
, table_data
, cmdindex
, GEANY_GBG_EXEC
, cmd
);
2189 changed
|= read_regex(table_data
->fileregex
, table_data
->fileregexstring
, dst
->fileregexstr
);
2190 changed
|= read_regex(table_data
->nonfileregex
, table_data
->nonfileregexstring
, dst
->nonfileregexstr
);
2196 void build_read_project(GeanyFiletype
*ft
, BuildTableData build_properties
)
2198 BuildDestination menu_dst
;
2202 menu_dst
.dst
[GEANY_GBG_FT
] = &(ft
->priv
->projfilecmds
);
2203 menu_dst
.fileregexstr
= &(ft
->priv
->projerror_regex_string
);
2207 menu_dst
.dst
[GEANY_GBG_FT
] = NULL
;
2208 menu_dst
.fileregexstr
= NULL
;
2210 menu_dst
.dst
[GEANY_GBG_NON_FT
] = &non_ft_proj
;
2211 menu_dst
.dst
[GEANY_GBG_EXEC
] = &exec_proj
;
2212 menu_dst
.nonfileregexstr
= ®ex_proj
;
2214 build_read_commands(&menu_dst
, build_properties
, GTK_RESPONSE_ACCEPT
);
2218 static void show_build_commands_dialog(void)
2220 GtkWidget
*dialog
, *table
, *vbox
;
2221 GeanyDocument
*doc
= document_get_current();
2222 GeanyFiletype
*ft
= NULL
;
2223 const gchar
*title
= _("Set Build Commands");
2225 BuildTableData table_data
;
2226 BuildDestination prefdsts
;
2229 ft
= doc
->file_type
;
2230 dialog
= gtk_dialog_new_with_buttons(title
, GTK_WINDOW(main_widgets
.window
),
2231 GTK_DIALOG_DESTROY_WITH_PARENT
,
2232 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
2233 GTK_STOCK_OK
, GTK_RESPONSE_ACCEPT
, NULL
);
2234 table
= build_commands_table(doc
, GEANY_BCS_PREF
, &table_data
, ft
);
2235 vbox
= ui_dialog_vbox_new(GTK_DIALOG(dialog
));
2236 gtk_box_pack_start(GTK_BOX(vbox
), table
, TRUE
, TRUE
, 0);
2237 gtk_widget_show_all(dialog
);
2238 /* run modally to prevent user changing idx filetype */
2239 response
= gtk_dialog_run(GTK_DIALOG(dialog
));
2241 prefdsts
.dst
[GEANY_GBG_NON_FT
] = &non_ft_pref
;
2244 prefdsts
.dst
[GEANY_GBG_FT
] = &(ft
->priv
->homefilecmds
);
2245 prefdsts
.fileregexstr
= &(ft
->priv
->homeerror_regex_string
);
2246 prefdsts
.dst
[GEANY_GBG_EXEC
] = &(ft
->priv
->homeexeccmds
);
2250 prefdsts
.dst
[GEANY_GBG_FT
] = NULL
;
2251 prefdsts
.fileregexstr
= NULL
;
2252 prefdsts
.dst
[GEANY_GBG_EXEC
] = NULL
;
2254 prefdsts
.nonfileregexstr
= ®ex_pref
;
2255 if (build_read_commands(&prefdsts
, table_data
, response
) && ft
!= NULL
)
2256 filetypes_save_commands(ft
);
2257 build_free_fields(table_data
);
2259 build_menu_update(doc
);
2260 gtk_widget_destroy(dialog
);
2264 /* Creates the relevant build menu if necessary. */
2265 BuildMenuItems
*build_get_menu_items(gint filetype_idx
)
2267 BuildMenuItems
*items
;
2269 items
= &menu_items
;
2270 if (items
->menu
== NULL
)
2271 create_build_menu(items
);
2276 /*----------------------------------------------------------
2278 * Load and store configuration
2280 * ---------------------------------------------------------*/
2281 static const gchar
*build_grp_name
= "build-menu";
2283 /* config format for build-menu group is prefix_gg_nn_xx=value
2284 * where gg = FT, NF, EX for the command group
2285 * nn = 2 digit command number
2286 * xx = LB for label, CM for command and WD for working dir */
2287 static const gchar
*groups
[GEANY_GBG_COUNT
] = { "FT", "NF", "EX" };
2288 static const gchar
*fixedkey
="xx_xx_xx";
2290 #define set_key_grp(key, grp) (key[prefixlen + 0] = grp[0], key[prefixlen + 1] = grp[1])
2291 #define set_key_cmd(key, cmd) (key[prefixlen + 3] = cmd[0], key[prefixlen + 4] = cmd[1])
2292 #define set_key_fld(key, fld) (key[prefixlen + 6] = fld[0], key[prefixlen + 7] = fld[1])
2294 static void build_load_menu_grp(GKeyFile
*config
, GeanyBuildCommand
**dst
, gint grp
,
2295 gchar
*prefix
, gboolean loc
)
2298 gsize prefixlen
; /* NOTE prefixlen used in macros above */
2299 GeanyBuildCommand
*dstcmd
;
2301 static gchar cmdbuf
[4] = " ";
2304 *dst
= g_new0(GeanyBuildCommand
, build_groups_count
[grp
]);
2306 prefixlen
= prefix
== NULL
? 0 : strlen(prefix
);
2307 key
= g_strconcat(prefix
== NULL
? "" : prefix
, fixedkey
, NULL
);
2308 for (cmd
= 0; cmd
< build_groups_count
[grp
]; ++cmd
)
2312 break; /* ensure no buffer overflow */
2313 sprintf(cmdbuf
, "%02u", cmd
);
2314 set_key_grp(key
, groups
[grp
]);
2315 set_key_cmd(key
, cmdbuf
);
2316 set_key_fld(key
, "LB");
2318 label
= g_key_file_get_locale_string(config
, build_grp_name
, key
, NULL
, NULL
);
2320 label
= g_key_file_get_string(config
, build_grp_name
, key
, NULL
);
2323 dstcmd
[cmd
].exists
= TRUE
;
2324 SETPTR(dstcmd
[cmd
].label
, label
);
2325 set_key_fld(key
,"CM");
2326 SETPTR(dstcmd
[cmd
].command
,
2327 g_key_file_get_string(config
, build_grp_name
, key
, NULL
));
2328 set_key_fld(key
,"WD");
2329 SETPTR(dstcmd
[cmd
].working_dir
,
2330 g_key_file_get_string(config
, build_grp_name
, key
, NULL
));
2332 else dstcmd
[cmd
].exists
= FALSE
;
2338 /* set GeanyBuildCommand if it doesn't already exist and there is a command */
2339 static void assign_cmd(GeanyBuildCommand
*type
, guint id
,
2340 const gchar
*label
, gchar
*value
)
2342 if (!EMPTY(value
) && ! type
[GBO_TO_CMD(id
)].exists
)
2344 type
[GBO_TO_CMD(id
)].exists
= TRUE
;
2345 SETPTR(type
[GBO_TO_CMD(id
)].label
, g_strdup(label
));
2346 SETPTR(type
[GBO_TO_CMD(id
)].command
, value
);
2347 SETPTR(type
[GBO_TO_CMD(id
)].working_dir
, NULL
);
2348 type
[GBO_TO_CMD(id
)].old
= TRUE
;
2354 /* for the specified source load new format build menu items or try to make some sense of
2355 * old format setings, not done perfectly but better than ignoring them */
2356 void build_load_menu(GKeyFile
*config
, GeanyBuildSource src
, gpointer p
)
2361 gchar
*value
, *basedir
, *makebasedir
;
2362 gboolean bvalue
= FALSE
;
2364 if (g_key_file_has_group(config
, build_grp_name
))
2369 ft
= (GeanyFiletype
*)p
;
2372 build_load_menu_grp(config
, &(ft
->priv
->filecmds
), GEANY_GBG_FT
, NULL
, TRUE
);
2373 build_load_menu_grp(config
, &(ft
->priv
->ftdefcmds
), GEANY_GBG_NON_FT
, NULL
, TRUE
);
2374 build_load_menu_grp(config
, &(ft
->priv
->execcmds
), GEANY_GBG_EXEC
, NULL
, TRUE
);
2375 SETPTR(ft
->error_regex_string
,
2376 g_key_file_get_string(config
, build_grp_name
, "error_regex", NULL
));
2378 case GEANY_BCS_HOME_FT
:
2379 ft
= (GeanyFiletype
*)p
;
2382 build_load_menu_grp(config
, &(ft
->priv
->homefilecmds
), GEANY_GBG_FT
, NULL
, FALSE
);
2383 build_load_menu_grp(config
, &(ft
->priv
->homeexeccmds
), GEANY_GBG_EXEC
, NULL
, FALSE
);
2384 SETPTR(ft
->priv
->homeerror_regex_string
,
2385 g_key_file_get_string(config
, build_grp_name
, "error_regex", NULL
));
2387 case GEANY_BCS_PREF
:
2388 build_load_menu_grp(config
, &non_ft_pref
, GEANY_GBG_NON_FT
, NULL
, FALSE
);
2389 build_load_menu_grp(config
, &exec_pref
, GEANY_GBG_EXEC
, NULL
, FALSE
);
2390 SETPTR(regex_pref
, g_key_file_get_string(config
, build_grp_name
, "error_regex", NULL
));
2392 case GEANY_BCS_PROJ
:
2393 build_load_menu_grp(config
, &non_ft_proj
, GEANY_GBG_NON_FT
, NULL
, FALSE
);
2394 build_load_menu_grp(config
, &exec_proj
, GEANY_GBG_EXEC
, NULL
, FALSE
);
2395 SETPTR(regex_proj
, g_key_file_get_string(config
, build_grp_name
, "error_regex", NULL
));
2396 pj
= (GeanyProject
*)p
;
2399 ftlist
= g_key_file_get_string_list(config
, build_grp_name
, "filetypes", NULL
, NULL
);
2403 if (pj
->priv
->build_filetypes_list
== NULL
)
2404 pj
->priv
->build_filetypes_list
= g_ptr_array_new();
2405 g_ptr_array_set_size(pj
->priv
->build_filetypes_list
, 0);
2406 for (ftname
= ftlist
; *ftname
!= NULL
; ++ftname
)
2408 ft
= filetypes_lookup_by_name(*ftname
);
2411 gchar
*regkey
= g_strdup_printf("%serror_regex", *ftname
);
2412 g_ptr_array_add(pj
->priv
->build_filetypes_list
, ft
);
2413 SETPTR(ft
->priv
->projerror_regex_string
,
2414 g_key_file_get_string(config
, build_grp_name
, regkey
, NULL
));
2416 build_load_menu_grp(config
, &(ft
->priv
->projfilecmds
), GEANY_GBG_FT
, *ftname
, FALSE
);
2417 build_load_menu_grp(config
, &(ft
->priv
->projexeccmds
), GEANY_GBG_EXEC
, *ftname
, FALSE
);
2423 default: /* defaults don't load from config, see build_init */
2428 /* load old [build_settings] values if there is no value defined by [build-menu] */
2433 ft
= (GeanyFiletype
*)p
;
2434 value
= g_key_file_get_string(config
, "build_settings", "compiler", NULL
);
2437 if (ft
->priv
->filecmds
== NULL
)
2438 ft
->priv
->filecmds
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_FT
]);
2439 assign_cmd(ft
->priv
->filecmds
, GEANY_GBO_COMPILE
, _("_Compile"), value
);
2441 value
= g_key_file_get_string(config
, "build_settings", "linker", NULL
);
2444 if (ft
->priv
->filecmds
== NULL
)
2445 ft
->priv
->filecmds
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_FT
]);
2446 assign_cmd(ft
->priv
->filecmds
, GEANY_GBO_BUILD
, _("_Build"), value
);
2448 value
= g_key_file_get_string(config
, "build_settings", "run_cmd", NULL
);
2451 if (ft
->priv
->execcmds
== NULL
)
2452 ft
->priv
->execcmds
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_EXEC
]);
2453 assign_cmd(ft
->priv
->execcmds
, GEANY_GBO_EXEC
, _("_Execute"), value
);
2455 if (ft
->error_regex_string
== NULL
)
2456 ft
->error_regex_string
= g_key_file_get_string(config
, "build_settings", "error_regex", NULL
);
2458 case GEANY_BCS_PROJ
:
2459 if (non_ft_pref
== NULL
)
2460 non_ft_pref
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_NON_FT
]);
2461 basedir
= project_get_base_path();
2462 if (basedir
== NULL
)
2463 basedir
= g_strdup("%d");
2464 bvalue
= g_key_file_get_boolean(config
, "project", "make_in_base_path", NULL
);
2466 makebasedir
= g_strdup(basedir
);
2468 makebasedir
= g_strdup("%d");
2469 if (non_ft_pref
[GBO_TO_CMD(GEANY_GBO_MAKE_ALL
)].old
)
2470 SETPTR(non_ft_pref
[GBO_TO_CMD(GEANY_GBO_MAKE_ALL
)].working_dir
, g_strdup(makebasedir
));
2471 if (non_ft_pref
[GBO_TO_CMD(GEANY_GBO_CUSTOM
)].old
)
2472 SETPTR(non_ft_pref
[GBO_TO_CMD(GEANY_GBO_CUSTOM
)].working_dir
, g_strdup(makebasedir
));
2473 if (non_ft_pref
[GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT
)].old
)
2474 SETPTR(non_ft_pref
[GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT
)].working_dir
, g_strdup("%d"));
2475 value
= g_key_file_get_string(config
, "project", "run_cmd", NULL
);
2478 if (exec_proj
== NULL
)
2479 exec_proj
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_EXEC
]);
2480 if (! exec_proj
[GBO_TO_CMD(GEANY_GBO_EXEC
)].exists
)
2482 exec_proj
[GBO_TO_CMD(GEANY_GBO_EXEC
)].exists
= TRUE
;
2483 SETPTR(exec_proj
[GBO_TO_CMD(GEANY_GBO_EXEC
)].label
, g_strdup(_("_Execute")));
2484 SETPTR(exec_proj
[GBO_TO_CMD(GEANY_GBO_EXEC
)].command
, value
);
2485 SETPTR(exec_proj
[GBO_TO_CMD(GEANY_GBO_EXEC
)].working_dir
, g_strdup(basedir
));
2486 exec_proj
[GBO_TO_CMD(GEANY_GBO_EXEC
)].old
= TRUE
;
2489 g_free(makebasedir
);
2492 case GEANY_BCS_PREF
:
2493 value
= g_key_file_get_string(config
, "tools", "make_cmd", NULL
);
2496 if (non_ft_pref
== NULL
)
2497 non_ft_pref
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_NON_FT
]);
2498 assign_cmd(non_ft_pref
, GEANY_GBO_CUSTOM
, _("Make Custom _Target..."),
2499 g_strdup_printf("%s ", value
));
2500 assign_cmd(non_ft_pref
, GEANY_GBO_MAKE_OBJECT
, _("Make _Object"),
2501 g_strdup_printf("%s %%e.o",value
));
2502 assign_cmd(non_ft_pref
, GEANY_GBO_MAKE_ALL
, _("_Make"), value
);
2511 static guint
build_save_menu_grp(GKeyFile
*config
, GeanyBuildCommand
*src
, gint grp
, gchar
*prefix
)
2514 gsize prefixlen
; /* NOTE prefixlen used in macros above */
2517 enum GeanyBuildCmdEntries i
;
2521 prefixlen
= prefix
== NULL
? 0 : strlen(prefix
);
2522 key
= g_strconcat(prefix
== NULL
? "" : prefix
, fixedkey
, NULL
);
2523 for (cmd
= 0; cmd
< build_groups_count
[grp
]; ++cmd
)
2525 if (src
[cmd
].exists
) ++count
;
2526 if (src
[cmd
].changed
)
2528 static gchar cmdbuf
[4] = " ";
2530 break; /* ensure no buffer overflow */
2531 sprintf(cmdbuf
, "%02u", cmd
);
2532 set_key_grp(key
, groups
[grp
]);
2533 set_key_cmd(key
, cmdbuf
);
2534 if (src
[cmd
].exists
)
2536 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
2538 set_key_fld(key
, config_keys
[i
]);
2539 g_key_file_set_string(config
, build_grp_name
, key
, id_to_str(&src
[cmd
], i
));
2544 for (i
= 0; i
< GEANY_BC_CMDENTRIES_COUNT
; i
++)
2546 set_key_fld(key
, config_keys
[i
]);
2547 g_key_file_remove_key(config
, build_grp_name
, key
, NULL
);
2557 static gboolean
save_project_filetype(GeanyFiletype
*ft
, GKeyFile
*config
)
2560 gchar
*regkey
= g_strdup_printf("%serror_regex", ft
->name
);
2562 i
+= build_save_menu_grp(config
, ft
->priv
->projfilecmds
, GEANY_GBG_FT
, ft
->name
);
2563 i
+= build_save_menu_grp(config
, ft
->priv
->projexeccmds
, GEANY_GBG_EXEC
, ft
->name
);
2564 if (!EMPTY(ft
->priv
->projerror_regex_string
))
2566 g_key_file_set_string(config
, build_grp_name
, regkey
, ft
->priv
->projerror_regex_string
);
2570 g_key_file_remove_key(config
, build_grp_name
, regkey
, NULL
);
2575 /* TODO: untyped ptr is too ugly (also for build_load_menu) */
2576 void build_save_menu(GKeyFile
*config
, gpointer ptr
, GeanyBuildSource src
)
2583 case GEANY_BCS_HOME_FT
:
2584 ft
= (GeanyFiletype
*)ptr
;
2587 build_save_menu_grp(config
, ft
->priv
->homefilecmds
, GEANY_GBG_FT
, NULL
);
2588 build_save_menu_grp(config
, ft
->priv
->homeexeccmds
, GEANY_GBG_EXEC
, NULL
);
2589 if (!EMPTY(ft
->priv
->homeerror_regex_string
))
2590 g_key_file_set_string(config
, build_grp_name
, "error_regex", ft
->priv
->homeerror_regex_string
);
2592 g_key_file_remove_key(config
, build_grp_name
, "error_regex", NULL
);
2594 case GEANY_BCS_PREF
:
2595 build_save_menu_grp(config
, non_ft_pref
, GEANY_GBG_NON_FT
, NULL
);
2596 build_save_menu_grp(config
, exec_pref
, GEANY_GBG_EXEC
, NULL
);
2597 if (!EMPTY(regex_pref
))
2598 g_key_file_set_string(config
, build_grp_name
, "error_regex", regex_pref
);
2600 g_key_file_remove_key(config
, build_grp_name
, "error_regex", NULL
);
2602 case GEANY_BCS_PROJ
:
2603 pj
= (GeanyProject
*)ptr
;
2604 build_save_menu_grp(config
, non_ft_proj
, GEANY_GBG_NON_FT
, NULL
);
2605 build_save_menu_grp(config
, exec_proj
, GEANY_GBG_EXEC
, NULL
);
2606 if (!EMPTY(regex_proj
))
2607 g_key_file_set_string(config
, build_grp_name
, "error_regex", regex_proj
);
2609 g_key_file_remove_key(config
, build_grp_name
, "error_regex", NULL
);
2610 if (pj
->priv
->build_filetypes_list
!= NULL
)
2612 GPtrArray
*ft_names
= g_ptr_array_new();
2613 const GPtrArray
*build_fts
= pj
->priv
->build_filetypes_list
;
2615 for (guint i
= 0; i
< build_fts
->len
; i
++)
2617 ft
= build_fts
->pdata
[i
];
2618 if (save_project_filetype(ft
, config
))
2619 g_ptr_array_add(ft_names
, ft
->name
);
2621 if (ft_names
->pdata
!= NULL
)
2622 g_key_file_set_string_list(config
, build_grp_name
, "filetypes",
2623 (const gchar
**)ft_names
->pdata
, ft_names
->len
);
2625 g_key_file_remove_key(config
, build_grp_name
, "filetypes", NULL
);
2626 g_ptr_array_free(ft_names
, TRUE
);
2629 default: /* defaults and GEANY_BCS_FT can't save */
2635 /* FIXME: count is int only because calling code doesn't handle checking its value itself */
2636 void build_set_group_count(GeanyBuildGroup grp
, gint count
)
2640 g_return_if_fail(count
>= 0);
2642 if ((guint
) count
> build_groups_count
[grp
])
2643 build_groups_count
[grp
] = (guint
) count
;
2644 for (i
= 0, sum
= 0; i
< GEANY_GBG_COUNT
; ++i
)
2645 sum
+= build_groups_count
[i
];
2646 build_items_count
= sum
;
2650 /** Get the count of commands for the group
2652 * Get the number of commands in the group specified by @a grp.
2654 * @param grp the group of the specified menu item.
2656 * @return a count of the number of commands in the group
2660 guint
build_get_group_count(const GeanyBuildGroup grp
)
2662 g_return_val_if_fail(grp
< GEANY_GBG_COUNT
, 0);
2663 return build_groups_count
[grp
];
2667 static void on_project_close(void)
2669 /* remove project regexen */
2670 SETPTR(regex_proj
, NULL
);
2677 const gchar
*command
;
2678 const gchar
*working_dir
;
2679 GeanyBuildCommand
**ptr
;
2681 } default_cmds
[] = {
2682 { N_("_Make"), "make", NULL
, &non_ft_def
, GBO_TO_CMD(GEANY_GBO_MAKE_ALL
)},
2683 { N_("Make Custom _Target..."), "make ", NULL
, &non_ft_def
, GBO_TO_CMD(GEANY_GBO_CUSTOM
)},
2684 { N_("Make _Object"), "make %e.o", NULL
, &non_ft_def
, GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT
)},
2685 { N_("_Execute"), "./%e", NULL
, &exec_def
, GBO_TO_CMD(GEANY_GBO_EXEC
)},
2686 { NULL
, NULL
, NULL
, NULL
, 0 }
2690 void build_init(void)
2693 GtkWidget
*toolmenu
;
2696 g_signal_connect(geany_object
, "project-close", on_project_close
, NULL
);
2698 ft_def
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_FT
]);
2699 non_ft_def
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_NON_FT
]);
2700 exec_def
= g_new0(GeanyBuildCommand
, build_groups_count
[GEANY_GBG_EXEC
]);
2701 run_info
= g_new0(RunInfo
, build_groups_count
[GEANY_GBG_EXEC
]);
2703 for (cmdindex
= 0; default_cmds
[cmdindex
].command
!= NULL
; ++cmdindex
)
2705 GeanyBuildCommand
*cmd
= &((*(default_cmds
[cmdindex
].ptr
))[ default_cmds
[cmdindex
].index
]);
2707 cmd
->label
= g_strdup(_(default_cmds
[cmdindex
].label
));
2708 cmd
->command
= g_strdup(default_cmds
[cmdindex
].command
);
2709 cmd
->working_dir
= g_strdup(default_cmds
[cmdindex
].working_dir
);
2712 /* create the toolbar Build item sub menu */
2713 toolmenu
= gtk_menu_new();
2714 g_object_ref(toolmenu
);
2716 /* build the code */
2717 item
= ui_image_menu_item_new(GEANY_STOCK_BUILD
, _("_Build"));
2718 gtk_widget_show(item
);
2719 gtk_container_add(GTK_CONTAINER(toolmenu
), item
);
2720 g_signal_connect(item
, "activate", G_CALLBACK(on_toolbutton_build_activate
),
2721 GBO_TO_POINTER(GEANY_GBO_BUILD
));
2722 widgets
.toolitem_build
= item
;
2724 item
= gtk_separator_menu_item_new();
2725 gtk_widget_show(item
);
2726 gtk_container_add(GTK_CONTAINER(toolmenu
), item
);
2728 /* build the code with make all */
2729 item
= gtk_image_menu_item_new_with_mnemonic(_("_Make All"));
2730 gtk_widget_show(item
);
2731 gtk_container_add(GTK_CONTAINER(toolmenu
), item
);
2732 g_signal_connect(item
, "activate", G_CALLBACK(on_toolbutton_make_activate
),
2733 GBO_TO_POINTER(GEANY_GBO_MAKE_ALL
));
2734 widgets
.toolitem_make_all
= item
;
2736 /* build the code with make custom */
2737 item
= gtk_image_menu_item_new_with_mnemonic(_("Make Custom _Target..."));
2738 gtk_widget_show(item
);
2739 gtk_container_add(GTK_CONTAINER(toolmenu
), item
);
2740 g_signal_connect(item
, "activate", G_CALLBACK(on_toolbutton_make_activate
),
2741 GBO_TO_POINTER(GEANY_GBO_CUSTOM
));
2742 widgets
.toolitem_make_custom
= item
;
2744 /* build the code with make object */
2745 item
= gtk_image_menu_item_new_with_mnemonic(_("Make _Object"));
2746 gtk_widget_show(item
);
2747 gtk_container_add(GTK_CONTAINER(toolmenu
), item
);
2748 g_signal_connect(item
, "activate", G_CALLBACK(on_toolbutton_make_activate
),
2749 GBO_TO_POINTER(GEANY_GBO_MAKE_OBJECT
));
2750 widgets
.toolitem_make_object
= item
;
2752 item
= gtk_separator_menu_item_new();
2753 gtk_widget_show(item
);
2754 gtk_container_add(GTK_CONTAINER(toolmenu
), item
);
2757 item
= ui_image_menu_item_new(GTK_STOCK_PREFERENCES
, _("_Set Build Commands"));
2758 gtk_widget_show(item
);
2759 gtk_container_add(GTK_CONTAINER(toolmenu
), item
);
2760 g_signal_connect(item
, "activate", G_CALLBACK(on_set_build_commands_activate
), NULL
);
2761 widgets
.toolitem_set_args
= item
;
2763 /* get toolbar action pointers */
2764 widgets
.build_action
= toolbar_get_action_by_name("Build");
2765 widgets
.compile_action
= toolbar_get_action_by_name("Compile");
2766 widgets
.run_action
= toolbar_get_action_by_name("Run");
2767 widgets
.toolmenu
= toolmenu
;
2768 /* set the submenu to the toolbar item */
2769 geany_menu_button_action_set_menu(GEANY_MENU_BUTTON_ACTION(widgets
.build_action
), toolmenu
);
2773 gboolean
build_keybinding(guint key_id
)
2776 BuildMenuItems
*menu_items
;
2777 GeanyDocument
*doc
= document_get_current();
2782 if (!gtk_widget_is_sensitive(ui_lookup_widget(main_widgets
.window
, "menu_build1")))
2785 menu_items
= build_get_menu_items(doc
->file_type
->id
);
2786 /* TODO make it a table??*/
2789 case GEANY_KEYS_BUILD_COMPILE
:
2790 item
= menu_items
->menu_item
[GEANY_GBG_FT
][GBO_TO_CMD(GEANY_GBO_COMPILE
)];
2792 case GEANY_KEYS_BUILD_LINK
:
2793 item
= menu_items
->menu_item
[GEANY_GBG_FT
][GBO_TO_CMD(GEANY_GBO_BUILD
)];
2795 case GEANY_KEYS_BUILD_MAKE
:
2796 item
= menu_items
->menu_item
[GEANY_GBG_NON_FT
][GBO_TO_CMD(GEANY_GBO_MAKE_ALL
)];
2798 case GEANY_KEYS_BUILD_MAKEOWNTARGET
:
2799 item
= menu_items
->menu_item
[GEANY_GBG_NON_FT
][GBO_TO_CMD(GEANY_GBO_CUSTOM
)];
2801 case GEANY_KEYS_BUILD_MAKEOBJECT
:
2802 item
= menu_items
->menu_item
[GEANY_GBG_NON_FT
][GBO_TO_CMD(GEANY_GBO_MAKE_OBJECT
)];
2804 case GEANY_KEYS_BUILD_NEXTERROR
:
2805 item
= menu_items
->menu_item
[GBG_FIXED
][GBF_NEXT_ERROR
];
2807 case GEANY_KEYS_BUILD_PREVIOUSERROR
:
2808 item
= menu_items
->menu_item
[GBG_FIXED
][GBF_PREV_ERROR
];
2810 case GEANY_KEYS_BUILD_RUN
:
2811 item
= menu_items
->menu_item
[GEANY_GBG_EXEC
][GBO_TO_CMD(GEANY_GBO_EXEC
)];
2813 case GEANY_KEYS_BUILD_OPTIONS
:
2814 item
= menu_items
->menu_item
[GBG_FIXED
][GBF_COMMANDS
];
2819 /* Note: For Build menu items it's OK (at the moment) to assume they are in the correct
2820 * sensitive state, but some other menus don't update the sensitive status until
2821 * they are redrawn. */
2822 if (item
&& gtk_widget_is_sensitive(item
))
2823 gtk_menu_item_activate(GTK_MENU_ITEM(item
));