-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathutils_win.cc
91 lines (79 loc) · 2.45 KB
/
utils_win.cc
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
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "platform/globals.h"
#if defined(DART_HOST_OS_WINDOWS)
#include <io.h> // NOLINT
#include "platform/allocation.h"
#include "platform/utils.h"
#include "platform/utils_win.h"
namespace dart {
char* Utils::StrNDup(const char* s, intptr_t n) {
intptr_t len = strlen(s);
if ((n < 0) || (len < 0)) {
return nullptr;
}
if (n < len) {
len = n;
}
char* result = reinterpret_cast<char*>(malloc(len + 1));
result[len] = '\0';
return reinterpret_cast<char*>(memmove(result, s, len));
}
char* Utils::StrDup(const char* s) {
return _strdup(s);
}
intptr_t Utils::StrNLen(const char* s, intptr_t n) {
return strnlen(s, n);
}
int Utils::SNPrint(char* str, size_t size, const char* format, ...) {
va_list args;
va_start(args, format);
int retval = VSNPrint(str, size, format, args);
va_end(args);
return retval;
}
int Utils::VSNPrint(char* str, size_t size, const char* format, va_list args) {
if (str == nullptr || size == 0) {
int retval = _vscprintf(format, args);
if (retval < 0) {
FATAL("Fatal error in Utils::VSNPrint with format '%s'", format);
}
return retval;
}
va_list args_copy;
va_copy(args_copy, args);
int written = _vsnprintf(str, size, format, args_copy);
va_end(args_copy);
if (written < 0) {
// _vsnprintf returns -1 if the number of characters to be written is
// larger than 'size', so we call _vscprintf which returns the number
// of characters that would have been written.
va_list args_retry;
va_copy(args_retry, args);
written = _vscprintf(format, args_retry);
if (written < 0) {
FATAL("Fatal error in Utils::VSNPrint with format '%s'", format);
}
va_end(args_retry);
}
// Make sure to zero-terminate the string if the output was
// truncated or if there was an error.
// The static cast is safe here as we have already determined that 'written'
// is >= 0.
if (static_cast<size_t>(written) >= size) {
str[size - 1] = '\0';
}
return written;
}
int Utils::Close(int fildes) {
return _close(fildes);
}
size_t Utils::Read(int filedes, void* buf, size_t nbyte) {
return _read(filedes, buf, nbyte);
}
int Utils::Unlink(const char* path) {
return _unlink(path);
}
} // namespace dart
#endif // defined(DART_HOST_OS_WINDOWS)