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