blob: cea688b86f4e331c46d0e014739abd9b33d21956 [file] [log] [blame]
bungeman@google.com6cab1a42013-05-29 13:43:31 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkOSFile.h"
9
bungeman@google.comf5cc5b12013-07-12 18:22:49 +000010#include "SkTFitsIn.h"
bungemane998b7f2015-02-12 07:18:27 -080011#include "SkTypes.h"
bungeman@google.com11c9a552013-06-03 17:10:35 +000012
bungemane998b7f2015-02-12 07:18:27 -080013#include <dirent.h>
bungeman@google.com6cab1a42013-05-29 13:43:31 +000014#include <stdio.h>
15#include <sys/mman.h>
16#include <sys/stat.h>
17#include <sys/types.h>
bungemanbf0b9ce2014-07-10 15:18:23 -070018#include <unistd.h>
19
20bool sk_exists(const char *path, SkFILE_Flags flags) {
21 int mode = F_OK;
22 if (flags & kRead_SkFILE_Flag) {
23 mode |= R_OK;
24 }
25 if (flags & kWrite_SkFILE_Flag) {
26 mode |= W_OK;
27 }
28 return (0 == access(path, mode));
29}
bungeman@google.com6cab1a42013-05-29 13:43:31 +000030
31typedef struct {
32 dev_t dev;
33 ino_t ino;
34} SkFILEID;
35
36static bool sk_ino(SkFILE* a, SkFILEID* id) {
37 int fd = fileno((FILE*)a);
38 if (fd < 0) {
39 return 0;
40 }
41 struct stat status;
42 if (0 != fstat(fd, &status)) {
43 return 0;
44 }
45 id->dev = status.st_dev;
46 id->ino = status.st_ino;
47 return true;
48}
49
50bool sk_fidentical(SkFILE* a, SkFILE* b) {
51 SkFILEID aID, bID;
52 return sk_ino(a, &aID) && sk_ino(b, &bID)
53 && aID.ino == bID.ino
54 && aID.dev == bID.dev;
55}
56
57void sk_fmunmap(const void* addr, size_t length) {
58 munmap(const_cast<void*>(addr), length);
59}
60
bungeman@google.com11c9a552013-06-03 17:10:35 +000061void* sk_fdmmap(int fd, size_t* size) {
62 struct stat status;
63 if (0 != fstat(fd, &status)) {
bungeman@google.com6cab1a42013-05-29 13:43:31 +000064 return NULL;
65 }
bungeman@google.com11c9a552013-06-03 17:10:35 +000066 if (!S_ISREG(status.st_mode)) {
bungeman@google.com6cab1a42013-05-29 13:43:31 +000067 return NULL;
68 }
bungeman@google.com11c9a552013-06-03 17:10:35 +000069 if (!SkTFitsIn<size_t>(status.st_size)) {
70 return NULL;
71 }
72 size_t fileSize = static_cast<size_t>(status.st_size);
bungeman@google.com6cab1a42013-05-29 13:43:31 +000073
74 void* addr = mmap(NULL, fileSize, PROT_READ, MAP_PRIVATE, fd, 0);
75 if (MAP_FAILED == addr) {
76 return NULL;
77 }
78
79 *size = fileSize;
80 return addr;
81}
bungeman@google.com11c9a552013-06-03 17:10:35 +000082
83int sk_fileno(SkFILE* f) {
84 return fileno((FILE*)f);
85}
86
87void* sk_fmmap(SkFILE* f, size_t* size) {
88 int fd = sk_fileno(f);
89 if (fd < 0) {
90 return NULL;
91 }
skia.committer@gmail.com11f2b442013-06-04 07:00:53 +000092
bungeman@google.com11c9a552013-06-03 17:10:35 +000093 return sk_fdmmap(fd, size);
94}
bungemane998b7f2015-02-12 07:18:27 -080095
96////////////////////////////////////////////////////////////////////////////
97
98struct SkOSFileIterData {
99 SkOSFileIterData() : fDIR(0) { }
100 DIR* fDIR;
101 SkString fPath, fSuffix;
102};
103SK_COMPILE_ASSERT(sizeof(SkOSFileIterData) <= SkOSFile::Iter::kStorageSize, not_enough_space);
104
105SkOSFile::Iter::Iter() {
106 SkNEW_PLACEMENT(fSelf.get(), SkOSFileIterData);
107}
108
109SkOSFile::Iter::Iter(const char path[], const char suffix[]) {
110 SkNEW_PLACEMENT(fSelf.get(), SkOSFileIterData);
111 this->reset(path, suffix);
112}
113
114SkOSFile::Iter::~Iter() {
115 SkOSFileIterData& self = *static_cast<SkOSFileIterData*>(fSelf.get());
116 if (self.fDIR) {
117 ::closedir(self.fDIR);
118 }
119 self.~SkOSFileIterData();
120}
121
122void SkOSFile::Iter::reset(const char path[], const char suffix[]) {
123 SkOSFileIterData& self = *static_cast<SkOSFileIterData*>(fSelf.get());
124 if (self.fDIR) {
125 ::closedir(self.fDIR);
126 self.fDIR = 0;
127 }
128
129 self.fPath.set(path);
130 if (path) {
131 self.fDIR = ::opendir(path);
132 self.fSuffix.set(suffix);
133 } else {
134 self.fSuffix.reset();
135 }
136}
137
138// returns true if suffix is empty, or if str ends with suffix
139static bool issuffixfor(const SkString& suffix, const char str[]) {
140 size_t suffixLen = suffix.size();
141 size_t strLen = strlen(str);
142
143 return strLen >= suffixLen &&
144 memcmp(suffix.c_str(), str + strLen - suffixLen, suffixLen) == 0;
145}
146
147bool SkOSFile::Iter::next(SkString* name, bool getDir) {
148 SkOSFileIterData& self = *static_cast<SkOSFileIterData*>(fSelf.get());
149 if (self.fDIR) {
150 dirent* entry;
151
152 while ((entry = ::readdir(self.fDIR)) != NULL) {
153 struct stat s;
154 SkString str(self.fPath);
155
156 if (!str.endsWith("/") && !str.endsWith("\\")) {
157 str.append("/");
158 }
159 str.append(entry->d_name);
160
161 if (0 == stat(str.c_str(), &s)) {
162 if (getDir) {
163 if (s.st_mode & S_IFDIR) {
164 break;
165 }
166 } else {
167 if (!(s.st_mode & S_IFDIR) && issuffixfor(self.fSuffix, entry->d_name)) {
168 break;
169 }
170 }
171 }
172 }
173 if (entry) { // we broke out with a file
174 if (name) {
175 name->set(entry->d_name);
176 }
177 return true;
178 }
179 }
180 return false;
181}