/usr/share/gsoap/custom/float128.c is in gsoap 2.8.28-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | /*
float128.c
Custom serializer for the <quadmath.h> __float128 quad precision float
type as xsd:decimal.
Compile this file and link it with your code.
gSOAP XML Web services tools
Copyright (C) 2000-2015, Robert van Engelen, Genivia Inc., All Rights Reserved.
This part of the software is released under ONE of the following licenses:
GPL, the gSOAP public license, OR Genivia's license for commercial use.
--------------------------------------------------------------------------------
gSOAP public license.
The contents of this file are subject to the gSOAP Public License Version 1.3
(the "License"); you may not use this file except in compliance with the
License. You may obtain a copy of the License at
http://www.cs.fsu.edu/~engelen/soaplicense.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
The Initial Developer of the Original Code is Robert A. van Engelen.
Copyright (C) 2000-2015, Robert van Engelen, Genivia, Inc., All Rights Reserved.
--------------------------------------------------------------------------------
GPL license.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
Author contact information:
engelen@genivia.com / engelen@acm.org
This program is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
--------------------------------------------------------------------------------
A commercial use license is available from Genivia, Inc., contact@genivia.com
--------------------------------------------------------------------------------
*/
/* soapH.h generated by soapcpp2 from .h file containing #import "float128.h" */
#include "soapH.h"
void soap_default_xsd__decimal(struct soap *soap, __float128 *a)
{
(void)soap;
*a = 0.0;
}
void soap_serialize_xsd__decimal(struct soap *soap, const __float128 *a)
{
(void)soap; (void)a;
}
int soap_s2xsd__decimal(struct soap *soap, const char *s, __float128 *a)
{
if (s)
{
if (!*s)
return soap->error = SOAP_TYPE;
if (!soap_tag_cmp(s, "INF"))
*a = (__float128)DBL_PINFTY;
else if (!soap_tag_cmp(s, "+INF"))
*a = (__float128)DBL_PINFTY;
else if (!soap_tag_cmp(s, "-INF"))
*a = (__float128)DBL_NINFTY;
else if (!soap_tag_cmp(s, "NaN"))
*a = (__float128)DBL_NAN;
else
{
char *r;
*a = strtoflt128(s, &r);
if (*r)
soap->error = SOAP_TYPE;
}
}
return soap->error;
}
const char * soap_xsd__decimal2s(struct soap *soap, __float128 a)
{
char *s;
if (isnanq(a))
return "NaN";
if (isinfq(a))
{
if (a >= 0)
return "INF";
return "-INF";
}
quadmath_snprintf(soap->tmpbuf, sizeof(soap->tmpbuf), "%Qg", a);
s = strchr(soap->tmpbuf, ','); /* convert decimal comma to DP */
if (s)
*s = '.';
return soap->tmpbuf;
}
int soap_out_xsd__decimal(struct soap *soap, const char *tag, int id, const __float128 *p, const char *type)
{
if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, p, SOAP_TYPE_xsd__decimal), type)
|| soap_string_out(soap, soap_xsd__decimal2s(soap, *p), 0))
return soap->error;
return soap_element_end_out(soap, tag);
}
__float128 * soap_in_xsd__decimal(struct soap *soap, const char *tag, __float128 *a, const char *type)
{
if (soap_element_begin_in(soap, tag, 0, type))
return NULL;
a = (__float128*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__decimal, sizeof(__float128), NULL, NULL, NULL, NULL);
if (*soap->href)
a = (__float128*)soap_id_forward(soap, soap->href, a, 0, SOAP_TYPE_xsd__decimal, 0, sizeof(__float128), 0, NULL, NULL);
else if (a)
{
if (soap_s2xsd__decimal(soap, soap_value(soap), a))
return NULL;
}
if (soap->body && soap_element_end_in(soap, tag))
return NULL;
return a;
}
|