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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
/* Time-stamp: <2008-09-30 23:36:02 jcs>
|
| Copyright (C) 2002-2005 Jorg Schuler <jcsjcs at users sourceforge net>
| Part of the gtkpod project.
|
| URL: http://www.gtkpod.org/
| URL: http://gtkpod.sourceforge.net/
|
| 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; either version 2 of the License, or
| (at your option) any later version.
|
| 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
|
| iTunes and iPod are trademarks of Apple
|
| This product is not supported/written/published by Apple!
|
| $Id$
*/
/* This file provides functions to initialize a new iPod */
#include "plugin.h"
#include "repository.h"
#include "libgtkpod/prefs.h"
#include "libgtkpod/misc.h"
#include "libgtkpod/file.h"
struct _IpodInit {
GtkBuilder *builder; /* XML info */
GtkWidget *window; /* pointer to repository window */
iTunesDB *itdb;
};
typedef struct _IpodInit IpodInit;
/* Strings used several times */
const gchar *SELECT_OR_ENTER_YOUR_MODEL = N_("Select or enter your model");
/* string constants for window widgets used more than once */
static const gchar *IID_MOUNTPOINT_CHOOSER = "iid_mountpoint_chooser";
static const gchar *IID_MODEL_COMBO = "iid_model_combo";
static const gchar *SIMD_MODEL_COMBO = "simd_model_combo";
static const gchar *SIMD_LABEL = "simd_label";
void set_cell(GtkCellLayout *cell_layout, GtkCellRenderer *cell, GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) {
gboolean header;
gchar *text;
IpodInfo *info;
gtk_tree_model_get(tree_model, iter, COL_POINTER, &info, -1);
g_return_if_fail (info);
header = gtk_tree_model_iter_has_child(tree_model, iter);
if (header) {
text = g_strdup(itdb_info_get_ipod_generation_string(info->ipod_generation));
}
else {
if (info->capacity >= 1) { /* size in GB */
text
= g_strdup_printf(_("%2.0f GB %s (x%s)"), info->capacity, itdb_info_get_ipod_model_name_string(info->ipod_model), info->model_number);
}
else if (info->capacity > 0) { /* size in MB */
text
= g_strdup_printf(_("%3.0f MB %s (x%s)"), info->capacity * 1024, itdb_info_get_ipod_model_name_string(info->ipod_model), info->model_number);
}
else { /* no capacity information available */
text
= g_strdup_printf(_("%s (x%s)"), itdb_info_get_ipod_model_name_string(info->ipod_model), info->model_number);
}
}
g_object_set(cell, "sensitive", !header, "text", text, NULL);
g_free(text);
}
static void _model_combo_set_active_iter(GtkComboBox *cb, const gchar* modelstr) {
GtkTreeIter iter;
GtkTreeModel *cb_model = gtk_combo_box_get_model(cb);
if (gtk_tree_model_get_iter_first(cb_model, &iter)) {
do {
GtkTreeIter iter_child;
if (gtk_tree_model_iter_children (cb_model, &iter_child, &iter)) {
do {
gchar *model;
gtk_tree_model_get(cb_model, &iter_child, COL_STRING, &model, -1);
if (g_str_equal(modelstr, model)) {
gtk_combo_box_set_active_iter(cb, &iter_child);
return;
}
} while (gtk_tree_model_iter_next(cb_model, &iter_child));
}
} while (gtk_tree_model_iter_next(cb_model, &iter));
}
}
/**
* repository_ipod_init:
*
* Ask for the iPod model and mountpoint and then create the directory
* structure on the iPod.
*
* @itdb: itdb from where to extract the mountpoint. After
* initialisation the model number is set.
*/
gboolean repository_ipod_init(iTunesDB *itdb) {
IpodInit *ii;
gint response;
gboolean result = FALSE;
gchar *mountpoint, *new_mount, *name, *model;
GError *error = NULL;
gchar buf[PATH_MAX];
GtkComboBox *cb;
const IpodInfo *info;
GtkTreeIter iter;
g_return_val_if_fail (itdb, FALSE);
/* Create window */
ii = g_new0 (IpodInit, 1);
ii->itdb = itdb;
ii->builder = init_repository_builder();
ii->window = gtkpod_builder_xml_get_widget(ii->builder, "ipod_init_dialog");
g_return_val_if_fail (ii->window, FALSE);
/* Set mountpoint */
mountpoint = get_itdb_prefs_string(itdb, KEY_MOUNTPOINT);
if (mountpoint) {
gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(GET_WIDGET (ii->builder, IID_MOUNTPOINT_CHOOSER)), mountpoint);
}
/* Setup model number combo */
cb = GTK_COMBO_BOX (GET_WIDGET (ii->builder, IID_MODEL_COMBO));
repository_init_model_number_combo(cb);
/* If available set current model number, otherwise indicate that
none is available */
info = itdb_device_get_ipod_info(itdb->device);
if (info && (info->ipod_generation != ITDB_IPOD_GENERATION_UNKNOWN)) {
g_snprintf(buf, PATH_MAX, "x%s", info->model_number);
}
else {
model = get_itdb_prefs_string(itdb, KEY_IPOD_MODEL);
if (model && (strlen(g_strstrip (model)) != 0)) {
g_snprintf(buf, PATH_MAX, "%s", model);
g_free(model);
}
else {
g_snprintf(buf, PATH_MAX, "%s", gettext (SELECT_OR_ENTER_YOUR_MODEL));
}
}
/* Try and set buf as the active selection in the combo box */
_model_combo_set_active_iter(cb, buf);
gtk_window_set_transient_for(GTK_WINDOW (ii->window), GTK_WINDOW (gtkpod_app));
response = gtk_dialog_run(GTK_DIALOG (ii->window));
switch (response) {
case GTK_RESPONSE_OK:
new_mount = g_strdup(gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(GET_WIDGET (ii->builder, IID_MOUNTPOINT_CHOOSER))));
if (!new_mount || (strlen(new_mount) == 0)) {
gtkpod_statusbar_message("No mount point has been selected");
return FALSE;
}
if (!gtk_combo_box_get_has_entry(cb)) {
gtkpod_statusbar_message("No model has been selected");
return FALSE;
}
/* remove trailing '/' in case it's present. */
if (mountpoint && (strlen(mountpoint) > 0)) {
if (G_IS_DIR_SEPARATOR(mountpoint[strlen(mountpoint) - 1])) {
mountpoint[strlen(mountpoint) - 1] = 0;
}
}
if (new_mount && (strlen(new_mount) > 0)) {
if (G_IS_DIR_SEPARATOR(new_mount[strlen(new_mount) - 1])) {
new_mount[strlen(new_mount) - 1] = 0;
}
}
if (!(mountpoint && new_mount && (strcmp(mountpoint, new_mount) == 0))) { /* mountpoint has changed */
g_free(mountpoint);
mountpoint = new_mount;
new_mount = NULL;
set_itdb_prefs_string(itdb, KEY_MOUNTPOINT, mountpoint);
call_script("gtkpod.load", mountpoint, NULL);
itdb_set_mountpoint(itdb, mountpoint);
}
else {
g_free(new_mount);
new_mount = NULL;
}
g_return_val_if_fail(gtk_combo_box_get_active_iter(cb, &iter), FALSE);
gtk_tree_model_get(gtk_combo_box_get_model(cb), &iter, COL_STRING, &model, -1);
g_return_val_if_fail(model, FALSE);
if ((strcmp(model, gettext(SELECT_OR_ENTER_YOUR_MODEL)) == 0) || (strlen(model) == 0)) { /* User didn't choose a model */
g_free(model);
model = NULL;
}
/* Set model in the prefs system */
set_itdb_prefs_string(itdb, KEY_IPOD_MODEL, model);
name = get_itdb_prefs_string(itdb, "name");
result = itdb_init_ipod(mountpoint, model, name, &error);
/* Set the model in the sysinfo of the itdb */
itdb_device_set_sysinfo(itdb->device, "ModelNumStr", model);
if (!result) {
if (error) {
gtkpod_warning(_("Error initialising iPod: %s\n"), error->message);
g_error_free(error);
error = NULL;
}
else {
gtkpod_warning(_("Error initialising iPod, unknown error\n"));
}
}
else {
/* Should write the extended info file */
result = gp_create_extended_info(itdb);
}
g_free(name);
g_free(model);
break;
default:
/* canceled -- do nothing */
break;
}
gtk_widget_destroy(ii->window);
g_free(mountpoint);
g_free(ii);
return result;
}
/**
* repository_ipod_init_set_model:
*
* Ask for the iPod model, pre-select @old_model, set the selected
* model in the preferences.
*
* @itdb: the itdb to set
* @old_model: the model number string to initially propose.
*/
void repository_ipod_init_set_model(iTunesDB *itdb, const gchar *old_model) {
GtkBuilder *builder;
GtkWidget *window;
gint response;
gchar *model, *mountpoint;
gchar buf[PATH_MAX];
GtkComboBox *cb;
const IpodInfo *info;
GtkTreeIter iter;
g_return_if_fail (itdb);
/* Create window */
builder = init_repository_builder();
window = GET_WIDGET (builder, "set_ipod_model_dialog");
g_return_if_fail (window);
/* Set up label */
mountpoint = get_itdb_prefs_string(itdb, KEY_MOUNTPOINT);
gchar *displaymp = g_uri_unescape_string(mountpoint, NULL);
g_return_if_fail (mountpoint);
g_snprintf(buf, PATH_MAX, _("<b>Please select your iPod model at </b><i>%s</i>"), displaymp);
gtk_label_set_markup(GTK_LABEL (GET_WIDGET (builder, SIMD_LABEL)), buf);
g_free(mountpoint);
g_free(displaymp);
/* Setup model number combo */
cb = GTK_COMBO_BOX (GET_WIDGET (builder, SIMD_MODEL_COMBO));
repository_init_model_number_combo(cb);
/* If available set current model number, otherwise indicate that
none is available */
info = itdb_device_get_ipod_info(itdb->device);
if (info && (info->ipod_generation != ITDB_IPOD_GENERATION_UNKNOWN)) {
g_snprintf(buf, PATH_MAX, "x%s", info->model_number);
}
else {
model = get_itdb_prefs_string(itdb, KEY_IPOD_MODEL);
if (model && (strlen(g_strstrip (model)) != 0)) {
g_snprintf(buf, PATH_MAX, "%s", model);
g_free(model);
}
else {
g_snprintf(buf, PATH_MAX, "%s", gettext (SELECT_OR_ENTER_YOUR_MODEL));
}
}
/* Try and set buf as the active selection in the combo box */
_model_combo_set_active_iter(cb, buf);
response = gtk_dialog_run(GTK_DIALOG (window));
switch (response) {
case GTK_RESPONSE_OK:
g_return_if_fail(gtk_combo_box_get_active_iter(cb, &iter));
gtk_tree_model_get(gtk_combo_box_get_model(cb), &iter, COL_STRING, &model, -1);
if (!model) {
gtkpod_warning(_("Could not determine the model you selected -- this could be a bug or incompatibilty in the GTK+ or glade library.\n\n"));
}
else if (strcmp(model, gettext(SELECT_OR_ENTER_YOUR_MODEL)) == 0) { /* User didn't choose a model */
g_free(model);
model = NULL;
}
if (model) {
/* Set model in the prefs system */
set_itdb_prefs_string(itdb, KEY_IPOD_MODEL, model);
/* Set the model on the iPod */
itdb_device_set_sysinfo(itdb->device, "ModelNumStr", model);
g_free(model);
}
break;
default:
/* canceled -- do nothing */
break;
}
gtk_widget_destroy(window);
}
|