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

Side by Side Diff: src/ports/SkOSFile_posix.cpp

Issue 15298009: Change SkStream. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Clean up, address comments. Created 7 years, 7 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 | « src/ports/SkOSFile_none.cpp ('k') | src/ports/SkOSFile_stdio.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
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
10 #include <stdio.h>
11 #include <sys/mman.h>
12 #include <sys/stat.h>
13 #include <sys/types.h>
14
15 typedef struct {
16 dev_t dev;
17 ino_t ino;
18 } SkFILEID;
19
20 static bool sk_ino(SkFILE* a, SkFILEID* id) {
21 int fd = fileno((FILE*)a);
22 if (fd < 0) {
23 return 0;
24 }
25 struct stat status;
26 if (0 != fstat(fd, &status)) {
27 return 0;
28 }
29 id->dev = status.st_dev;
30 id->ino = status.st_ino;
31 return true;
32 }
33
34 bool sk_fidentical(SkFILE* a, SkFILE* b) {
35 SkFILEID aID, bID;
36 return sk_ino(a, &aID) && sk_ino(b, &bID)
37 && aID.ino == bID.ino
38 && aID.dev == bID.dev;
39 }
40
41 void sk_fmunmap(const void* addr, size_t length) {
42 munmap(const_cast<void*>(addr), length);
43 }
44
45 void* sk_fmmap(SkFILE* f, size_t* size) {
46 size_t fileSize = sk_fgetsize(f);
47 if (0 == fileSize) {
48 return NULL;
49 }
50
51 int fd = fileno((FILE*)f);
52 if (fd < 0) {
53 return NULL;
54 }
55
56 void* addr = mmap(NULL, fileSize, PROT_READ, MAP_PRIVATE, fd, 0);
57 if (MAP_FAILED == addr) {
58 return NULL;
59 }
60
61 *size = fileSize;
62 return addr;
63 }
OLDNEW
« no previous file with comments | « src/ports/SkOSFile_none.cpp ('k') | src/ports/SkOSFile_stdio.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698