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