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 346 347 348 349 350 351 352 353
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2008-2009 Richard Hughes <richard@hughsie.com>
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include <termios.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <gio/gio.h>
#include <glib/gi18n.h>
#include <packagekit-glib2/pk-client.h>
#include <packagekit-glib2/pk-bitfield.h>
#include <packagekit-glib2/pk-enum.h>
#include <packagekit-glib2/pk-results.h>
#include <packagekit-glib2/pk-package-id.h>
#include "pk-error.h"
#include "pk-client-sync.h"
#include "pk-console-shared.h"
/**
* pk_console_get_number:
* @question: question to ask user
* @maxnum: maximum number allowed
*
* Get a number from the console.
*
* Return value: a number entered by the user.
**/
guint
pk_console_get_number (const gchar *question, guint maxnum)
{
gint answer = 0;
gint retval;
/* pretty print */
g_print ("%s", question);
do {
char buffer[64];
/* swallow the \n at end of line too */
if (!fgets (buffer, sizeof (buffer), stdin))
break;
if (strlen (buffer) == sizeof (buffer) - 1)
continue;
/* get a number */
retval = sscanf (buffer, "%u", &answer);
/* positive */
if (retval == 1 && answer > 0 && answer <= (gint) maxnum)
break;
g_print (_("Please enter a number from 1 to %i: "), maxnum);
} while (TRUE);
return answer;
}
/*
* pk_readline_unbuffered:
**/
static GString *
pk_readline_unbuffered (const gchar *prompt)
{
const gchar *tty_name;
FILE *tty;
GString *str = NULL;
struct termios ts, ots;
tty_name = ctermid (NULL);
if (tty_name == NULL) {
g_warning ("Cannot get terminal: %s",
strerror (errno));
goto out;
}
tty = fopen (tty_name, "r+");
if (tty == NULL) {
g_warning ("Error opening terminal for the process (`%s'): %s",
tty_name, strerror (errno));
goto out;
}
fprintf (tty, "%s", prompt);
fflush (tty);
setbuf (tty, NULL);
/* taken from polkitagenttextlistener.c */
tcgetattr (fileno (tty), &ts);
ots = ts;
ts.c_lflag &= ~(ECHONL);
tcsetattr (fileno (tty), TCSAFLUSH, &ts);
str = g_string_new (NULL);
while (TRUE) {
gint c;
c = getc (tty);
if (c == '\n') {
/* ok, done */
break;
} else if (c == EOF) {
g_warning ("Got unexpected EOF.");
break;
} else {
gchar c_safe = (gchar) c;
g_string_append_len (str, (const gchar *) &c_safe, 1);
}
}
tcsetattr (fileno (tty), TCSAFLUSH, &ots);
putc ('\n', tty);
fclose (tty);
out:
return str;
}
/**
* pk_console_get_prompt:
* @question: question to ask user
* @defaultyes: %TRUE if the default answer is yes
*
* Prompt the user with a yes/no question.
*
* Return value: %TRUE if the user accepted the question.
**/
gboolean
pk_console_get_prompt (const gchar *question, gboolean defaultyes)
{
gboolean ret = FALSE;
gboolean valid = FALSE;
gchar *prompt;
GString *string;
prompt = g_strdup_printf ("%s %s ",
question,
defaultyes ? "[Y/n]" : "[N/y]");
while (!valid) {
string = pk_readline_unbuffered (prompt);
if (string == NULL)
break;
if (string->len == 0) {
if (defaultyes) {
valid = TRUE;
ret = TRUE;
} else {
valid = TRUE;
ret = FALSE;
}
}
if (strcasecmp (string->str, "y") == 0 ||
strcasecmp (string->str, "yes") == 0) {
valid = TRUE;
ret = TRUE;
}
if (strcasecmp (string->str, "n") == 0 ||
strcasecmp (string->str, "no") == 0) {
valid = TRUE;
ret = FALSE;
}
g_string_free (string, TRUE);
}
g_free (prompt);
return ret;
}
/**
* pk_status_enum_to_localised_text:
* @status: a #PkStatusEnum
*
* Convert a #PkStatusEnum to a localized string suitable for showing to a user.
*
* Return value: a localized string.
**/
const gchar *
pk_status_enum_to_localised_text (PkStatusEnum status)
{
const gchar *text = NULL;
switch (status) {
case PK_STATUS_ENUM_UNKNOWN:
/* TRANSLATORS: This is when the transaction status is not known */
text = _("Unknown state");
break;
case PK_STATUS_ENUM_SETUP:
/* TRANSLATORS: transaction state, the daemon is in the process of starting */
text = _("Starting");
break;
case PK_STATUS_ENUM_WAIT:
/* TRANSLATORS: transaction state, the transaction is waiting for another to complete */
text = _("Waiting in queue");
break;
case PK_STATUS_ENUM_RUNNING:
/* TRANSLATORS: transaction state, just started */
text = _("Running");
break;
case PK_STATUS_ENUM_QUERY:
/* TRANSLATORS: transaction state, is querying data */
text = _("Querying");
break;
case PK_STATUS_ENUM_INFO:
/* TRANSLATORS: transaction state, getting data from a server */
text = _("Getting information");
break;
case PK_STATUS_ENUM_REMOVE:
/* TRANSLATORS: transaction state, removing packages */
text = _("Removing packages");
break;
case PK_STATUS_ENUM_DOWNLOAD:
/* TRANSLATORS: transaction state, downloading package files */
text = _("Downloading packages");
break;
case PK_STATUS_ENUM_INSTALL:
/* TRANSLATORS: transaction state, installing packages */
text = _("Installing packages");
break;
case PK_STATUS_ENUM_REFRESH_CACHE:
/* TRANSLATORS: transaction state, refreshing internal lists */
text = _("Refreshing software list");
break;
case PK_STATUS_ENUM_UPDATE:
/* TRANSLATORS: transaction state, installing updates */
text = _("Installing updates");
break;
case PK_STATUS_ENUM_CLEANUP:
/* TRANSLATORS: transaction state, removing old packages, and cleaning config files */
text = _("Cleaning up packages");
break;
case PK_STATUS_ENUM_OBSOLETE:
/* TRANSLATORS: transaction state, obsoleting old packages */
text = _("Obsoleting packages");
break;
case PK_STATUS_ENUM_DEP_RESOLVE:
/* TRANSLATORS: transaction state, checking the transaction before we do it */
text = _("Resolving dependencies");
break;
case PK_STATUS_ENUM_SIG_CHECK:
/* TRANSLATORS: transaction state, checking if we have all the security keys for the operation */
text = _("Checking signatures");
break;
case PK_STATUS_ENUM_TEST_COMMIT:
/* TRANSLATORS: transaction state, when we're doing a test transaction */
text = _("Testing changes");
break;
case PK_STATUS_ENUM_COMMIT:
/* TRANSLATORS: transaction state, when we're writing to the system package database */
text = _("Committing changes");
break;
case PK_STATUS_ENUM_REQUEST:
/* TRANSLATORS: transaction state, requesting data from a server */
text = _("Requesting data");
break;
case PK_STATUS_ENUM_FINISHED:
/* TRANSLATORS: transaction state, all done! */
text = _("Finished");
break;
case PK_STATUS_ENUM_CANCEL:
/* TRANSLATORS: transaction state, in the process of cancelling */
text = _("Cancelling");
break;
case PK_STATUS_ENUM_DOWNLOAD_REPOSITORY:
/* TRANSLATORS: transaction state, downloading metadata */
text = _("Downloading repository information");
break;
case PK_STATUS_ENUM_DOWNLOAD_PACKAGELIST:
/* TRANSLATORS: transaction state, downloading metadata */
text = _("Downloading list of packages");
break;
case PK_STATUS_ENUM_DOWNLOAD_FILELIST:
/* TRANSLATORS: transaction state, downloading metadata */
text = _("Downloading file lists");
break;
case PK_STATUS_ENUM_DOWNLOAD_CHANGELOG:
/* TRANSLATORS: transaction state, downloading metadata */
text = _("Downloading lists of changes");
break;
case PK_STATUS_ENUM_DOWNLOAD_GROUP:
/* TRANSLATORS: transaction state, downloading metadata */
text = _("Downloading groups");
break;
case PK_STATUS_ENUM_DOWNLOAD_UPDATEINFO:
/* TRANSLATORS: transaction state, downloading metadata */
text = _("Downloading update information");
break;
case PK_STATUS_ENUM_REPACKAGING:
/* TRANSLATORS: transaction state, repackaging delta files */
text = _("Repackaging files");
break;
case PK_STATUS_ENUM_LOADING_CACHE:
/* TRANSLATORS: transaction state, loading databases */
text = _("Loading cache");
break;
case PK_STATUS_ENUM_SCAN_APPLICATIONS:
/* TRANSLATORS: transaction state, scanning for running processes */
text = _("Scanning applications");
break;
case PK_STATUS_ENUM_GENERATE_PACKAGE_LIST:
/* TRANSLATORS: transaction state, generating a list of packages installed on the system */
text = _("Generating package lists");
break;
case PK_STATUS_ENUM_WAITING_FOR_LOCK:
/* TRANSLATORS: transaction state, when we're waiting for the native tools to exit */
text = _("Waiting for package manager lock");
break;
case PK_STATUS_ENUM_WAITING_FOR_AUTH:
/* TRANSLATORS: transaction state, waiting for user to type in a password */
text = _("Waiting for authentication");
break;
case PK_STATUS_ENUM_SCAN_PROCESS_LIST:
/* TRANSLATORS: transaction state, we are updating the list of processes */
text = _("Updating running applications");
break;
case PK_STATUS_ENUM_CHECK_EXECUTABLE_FILES:
/* TRANSLATORS: transaction state, we are checking executable files currently in use */
text = _("Checking applications in use");
break;
case PK_STATUS_ENUM_CHECK_LIBRARIES:
/* TRANSLATORS: transaction state, we are checking for libraries currently in use */
text = _("Checking libraries in use");
break;
case PK_STATUS_ENUM_COPY_FILES:
/* TRANSLATORS: transaction state, we are copying package files before or after the transaction */
text = _("Copying files");
break;
case PK_STATUS_ENUM_RUN_HOOK:
/* TRANSLATORS: transaction state, we are running hooks before or after the transaction */
text = _("Running hooks");
break;
default:
g_warning ("status unrecognised: %s", pk_status_enum_to_string (status));
}
return text;
}
|