LCOV - code coverage report
Current view: top level - src - progress.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 27 28 96.4 %
Date: 2016-09-12 13:07:23 Functions: 1 1 100.0 %

          Line data    Source code
       1             : /* progress.c -  status handler for progress status
       2             :    Copyright (C) 2000 Werner Koch (dd9jn)
       3             :    Copyright (C) 2001, 2002, 2003, 2004 g10 Code GmbH
       4             : 
       5             :    This file is part of GPGME.
       6             : 
       7             :    GPGME is free software; you can redistribute it and/or modify it
       8             :    under the terms of the GNU Lesser General Public License as
       9             :    published by the Free Software Foundation; either version 2.1 of
      10             :    the License, or (at your option) any later version.
      11             : 
      12             :    GPGME is distributed in the hope that it will be useful, but
      13             :    WITHOUT ANY WARRANTY; without even the implied warranty of
      14             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      15             :    Lesser General Public License for more details.
      16             : 
      17             :    You should have received a copy of the GNU Lesser General Public
      18             :    License along with this program; if not, write to the Free Software
      19             :    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
      20             :    02111-1307, USA.  */
      21             : 
      22             : #ifdef HAVE_CONFIG_H
      23             : #include <config.h>
      24             : #endif
      25             : #include <stdlib.h>
      26             : #include <string.h>
      27             : #include <errno.h>
      28             : 
      29             : #include "util.h"
      30             : #include "context.h"
      31             : #include "debug.h"
      32             : 
      33             : 
      34             : gpgme_error_t
      35        1681 : _gpgme_progress_status_handler (void *priv, gpgme_status_code_t code,
      36             :                                 char *args)
      37             : {
      38        1681 :   gpgme_ctx_t ctx = (gpgme_ctx_t) priv;
      39             :   char *p;
      40             :   char *args_cpy;
      41        1681 :   int type = 0;
      42        1681 :   int current = 0;
      43        1681 :   int total = 0;
      44             : 
      45        1681 :   if (code != GPGME_STATUS_PROGRESS || !*args || !ctx->progress_cb)
      46        1607 :     return 0;
      47             : 
      48          74 :   args_cpy = strdup (args);
      49          74 :   if (!args_cpy)
      50           0 :     return gpg_error_from_syserror ();
      51             : 
      52          74 :   p = strchr (args_cpy, ' ');
      53          74 :   if (p)
      54             :     {
      55          74 :       *p++ = 0;
      56          74 :       if (*p)
      57             :         {
      58          74 :           type = *(unsigned char *)p;
      59          74 :           p = strchr (p+1, ' ');
      60          74 :           if (p)
      61             :             {
      62          74 :               *p++ = 0;
      63          74 :               if (*p)
      64             :                 {
      65          74 :                   current = atoi (p);
      66          74 :                   p = strchr (p+1, ' ');
      67          74 :                   if (p)
      68             :                     {
      69          74 :                       *p++ = 0;
      70          74 :                       total = atoi (p);
      71             :                     }
      72             :                 }
      73             :             }
      74             :         }
      75             :     }
      76             : 
      77          74 :   if (type != 'X')
      78          54 :     ctx->progress_cb (ctx->progress_cb_value, args_cpy, type, current, total);
      79             : 
      80          74 :   free (args_cpy);
      81          74 :   return 0;
      82             : }

Generated by: LCOV version 1.11