All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
asset_v1.h
Go to the documentation of this file.
1 //
2 // Copyright 2021 Pixar
3 //
4 // Licensed under the Apache License, Version 2.0 (the "Apache License")
5 // with the following modification; you may not use this file except in
6 // compliance with the Apache License and the following modification to it:
7 // Section 6. Trademarks. is deleted and replaced with:
8 //
9 // 6. Trademarks. This License does not grant permission to use the trade
10 // names, trademarks, service marks, or product names of the Licensor
11 // and its affiliates, except as required to comply with Section 4(c) of
12 // the License and to reproduce the content of the NOTICE file.
13 //
14 // You may obtain a copy of the Apache License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the Apache License with the above modification is
20 // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21 // KIND, either express or implied. See the Apache License for the specific
22 // language governing permissions and limitations under the Apache License.
23 //
24 #ifndef INCLUDE_AR_ASSET
25 #error This file should not be included directly. Include asset.h instead.
26 #endif
27 
28 #ifndef PXR_USD_AR_ASSET_V1_H
29 #define PXR_USD_AR_ASSET_V1_H
30 
32 
33 #include "pxr/pxr.h"
34 #include "pxr/usd/ar/api.h"
35 
36 #include <cstdio>
37 #include <memory>
38 #include <utility>
39 
40 PXR_NAMESPACE_OPEN_SCOPE
41 
47 class ArAsset {
48 public:
49  AR_API
50  virtual ~ArAsset();
51 
52  ArAsset(const ArAsset&) = delete;
53 
54  ArAsset& operator=(const ArAsset&) = delete;
55 
57  AR_API
58  virtual size_t GetSize() = 0;
59 
68  AR_API
69  virtual std::shared_ptr<const char> GetBuffer() = 0;
70 
76  AR_API
77  virtual size_t Read(void* buffer, size_t count, size_t offset) = 0;
78 
96  AR_API
97  virtual std::pair<FILE*, size_t> GetFileUnsafe() = 0;
98 
99 protected:
100  AR_API
101  ArAsset();
102 };
103 
104 PXR_NAMESPACE_CLOSE_SCOPE
105 
106 #endif // PXR_USD_AR_ASSET_V1_H
Interface for accessing the contents of an asset.
Definition: asset_v1.h:47
virtual AR_API std::shared_ptr< const char > GetBuffer()=0
Returns a pointer to a buffer with the contents of the asset, with size given by GetSize().
virtual AR_API size_t Read(void *buffer, size_t count, size_t offset)=0
Read count bytes at offset from the beginning of the asset into buffer.
virtual AR_API size_t GetSize()=0
Returns size of the asset.
virtual AR_API std::pair< FILE *, size_t > GetFileUnsafe()=0
Returns a read-only FILE* handle and offset for this asset if available, or (nullptr, 0) otherwise.