proxygen
Libgen.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2016-present 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 
18 
19 #include <string.h>
20 
21 namespace folly {
22 namespace portability {
23 static char mutableDot[] = {'.', '\0'};
24 char* internal_dirname(char* path) {
25  if (path == nullptr || !strcmp(path, "")) {
26  return mutableDot;
27  }
28  if (!strcmp(path, "/") || !strcmp(path, "\\")) {
29  return path;
30  }
31 
32  size_t len = strlen(path);
33  if (path[len - 1] == '/' || path[len - 1] == '\\') {
34  path[len - 1] = '\0';
35  }
36 
37  char* pos = strrchr(path, '/');
38  if (strrchr(path, '\\') > pos) {
39  pos = strrchr(path, '\\');
40  }
41  if (pos == nullptr) {
42  return mutableDot;
43  }
44 
45  if (pos == path) {
46  *(pos + 1) = '\0';
47  } else {
48  *pos = '\0';
49  }
50  return path;
51 }
52 } // namespace portability
53 } // namespace folly
54 
55 #ifdef _WIN32
56 extern "C" char* dirname(char* path) {
58 }
59 #endif
static char mutableDot[]
Definition: Libgen.cpp:23
—— Concurrent Priority Queue Implementation ——
Definition: AtomicBitSet.h:29
char * internal_dirname(char *path)
Definition: Libgen.cpp:24