All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
array.h
Go to the documentation of this file.
1 //
2 // Copyright 2014 DreamWorks Animation LLC.
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 VTR_ARRAY_INTERFACE_H
25 #define VTR_ARRAY_INTERFACE_H
26 
27 #include "../version.h"
28 
29 #include <cassert>
30 
31 namespace OpenSubdiv {
32 namespace OPENSUBDIV_VERSION {
33 
34 namespace Vtr {
35 
36 //
37 // This class provides a simple array-like interface -- a subset std::vector's interface -- for
38 // a sequence of elements stored in contiguous memory. It provides a unified representation for
39 // referencing data on the stack, all or a subset of std::vector<>, or anywhere else in memory.
40 //
41 // Note that its members are head/size rather than begin/end as in std::vector -- we frequently
42 // need only the size for many queries, and that is most often what is stored elsewhere in other
43 // classes, so we hope to reduce unnecessary address arithmetic constructing the interface and
44 // accessing the size. The size type is also specifically 32-bit (rather than size_t) to match
45 // internal usage and avoid unnecessary conversion to/from 64-bit.
46 //
47 // Question:
48 // Naming is at issue here... formerly called ArrayInterface until that was shot down it has
49 // been simplified to Array but needs to be distanced from std::array as it DOES NOT store its
50 // own memory and is simply an interface to memory stored elsewhere.
51 //
52 template <typename TYPE>
53 class Array {
54 
55 public:
56  typedef TYPE value_type;
57  typedef int size_type;
58 
59  typedef TYPE const& const_reference;
60  typedef TYPE const* const_iterator;
61 
62  typedef TYPE& reference;
63  typedef TYPE* iterator;
64 
65 public:
66  Array() : _begin(0), _size(0) { }
67  Array(const Array<value_type>& array) : _begin(array._begin),
68  _size(array._size) { }
69  Array(const value_type* ptr, size_type size) : _begin(const_cast<value_type*>(ptr)),
70  _size(size) { }
71  ~Array() { }
72 
73  size_type size() const { return _size; }
74 
75  const_reference operator[](int index) const { return _begin[index]; }
76  const_iterator begin() const { return _begin; }
77  const_iterator end() const { return _begin + _size; }
78 
79  reference operator[](int index) { return _begin[index]; }
80  iterator begin() { return _begin; }
81  iterator end() { return _begin + _size; }
82 
84  assert(_size>=4);
85  if (value == _begin[0]) return 0;
86  if (value == _begin[1]) return 1;
87  if (value == _begin[2]) return 2;
88  if (value == _begin[3]) return 3;
89  assert("FindIndexIn4Tuple() did not find expected value!" == 0);
90  return -1;
91  }
92 
94  for (size_type i=0; i<size(); ++i) {
95  if (value==_begin[i]) {
96  return i;
97  }
98  }
99  return -1;
100  }
101 
102 protected:
105 };
106 
107 } // end namespace Vtr
108 
109 } // end namespace OPENSUBDIV_VERSION
110 using namespace OPENSUBDIV_VERSION;
111 } // end namespace OpenSubdiv
112 
113 #endif /* VTR_ARRAY_INTERFACE_H */
114 
Array(const Array< value_type > &array)
Definition: array.h:67
size_type FindIndex(value_type value) const
Definition: array.h:93
reference operator[](int index)
Definition: array.h:79
const_iterator begin() const
Definition: array.h:76
const_iterator end() const
Definition: array.h:77
size_type FindIndexIn4Tuple(value_type value) const
Definition: array.h:83
const_reference operator[](int index) const
Definition: array.h:75
Array(const value_type *ptr, size_type size)
Definition: array.h:69