123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /*
- * Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Intel Corporation nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #ifndef SE_STDIO_H
- #define SE_STDIO_H
- #include <stdio.h>
- #include <stddef.h>
- #include "se_memcpy.h"
- #include <stdarg.h>
- #include <unistd.h>
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <fcntl.h>
- #ifndef MAX_PATH
- #define MAX_PATH 260
- #endif
- static inline int se_delete_file(const char *path_name)
- {
- return unlink(path_name);
- }
- #define se_delete_tfile se_delete_file
- static inline int sprintf_s(char *dst_buf, size_t size_in_bytes, const char *format, ...)
- {
- va_list argptr;
- int cnt;
- va_start(argptr, format);
- cnt = vsnprintf(dst_buf, size_in_bytes, format, argptr);
- va_end(argptr);
- return cnt;
- }
- static inline int _snprintf_s(char *dst_buf, size_t size_in_bytes, size_t max_count, const char *format, ...)
- {
- (void) size_in_bytes;
- va_list argptr;
- int cnt;
- va_start(argptr, format);
- cnt = vsnprintf(dst_buf, max_count, format, argptr);
- va_end(argptr);
- return cnt;
- }
- static inline errno_t fopen_s(FILE **f, const char *filename, const char *mode)
- {
- errno_t err = 0;
- *f = fopen(filename, mode);
- if(*f==NULL){
- err = -1;
- }
- return err;
- }
- static inline int se_copy_file(const char *dst_name, const char *src_name)
- {
- int dest = -1;
- int source = -1;
- ssize_t nr_read;
- struct stat stat_buf;
- #ifndef BUF_SIZE
- #define BUF_SIZE 4096
- #endif
- char buf[BUF_SIZE];
- /* open the input file */
- source = open(src_name, O_RDONLY);
- if(source < 0)
- goto error;
- /* get size and permissions of the prebuild DB file */
- if (fstat(source, &stat_buf) != 0)
- goto error;
- dest = open(dst_name, O_WRONLY|O_CREAT|O_TRUNC, stat_buf.st_mode);
- if(dest < 0)
- goto error;
- while ((nr_read = read(source, buf, BUF_SIZE)) > 0)
- {
- if (write(dest, buf, nr_read) != nr_read)
- goto error;
- }
- #undef BUF_SIZE
- close(dest);
- close(source);
- return 0;
- error:
- if(dest>=0)close(dest);
- if(source>=0)close(source);
- return -1;
- }
- #ifdef __cplusplus
- template <size_t _Size>
- int sprintf_s(char (&dst)[_Size], const char *format, ...)
- {
- va_list argptr;
- int cnt;
- va_start(argptr, format);
- cnt = vsprintf(dst, format, argptr);
- va_end(argptr);
- return cnt;
- }
- template<size_t _Size>
- int _snprintf_s(char (&dst)[_Size], size_t max_count, const char *format, ...)
- {
- va_list argptr;
- int cnt;
- va_start(argptr, format);
- cnt = vsnprintf(dst, max_count, format, argptr);
- va_end(argptr);
- return cnt;
- }
- #endif
- #endif
|