GnuCash c935c2f+
Loading...
Searching...
No Matches
dialog-file-access.c
1/********************************************************************\
2 * dialog-file-access.c -- dialog for opening a file or making a *
3 * connection to a libdbi database *
4 * *
5 * Copyright (C) 2009 Phil Longstaff (plongstaff@rogers.com) *
6 * *
7 * This program is free software; you can redistribute it and/or *
8 * modify it under the terms of the GNU General Public License as *
9 * published by the Free Software Foundation; either version 2 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License*
18 * along with this program; if not, contact: *
19 * *
20 * Free Software Foundation Voice: +1-617-542-5942 *
21 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
22 * Boston, MA 02110-1301, USA gnu@gnu.org *
23\********************************************************************/
24
25#include <config.h>
26
27#include <gtk/gtk.h>
28#include <glib/gi18n.h>
29
30#include "gnc-ui.h"
31#include "gnc-ui-util.h"
32#include "gnc-uri-utils.h"
33#include "dialog-utils.h"
34#include "dialog-file-access.h"
35#include "gnc-file.h"
37#include "gnc-session.h"
38
39static QofLogModule log_module = GNC_MOD_GUI;
40
41/* MariaDB/MySQL/Postgres optimize localhost to a unix socket but
42 * flatpak won't connect to unix sockets without gymnastics default to
43 * the localhost IP to force a network connection.
44 */
45#define DEFAULT_HOST "127.0.0.1"
46#define DEFAULT_DATABASE PROJECT_NAME
47#define FILE_ACCESS_OPEN 0
48#define FILE_ACCESS_SAVE_AS 1
49#define FILE_ACCESS_EXPORT 2
50
51typedef struct FileAccessWindow
52{
53 /* Parts of the dialog */
54 int type;
55
56 GtkWidget *dialog;
57 GtkWidget *frame_file;
58 GtkWidget *frame_database;
59 GtkWidget *readonly_checkbutton;
60 GtkFileChooser *fileChooser;
61 gchar *starting_dir;
62 GtkComboBoxText *cb_uri_type;
63 GtkEntry *tf_host;
64 GtkEntry *tf_database;
65 GtkEntry *tf_username;
66 GtkEntry *tf_password;
67 GtkEntry *tf_port;
69
70void gnc_ui_file_access_file_activated_cb( GtkFileChooser *chooser,
71 FileAccessWindow *faw );
72void gnc_ui_file_access_response_cb( GtkDialog *, gint, GtkDialog * );
73static void cb_uri_type_changed_cb( GtkComboBoxText* cb );
74static void port_insert_text_cb( GtkEditable *editable, const gchar *text,
75 gint length, gint *position, gpointer data );
76
77static gchar*
78geturl( FileAccessWindow* faw )
79{
80 gchar* url = NULL;
81 const gchar* host = NULL;
82 const gchar* username = NULL;
83 const gchar* password = NULL;
84 /* Not const as return value of gtk_combo_box_text_get_active_text must be freed */
85 gchar* type = NULL;
86 /* Not const as return value of gtk_file_chooser_get_filename must be freed */
87 gchar* path = NULL;
88 gint32 port = 0;
89 const gchar* port_text = NULL;
90
91 type = gtk_combo_box_text_get_active_text (faw->cb_uri_type);
92 if (gnc_uri_is_file_scheme (type))
93 {
94 path = gtk_file_chooser_get_filename (faw->fileChooser);
95 if ( !path ) /* file protocol was chosen but no filename was set */
96 {
97 g_free (type);
98 return NULL;
99 }
100 }
101 else /* db protocol was chosen */
102 {
103 host = gtk_entry_get_text( faw->tf_host );
104 path = g_strdup(gtk_entry_get_text(faw->tf_database));
105 username = gtk_entry_get_text( faw->tf_username );
106 password = gtk_entry_get_text( faw->tf_password );
107 }
108
109 g_assert (faw->tf_port != NULL);
110 port_text = gtk_entry_get_text (faw->tf_port);
111 if (port_text && *port_text)
112 port = atoi (port_text) & 0xffff;
113
114 url = gnc_uri_create_uri (type, host, port, username, password, path);
115
116 g_free (type);
117 g_free (path);
118
119 return url;
120}
121
122void
123gnc_ui_file_access_file_activated_cb( GtkFileChooser *chooser, FileAccessWindow *faw )
124{
125 g_return_if_fail( chooser != NULL );
126
127 gnc_ui_file_access_response_cb( GTK_DIALOG(faw->dialog), GTK_RESPONSE_OK, NULL );
128}
129
130void
131gnc_ui_file_access_response_cb(GtkDialog *dialog, gint response, GtkDialog *unused)
132{
133 FileAccessWindow* faw;
134 gchar* url;
135
136 g_return_if_fail( dialog != NULL );
137
138 faw = g_object_get_data( G_OBJECT(dialog), "FileAccessWindow" );
139 g_return_if_fail( faw != NULL );
140
141 switch ( response )
142 {
143 case GTK_RESPONSE_HELP:
144 gnc_gnome_help (GTK_WINDOW(dialog), DF_MANUAL, DL_GLOBPREFS );
145 break;
146
147 case GTK_RESPONSE_OK:
148 url = geturl( faw );
149 if ( url == NULL )
150 {
151 return;
152 }
153 if (g_str_has_prefix (url, "file://"))
154 {
155 if ( g_file_test (gnc_uri_get_path (url), G_FILE_TEST_IS_DIR))
156 {
157 gtk_file_chooser_set_current_folder_uri( faw->fileChooser, url );
158 return;
159 }
160 }
161 if ( faw->type == FILE_ACCESS_OPEN )
162 {
163 gboolean open_readonly = faw->readonly_checkbutton
164 ? gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(faw->readonly_checkbutton))
165 : FALSE;
166 gnc_file_open_file (GTK_WINDOW(dialog), url, open_readonly);
167 }
168 else if ( faw->type == FILE_ACCESS_SAVE_AS )
169 {
170 gnc_file_do_save_as (GTK_WINDOW(dialog), url);
171 }
172 else if ( faw->type == FILE_ACCESS_EXPORT )
173 {
174 gnc_file_do_export (GTK_WINDOW(dialog), url);
175 }
176 break;
177
178 case GTK_RESPONSE_CANCEL:
179 case GTK_RESPONSE_DELETE_EVENT:
180 break;
181
182 default:
183 PERR( "Invalid response" );
184 break;
185 }
186
187 if ( response != GTK_RESPONSE_HELP )
188 {
189 gtk_widget_destroy( GTK_WIDGET(dialog) );
190 }
191}
192
193/* Activate the file chooser and deactivate the db selection fields */
194static void
195set_widget_sensitivity( FileAccessWindow* faw, gboolean is_file_based_uri )
196{
197 if (is_file_based_uri)
198 {
199 gtk_widget_show(faw->frame_file);
200 gtk_widget_hide(faw->frame_database);
201 gtk_file_chooser_set_current_folder(faw->fileChooser, faw->starting_dir);
202 }
203 else
204 {
205 gtk_widget_show(faw->frame_database);
206 gtk_widget_hide(faw->frame_file);
207 }
208// gtk_widget_set_sensitive( faw->frame_file, is_file_based_uri );
209// gtk_widget_set_sensitive( faw->frame_database, !is_file_based_uri );
210}
211
212static void
213set_widget_sensitivity_for_uri_type( FileAccessWindow* faw, const gchar* uri_type )
214{
215 if ( strcmp( uri_type, "file" ) == 0 || strcmp( uri_type, "xml" ) == 0
216 || strcmp( uri_type, "sqlite3" ) == 0 )
217 {
218 set_widget_sensitivity( faw, /* is_file_based_uri */ TRUE );
219 }
220 else if ( strcmp( uri_type, "mysql" ) == 0 || strcmp( uri_type, "postgres" ) == 0 )
221 {
222 set_widget_sensitivity( faw, /* is_file_based_uri */ FALSE );
223 gtk_entry_set_placeholder_text( faw->tf_port,
224 strcmp( uri_type, "mysql" ) == 0 ? _("Default: 3306") : _("Default: 5432") );
225 }
226 else
227 {
228 g_assert( FALSE );
229 }
230}
231
232static void
233port_insert_text_cb( GtkEditable *editable, const gchar *text, gint length,
234 gint *position, gpointer data )
235{
236 for ( gint i = 0; i < length; i++ )
237 {
238 if ( !g_ascii_isdigit( text[i] ) )
239 {
240 g_signal_stop_emission_by_name( G_OBJECT(editable), "insert-text" );
241 return;
242 }
243 }
244}
245
246static void
247cb_uri_type_changed_cb( GtkComboBoxText* cb )
248{
249 GtkWidget* dialog;
250 FileAccessWindow* faw;
251 const gchar* type;
252
253 g_return_if_fail( cb != NULL );
254
255 dialog = gtk_widget_get_toplevel( GTK_WIDGET(cb) );
256 g_return_if_fail( dialog != NULL );
257 faw = g_object_get_data( G_OBJECT(dialog), "FileAccessWindow" );
258 g_return_if_fail( faw != NULL );
259
260 type = gtk_combo_box_text_get_active_text( cb );
261 set_widget_sensitivity_for_uri_type( faw, type );
262}
263
264static const char*
265get_default_database( void )
266{
267 const gchar* default_db;
268
269 default_db = g_getenv( "GNC_DEFAULT_DATABASE" );
270 if ( default_db == NULL )
271 {
272 default_db = DEFAULT_DATABASE;
273 }
274
275 return default_db;
276}
277
278static void free_file_access_window (FileAccessWindow *faw)
279{
280 g_free (faw->starting_dir);
281 g_free (faw);
282}
283
284static void
285gnc_ui_file_access (GtkWindow *parent, int type)
286{
287 FileAccessWindow *faw;
288 GtkBuilder* builder;
289 GtkButton* op;
290 GtkWidget* file_chooser;
291 GtkFileChooserWidget* fileChooser;
292 GtkFileChooserAction fileChooserAction = GTK_FILE_CHOOSER_ACTION_OPEN;
293 GList* list;
294 GList* node;
295 GtkWidget* uri_type_container;
296 gboolean need_access_method_file = FALSE;
297 gboolean need_access_method_mysql = FALSE;
298 gboolean need_access_method_postgres = FALSE;
299 gboolean need_access_method_sqlite3 = FALSE;
300 gboolean need_access_method_xml = FALSE;
301 gint access_method_index = -1;
302 gint active_access_method_index = -1;
303 const gchar* default_db;
304 const gchar *button_label = NULL;
305 const gchar *settings_section = NULL;
306 gchar *last;
307
308 g_return_if_fail( type == FILE_ACCESS_OPEN || type == FILE_ACCESS_SAVE_AS || type == FILE_ACCESS_EXPORT );
309
310 faw = g_new0(FileAccessWindow, 1);
311 g_return_if_fail( faw != NULL );
312
313 faw->type = type;
314 faw->starting_dir = NULL;
315
316 /* Open the dialog */
317 builder = gtk_builder_new();
318 gnc_builder_add_from_file (builder, "dialog-file-access.glade", "file_access_dialog" );
319 faw->dialog = GTK_WIDGET(gtk_builder_get_object (builder, "file_access_dialog" ));
320 gtk_window_set_transient_for (GTK_WINDOW (faw->dialog), parent);
321 g_object_set_data_full (G_OBJECT(faw->dialog), "FileAccessWindow", faw,
322 (GDestroyNotify)free_file_access_window);
323
324 // Set the name for this dialog so it can be easily manipulated with css
325 gtk_widget_set_name (GTK_WIDGET(faw->dialog), "gnc-id-file-access");
326
327 faw->frame_file = GTK_WIDGET(gtk_builder_get_object (builder, "frame_file" ));
328 faw->frame_database = GTK_WIDGET(gtk_builder_get_object (builder, "frame_database" ));
329 faw->readonly_checkbutton = GTK_WIDGET(gtk_builder_get_object (builder, "readonly_checkbutton"));
330 faw->tf_host = GTK_ENTRY(gtk_builder_get_object (builder, "tf_host" ));
331 gtk_entry_set_text( faw->tf_host, DEFAULT_HOST );
332 faw->tf_database = GTK_ENTRY(gtk_builder_get_object (builder, "tf_database" ));
333 default_db = get_default_database();
334 gtk_entry_set_text( faw->tf_database, default_db );
335 faw->tf_username = GTK_ENTRY(gtk_builder_get_object (builder, "tf_username" ));
336 faw->tf_password = GTK_ENTRY(gtk_builder_get_object (builder, "tf_password" ));
337 faw->tf_port = GTK_ENTRY(gtk_builder_get_object (builder, "tf_port" ));
338 g_signal_connect( G_OBJECT(faw->tf_port), "insert-text",
339 G_CALLBACK(port_insert_text_cb), NULL );
340 gtk_entry_set_max_length( faw->tf_port, 5 );
341
342 switch ( type )
343 {
344 case FILE_ACCESS_OPEN:
345 gtk_window_set_title(GTK_WINDOW(faw->dialog), _("Open…"));
346 button_label = _("_Open");
347 fileChooserAction = GTK_FILE_CHOOSER_ACTION_OPEN;
348 settings_section = GNC_PREFS_GROUP_OPEN_SAVE;
349 break;
350
351 case FILE_ACCESS_SAVE_AS:
352 gtk_window_set_title(GTK_WINDOW(faw->dialog), _("Save As…"));
353 button_label = _("_Save As");
354 fileChooserAction = GTK_FILE_CHOOSER_ACTION_SAVE;
355 settings_section = GNC_PREFS_GROUP_OPEN_SAVE;
356 gtk_widget_destroy(faw->readonly_checkbutton);
357 faw->readonly_checkbutton = NULL;
358 break;
359
360 case FILE_ACCESS_EXPORT:
361 gtk_window_set_title(GTK_WINDOW(faw->dialog), _("Export"));
362 button_label = _("_Save As");
363 fileChooserAction = GTK_FILE_CHOOSER_ACTION_SAVE;
364 settings_section = GNC_PREFS_GROUP_EXPORT;
365 gtk_widget_destroy(faw->readonly_checkbutton);
366 faw->readonly_checkbutton = NULL;
367 break;
368 }
369
370 op = GTK_BUTTON(gtk_builder_get_object (builder, "pb_op" ));
371 if ( op != NULL )
372 gtk_button_set_label( op, button_label );
373
374 file_chooser = GTK_WIDGET(gtk_builder_get_object (builder, "file_chooser" ));
375 fileChooser = GTK_FILE_CHOOSER_WIDGET(gtk_file_chooser_widget_new( fileChooserAction ));
376 faw->fileChooser = GTK_FILE_CHOOSER(fileChooser);
377 gtk_box_pack_start( GTK_BOX(file_chooser), GTK_WIDGET(fileChooser), TRUE, TRUE, 6 );
378
379 gnc_file_chooser_add_filters (faw->fileChooser,
380 gnc_file_chooser_get_datafile_filters ());
381
382 /* Set the default directory */
383 if (type == FILE_ACCESS_OPEN || type == FILE_ACCESS_SAVE_AS)
384 {
385 last = gnc_history_get_last();
386 if ( last && *last && gnc_uri_targets_local_fs (last))
387 {
388 gchar *filepath = gnc_uri_get_path ( last );
389 faw->starting_dir = g_path_get_dirname( filepath );
390 g_free ( filepath );
391 }
392 g_free (last);
393 }
394 if (!faw->starting_dir)
395 faw->starting_dir = gnc_get_default_directory(settings_section);
396 gtk_file_chooser_set_current_folder(faw->fileChooser, faw->starting_dir);
397
398 g_object_connect( G_OBJECT(faw->fileChooser), "signal::file-activated",
399 gnc_ui_file_access_file_activated_cb, faw, NULL );
400
401 uri_type_container = GTK_WIDGET(gtk_builder_get_object (builder, "vb_uri_type_container" ));
402 faw->cb_uri_type = GTK_COMBO_BOX_TEXT(gtk_combo_box_text_new());
403 gtk_container_add( GTK_CONTAINER(uri_type_container), GTK_WIDGET(faw->cb_uri_type) );
404 gtk_box_set_child_packing( GTK_BOX(uri_type_container), GTK_WIDGET(faw->cb_uri_type),
405 /*expand*/TRUE, /*fill*/FALSE, /*padding*/0, GTK_PACK_START );
406 g_object_connect( G_OBJECT(faw->cb_uri_type),
407 "signal::changed", cb_uri_type_changed_cb, NULL,
408 NULL );
409
410 /* Autoconnect signals */
411 gtk_builder_connect_signals_full (builder, gnc_builder_connect_full_func, faw);
412
413 /* See what qof backends are available and add appropriate ones to the combo box */
415 for ( node = list; node != NULL; node = node->next )
416 {
417 const gchar* access_method = node->data;
418
419 /* For the different access methods, "mysql" and "postgres" are added if available. Access
420 methods "xml" and "sqlite3" are compressed to "file" if opening a file, but when saving a file,
421 both access methods are added. */
422 if ( strcmp( access_method, "mysql" ) == 0 )
423 {
424 need_access_method_mysql = TRUE;
425 }
426 else if ( strcmp( access_method, "postgres" ) == 0 )
427 {
428 need_access_method_postgres = TRUE;
429 }
430 else if ( strcmp( access_method, "xml" ) == 0 )
431 {
432 if ( type == FILE_ACCESS_OPEN )
433 {
434 need_access_method_file = TRUE;
435 }
436 else
437 {
438 need_access_method_xml = TRUE;
439 }
440 }
441 else if ( strcmp( access_method, "sqlite3" ) == 0 )
442 {
443 if ( type == FILE_ACCESS_OPEN )
444 {
445 need_access_method_file = TRUE;
446 }
447 else
448 {
449 need_access_method_sqlite3 = TRUE;
450 }
451 }
452 }
453 g_list_free(list);
454
455 /* Now that the set of access methods has been ascertained, add them to the list, and set the
456 default. */
457 access_method_index = -1;
458 if ( need_access_method_file )
459 {
460 gtk_combo_box_text_append_text( faw->cb_uri_type, "file" );
461 active_access_method_index = ++access_method_index;
462 }
463 if ( need_access_method_mysql )
464 {
465 gtk_combo_box_text_append_text( faw->cb_uri_type, "mysql" );
466 ++access_method_index;
467 }
468 if ( need_access_method_postgres )
469 {
470 gtk_combo_box_text_append_text( faw->cb_uri_type, "postgres" );
471 ++access_method_index;
472 }
473 if ( need_access_method_sqlite3 )
474 {
475 gtk_combo_box_text_append_text( faw->cb_uri_type, "sqlite3" );
476 active_access_method_index = ++access_method_index;
477 }
478 if ( need_access_method_xml )
479 {
480 gtk_combo_box_text_append_text( faw->cb_uri_type, "xml" );
481 ++access_method_index;
482
483 // Set XML as default if it is offered (which mean we are in
484 // the "Save As" dialog)
485 active_access_method_index = access_method_index;
486 }
487 g_assert( active_access_method_index >= 0 );
488
489 g_object_unref(G_OBJECT(builder));
490
491 /* Run the dialog */
492 gtk_widget_show_all( faw->dialog );
493
494 /* Hide the frame that's not required for the active access method so either only
495 * the File or only the Database frame are presented. */
496 gtk_combo_box_set_active(GTK_COMBO_BOX(faw->cb_uri_type), active_access_method_index );
497 set_widget_sensitivity_for_uri_type( faw, gtk_combo_box_text_get_active_text( faw->cb_uri_type ));
498}
499
500void
501gnc_ui_file_access_for_open (GtkWindow *parent)
502{
503 gnc_ui_file_access (parent, FILE_ACCESS_OPEN);
504}
505
506
507void
508gnc_ui_file_access_for_save_as (GtkWindow *parent)
509{
510 gnc_ui_file_access (parent, FILE_ACCESS_SAVE_AS);
511}
512
513
514void
515gnc_ui_file_access_for_export (GtkWindow *parent)
516{
517 gnc_ui_file_access (parent, FILE_ACCESS_EXPORT);
518}
This file contains the functions to present a GUI to select a file or a database connection.
Functions providing the file history menu.
utility functions for the GnuCash UI
Utility functions for convert uri in separate components and back.
void gnc_gnome_help(GtkWindow *parent, const char *file_name, const char *anchor)
Launch the systems default help browser, gnome's yelp for linux, and open to a given link within a gi...
#define PERR(format, args...)
Log a serious error.
Definition qoflog.h:244
char * gnc_history_get_last(void)
Retrieve the name of the file most recently accessed.
gchar * gnc_uri_get_path(const gchar *uri)
Extracts the path part from a uri.
gboolean gnc_uri_targets_local_fs(const gchar *uri)
Checks if the given uri is either a valid file uri or a local filesystem path.
gboolean gnc_uri_is_file_scheme(const gchar *scheme)
Checks if the given scheme is used to refer to a file (as opposed to a network service like a databas...
gchar * gnc_uri_create_uri(const gchar *scheme, const gchar *hostname, gint32 port, const gchar *username, const gchar *password, const gchar *path)
Composes a normalized uri starting from its separate components.
GList * qof_backend_get_registered_access_method_list(void)
Return a list of strings for the registered access methods.