X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-main.c;h=30b857a9e288b7465d12111ff0498e089ef5b650;hp=5f97692cb4881aa6ceda15ea6e6ade766d39c94d;hb=3cb2296c35459b4fbd5ae81ee642576ddcc3e13b;hpb=edcd1474f160bdbaae5638577e10007c6a564792 diff --git a/src/modest-main.c b/src/modest-main.c index 5f97692..30b857a 100644 --- a/src/modest-main.c +++ b/src/modest-main.c @@ -1,201 +1,298 @@ -/* modest-main.c -- part of modest */ -#include - -#include "modest-conf.h" -#include "modest-account-mgr.h" -#include "modest-identity-mgr.h" -#include "modest-ui.h" +/* Copyright (c) 2006, Nokia Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of the Nokia Corporation nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ -#ifdef HAVE_CONFIG_H -#include -#endif /*HAVE_CONFIG_H*/ -#include -static void install_basic_conf_settings (ModestConf *conf); -static void install_test_account (ModestConf *conf); +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#if MODEST_PLATFORM_ID==2 /* maemo */ +#include +#endif /* MODEST_PLATFORM==2 */ + +/* return values */ +#define MODEST_ERR_NONE 0 +#define MODEST_ERR_OPTIONS 1 +#define MODEST_ERR_CONF 2 +#define MODEST_ERR_UI 3 +#define MODEST_ERR_HILDON 4 +#define MODEST_ERR_RUN 5 +#define MODEST_ERR_SEND 6 + +static gboolean hildon_init (); /* NOP if HILDON is not defined */ +static int start_ui (const gchar* mailto, const gchar *cc, + const gchar *bcc, const gchar* subject, const gchar *body, + TnyAccountStore *account_store); + +static int send_mail (const gchar* mailto, const gchar *cc, const gchar *bcc, + const gchar* subject, const gchar *body); int main (int argc, char *argv[]) { - GOptionContext *context = NULL; - ModestConf *modest_conf = NULL; - ModestUI *modest_ui = NULL; - + GOptionContext *context = NULL; + TnyPlatformFactory *fact = NULL; + TnyAccountStore *account_store = NULL; + ModestConf *modest_conf = NULL; + GError *err = NULL; - int retval = 0; - - static gboolean update, debug, reinstall; - static gchar *mailto, *subject, *bcc, *cc, *body; + int retval = MODEST_ERR_NONE; + + static gboolean batch=FALSE; + static gchar *mailto, *subject, *bcc, *cc, *body, *account; static GOptionEntry options[] = { - { "debug", 'd', 0, G_OPTION_ARG_NONE, &debug, - "Run in debug mode" }, - { "update", 'u', 0, G_OPTION_ARG_NONE, &update, - "Send/receive all accounts and exit"}, { "mailto", 'm', 0, G_OPTION_ARG_STRING, &mailto, - "Start writing a new email to "}, + N_("New email to (comma-separated)"), NULL}, { "subject", 's', 0, G_OPTION_ARG_STRING, &subject, - "Subject for a new mail"}, + N_("Subject for a new mail"), NULL}, { "body", 'b', 0, G_OPTION_ARG_STRING, &body, - "Body for a new email"}, - { "cc", 0, 0, G_OPTION_ARG_STRING, &cc, - "CC-addresses for a new mail (comma-separated)"}, - { "bcc", 0, 0, G_OPTION_ARG_STRING, &bcc, - "BCC-adresses for a new mail (comma-separated)"}, - { "reinstall-factory-settings", 0, 0, G_OPTION_ARG_NONE, &reinstall, - "Delete all settings and start over (*DESTRUCTIVE*)" - }, - { NULL } + N_("Body for a new email"), NULL}, + { "cc", 'c', 0, G_OPTION_ARG_STRING, &cc, + N_("Cc: addresses for a new mail (comma-separated)"), NULL}, + { "bcc", 'x', 0, G_OPTION_ARG_STRING, &bcc, + N_("Bcc: addresses for a new mail (comma-separated)"), NULL}, + { "account", 'a', 0, G_OPTION_ARG_STRING, &account, + N_("Account to use (if specified, default account is used)"), NULL}, + { "batch", 'y', 0, G_OPTION_ARG_NONE, &batch, + N_("Run in batch mode (don't show UI)"), NULL}, + { NULL, 0, 0, 0, NULL, NULL, NULL } }; + bindtextdomain (GETTEXT_PACKAGE, MODEST_LOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + textdomain (GETTEXT_PACKAGE); - g_type_init (); + modest_debug_g_type_init (); + modest_debug_logging_init (); + g_thread_init (NULL); + context = g_option_context_new (NULL); g_option_context_add_main_entries (context, options, NULL); - + if (!g_option_context_parse (context, &argc, &argv, &err)) { - g_printerr ("modest: error in command line parameter(s): %s\n", - err ? err->message : ""); - retval = 1; + g_printerr ("modest: error in command line parameter(s): '%s', exiting\n", + err ? err->message : ""); + g_error_free (err); + retval = MODEST_ERR_OPTIONS; goto cleanup; } + g_option_context_free (context); - if (debug) { - g_log_set_always_fatal (G_LOG_LEVEL_WARNING); - } + /* Get platform factory */ + fact = modest_tny_platform_factory_get_instance (); - modest_conf = MODEST_CONF(modest_conf_new()); + /* Check modest conf */ + modest_conf = modest_tny_platform_factory_get_modest_conf_instance (fact); if (!modest_conf) { - g_warning ("failed to initialize config system"); + g_printerr ("modest: failed to initialize config system, exiting\n"); + retval = MODEST_ERR_CONF; goto cleanup; } - if (reinstall) { - modest_conf_remove_key (modest_conf, MODEST_CONF_NAMESPACE, NULL); - install_basic_conf_settings (modest_conf); - install_test_account (modest_conf); + /* Get the account store */ + account_store = tny_platform_factory_new_account_store (fact); + if (!account_store) { + g_printerr ("modest: could not initialize a ModestTnyAccountStore instance\n"); + retval = MODEST_ERR_RUN; goto cleanup; - } - - + } + + if (!getenv("DISPLAY")) + batch = TRUE; + + if (!batch) { + gdk_threads_init (); + gtk_init (&argc, &argv); + retval = start_ui (mailto, cc, bcc, subject, body, account_store); + } else + retval = send_mail (mailto, cc, bcc, subject, body); + +cleanup: + if (fact) + g_object_unref (G_OBJECT(fact)); + /* this will clean up account_store as well */ + + return retval; +} - gtk_init (&argc, &argv); - modest_icon_factory_init (); +static int +start_ui (const gchar* mailto, const gchar *cc, const gchar *bcc, + const gchar* subject, const gchar *body, + TnyAccountStore *account_store) +{ + ModestUI *modest_ui; + ModestWindow *win; + gint retval = 0; - modest_ui = MODEST_UI(modest_ui_new (modest_conf)); + modest_ui = MODEST_UI(modest_ui_new (account_store)); if (!modest_ui) { - g_warning ("failed to initialize ui"); + g_printerr ("modest: failed to initialize ui, exiting\n"); + retval = MODEST_ERR_UI; goto cleanup; } - { - gboolean ok; - gtk_init (&argc, &argv); + modest_icon_factory_init (); - if (mailto||cc||bcc||subject||body) - ok = modest_ui_new_edit_window (modest_ui, - mailto, /* to */ - cc, /* cc */ - bcc, /* bcc */ - subject, /* subject */ - body, /* body */ - NULL); /* attachments */ - else - ok = modest_ui_show_main_window (modest_ui); - - if (!ok) - g_warning ("showing window failed"); - else - gtk_main(); + if (!hildon_init ()) { /* NOP if hildon is not defined */ + g_printerr ("modest: failed to initialize hildon, exiting\n"); + retval = MODEST_ERR_HILDON; + goto cleanup; } + if (mailto||cc||bcc||subject||body) { + +/* ok = modest_ui_new_edit_window (modest_ui, */ +/* mailto, /\* to *\/ */ +/* cc, /\* cc *\/ */ +/* bcc, /\* bcc *\/ */ +/* subject, /\* subject *\/ */ +/* body, /\* body *\/ */ +/* NULL); /\* attachments *\/ */ + } else + win = modest_ui_main_window (modest_ui); + + if (win) { + TnyDevice *device; -cleanup: - if (err) - g_error_free (err); - - if (context) - g_option_context_free (context); + gtk_widget_show (GTK_WIDGET (win)); + + /* Go online */ + device = tny_account_store_get_device (account_store); + tny_device_force_online (device); + g_object_unref (G_OBJECT (device)); + gtk_main(); + } +cleanup: if (modest_ui) g_object_unref (modest_ui); - if (modest_conf) - g_object_unref (modest_conf); - modest_icon_factory_uninit (); - return retval; } + - - -static void -install_basic_conf_settings (ModestConf *conf) +static gboolean +hildon_init () { - g_return_if_fail (conf); - - /* main window size */ - modest_conf_set_int (conf, MODEST_CONF_MAIN_WINDOW_WIDTH, - MODEST_CONF_MAIN_WINDOW_WIDTH_DEFAULT, NULL); - modest_conf_set_int (conf, MODEST_CONF_MAIN_WINDOW_HEIGHT, - MODEST_CONF_MAIN_WINDOW_HEIGHT_DEFAULT, NULL); - - /* edit window size */ - modest_conf_set_int (conf, MODEST_CONF_EDIT_WINDOW_WIDTH, - MODEST_CONF_EDIT_WINDOW_WIDTH_DEFAULT, NULL); - modest_conf_set_int (conf, MODEST_CONF_EDIT_WINDOW_HEIGHT, - MODEST_CONF_EDIT_WINDOW_HEIGHT_DEFAULT, NULL); +#if MODEST_PLATFORM_ID==2 + + osso_context_t *osso_context = + osso_initialize(PACKAGE, PACKAGE_VERSION, + TRUE, NULL); + if (!osso_context) { + g_printerr ("modest: failed to acquire osso context\n"); + return FALSE; + } + +#endif /* MODEST_PLATFORM_ID==2 */ - g_print ("modest: returned to factory settings\n"); + return TRUE; } -static void -install_test_account (ModestConf *conf) + +static int +send_mail (const gchar* mailto, const gchar *cc, const gchar *bcc, + const gchar* subject, const gchar *body) { - ModestAccountMgr *acc_mgr; - ModestIdentityMgr *id_mgr; - const gchar *acc_name = "test"; - g_return_if_fail (conf); - - acc_mgr = MODEST_ACCOUNT_MGR(modest_account_mgr_new (conf)); - if (!acc_mgr) { - g_warning ("failed to instantiate account mgr"); - return; + ModestAccountMgr *acc_mgr = NULL; + TnyPlatformFactory *fact = NULL; + TnyAccountStore *acc_store = NULL; + ModestMailOperation *mail_operation = NULL; + + TnyList *accounts = NULL; + TnyIterator *iter = NULL; + TnyTransportAccount *account = NULL; + int retval; + + fact = modest_tny_platform_factory_get_instance (); + acc_mgr = modest_tny_platform_factory_get_modest_account_mgr_instance (fact); + acc_store = tny_platform_factory_new_account_store (fact); + + accounts = TNY_LIST(tny_simple_list_new ()); + tny_account_store_get_accounts (TNY_ACCOUNT_STORE(acc_store), accounts, + TNY_ACCOUNT_STORE_TRANSPORT_ACCOUNTS); + + iter = tny_list_create_iterator(accounts); + tny_iterator_first (iter); + if (tny_iterator_is_done (iter)) { + g_printerr("modest: no transport accounts defined\n"); + retval = MODEST_ERR_SEND; + goto cleanup; } - if (modest_account_mgr_account_exists (acc_mgr, acc_name, NULL)) { - if (!modest_account_mgr_remove_account(acc_mgr, acc_name, NULL)) { - g_warning ("could not delete existing account"); - } - } + account = TNY_TRANSPORT_ACCOUNT (tny_iterator_get_current(iter)); - if (!modest_account_mgr_add_account (acc_mgr, acc_name, "mystore", "mytransport", NULL)) - g_warning ("failed to add test account"); - else - { - modest_account_mgr_add_server_account (acc_mgr, "mystore", "localhost", "djcb", - NULL, "imap"); - modest_account_mgr_add_server_account (acc_mgr, "mytransport", "localhost", NULL, - NULL, "smtp"); - - } - id_mgr = MODEST_IDENTITY_MGR(modest_identity_mgr_new (conf)); - if (modest_identity_mgr_identity_exists(id_mgr, "myidentity", NULL)) { - if (!modest_identity_mgr_remove_identity(id_mgr, "myidentity", NULL)) { - g_warning ("could not delete existing identity"); - } - } - if (!modest_identity_mgr_add_identity (id_mgr, - MODEST_IDENTITY_DEFAULT_IDENTITY, - "user@localhost", - "", "", FALSE, NULL, FALSE )) - g_warning ("failed to add test identity"); - - g_object_unref (G_OBJECT(acc_mgr)); - g_object_unref (G_OBJECT(id_mgr)); + mail_operation = modest_mail_operation_new (); + + modest_mail_operation_send_new_mail (mail_operation, + account, "test@example.com", + mailto, cc, bcc, + subject, body, NULL); + + + if (modest_mail_operation_get_status (mail_operation) == + MODEST_MAIL_OPERATION_STATUS_FAILED) { + retval = MODEST_ERR_SEND; + goto cleanup; + } else + retval = MODEST_ERR_NONE; /* hurray! */ + +cleanup: + if (iter) + g_object_unref (G_OBJECT (iter)); + if (accounts) + g_object_unref (G_OBJECT (accounts)); + if (mail_operation) + g_object_unref (G_OBJECT (mail_operation)); + + return retval; } +