| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-07 09:50:34 +02:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** \file
 | 
					
						
							|  |  |  |  * \ingroup fn | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The signature of a multi-function contains the functions name and expected parameters. New | 
					
						
							| 
									
										
										
										
											2020-07-22 11:46:27 +10:00
										 |  |  |  * signatures should be build using the #MFSignatureBuilder class. | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "FN_multi_function_param_type.hh"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "BLI_vector.hh"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-03 14:25:20 +02:00
										 |  |  | namespace blender::fn { | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct MFSignature { | 
					
						
							|  |  |  |   std::string function_name; | 
					
						
							| 
									
										
										
										
											2020-07-24 13:47:57 +02:00
										 |  |  |   Vector<std::string> param_names; | 
					
						
							|  |  |  |   Vector<MFParamType> param_types; | 
					
						
							|  |  |  |   Vector<int> param_data_indices; | 
					
						
							| 
									
										
										
										
											2020-07-21 17:20:05 +02:00
										 |  |  |   bool depends_on_context = false; | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-20 12:16:20 +02:00
										 |  |  |   int data_index(int param_index) const | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     return param_data_indices[param_index]; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MFSignatureBuilder { | 
					
						
							|  |  |  |  private: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |   MFSignature signature_; | 
					
						
							| 
									
										
										
										
											2020-07-20 12:16:20 +02:00
										 |  |  |   int span_count_ = 0; | 
					
						
							| 
									
										
										
										
											2021-03-21 19:31:24 +01:00
										 |  |  |   int virtual_array_count_ = 0; | 
					
						
							|  |  |  |   int virtual_vector_array_count_ = 0; | 
					
						
							| 
									
										
										
										
											2020-07-20 12:16:20 +02:00
										 |  |  |   int vector_array_count_ = 0; | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |  public: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |   MFSignatureBuilder(std::string function_name) | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |     signature_.function_name = std::move(function_name); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   MFSignature build() const | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     return std::move(signature_); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-22 11:46:27 +10:00
										 |  |  |   /* Input Parameter Types */ | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   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) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |     signature_.param_names.append(name); | 
					
						
							|  |  |  |     signature_.param_types.append(MFParamType(MFParamType::Input, data_type)); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (data_type.category()) { | 
					
						
							|  |  |  |       case MFDataType::Single: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |         signature_.param_data_indices.append(virtual_array_count_++); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |       case MFDataType::Vector: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |         signature_.param_data_indices.append(virtual_vector_array_count_++); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-22 11:46:27 +10:00
										 |  |  |   /* Output Parameter Types */ | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   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) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |     signature_.param_names.append(name); | 
					
						
							|  |  |  |     signature_.param_types.append(MFParamType(MFParamType::Output, data_type)); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (data_type.category()) { | 
					
						
							|  |  |  |       case MFDataType::Single: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |         signature_.param_data_indices.append(span_count_++); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |       case MFDataType::Vector: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |         signature_.param_data_indices.append(vector_array_count_++); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-22 11:46:27 +10:00
										 |  |  |   /* Mutable Parameter Types */ | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   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)); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-06-22 15:48:08 +02:00
										 |  |  |   template<typename T> void vector_mutable(StringRef name) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     this->vector_mutable(name, CPPType::get<T>()); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |   void vector_mutable(StringRef name, const CPPType &base_type) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     this->mutable_(name, MFDataType::ForVector(base_type)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   void mutable_(StringRef name, MFDataType data_type) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |     signature_.param_names.append(name); | 
					
						
							|  |  |  |     signature_.param_types.append(MFParamType(MFParamType::Mutable, data_type)); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (data_type.category()) { | 
					
						
							|  |  |  |       case MFDataType::Single: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |         signature_.param_data_indices.append(span_count_++); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |       case MFDataType::Vector: | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |         signature_.param_data_indices.append(vector_array_count_++); | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-07-21 17:20:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /* Context */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /** This indicates that the function accesses the context. This disables optimizations that
 | 
					
						
							| 
									
										
										
										
											2020-07-22 11:46:27 +10:00
										 |  |  |    * depend on the fact that the function always performers the same operation. */ | 
					
						
							| 
									
										
										
										
											2020-07-21 17:20:05 +02:00
										 |  |  |   void depends_on_context() | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2021-03-22 11:57:24 +01:00
										 |  |  |     signature_.depends_on_context = true; | 
					
						
							| 
									
										
										
										
											2020-07-21 17:20:05 +02:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-06-16 16:35:57 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-03 14:25:20 +02:00
										 |  |  | }  // namespace blender::fn
 |