Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FN_multi_function_signature.hh « functions « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77a8ce14c036b534a3accd69d2d2d8608256649b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#ifndef __FN_MULTI_FUNCTION_SIGNATURE_HH__
#define __FN_MULTI_FUNCTION_SIGNATURE_HH__

/** \file
 * \ingroup fn
 *
 * The signature of a multi-function contains the functions name and expected parameters. New
 * signatures should be build using the MFSignatureBuilder class.
 */

#include "FN_multi_function_param_type.hh"

#include "BLI_vector.hh"

namespace blender {
namespace fn {

struct MFSignature {
  std::string function_name;
  /* Use RawAllocator so that a MultiFunction can have static storage duration. */
  Vector<std::string, 4, RawAllocator> param_names;
  Vector<MFParamType, 4, RawAllocator> param_types;
  Vector<uint, 4, RawAllocator> param_data_indices;

  uint data_index(uint param_index) const
  {
    return param_data_indices[param_index];
  }
};

class MFSignatureBuilder {
 private:
  MFSignature &m_data;
  uint m_span_count = 0;
  uint m_virtual_span_count = 0;
  uint m_virtual_array_span_count = 0;
  uint m_vector_array_count = 0;

 public:
  MFSignatureBuilder(MFSignature &data) : m_data(data)
  {
    BLI_assert(data.param_names.is_empty());
    BLI_assert(data.param_types.is_empty());
    BLI_assert(data.param_data_indices.is_empty());
  }

  /* Input Param Types */

  template<typename T> void single_input(StringRef name)
  {
    this->single_input(name, CPPType::get<T>());
  }
  void single_input(StringRef name, const CPPType &type)
  {
    this->input(name, MFDataType::ForSingle(type));
  }
  template<typename T> void vector_input(StringRef name)
  {
    this->vector_input(name, CPPType::get<T>());
  }
  void vector_input(StringRef name, const CPPType &base_type)
  {
    this->input(name, MFDataType::ForVector(base_type));
  }
  void input(StringRef name, MFDataType data_type)
  {
    m_data.param_names.append(name);
    m_data.param_types.append(MFParamType(MFParamType::Input, data_type));

    switch (data_type.category()) {
      case MFDataType::Single:
        m_data.param_data_indices.append(m_virtual_span_count++);
        break;
      case MFDataType::Vector:
        m_data.param_data_indices.append(m_virtual_array_span_count++);
        break;
    }
  }

  /* Output Param Types */

  template<typename T> void single_output(StringRef name)
  {
    this->single_output(name, CPPType::get<T>());
  }
  void single_output(StringRef name, const CPPType &type)
  {
    this->output(name, MFDataType::ForSingle(type));
  }
  template<typename T> void vector_output(StringRef name)
  {
    this->vector_output(name, CPPType::get<T>());
  }
  void vector_output(StringRef name, const CPPType &base_type)
  {
    this->output(name, MFDataType::ForVector(base_type));
  }
  void output(StringRef name, MFDataType data_type)
  {
    m_data.param_names.append(name);
    m_data.param_types.append(MFParamType(MFParamType::Output, data_type));

    switch (data_type.category()) {
      case MFDataType::Single:
        m_data.param_data_indices.append(m_span_count++);
        break;
      case MFDataType::Vector:
        m_data.param_data_indices.append(m_vector_array_count++);
        break;
    }
  }

  /* Mutable Param Types */

  template<typename T> void single_mutable(StringRef name)
  {
    this->single_mutable(name, CPPType::get<T>());
  }
  void single_mutable(StringRef name, const CPPType &type)
  {
    this->mutable_(name, MFDataType::ForSingle(type));
  }
  template<typename T> void vector_mutable(StringRef name)
  {
    this->vector_mutable(name, CPPType::get<T>());
  }
  void vector_mutable(StringRef name, const CPPType &base_type)
  {
    this->mutable_(name, MFDataType::ForVector(base_type));
  }
  void mutable_(StringRef name, MFDataType data_type)
  {
    m_data.param_names.append(name);
    m_data.param_types.append(MFParamType(MFParamType::Mutable, data_type));

    switch (data_type.category()) {
      case MFDataType::Single:
        m_data.param_data_indices.append(m_span_count++);
        break;
      case MFDataType::Vector:
        m_data.param_data_indices.append(m_vector_array_count++);
        break;
    }
  }
};

}  // namespace fn
}  // namespace blender

#endif /* __FN_MULTI_FUNCTION_SIGNATURE_HH__ */