1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
/* $Id: jpilot-sync.c,v 1.26 2006-02-14 20:53:26 rikster5 Exp $ */
/*******************************************************************************
* jpilot-sync.c
* A module of J-Pilot http://jpilot.org
*
* Copyright (C) 1999-2002 by Judd Montgomery
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
******************************************************************************/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <signal.h>
#ifdef HAVE_LOCALE_H
#include <locale.h>
#endif
#include "utils.h"
#include "log.h"
#include "prefs.h"
#include "sync.h"
#include "plugins.h"
#include "i18n.h"
#ifdef ENABLE_GTK2
#include "otherconv.h"
#endif
/* this is a hack for now until I clean up the code */
int *glob_date_label;
int pipe_to_parent, pipe_from_parent;
pid_t glob_child_pid;
GtkWidget *glob_dialog;
pid_t glob_child_pid;
GtkTooltips *glob_tooltips;
int t_fmt_ampm;
unsigned char skip_plugins;
/* used only in GUI mode */
pid_t jpilot_master_pid = -1;
void output_to_pane(const char *str)
{
}
/* hack */
void cb_app_button(GtkWidget *widget, gpointer data)
{
return;
}
void fprint_jps_usage_string(FILE *out)
{
fprintf(out, "%s-sync [ -v || -h || [-d] [-P] [-b] [-l] [-p] port]\n", EPN);
fprintf(out, "%s", _(" J-Pilot preferences are read to get port, rate, number of backups, etc.\n"));
fprintf(out, "%s", _(" -v = version\n"));
fprintf(out, "%s", _(" -h = help\n"));
fprintf(out, "%s", _(" -d = run in debug mode\n"));
fprintf(out, "%s", _(" -P = do not load plugins.\n"));
fprintf(out, "%s", _(" -b = Do a sync and then a backup, otherwise just do a sync.\n"));
fprintf(out, "%s", _(" -l = loop, otherwise sync once and exit.\n"));
fprintf(out, "%s", _(" -p {port} = Use this port to sync with instead of getting preferences.\n"));
}
static void sig_handler(int sig);
int main(int argc, char *argv[])
{
int done;
int cons_errors;
int flags;
int r, i;
int loop;
char port[MAX_PREF_VALUE];
#ifdef ENABLE_PLUGINS
struct plugin_s *plugin;
GList *plugin_list, *temp_list;
jp_startup_info info;
#endif
/* enable internationalization(i18n) before printing any output */
#if defined(ENABLE_NLS)
# ifdef HAVE_LOCALE_H
char *current_locale;
current_locale = setlocale(LC_ALL, "");
# endif
bindtextdomain(EPN, LOCALEDIR);
textdomain(EPN);
#endif
done=cons_errors=0;
port[0]='\0';
glob_child_pid=0;
loop=0;
skip_plugins=0;
flags = SYNC_NO_FORK;
pref_init();
pref_read_rc_file();
#ifdef ENABLE_GTK2
if (otherconv_init()) {
printf("Error: could not set encoding\n");
return EXIT_FAILURE;
}
#endif
pipe_from_parent=STDIN_FILENO;
pipe_to_parent=STDOUT_FILENO;
glob_log_stdout_mask = JP_LOG_INFO | JP_LOG_WARN | JP_LOG_FATAL |
JP_LOG_STDOUT | JP_LOG_GUI;
for (i=1; i<argc; i++) {
if (!strncasecmp(argv[i], "-v", 2)) {
char options[1024];
get_compile_options(options, sizeof(options));
printf("\n%s\n", options);
exit(0);
}
if ( (!strncmp(argv[i], "-h", 2)) || (!strncasecmp(argv[1], "-?", 2))
) {
fprint_jps_usage_string(stderr);
exit(0);
}
if (!strncasecmp(argv[i], "-d", 2)) {
glob_log_stdout_mask = 0xFFFF;
glob_log_file_mask = 0xFFFF;
jp_logf(JP_LOG_DEBUG, "Debug messages on.\n");
}
if (!strncmp(argv[i], "-b", 2)) {
flags |= SYNC_FULL_BACKUP;
}
if (!strncmp(argv[i], "-l", 2)) {
loop=1;
}
if (!strncmp(argv[i], "-P", 2)) {
skip_plugins = 1;
flags |= SYNC_NO_PLUGINS;
jp_logf(JP_LOG_INFO, "Not loading plugins.\n");
}
if (!strncmp(argv[i], "-p", 2)) {
i++;
if (i<argc) {
g_strlcpy(port, argv[i], MAX_PREF_VALUE);
/* Prefs are not saved, so this is not persistent */
set_pref(PREF_PORT, 0, port, FALSE);
}
}
}
#ifdef ENABLE_PLUGINS
if (!skip_plugins) {
load_plugins();
plugin_list = get_plugin_list();
} else {
plugin_list = NULL;
}
for (temp_list = plugin_list; temp_list; temp_list = temp_list->next) {
plugin = (struct plugin_s *)temp_list->data;
jp_logf(JP_LOG_DEBUG, "plugin: [%s] was loaded\n", plugin->name);
}
for (temp_list = plugin_list; temp_list; temp_list = temp_list->next) {
plugin = (struct plugin_s *)temp_list->data;
if (plugin) {
if (plugin->plugin_startup) {
info.base_dir = strdup(BASE_DIR);
jp_logf(JP_LOG_DEBUG, "calling plugin_startup for [%s]\n", plugin->name);
plugin->plugin_startup(&info);
if (info.base_dir) {
free(info.base_dir);
}
}
}
}
#endif
/* After plugin startups are called we want to make sure cleanups are
called */
signal(SIGHUP, sig_handler);
signal(SIGINT, sig_handler);
signal(SIGTERM, sig_handler);
do {
r = setup_sync(flags);
switch (r) {
case 0:
break;
case SYNC_ERROR_BIND:
printf("\n");
printf("Error: connecting to serial port\n");
break;
case SYNC_ERROR_LISTEN:
printf("\n");
printf("Error: pi_listen\n");
break;
case SYNC_ERROR_OPEN_CONDUIT:
printf("\n");
printf("Error: opening conduit to Palm\n");
break;
case SYNC_ERROR_PI_ACCEPT:
printf("\n");
printf("Error: pi_accept\n");
break;
case SYNC_ERROR_NOT_SAME_USER:
printf("\n");
printf("Error: this palm has a different User Name than the last sync.\n");
printf(" Syncing with different palms into the same directory could cross data.\n");
#ifdef ENABLE_PROMETHEON
printf(" COPILOT_HOME can be used to sync different palms under the same unix user.\n");
#else
printf(" JPILOT_HOME can be used to sync different palms under the same unix user.\n");
#endif
break;
case SYNC_ERROR_NOT_SAME_USERID:
printf("\n");
printf("Error: this palm has a different ID Name than the last sync.\n");
printf(" Syncing with different palms into the same directory could cross data.\n");
#ifdef ENABLE_PROMETHEON
printf(" COPILOT_HOME can be used to sync different palms under the same unix user.\n");
#else
printf(" JPILOT_HOME can be used to sync different palms under the same unix user.\n");
#endif
break;
case SYNC_ERROR_NULL_USERID:
printf("\n");
printf("Error: this palm has a NULL user ID.\n");
printf(" use \"install-user /dev/pilot name numeric_id\"\n");
break;
default:
printf("\n");
printf("Error: sync returned error %d\n", r);
}
sleep(1);
} while(loop);
#ifdef ENABLE_GTK2
otherconv_free();
#endif
/* r is the return value of setup_sync(), 0 if OK */
return r;
}
static void sig_handler(int sig)
{
#ifdef ENABLE_PLUGINS
struct plugin_s *plugin;
GList *plugin_list, *temp_list;
#endif
jp_logf(JP_LOG_DEBUG, "caught signal %d\n", sig);
#ifdef ENABLE_PLUGINS
plugin_list = get_plugin_list();
for (temp_list = plugin_list; temp_list; temp_list = temp_list->next) {
plugin = (struct plugin_s *)temp_list->data;
if (plugin) {
if (plugin->plugin_exit_cleanup) {
jp_logf(JP_LOG_DEBUG, "calling plugin_exit_cleanup\n");
plugin->plugin_exit_cleanup();
}
}
}
#endif
exit(0);
}
|