X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-main.c;h=df5de2cf24b7d4fa8fffe9e52da64b098b33a8f1;hb=b691e563dd858d472dc25de76704c5410e60d352;hp=8b59653b5c1d486b08c5fc183288abdccbbfed72;hpb=8bc175568100eaac3230f4a2b0966edaee0f4b4a;p=modest diff --git a/src/modest-main.c b/src/modest-main.c index 8b59653..df5de2c 100644 --- a/src/modest-main.c +++ b/src/modest-main.c @@ -1,152 +1,278 @@ -/* modest-main.c -- part of modest */ +/* 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. + */ + + #include +#include +#include +#include +#include +#include +#include +#include +#include "config.h" #include "modest-conf.h" #include "modest-account-mgr.h" -#include "modest-identity-mgr.h" #include "modest-ui.h" #include "modest-icon-factory.h" +#include "modest-tny-account-store.h" +#include "modest-tny-platform-factory.h" +#include "modest-mail-operation.h" -#ifdef HAVE_CONFIG_H -#include -#endif /*HAVE_CONFIG_H*/ -#include -static void install_basic_conf_settings (ModestConf *conf); +#if MODEST_PLATFORM_ID==2 +#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); + +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; + TnyPlatformFactory *fact = NULL; ModestConf *modest_conf = NULL; - ModestUI *modest_ui = 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 debug=FALSE, batch=FALSE; + static gchar *mailto, *subject, *bcc, *cc, *body; 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"}, + "Run in debug mode", NULL}, { "mailto", 'm', 0, G_OPTION_ARG_STRING, &mailto, - "Start writing a new email to "}, + "New email to (comma-separated)", NULL}, { "subject", 's', 0, G_OPTION_ARG_STRING, &subject, - "Subject for a new mail"}, + "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 } + "Body for a new email", NULL}, + { "cc", 'c', 0, G_OPTION_ARG_STRING, &cc, + "Cc: addresses for a new mail (comma-separated)", NULL}, + { "bcc", 'x', 0, G_OPTION_ARG_STRING, &bcc, + "Bcc: addresses for a new mail (comma-separated)", NULL}, + { "batch", 'y', 0, G_OPTION_ARG_NONE, &batch, + "Run in batch mode (don't show UI)", NULL}, + { NULL, 0, 0, 0, NULL, NULL, NULL } }; - gtk_init (&argc, &argv); + bindtextdomain (GETTEXT_PACKAGE, MODESTLOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); + textdomain (GETTEXT_PACKAGE); + + g_type_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; } - - if (debug) { - g_log_set_always_fatal (G_LOG_LEVEL_WARNING); - } - - modest_conf = MODEST_CONF(modest_conf_new()); + g_option_context_free (context); + + fact = modest_tny_platform_factory_get_instance (); + 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); - goto cleanup; - } + if (debug) + g_log_set_always_fatal (G_LOG_LEVEL_CRITICAL|G_LOG_LEVEL_WARNING); + + if (!getenv("DISPLAY")) + batch = TRUE; + + if (!batch) { + gtk_init (&argc, &argv); + retval = start_ui (mailto, cc, bcc, subject, body); + } else + retval = send_mail (mailto, cc, bcc, subject, body); + + +cleanup: + + return retval; +} + + +static int +start_ui (const gchar* mailto, const gchar *cc, const gchar *bcc, + const gchar* subject, const gchar *body) +{ - modest_icon_factory_init (); + ModestUI *modest_ui; + gint retval = 0; - modest_ui = MODEST_UI(modest_ui_new (modest_conf)); + #ifndef OLD_UI_STUFF + GtkWidget *win; + #endif + + modest_ui = MODEST_UI(modest_ui_new ()); if (!modest_ui) { - g_warning ("failed to initialize ui"); + g_printerr ("modest: failed to initialize ui, exiting\n"); + retval = MODEST_ERR_UI; goto cleanup; } + + modest_icon_factory_init (); - { - gboolean ok; - gtk_init (&argc, &argv); - - if (mailto||cc||bcc||subject||body) { - ok = FALSE; -#if 0 - ok = modest_ui_new_edit_window (modest_ui, - mailto, /* to */ - cc, /* cc */ - bcc, /* bcc */ - subject, /* subject */ - body, /* body */ - NULL); /* attachments */ -#endif - } 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 +#ifndef OLD_UI_STUFF + win = modest_ui_main_window (modest_ui); + gtk_widget_show (win); +#else + modest_ui_show_main_window (modest_ui); +#endif + gtk_main(); + cleanup: - if (err) - g_error_free (err); - - if (context) - g_option_context_free (context); - if (modest_ui) g_object_unref (modest_ui); - if (modest_conf) - g_object_unref (modest_conf); - modest_icon_factory_uninit (); - return retval; } +static gboolean +hildon_init () +{ +#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 aquire osso context, exiting\n"); + + return FALSE; + + } + +#endif /* MODEST_PLATFORM_ID==2 */ + + return TRUE; +} + + -static void -install_basic_conf_settings (ModestConf *conf) +static int +send_mail (const gchar* mailto, const gchar *cc, const gchar *bcc, + const gchar* subject, const gchar *body) { - g_return_if_fail (conf); + ModestAccountMgr *acc_mgr = NULL; + TnyPlatformFactory *fact = NULL; + TnyAccountStore *acc_store = NULL; + ModestMailOperation *mail_operation; + + 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; + } - /* 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); + account = TNY_TRANSPORT_ACCOUNT (tny_iterator_get_current(iter)); - /* 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); + mail_operation = modest_mail_operation_new (); + + modest_mail_operation_send_new_mail (mail_operation, + account, + "djcb@djcbsoftware.nl", mailto, cc, bcc, + subject, body, NULL); - g_print ("modest: returned to factory settings\n"); -} + 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; +}