ReactOS 0.4.16-dev-937-g7afcd2a
input.cpp
Go to the documentation of this file.
1//
2// input.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// The core formatted input functions; all of the scanf-style functions call one
7// of these functions.
8//
9#define _ALLOW_OLD_VALIDATE_MACROS
11
12using namespace __crt_stdio_input;
13
14
15// Enclaves do not have a file system, but they do allow in-memory operations
16// from stdio.
17#ifndef _UCRT_ENCLAVE_BUILD
18
19template <typename Character>
21 unsigned __int64 const options,
22 FILE* const stream,
23 Character const* const format,
24 _locale_t const locale,
25 va_list const arglist
26 ) throw()
27{
28 typedef input_processor<
29 Character,
31 > processor_type;
32
33 _VALIDATE_RETURN(stream != nullptr, EINVAL, EOF);
34 _VALIDATE_RETURN(format != nullptr, EINVAL, EOF);
35
37 {
38 _LocaleUpdate locale_update(locale);
39
40 processor_type processor(
42 options,
43 format,
44 locale_update.GetLocaleT(),
45 arglist);
46
47 return processor.process();
48 });
49}
50
52 unsigned __int64 const options,
53 FILE* const stream,
54 char const* const format,
55 _locale_t const locale,
56 va_list const arglist
57 )
58{
60}
61
63 unsigned __int64 const options,
64 FILE* const stream,
65 wchar_t const* const format,
66 _locale_t const locale,
67 va_list const arglist
68 )
69{
71}
72
73#endif /* _UCRT_ENCLAVE_BUILD */
74
75
76template <typename Character>
78 unsigned __int64 const options,
79 Character const* const buffer,
80 size_t const buffer_count,
81 Character const* const format,
82 _locale_t const locale,
83 va_list const arglist
84 ) throw()
85{
87
88 typedef input_processor<
89 Character,
91 > processor_type;
92
93 _VALIDATE_RETURN(buffer != nullptr, EINVAL, EOF);
94 _VALIDATE_RETURN(format != nullptr, EINVAL, EOF);
95
96 // The number of elements to consider when scanning is the lesser of [1] the
97 // specified number of elements in the buffer or [2] the length of the string
98 // in the buffer.
99 size_t const buffer_count_for_stream = char_traits::tcsnlen(buffer, buffer_count);
100
101 _LocaleUpdate locale_update(locale);
102
103 processor_type processor(
104 string_input_adapter<Character>(buffer, buffer_count_for_stream),
105 options,
106 format,
107 locale_update.GetLocaleT(),
108 arglist);
109
110 return processor.process();
111}
112
114 unsigned __int64 const options,
115 char const* const buffer,
116 size_t const buffer_count,
117 char const* const format,
118 _locale_t const locale,
119 va_list const arglist
120 )
121{
123}
124
126 unsigned __int64 const options,
127 wchar_t const* const buffer,
128 size_t const buffer_count,
129 wchar_t const* const format,
130 _locale_t const locale,
131 va_list const arglist
132 )
133{
135}
#define EINVAL
Definition: acclib.h:90
#define __cdecl
Definition: accygwin.h:79
char * va_list
Definition: acmsvcex.h:78
#define __int64
Definition: basetyps.h:16
Definition: _locale.h:75
auto __acrt_lock_stream_and_call(FILE *const stream, Action &&action) -> decltype(action())
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
GLuint buffer
Definition: glext.h:5915
#define EOF
Definition: stdio.h:24
int __cdecl __stdio_common_vswscanf(unsigned __int64 const options, wchar_t const *const buffer, size_t const buffer_count, wchar_t const *const format, _locale_t const locale, va_list const arglist)
Definition: input.cpp:125
int __cdecl __stdio_common_vfscanf(unsigned __int64 const options, FILE *const stream, char const *const format, _locale_t const locale, va_list const arglist)
Definition: input.cpp:51
static int __cdecl common_vsscanf(unsigned __int64 const options, Character const *const buffer, size_t const buffer_count, Character const *const format, _locale_t const locale, va_list const arglist)
Definition: input.cpp:77
int __cdecl __stdio_common_vfwscanf(unsigned __int64 const options, FILE *const stream, wchar_t const *const format, _locale_t const locale, va_list const arglist)
Definition: input.cpp:62
static int __cdecl common_vfscanf(unsigned __int64 const options, FILE *const stream, Character const *const format, _locale_t const locale, va_list const arglist)
Definition: input.cpp:20
int __cdecl __stdio_common_vsscanf(unsigned __int64 const options, char const *const buffer, size_t const buffer_count, char const *const format, _locale_t const locale, va_list const arglist)
Definition: input.cpp:113
va_lists_t arglist[FMT_ARGMAX+1]
Definition: format.c:284
Definition: format.c:58
Definition: parse.h:23
size_t const buffer_count
Definition: xtoa.cpp:36