| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EMBEDDERS_OPENGLUI_COMMON_RESOURCE_H_ | 5 #ifndef EMBEDDERS_OPENGLUI_COMMON_RESOURCE_H_ |
| 6 #define EMBEDDERS_OPENGLUI_COMMON_RESOURCE_H_ | 6 #define EMBEDDERS_OPENGLUI_COMMON_RESOURCE_H_ |
| 7 | 7 |
| 8 #include <stdlib.h> | 8 #include <stdlib.h> |
| 9 | 9 |
| 10 class Resource { | 10 class Resource { |
| 11 public: | 11 public: |
| 12 explicit Resource(const char* path) | 12 explicit Resource(const char* path) |
| 13 : path_(path), | 13 : descriptor_(-1), |
| 14 descriptor_(-1), | |
| 15 start_(0), | 14 start_(0), |
| 16 length_(-1) { | 15 length_(-1) { |
| 16 path_ = strdup(path); |
| 17 } | 17 } |
| 18 | 18 |
| 19 const char* path() { | 19 const char* path() { |
| 20 return path_; | 20 return path_; |
| 21 } | 21 } |
| 22 | 22 |
| 23 virtual int32_t descriptor() { | 23 virtual int32_t descriptor() { |
| 24 return descriptor_; | 24 return descriptor_; |
| 25 } | 25 } |
| 26 | 26 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 37 } | 37 } |
| 38 | 38 |
| 39 virtual void Close() { | 39 virtual void Close() { |
| 40 } | 40 } |
| 41 | 41 |
| 42 virtual int32_t Read(void* buffer, size_t count) { | 42 virtual int32_t Read(void* buffer, size_t count) { |
| 43 return -1; | 43 return -1; |
| 44 } | 44 } |
| 45 | 45 |
| 46 virtual ~Resource() { | 46 virtual ~Resource() { |
| 47 free(path_); |
| 47 } | 48 } |
| 48 | 49 |
| 49 protected: | 50 protected: |
| 50 const char* path_; | 51 char* path_; |
| 51 int32_t descriptor_; | 52 int32_t descriptor_; |
| 52 off_t start_; | 53 off_t start_; |
| 53 off_t length_; | 54 off_t length_; |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 #endif // EMBEDDERS_OPENGLUI_COMMON_RESOURCE_H_ | 57 #endif // EMBEDDERS_OPENGLUI_COMMON_RESOURCE_H_ |
| 57 | 58 |
| OLD | NEW |