blob: 1c4bd4babdb3ed788f7fad4cd857e3fe9a0594c4 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2006 The Android Open Source Project
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
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#include "SkOSFile.h"
bungemanf20488b2015-07-29 11:49:40 -07009#include "SkTypes.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000010
reed@android.com8a1c16f2008-12-17 15:59:43 +000011#include <errno.h>
epoger@google.come8ebeb12012-10-29 16:42:11 +000012#include <stdio.h>
13#include <sys/stat.h>
epoger@google.come8ebeb12012-10-29 16:42:11 +000014
abarth6fc8ff02016-07-15 15:15:15 -070015#ifdef SK_BUILD_FOR_UNIX
16#include <unistd.h>
17#endif
18
epoger@google.come8ebeb12012-10-29 16:42:11 +000019#ifdef _WIN32
20#include <direct.h>
21#include <io.h>
epoger@google.come8ebeb12012-10-29 16:42:11 +000022#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +000023
jvanverth44dcb8a2015-10-02 09:12:05 -070024#ifdef SK_BUILD_FOR_IOS
25#import <CoreFoundation/CoreFoundation.h>
26
27static FILE* ios_open_from_bundle(const char path[], const char* perm) {
28 // Get a reference to the main bundle
29 CFBundleRef mainBundle = CFBundleGetMainBundle();
mtklein944c2d92016-02-16 08:10:34 -080030
jvanverth44dcb8a2015-10-02 09:12:05 -070031 // Get a reference to the file's URL
32 CFStringRef pathRef = CFStringCreateWithCString(NULL, path, kCFStringEncodingUTF8);
33 CFURLRef imageURL = CFBundleCopyResourceURL(mainBundle, pathRef, NULL, NULL);
sdefresne388127f2016-09-20 08:53:14 -070034 CFRelease(pathRef);
jvanverth44dcb8a2015-10-02 09:12:05 -070035 if (!imageURL) {
36 return nullptr;
37 }
mtklein944c2d92016-02-16 08:10:34 -080038
jvanverth44dcb8a2015-10-02 09:12:05 -070039 // Convert the URL reference into a string reference
40 CFStringRef imagePath = CFURLCopyFileSystemPath(imageURL, kCFURLPOSIXPathStyle);
sdefresne67ba29c2016-09-21 06:51:33 -070041 CFRelease(imageURL);
mtklein944c2d92016-02-16 08:10:34 -080042
jvanverth44dcb8a2015-10-02 09:12:05 -070043 // Get the system encoding method
44 CFStringEncoding encodingMethod = CFStringGetSystemEncoding();
mtklein944c2d92016-02-16 08:10:34 -080045
jvanverth44dcb8a2015-10-02 09:12:05 -070046 // Convert the string reference into a C string
47 const char *finalPath = CFStringGetCStringPtr(imagePath, encodingMethod);
sdefresne67ba29c2016-09-21 06:51:33 -070048 FILE* fileHandle = fopen(finalPath, perm);
49 CFRelease(imagePath);
50 return fileHandle;
jvanverth44dcb8a2015-10-02 09:12:05 -070051}
52#endif
53
54
halcanaryd76be9c2015-11-20 13:47:49 -080055FILE* sk_fopen(const char path[], SkFILE_Flags flags) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000056 char perm[4];
57 char* p = perm;
58
bungeman@google.com6cab1a42013-05-29 13:43:31 +000059 if (flags & kRead_SkFILE_Flag) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000060 *p++ = 'r';
bungeman@google.com6cab1a42013-05-29 13:43:31 +000061 }
62 if (flags & kWrite_SkFILE_Flag) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000063 *p++ = 'w';
bungeman@google.com6cab1a42013-05-29 13:43:31 +000064 }
reed@android.com8a1c16f2008-12-17 15:59:43 +000065 *p++ = 'b';
66 *p = 0;
mtklein944c2d92016-02-16 08:10:34 -080067
commit-bot@chromium.org9711e442013-04-24 20:03:00 +000068 //TODO: on Windows fopen is just ASCII or the current code page,
69 //convert to utf16 and use _wfopen
halcanaryd76be9c2015-11-20 13:47:49 -080070 FILE* file = nullptr;
jvanverth44dcb8a2015-10-02 09:12:05 -070071#ifdef SK_BUILD_FOR_IOS
72 // if read-only, try to open from bundle first
73 if (kRead_SkFILE_Flag == flags) {
halcanaryd76be9c2015-11-20 13:47:49 -080074 file = ios_open_from_bundle(path, perm);
jvanverth44dcb8a2015-10-02 09:12:05 -070075 }
76 // otherwise just read from the Documents directory (default)
77 if (!file) {
78#endif
mtklein944c2d92016-02-16 08:10:34 -080079 file = fopen(path, perm);
jvanverth44dcb8a2015-10-02 09:12:05 -070080#ifdef SK_BUILD_FOR_IOS
81 }
82#endif
bungeman0881b952015-09-02 12:41:35 -070083 if (nullptr == file && (flags & kWrite_SkFILE_Flag)) {
84 SkDEBUGF(("sk_fopen: fopen(\"%s\", \"%s\") returned NULL (errno:%d): %s\n",
85 path, perm, errno, strerror(errno)));
86 }
87 return file;
reed@android.com8a1c16f2008-12-17 15:59:43 +000088}
89
halcanaryd76be9c2015-11-20 13:47:49 -080090char* sk_fgets(char* str, int size, FILE* f) {
mtklein944c2d92016-02-16 08:10:34 -080091 return fgets(str, size, (FILE *)f);
humper@google.com7af56be2013-01-14 18:49:19 +000092}
93
halcanaryd76be9c2015-11-20 13:47:49 -080094int sk_feof(FILE *f) {
humper@google.comd386b0e2013-01-14 22:01:14 +000095 // no :: namespace qualifier because it breaks android
96 return feof((FILE *)f);
humper@google.com7af56be2013-01-14 18:49:19 +000097}
98
halcanaryd76be9c2015-11-20 13:47:49 -080099size_t sk_fgetsize(FILE* f) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000100 SkASSERT(f);
101
mtklein944c2d92016-02-16 08:10:34 -0800102 long curr = ftell(f); // remember where we are
vandebo@chromium.org6390c722012-03-28 21:03:22 +0000103 if (curr < 0) {
104 return 0;
105 }
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000106
mtklein944c2d92016-02-16 08:10:34 -0800107 fseek(f, 0, SEEK_END); // go to the end
108 long size = ftell(f); // record the size
vandebo@chromium.org6390c722012-03-28 21:03:22 +0000109 if (size < 0) {
110 size = 0;
111 }
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000112
mtklein944c2d92016-02-16 08:10:34 -0800113 fseek(f, curr, SEEK_SET); // go back to our prev location
reed@android.com8a1c16f2008-12-17 15:59:43 +0000114 return size;
115}
116
halcanaryd76be9c2015-11-20 13:47:49 -0800117bool sk_frewind(FILE* f) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000118 SkASSERT(f);
halcanaryd76be9c2015-11-20 13:47:49 -0800119 ::rewind(f);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000120 return true;
121}
122
halcanaryd76be9c2015-11-20 13:47:49 -0800123size_t sk_fread(void* buffer, size_t byteCount, FILE* f) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000124 SkASSERT(f);
halcanary96fcdcc2015-08-27 07:41:13 -0700125 if (buffer == nullptr) {
mtklein944c2d92016-02-16 08:10:34 -0800126 size_t curr = ftell(f);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000127 if ((long)curr == -1) {
halcanaryd76be9c2015-11-20 13:47:49 -0800128 SkDEBUGF(("sk_fread: ftell(%p) returned -1 feof:%d ferror:%d\n", f, feof(f), ferror(f)));
reed@android.com8a1c16f2008-12-17 15:59:43 +0000129 return 0;
130 }
mtklein944c2d92016-02-16 08:10:34 -0800131 int err = fseek(f, (long)byteCount, SEEK_CUR);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000132 if (err != 0) {
133 SkDEBUGF(("sk_fread: fseek(%d) tell:%d failed with feof:%d ferror:%d returned:%d\n",
halcanaryd76be9c2015-11-20 13:47:49 -0800134 byteCount, curr, feof(f), ferror(f), err));
reed@android.com8a1c16f2008-12-17 15:59:43 +0000135 return 0;
136 }
137 return byteCount;
138 }
139 else
mtklein944c2d92016-02-16 08:10:34 -0800140 return fread(buffer, 1, byteCount, f);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000141}
142
halcanaryd76be9c2015-11-20 13:47:49 -0800143size_t sk_fwrite(const void* buffer, size_t byteCount, FILE* f) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000144 SkASSERT(f);
mtklein944c2d92016-02-16 08:10:34 -0800145 return fwrite(buffer, 1, byteCount, f);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000146}
147
halcanaryd76be9c2015-11-20 13:47:49 -0800148void sk_fflush(FILE* f) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000149 SkASSERT(f);
mtklein944c2d92016-02-16 08:10:34 -0800150 fflush(f);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000151}
152
caryclark7471fa42015-12-16 13:41:23 -0800153void sk_fsync(FILE* f) {
154#if !defined(_WIN32) && !defined(SK_BUILD_FOR_ANDROID) && !defined(__UCLIBC__) \
155 && !defined(_NEWLIB_VERSION)
mtklein944c2d92016-02-16 08:10:34 -0800156 int fd = fileno(f);
157 fsync(fd);
caryclark7471fa42015-12-16 13:41:23 -0800158#endif
159}
160
halcanaryd76be9c2015-11-20 13:47:49 -0800161bool sk_fseek(FILE* f, size_t byteCount) {
mtklein944c2d92016-02-16 08:10:34 -0800162 int err = fseek(f, (long)byteCount, SEEK_SET);
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000163 return err == 0;
164}
165
halcanaryd76be9c2015-11-20 13:47:49 -0800166bool sk_fmove(FILE* f, long byteCount) {
mtklein944c2d92016-02-16 08:10:34 -0800167 int err = fseek(f, byteCount, SEEK_CUR);
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000168 return err == 0;
169}
170
halcanaryd76be9c2015-11-20 13:47:49 -0800171size_t sk_ftell(FILE* f) {
mtklein944c2d92016-02-16 08:10:34 -0800172 long curr = ftell(f);
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000173 if (curr < 0) {
174 return 0;
175 }
176 return curr;
177}
178
halcanaryd76be9c2015-11-20 13:47:49 -0800179void sk_fclose(FILE* f) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000180 SkASSERT(f);
mtklein944c2d92016-02-16 08:10:34 -0800181 fclose(f);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000182}
183
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000184bool sk_isdir(const char *path) {
epoger@google.come8ebeb12012-10-29 16:42:11 +0000185 struct stat status;
186 if (0 != stat(path, &status)) {
187 return false;
188 }
scroggo@google.com6e725162012-11-01 16:28:23 +0000189 return SkToBool(status.st_mode & S_IFDIR);
epoger@google.come8ebeb12012-10-29 16:42:11 +0000190}
191
bungeman@google.com6cab1a42013-05-29 13:43:31 +0000192bool sk_mkdir(const char* path) {
epoger@google.come8ebeb12012-10-29 16:42:11 +0000193 if (sk_isdir(path)) {
194 return true;
195 }
196 if (sk_exists(path)) {
197 fprintf(stderr,
198 "sk_mkdir: path '%s' already exists but is not a directory\n",
199 path);
200 return false;
201 }
202
203 int retval;
204#ifdef _WIN32
205 retval = _mkdir(path);
206#else
207 retval = mkdir(path, 0777);
208#endif
209 if (0 == retval) {
210 return true;
211 } else {
212 fprintf(stderr, "sk_mkdir: error %d creating dir '%s'\n", errno, path);
213 return false;
214 }
215}