Coverage Report

Created: 2026-02-13 06:31

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/resiprocate/resip/stack/DataParameter.hxx
Line
Count
Source
1
#if !defined(RESIP_DATAPARAMETER_HXX)
2
#define RESIP_DATAPARAMETER_HXX
3
4
#include "resip/stack/Parameter.hxx"
5
#include "resip/stack/ParameterTypeEnums.hxx"
6
#include "rutil/Data.hxx"
7
#include "rutil/PoolBase.hxx"
8
#include <iosfwd>
9
10
namespace resip
11
{
12
13
class ParseBuffer;
14
15
16
/**
17
   @ingroup sip_grammar
18
   @brief Generically represents miscellaneous parameter data.
19
*/
20
class DataParameter : public Parameter
21
{
22
   public:
23
      typedef Data Type;
24
25
      DataParameter(ParameterTypes::Type, ParseBuffer& pb, 
26
        const std::bitset<256>& terminators);
27
      explicit DataParameter(ParameterTypes::Type);
28
29
0
      bool isQuoted() const { return mQuoted; }
30
662
      void setQuoted(bool b) { mQuoted = b; }; // this parameter will be enclosed in quotes e.g. "foo"
31
32
      static Parameter* decode(ParameterTypes::Type type, 
33
                                 ParseBuffer& pb, 
34
                                 const std::bitset<256>& terminators,
35
                                 PoolBase* pool)
36
1.10k
      {
37
1.10k
         return new (pool) DataParameter(type, pb, terminators);
38
1.10k
      }
39
      
40
      virtual Parameter* clone() const;
41
      virtual EncodeStream& encode(EncodeStream& stream) const;
42
      
43
12.3k
      Type& value() {return mValue;}            // does not return a quoted string
44
   protected:
45
      DataParameter(const DataParameter& other) 
46
160
         : Parameter(other), 
47
160
           mValue(other.mValue), 
48
160
           mQuoted(other.mQuoted)
49
160
      {
50
160
      }
51
52
      Type mValue;
53
      bool mQuoted;
54
};
55
 
56
}
57
58
#endif
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
 */