File: old_printf_dfp.c

package info (click to toggle)
libdfp 1.0.13-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 6,236 kB
  • ctags: 5,157
  • sloc: ansic: 48,837; sh: 6,219; asm: 1,911; makefile: 660; awk: 455; python: 396; cpp: 254
file content (167 lines) | stat: -rw-r--r-- 5,062 bytes parent folder | download | duplicates (2)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* Function definition to convert DFP values to strings

   Copyright (C) 2006-2015 Free Software Foundation, Inc.

   This file is part of the Decimal Floating Point C Library.

   Author(s): Ryan S. Arnold <rsa@us.ibm.com>

   The Decimal Floating Point C Library is free software; you can
   redistribute it and/or modify it under the terms of the GNU Lesser
   General Public License version 2.1.

   The Decimal Floating Point C Library 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 Lesser General Public License version 2.1 for more details.

   You should have received a copy of the GNU Lesser General Public
   License version 2.1 along with the Decimal Floating Point C Library;
   if not, write to the Free Software Foundation, Inc., 59 Temple Place,
   Suite 330, Boston, MA 02111-1307 USA.

   Please see libdfp/COPYING.txt for more information.  */

#warn "This is an incomplete implementation.  Please adapt sysdeps/dpd/printf_dfp.c for BID.  */
#include "printf_dfp.h"
#include <stdio.h>
#include <string.h>

#include <fmt_dfp.h>

static int pa_d128;
static int pa_d64;
static int pa_d32;

void
__d128_va (void *mem, va_list *ap)
{
  _Decimal128 d = va_arg (*ap, _Decimal128);
  memcpy (mem, &d, sizeof (d));
}
strong_alias(__d128_va, d128_va)
hidden_def(__d128_va)

void
__d64_va (void *mem, va_list *ap)
{
  _Decimal64 d = va_arg (*ap, _Decimal64);
  memcpy (mem, &d, sizeof (d));
}
strong_alias(__d64_va, d64_va)
hidden_def(__d64_va)

void
__d32_va (void *mem, va_list *ap)
{
  _Decimal32 d = va_arg (*ap, _Decimal32);
  memcpy (mem, &d, sizeof (d));
}
strong_alias(__d32_va, d32_va)
hidden_def(__d32_va)

int
__d128_ais (const struct printf_info *info __attribute__ ((unused)), size_t n __attribute__ ((unused)), int *argtype, int *size)
{
  argtype[0] = pa_d128;
  size[0] = sizeof (_Decimal128);
  /* Isn't this going to say it always handles this type?  */
  return 1;
}
strong_alias(__d128_ais, d128_ais)
hidden_def(__d128_ais)

int
__d64_ais (const struct printf_info *info __attribute__ ((unused)), size_t n __attribute__ ((unused)), int *argtype, int *size)
{
  argtype[0] = pa_d64;
  size[0] = sizeof (_Decimal64);
  return 1;
}
strong_alias(__d64_ais, d64_ais)
hidden_def(__d64_ais)

int
__d32_ais (const struct printf_info *info __attribute__ ((unused)), size_t n __attribute__ ((unused)), int *argtype, int *size)
{
  argtype[0] = pa_d32;
  size[0] = sizeof (_Decimal32);
  return 1;
}
strong_alias(__d32_ais, d32_ais)
hidden_def(__d32_ais)

static int mod_H;
static int mod_D;
static int mod_DD;

#define DECIMAL_PRINTF_BUF_SIZE 97 /* ((DECIMAL128_PMAX + 14) * 2) + 1  */

int
__printf_dfp (FILE *fp,
	      const struct printf_info *info,
	      const void *const *args)
{
	char str[DECIMAL_PRINTF_BUF_SIZE];
	int len = 0;

	if (info->user & mod_H) /* %H  */
	  {
	   __fmt_d32 (info, args, str, DECIMAL_PRINTF_BUF_SIZE);
	  }
	else if (info->user & mod_DD) /* %DD  */
	  {
	   __fmt_d128 (info, args, str, DECIMAL_PRINTF_BUF_SIZE);
	  }
	else /* %D  */
	  {
	   __fmt_d64 (info, args, str, DECIMAL_PRINTF_BUF_SIZE);
	  }
	len=strlen(str);

	len = fprintf(fp,"%*s", len, &str[0]);
	return len;
}
strong_alias (__printf_dfp, printf_dfp)
hidden_def (__printf_dfp)

int __register_printf_dfp (void)
{
  pa_d128 = register_printf_type (d128_va);
  pa_d32 = register_printf_type (d32_va);
  pa_d64 = register_printf_type (d64_va);

  mod_DD = register_printf_modifier (L"DD");
  mod_H = register_printf_modifier (L"H");
  mod_D = register_printf_modifier (L"D");

  register_printf_specifier ('f', printf_dfp, d128_ais);
  register_printf_specifier ('F', printf_dfp, d128_ais);
  register_printf_specifier ('e', printf_dfp, d128_ais);
  register_printf_specifier ('E', printf_dfp, d128_ais);
  register_printf_specifier ('g', printf_dfp, d128_ais);
  register_printf_specifier ('G', printf_dfp, d128_ais);
  register_printf_specifier ('a', printf_dfp, d128_ais);
  register_printf_specifier ('A', printf_dfp, d128_ais);

  register_printf_specifier ('f', printf_dfp, d32_ais);
  register_printf_specifier ('F', printf_dfp, d32_ais);
  register_printf_specifier ('e', printf_dfp, d32_ais);
  register_printf_specifier ('E', printf_dfp, d32_ais);
  register_printf_specifier ('g', printf_dfp, d32_ais);
  register_printf_specifier ('G', printf_dfp, d32_ais);
  register_printf_specifier ('a', printf_dfp, d32_ais);
  register_printf_specifier ('A', printf_dfp, d32_ais);

  register_printf_specifier ('f', printf_dfp, d64_ais);
  register_printf_specifier ('F', printf_dfp, d64_ais);
  register_printf_specifier ('e', printf_dfp, d64_ais);
  register_printf_specifier ('E', printf_dfp, d64_ais);
  register_printf_specifier ('g', printf_dfp, d64_ais);
  register_printf_specifier ('G', printf_dfp, d64_ais);
  register_printf_specifier ('a', printf_dfp, d64_ais);
  register_printf_specifier ('A', printf_dfp, d64_ais);

  return 0;
}
strong_alias (__register_printf_dfp, register_printf_dfp)