/src/resiprocate/resip/stack/QValue.cxx
Line | Count | Source |
1 | | #if defined(HAVE_CONFIG_H) |
2 | | #include "config.h" |
3 | | #endif |
4 | | |
5 | | #include "resip/stack/QValue.hxx" |
6 | | //#include <iostream> |
7 | | |
8 | | using namespace resip; |
9 | | using namespace std; |
10 | | |
11 | | #define RESIPROCATE_SUBSYSTEM Subsystem::SIP |
12 | | |
13 | | const Data& |
14 | | QValue::getData() const |
15 | 0 | { |
16 | 0 | DataStream strm(mDataValue); |
17 | 0 | encode(strm); |
18 | 0 | return mDataValue; |
19 | 0 | } |
20 | | |
21 | | EncodeStream& |
22 | | QValue::encode(EncodeStream& stream) const |
23 | 0 | { |
24 | 0 | int i = mValue; |
25 | | |
26 | 0 | if (i == 1000) |
27 | 0 | { |
28 | 0 | return stream << "1.0"; |
29 | 0 | } |
30 | | |
31 | 0 | stream << "0." << (i / 100); |
32 | 0 | i %= 100; |
33 | | |
34 | 0 | if (i) |
35 | 0 | { |
36 | 0 | stream << (i / 10); |
37 | 0 | i %= 10; |
38 | | |
39 | 0 | if (i) |
40 | 0 | { |
41 | 0 | stream << i; |
42 | 0 | } |
43 | 0 | } |
44 | | |
45 | 0 | return stream; |
46 | 0 | } |
47 | | |
48 | | /* ==================================================================== |
49 | | * The Vovida Software License, Version 1.0 |
50 | | * |
51 | | * Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
52 | | * |
53 | | * Redistribution and use in source and binary forms, with or without |
54 | | * modification, are permitted provided that the following conditions |
55 | | * are met: |
56 | | * |
57 | | * 1. Redistributions of source code must retain the above copyright |
58 | | * notice, this list of conditions and the following disclaimer. |
59 | | * |
60 | | * 2. Redistributions in binary form must reproduce the above copyright |
61 | | * notice, this list of conditions and the following disclaimer in |
62 | | * the documentation and/or other materials provided with the |
63 | | * distribution. |
64 | | * |
65 | | * 3. The names "VOCAL", "Vovida Open Communication Application Library", |
66 | | * and "Vovida Open Communication Application Library (VOCAL)" must |
67 | | * not be used to endorse or promote products derived from this |
68 | | * software without prior written permission. For written |
69 | | * permission, please contact vocal@vovida.org. |
70 | | * |
71 | | * 4. Products derived from this software may not be called "VOCAL", nor |
72 | | * may "VOCAL" appear in their name, without prior written |
73 | | * permission of Vovida Networks, Inc. |
74 | | * |
75 | | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
76 | | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
77 | | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
78 | | * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
79 | | * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
80 | | * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
81 | | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
82 | | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
83 | | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
84 | | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
85 | | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
86 | | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
87 | | * DAMAGE. |
88 | | * |
89 | | * ==================================================================== |
90 | | * |
91 | | * This software consists of voluntary contributions made by Vovida |
92 | | * Networks, Inc. and many individuals on behalf of Vovida Networks, |
93 | | * Inc. For more information on Vovida Networks, Inc., please see |
94 | | * <http://www.vovida.org/>. |
95 | | * |
96 | | */ |