blob: ceda7dd51c385df5e9208956f6efdd640f24ce10 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
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 */
Brian Carlstromdb4d5402011-08-09 12:18:28 -070016
17#include "os.h"
18
19#include <cstddef>
20#include <sys/types.h>
21#include <sys/stat.h>
22#include <fcntl.h>
23
Elliott Hughes76160052012-12-12 16:31:20 -080024#include "base/unix_file/fd_file.h"
25#include "UniquePtr.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070026
27namespace art {
28
Brian Carlstromf5822582012-03-19 22:34:31 -070029File* OS::OpenFile(const char* name, bool writable, bool create) {
30 int flags = 0;
Brian Carlstromdb4d5402011-08-09 12:18:28 -070031 if (writable) {
Brian Carlstromf5822582012-03-19 22:34:31 -070032 flags |= O_RDWR;
33 if (create) {
34 flags |= (O_CREAT | O_TRUNC);
35 }
36 } else {
37 flags |= O_RDONLY;
Brian Carlstromdb4d5402011-08-09 12:18:28 -070038 }
Elliott Hughes76160052012-12-12 16:31:20 -080039 UniquePtr<File> file(new File);
40 if (!file->Open(name, flags, 0666)) {
Brian Carlstromdb4d5402011-08-09 12:18:28 -070041 return NULL;
42 }
Elliott Hughes76160052012-12-12 16:31:20 -080043 return file.release();
Brian Carlstromdb4d5402011-08-09 12:18:28 -070044}
45
46bool OS::FileExists(const char* name) {
47 struct stat st;
48 if (stat(name, &st) == 0) {
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070049 return S_ISREG(st.st_mode); // TODO: Deal with symlinks?
Brian Carlstromdb4d5402011-08-09 12:18:28 -070050 } else {
51 return false;
52 }
53}
54
Brian Carlstrom16192862011-09-12 17:50:06 -070055bool OS::DirectoryExists(const char* name) {
56 struct stat st;
57 if (stat(name, &st) == 0) {
58 return S_ISDIR(st.st_mode); // TODO: Deal with symlinks?
59 } else {
60 return false;
61 }
62}
63
Brian Carlstromdb4d5402011-08-09 12:18:28 -070064} // namespace art