LCOV - code coverage report
Current view: top level - libreoffice/soltools/cpp - _mcrvalid.c (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 41 41 100.0 %
Date: 2012-12-27 Functions: 5 5 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <stdio.h>
      21             : #include <stdlib.h>
      22             : #include <string.h>
      23             : 
      24             : #include "cpp.h"
      25             : 
      26             : void
      27      214184 : mvl_init(MacroValidatorList * out_pValidators)
      28             : {
      29      214184 :     out_pValidators->pFirst = 0;
      30      214184 :     out_pValidators->nextFreeIdentifier = 1;
      31      214184 : }
      32             : 
      33             : void
      34      214184 : mvl_destruct(MacroValidatorList * out_pValidators)
      35             : {
      36      214184 :     MacroValidator * pV = out_pValidators->pFirst;
      37             :     MacroValidator * pDel;
      38      446283 :     for ( pDel = out_pValidators->pFirst;
      39             :           pDel != 0;
      40       17915 :           pDel = pV )
      41             :     {
      42       17915 :         pV = pV->pNext;
      43             : 
      44       17915 :         pDel->pMacro->flag &= (~ISACTIVE);
      45       17915 :         dofree(pDel);
      46             :     }
      47      214184 : }
      48             : 
      49             : 
      50             : #define INVALID_TILL_ENDOFROW 32000
      51             : 
      52             : /*  If in_pTokenWhereMacroBecomesValid == 0, the macro is at row end
      53             :     and therefore there does not exist any token, where the macro becomes
      54             :     valid again. It is revalidated, when the row was processed complete.
      55             : */
      56             : void
      57       49201 : mvl_add( MacroValidatorList *   inout_pValidators,
      58             :          Nlist *                in_pMacro,
      59             :          Token *                in_pTokenWhereMacroBecomesValid )
      60             : {
      61             : 
      62       49201 :     MacroValidator * pNew = new(MacroValidator);
      63       49201 :     pNew->pMacro = in_pMacro;
      64             : 
      65       49201 :     if (in_pTokenWhereMacroBecomesValid == 0)
      66             :     {
      67       17915 :         pNew->nTokenWhereMacroBecomesValid = INVALID_TILL_ENDOFROW;
      68             :     }
      69       31286 :     else if (in_pTokenWhereMacroBecomesValid->identifier > 0)
      70             :     {
      71       19278 :         pNew->nTokenWhereMacroBecomesValid = in_pTokenWhereMacroBecomesValid->identifier;
      72             :     }
      73             :     else
      74             :     {
      75       12008 :         pNew->nTokenWhereMacroBecomesValid = inout_pValidators->nextFreeIdentifier;
      76       12008 :         in_pTokenWhereMacroBecomesValid->identifier = inout_pValidators->nextFreeIdentifier;
      77       12008 :         inout_pValidators->nextFreeIdentifier++;
      78             :     }
      79             : 
      80       49201 :     pNew->pNext = inout_pValidators->pFirst;
      81       49201 :     inout_pValidators->pFirst = pNew;
      82       49201 : }
      83             : 
      84             : void
      85     1253739 : mvl_check(  MacroValidatorList * inout_pValidators,
      86             :             Token *              inout_pTokenToCheck)
      87             : {
      88             :     MacroValidator * pV;            /* Running pointer */
      89             :     MacroValidator * pCheckedOnes;  /* Here new list is built.  */
      90     1253739 :     pCheckedOnes = 0;
      91             : 
      92     4428699 :     for ( pV = inout_pValidators->pFirst;
      93             :           pV != 0;
      94     1921221 :           pV = inout_pValidators->pFirst )
      95             :     {
      96     1921221 :         inout_pValidators->pFirst = pV->pNext;
      97             : 
      98     1921221 :         if (pV->nTokenWhereMacroBecomesValid == inout_pTokenToCheck->identifier)
      99             :         {
     100       31286 :             pV->pMacro->flag &= (~ISACTIVE);
     101       31286 :             dofree(pV);
     102             :         }
     103             :         else
     104             :         {
     105     1889935 :             pV->pNext = pCheckedOnes;
     106     1889935 :             pCheckedOnes = pV;
     107             :         }
     108             :     }   /* end for  */
     109             : 
     110             :     /* Assign new built list (too old ones were removed) to
     111             :        original list:
     112             :     */
     113     1253739 :     inout_pValidators->pFirst = pCheckedOnes;
     114     1253739 : }
     115             : 
     116             : 
     117             : void
     118      263385 : tokenrow_zeroTokenIdentifiers(Tokenrow* trp)
     119             : {
     120             :     Token * tp;
     121     1517784 :     for (tp = trp->bp; tp < trp->lp; tp++)
     122             :     {
     123     1254399 :         tp->identifier = 0;
     124             :     }
     125      263385 : }
     126             : 
     127             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10