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