Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: runtime/bin/file_macos.cc

Issue 12555005: dart:io | Revert addition of Link class, because it conflicts with a Link class in dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/file_linux.cc ('k') | runtime/bin/file_patch.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "platform/globals.h" 5 #include "platform/globals.h"
6 #if defined(TARGET_OS_MACOS) 6 #if defined(TARGET_OS_MACOS)
7 7
8 #include "bin/file.h" 8 #include "bin/file.h"
9 9
10 #include <errno.h> // NOLINT 10 #include <errno.h> // NOLINT
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 154
155 bool File::Create(const char* name) { 155 bool File::Create(const char* name) {
156 int fd = TEMP_FAILURE_RETRY(open(name, O_RDONLY | O_CREAT, 0666)); 156 int fd = TEMP_FAILURE_RETRY(open(name, O_RDONLY | O_CREAT, 0666));
157 if (fd < 0) { 157 if (fd < 0) {
158 return false; 158 return false;
159 } 159 }
160 return (close(fd) == 0); 160 return (close(fd) == 0);
161 } 161 }
162 162
163 163
164 bool File::CreateLink(const char* name, const char* target) {
165 int status = TEMP_FAILURE_RETRY(symlink(target, name));
166 return (status == 0);
167 }
168
169
170 bool File::Delete(const char* name) { 164 bool File::Delete(const char* name) {
171 int status = TEMP_FAILURE_RETRY(remove(name)); 165 int status = TEMP_FAILURE_RETRY(remove(name));
172 if (status == -1) { 166 if (status == -1) {
173 return false; 167 return false;
174 } 168 }
175 return true; 169 return true;
176 } 170 }
177 171
178 172
179 off_t File::LengthFromPath(const char* name) { 173 off_t File::LengthFromPath(const char* name) {
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 stat_success = TEMP_FAILURE_RETRY(lstat(pathname, &entry_info)); 264 stat_success = TEMP_FAILURE_RETRY(lstat(pathname, &entry_info));
271 } 265 }
272 if (stat_success == -1) return File::kDoesNotExist; 266 if (stat_success == -1) return File::kDoesNotExist;
273 if (S_ISDIR(entry_info.st_mode)) return File::kIsDirectory; 267 if (S_ISDIR(entry_info.st_mode)) return File::kIsDirectory;
274 if (S_ISREG(entry_info.st_mode)) return File::kIsFile; 268 if (S_ISREG(entry_info.st_mode)) return File::kIsFile;
275 if (S_ISLNK(entry_info.st_mode)) return File::kIsLink; 269 if (S_ISLNK(entry_info.st_mode)) return File::kIsLink;
276 return File::kDoesNotExist; 270 return File::kDoesNotExist;
277 } 271 }
278 272
279 #endif // defined(TARGET_OS_MACOS) 273 #endif // defined(TARGET_OS_MACOS)
OLDNEW
« no previous file with comments | « runtime/bin/file_linux.cc ('k') | runtime/bin/file_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698