2017
[folly.git] / folly / portability / Stdlib.cpp
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/portability/Stdlib.h>
18
19 #ifdef _WIN32
20 #include <cstring>
21 #include <errno.h>
22
23 #include <folly/portability/Fcntl.h>
24 #include <folly/portability/SysStat.h>
25 #include <folly/portability/Windows.h>
26
27 extern "C" {
28 char* mktemp(char* tn) { return _mktemp(tn); }
29
30 // While yes, this is for a directory, due to this being windows,
31 // a file and directory can't have the same name, resulting in this
32 // still working just fine.
33 char* mkdtemp(char* tn) {
34   char* ptr = nullptr;
35   auto len = strlen(tn);
36   int ret = 0;
37   do {
38     strcpy(tn + len - 6, "XXXXXX");
39     ptr = mktemp(tn);
40     if (ptr == nullptr || *ptr == '\0') {
41       return nullptr;
42     }
43     ret = mkdir(ptr, 0700);
44     if (ret != 0 && errno != EEXIST) {
45       return nullptr;
46     }
47   } while (ret != 0);
48   return tn;
49 }
50
51 int mkstemp(char* tn) {
52   char* ptr = nullptr;
53   auto len = strlen(tn);
54   int ret = 0;
55   do {
56     strcpy(tn + len - 6, "XXXXXX");
57     ptr = mktemp(tn);
58     if (ptr == nullptr || *ptr == '\0') {
59       return -1;
60     }
61     ret = open(ptr, O_RDWR | O_EXCL | O_CREAT, S_IRUSR | S_IWUSR);
62     if (ret == -1 && errno != EEXIST) {
63       return -1;
64     }
65   } while (ret == -1);
66   return ret;
67 }
68
69 char* realpath(const char* path, char* resolved_path) {
70   // I sure hope the caller gave us _MAX_PATH space in the buffer....
71   return _fullpath(resolved_path, path, _MAX_PATH);
72 }
73 }
74 #endif