From: Marcus Brinkmann Date: Thu, 31 Jan 2002 15:27:49 +0000 (+0000) Subject: Really add this file. X-Git-Tag: gpgme-0-3-1~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ebd6ac7b7d6f2cccb7e5846acb7cea9fadcecfad;p=gpgme.git Really add this file. --- diff --git a/gpgme/progress.c b/gpgme/progress.c new file mode 100644 index 0000000..f3a23e4 --- /dev/null +++ b/gpgme/progress.c @@ -0,0 +1,80 @@ +/* progress.c - status handler for progress status + * Copyright (C) 2000 Werner Koch (dd9jn) + * Copyright (C) 2001, 2002 g10 Code GmbH + * + * This file is part of GPGME. + * + * GPGME 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. + * + * GPGME 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 + */ + +#ifdef HAVE_CONFIG_H +#include +#endif +#include +#include + +#include "util.h" +#include "context.h" + + +void +_gpgme_progress_status_handler (GpgmeCtx ctx, GpgStatusCode code, char *args) +{ + char *p; + char *args_cpy; + int type = 0; + int current = 0; + int total = 0; + + if (code != STATUS_PROGRESS || !*args || !ctx->progress_cb) + return; + + args_cpy = xtrystrdup (args); + if (!args_cpy) + { + ctx->out_of_core = 1; + return; + } + + p = strchr (args_cpy, ' '); + if (p) + { + *p++ = 0; + if (*p) + { + type = *(byte *)p; + p = strchr (p+1, ' '); + if (p) + { + *p++ = 0; + if (*p) + { + current = atoi (p); + p = strchr (p+1, ' '); + if (p) + { + *p++ = 0; + total = atoi (p); + } + } + } + } + } + + if (type != 'X') + ctx->progress_cb (ctx->progress_cb_value, args_cpy, type, current, total); + + xfree (args_cpy); +}