/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /* $Rev$ $Date$ */ #ifndef tuscany_function_hpp #define tuscany_function_hpp /** * Lambda function type. */ #include #include "fstream.hpp" #include "gc.hpp" #include "config.hpp" namespace tuscany { #ifdef WANT_MAINTAINER_COUNTERS /** * Debug counters. */ long int countProxies; long int countFProxies = 0; long int countCProxies = 0; long int countLambdas = 0; long int countELambdas = 0; long int countCLambdas = 0; long int countFLambdas = 0; bool resetLambdaCounters() { countLambdas = countELambdas = countCLambdas = countFLambdas = countProxies = countFProxies = countCProxies = 0; return true; } bool checkLambdaCounters() { return countLambdas == 0; } bool printLambdaCounters() { cout << "countLambdas " << countLambdas << endl; cout << "countELambdas " << countELambdas << endl; cout << "countFLambdas " << countFLambdas << endl; cout << "countCLambdas " << countCLambdas << endl; cout << "countProxies " << countProxies << endl; cout << "countFProxies " << countFProxies << endl; cout << "countCProxies " << countCProxies << endl; return true; } #else #define resetLambdaCounters() #define checkLambdaCounters() true #define printLambdaCounters() #endif /** * Lambda function type. */ template class Callable { public: Callable() { } virtual const size_t size() const = 0; virtual const R operator()(P... p) const = 0; virtual ~Callable() { } template class Proxy: public Callable { public: Proxy(const F& f) : function(f) { debug_inc(countProxies); debug_inc(countFProxies); } Proxy(const Proxy& p) : function(p.function) { debug_inc(countProxies); debug_inc(countCProxies); } ~Proxy() { debug_dec(countProxies); } virtual const R operator() (P... p) const { return function(std::forward

(p)...); } virtual const size_t size() const { return sizeof(function); } private: const F function; }; }; template class lambda; template class lambda { public: lambda() : callable(0) { debug_inc(countLambdas); debug_inc(countELambdas); } template lambda(const F f) { debug_inc(countLambdas); debug_inc(countFLambdas); typedef typename CallableType::template Proxy ProxyType; callable = gc_ptr(new (gc_new()) ProxyType(f)); } lambda(const lambda& l) { debug_inc(countLambdas); debug_inc(countCLambdas); callable = l.callable; } const lambda& operator=(const lambda& l) { if (this == &l) return *this; callable = l.callable; return *this; } ~lambda() { debug_dec(countLambdas); } const bool operator==(const lambda& l) const { if (this == &l) return true; return callable == l.callable; } const bool operator!=(const lambda& l) const { return !this->operator==(l); } const R operator()(P... p) const { return (*callable)(std::forward

(p)...); } template friend ostream& operator<<(ostream&, const lambda&); template friend const bool isNil(const lambda& l); private: typedef Callable CallableType; gc_ptr callable; }; template ostream& operator<<(ostream& out, const lambda& l) { return out << "lambda::" << l.callable; } /** * Return true if a lambda is nil. */ template const bool isNil(const lambda& l) { return ((void*)l.callable) == 0; } /** * Curry a lambda function. */ template class curried { public: curried(const lambda& f, const T& v): v(v), f(f) { } const R operator()(P... p) const { return f(v, std::forward

(p)...); } private: const T v; const lambdaf; }; template const lambda curry(const lambda& f, const T& t) { return curried(f, t); } template const lambda curry(const lambda& f, const T& t, const U& u) { return curry(curry(f, t), u); } template const lambda curry(const lambda& f, const T& t, const U& u, const V& v) { return curry(curry(curry(f, t), u), v); } /** * A lambda function that returns the given value. */ template class returnResult { public: returnResult(const T& v) : v(v) { } const T operator()() const { return v; } private: const T v; }; template const lambda result(const T& v) { return returnResult (v); } } #endif /* tuscany_function_hpp */