1 /* 2 * Copyright (C) 2017 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef _INIT_TEST_FUNCTION_MAP_H 18 #define _INIT_TEST_FUNCTION_MAP_H 19 20 #include <string> 21 #include <vector> 22 23 #include "builtin_arguments.h" 24 #include "keyword_map.h" 25 26 namespace android { 27 namespace init { 28 29 class TestFunctionMap : public KeywordFunctionMap { 30 public: 31 // Helper for argument-less functions 32 using BuiltinFunctionNoArgs = std::function<void(void)>; 33 void Add(const std::string& name, const BuiltinFunctionNoArgs function) { 34 Add(name, 0, 0, false, [function](const BuiltinArguments&) { 35 function(); 36 return Success(); 37 }); 38 } 39 40 void Add(const std::string& name, std::size_t min_parameters, std::size_t max_parameters, 41 bool run_in_subcontext, const BuiltinFunction function) { 42 builtin_functions_[name] = 43 make_tuple(min_parameters, max_parameters, make_pair(run_in_subcontext, function)); 44 } 45 46 private: 47 Map builtin_functions_ = {}; 48 49 const Map& map() const override { return builtin_functions_; } 50 }; 51 52 } // namespace init 53 } // namespace android 54 55 #endif 56