45 lines · cpp
1//===-- Implementation of vfprintf ------------------------------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#include "src/stdio/vfprintf.h"10 11#include "src/__support/CPP/limits.h"12#include "src/__support/File/file.h"13#include "src/__support/arg_list.h"14#include "src/__support/macros/config.h"15#include "src/stdio/printf_core/core_structs.h"16#include "src/stdio/printf_core/error_mapper.h"17#include "src/stdio/printf_core/vfprintf_internal.h"18 19#include "hdr/types/FILE.h"20#include <stdarg.h>21 22namespace LIBC_NAMESPACE_DECL {23 24LLVM_LIBC_FUNCTION(int, vfprintf,25 (::FILE *__restrict stream, const char *__restrict format,26 va_list vlist)) {27 internal::ArgList args(vlist); // This holder class allows for easier copying28 // and pointer semantics, as well as handling29 // destruction automatically.30 auto ret_val = printf_core::vfprintf_internal(stream, format, args);31 if (!ret_val.has_value()) {32 libc_errno = printf_core::internal_error_to_errno(ret_val.error());33 return -1;34 }35 if (ret_val.value() > static_cast<size_t>(cpp::numeric_limits<int>::max())) {36 libc_errno =37 printf_core::internal_error_to_errno(-printf_core::OVERFLOW_ERROR);38 return -1;39 }40 41 return static_cast<int>(ret_val.value());42}43 44} // namespace LIBC_NAMESPACE_DECL45