| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "bin/file.h" | 5 #include "bin/file.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <fcntl.h> | 8 #include <fcntl.h> |
| 9 #include <sys/stat.h> | 9 #include <sys/stat.h> |
| 10 #include <unistd.h> | 10 #include <unistd.h> |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 133 |
| 134 File* File::OpenStdio(int fd) { | 134 File* File::OpenStdio(int fd) { |
| 135 if (fd < 0 || 2 < fd) return NULL; | 135 if (fd < 0 || 2 < fd) return NULL; |
| 136 return new File(NULL, new FileHandle(fd)); | 136 return new File(NULL, new FileHandle(fd)); |
| 137 } | 137 } |
| 138 | 138 |
| 139 | 139 |
| 140 bool File::Exists(const char* name) { | 140 bool File::Exists(const char* name) { |
| 141 struct stat st; | 141 struct stat st; |
| 142 if (TEMP_FAILURE_RETRY(stat(name, &st)) == 0) { | 142 if (TEMP_FAILURE_RETRY(stat(name, &st)) == 0) { |
| 143 return S_ISREG(st.st_mode); // Deal with symlinks? | 143 return S_ISREG(st.st_mode); |
| 144 } else { | 144 } else { |
| 145 return false; | 145 return false; |
| 146 } | 146 } |
| 147 } | 147 } |
| 148 | 148 |
| 149 | 149 |
| 150 bool File::Create(const char* name) { | 150 bool File::Create(const char* name) { |
| 151 int fd = TEMP_FAILURE_RETRY(open(name, O_RDONLY | O_CREAT, 0666)); | 151 int fd = TEMP_FAILURE_RETRY(open(name, O_RDONLY | O_CREAT, 0666)); |
| 152 if (fd < 0) { | 152 if (fd < 0) { |
| 153 return false; | 153 return false; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 int result = fstat(fd, &buf); | 226 int result = fstat(fd, &buf); |
| 227 if (result == -1) { | 227 if (result == -1) { |
| 228 FATAL2("Failed stat on file descriptor %d: %s", fd, strerror(errno)); | 228 FATAL2("Failed stat on file descriptor %d: %s", fd, strerror(errno)); |
| 229 } | 229 } |
| 230 if (S_ISCHR(buf.st_mode)) return kTerminal; | 230 if (S_ISCHR(buf.st_mode)) return kTerminal; |
| 231 if (S_ISFIFO(buf.st_mode)) return kPipe; | 231 if (S_ISFIFO(buf.st_mode)) return kPipe; |
| 232 if (S_ISSOCK(buf.st_mode)) return kSocket; | 232 if (S_ISSOCK(buf.st_mode)) return kSocket; |
| 233 if (S_ISREG(buf.st_mode)) return kFile; | 233 if (S_ISREG(buf.st_mode)) return kFile; |
| 234 return kOther; | 234 return kOther; |
| 235 } | 235 } |
| OLD | NEW |