Coverage Report

Created: 2024-04-23 06:04

/src/resiprocate/resip/stack/ExistsParameter.cxx
Line
Count
Source (jump to first uncovered line)
1
#if defined(HAVE_CONFIG_H)
2
#include "config.h"
3
#endif
4
5
#include "resip/stack/ExistsParameter.hxx"
6
#include "resip/stack/Symbols.hxx"
7
#include "rutil/ParseBuffer.hxx"
8
#include "rutil/WinLeakCheck.hxx"
9
10
using namespace resip;
11
using namespace std;
12
13
ExistsParameter::ExistsParameter(ParameterTypes::Type type, ParseBuffer& pb, const std::bitset<256>& terminators)
14
   : Parameter(type),
15
     mValue(true)
16
2.13M
{
17
   // Protect ourselves just in case an exists parameter has a RHS.
18
2.13M
   pb.skipWhitespace();
19
2.13M
   if (!pb.eof() && *pb.position() == Symbols::EQUALS[0])
20
326
   {
21
326
      pb.skipChar();
22
326
      if (!pb.eof() && *pb.position() == Symbols::DOUBLE_QUOTE[0])
23
10
      {
24
10
         pb.skipChar();
25
10
         pb.skipToEndQuote();
26
10
      }
27
316
      else
28
316
      {
29
316
         pb.skipToOneOf(terminators); 
30
316
      }
31
326
   }
32
2.13M
}
33
34
ExistsParameter::ExistsParameter(ParameterTypes::Type type)
35
   : Parameter(type),
36
     mValue(true)
37
0
{}
38
      
39
Parameter* 
40
ExistsParameter::clone() const
41
57.0k
{
42
57.0k
   return new ExistsParameter(*this);
43
57.0k
}
44
45
EncodeStream&
46
ExistsParameter::encode(EncodeStream& stream) const
47
0
{
48
0
   if (mValue)
49
0
   {
50
0
      stream << getName();
51
0
   }
52
0
   return stream;
53
0
}
54
55
56
57
58
59
60
61
/* ====================================================================
62
 * The Vovida Software License, Version 1.0 
63
 * 
64
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
65
 * 
66
 * Redistribution and use in source and binary forms, with or without
67
 * modification, are permitted provided that the following conditions
68
 * are met:
69
 * 
70
 * 1. Redistributions of source code must retain the above copyright
71
 *    notice, this list of conditions and the following disclaimer.
72
 * 
73
 * 2. Redistributions in binary form must reproduce the above copyright
74
 *    notice, this list of conditions and the following disclaimer in
75
 *    the documentation and/or other materials provided with the
76
 *    distribution.
77
 * 
78
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
79
 *    and "Vovida Open Communication Application Library (VOCAL)" must
80
 *    not be used to endorse or promote products derived from this
81
 *    software without prior written permission. For written
82
 *    permission, please contact vocal@vovida.org.
83
 *
84
 * 4. Products derived from this software may not be called "VOCAL", nor
85
 *    may "VOCAL" appear in their name, without prior written
86
 *    permission of Vovida Networks, Inc.
87
 * 
88
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
89
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
90
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
91
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
92
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
93
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
94
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
95
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
96
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
97
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
98
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
99
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
100
 * DAMAGE.
101
 * 
102
 * ====================================================================
103
 * 
104
 * This software consists of voluntary contributions made by Vovida
105
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
106
 * Inc.  For more information on Vovida Networks, Inc., please see
107
 * <http://www.vovida.org/>.
108
 *
109
 */