Coverage Report

Created: 2025-10-12 06:49

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/resiprocate/resip/stack/PlainContents.hxx
Line
Count
Source
1
#if !defined(RESIP_PLAINCONTENTS_HXX)
2
#define RESIP_PLAINCONTENTS_HXX 
3
4
#include "resip/stack/Contents.hxx"
5
6
namespace resip
7
{
8
9
/**
10
   @ingroup sip_payload
11
   @brief SIP body type for holding plain contents (MIME content-type text/plain).
12
*/
13
class PlainContents : public Contents
14
{
15
   public:
16
      static const PlainContents Empty;
17
18
      PlainContents();
19
      PlainContents(const Data& text);
20
      PlainContents(const HeaderFieldValue& hfv, const Mime& contentType);
21
      PlainContents(const Data& data, const Mime& contentType);
22
      PlainContents(const PlainContents& rhs);
23
      virtual ~PlainContents();
24
      PlainContents& operator=(const PlainContents& rhs);
25
26
      /** @brief duplicate an PlainContents object
27
          @return pointer to a new PlainContents object  
28
        **/
29
      virtual Contents* clone() const;
30
31
      static const Mime& getStaticType() ;
32
33
      virtual EncodeStream& encodeParsed(EncodeStream& str) const;
34
      virtual void parse(ParseBuffer& pb);
35
36
0
      const Data& text() const {checkParsed(); return mText;}
37
0
      Data& text() {checkParsed(); return mText;}
38
39
      static bool init();
40
   private:
41
      Data mText;
42
};
43
44
static bool invokePlainContentsInit = PlainContents::init();
45
46
}
47
48
#endif
49
50
/* ====================================================================
51
 * The Vovida Software License, Version 1.0 
52
 * 
53
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
54
 * 
55
 * Redistribution and use in source and binary forms, with or without
56
 * modification, are permitted provided that the following conditions
57
 * are met:
58
 * 
59
 * 1. Redistributions of source code must retain the above copyright
60
 *    notice, this list of conditions and the following disclaimer.
61
 * 
62
 * 2. Redistributions in binary form must reproduce the above copyright
63
 *    notice, this list of conditions and the following disclaimer in
64
 *    the documentation and/or other materials provided with the
65
 *    distribution.
66
 * 
67
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
68
 *    and "Vovida Open Communication Application Library (VOCAL)" must
69
 *    not be used to endorse or promote products derived from this
70
 *    software without prior written permission. For written
71
 *    permission, please contact vocal@vovida.org.
72
 *
73
 * 4. Products derived from this software may not be called "VOCAL", nor
74
 *    may "VOCAL" appear in their name, without prior written
75
 *    permission of Vovida Networks, Inc.
76
 * 
77
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
78
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
79
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
80
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
81
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
82
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
83
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
84
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
85
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
86
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
87
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
88
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
89
 * DAMAGE.
90
 * 
91
 * ====================================================================
92
 * 
93
 * This software consists of voluntary contributions made by Vovida
94
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
95
 * Inc.  For more information on Vovida Networks, Inc., please see
96
 * <http://www.vovida.org/>.
97
 *
98
 */