Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2006 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 | */ |
| 16 | |
Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 17 | #ifndef _ANDROID_GRAPHICS_UTILS_H_ |
| 18 | #define _ANDROID_GRAPHICS_UTILS_H_ |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 19 | |
| 20 | #include "SkStream.h" |
| 21 | |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 22 | #include <jni.h> |
Mathias Agopian | b13b9bd | 2012-02-17 18:27:36 -0800 | [diff] [blame] | 23 | #include <androidfw/Asset.h> |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 24 | |
| 25 | namespace android { |
| 26 | |
Leon Scroggins III | ca32021 | 2013-08-20 17:59:39 -0400 | [diff] [blame] | 27 | class AssetStreamAdaptor : public SkStreamRewindable { |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 28 | public: |
Chih-Hung Hsieh | a654328 | 2016-08-29 14:46:35 -0700 | [diff] [blame] | 29 | explicit AssetStreamAdaptor(Asset*); |
Leon Scroggins III | 5e49b49 | 2013-12-03 16:26:51 -0500 | [diff] [blame] | 30 | |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 31 | virtual bool rewind(); |
| 32 | virtual size_t read(void* buffer, size_t size); |
Leon Scroggins III | ca32021 | 2013-08-20 17:59:39 -0400 | [diff] [blame] | 33 | virtual bool hasLength() const { return true; } |
| 34 | virtual size_t getLength() const; |
Leon Scroggins III | 0492eef | 2018-05-07 10:59:31 -0400 | [diff] [blame] | 35 | virtual bool hasPosition() const; |
| 36 | virtual size_t getPosition() const; |
| 37 | virtual bool seek(size_t position); |
| 38 | virtual bool move(long offset); |
Leon Scroggins III | ca32021 | 2013-08-20 17:59:39 -0400 | [diff] [blame] | 39 | virtual bool isAtEnd() const; |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 40 | |
Mike Reed | be896ed | 2017-09-19 17:01:30 -0400 | [diff] [blame] | 41 | protected: |
| 42 | SkStreamRewindable* onDuplicate() const override; |
| 43 | |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 44 | private: |
Ben Wagner | c2d3957 | 2015-01-12 17:06:21 -0500 | [diff] [blame] | 45 | Asset* fAsset; |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 46 | }; |
| 47 | |
Leon Scroggins III | ca32021 | 2013-08-20 17:59:39 -0400 | [diff] [blame] | 48 | /** |
| 49 | * Make a deep copy of the asset, and return it as a stream, or NULL if there |
| 50 | * was an error. |
| 51 | * FIXME: If we could "ref/reopen" the asset, we may not need to copy it here. |
| 52 | */ |
| 53 | |
| 54 | SkMemoryStream* CopyAssetToStream(Asset*); |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 55 | |
| 56 | /** Restore the file descriptor's offset in our destructor |
| 57 | */ |
| 58 | class AutoFDSeek { |
| 59 | public: |
Chih-Hung Hsieh | a654328 | 2016-08-29 14:46:35 -0700 | [diff] [blame] | 60 | explicit AutoFDSeek(int fd) : fFD(fd) { |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 61 | fCurr = ::lseek(fd, 0, SEEK_CUR); |
| 62 | } |
| 63 | ~AutoFDSeek() { |
| 64 | if (fCurr >= 0) { |
| 65 | ::lseek(fFD, fCurr, SEEK_SET); |
| 66 | } |
| 67 | } |
| 68 | private: |
| 69 | int fFD; |
Kenny Root | ddb76c4 | 2010-11-24 12:56:06 -0800 | [diff] [blame] | 70 | off64_t fCurr; |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | jobject nullObjectReturn(const char msg[]); |
| 74 | |
Yujie Qin | c1d7b7f | 2016-02-29 14:00:29 +0100 | [diff] [blame] | 75 | /** Check if the file descriptor is seekable. |
| 76 | */ |
| 77 | bool isSeekable(int descriptor); |
| 78 | |
Leon Scroggins III | 127d31a | 2018-01-19 12:29:47 -0500 | [diff] [blame] | 79 | JNIEnv* get_env_or_die(JavaVM* jvm); |
| 80 | |
Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 81 | }; // namespace android |
| 82 | |
Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 83 | #endif // _ANDROID_GRAPHICS_UTILS_H_ |