[5b21138] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
| 7 | // function-operator.c --
|
---|
| 8 | //
|
---|
| 9 | // Author : Rob Schluntz
|
---|
| 10 | // Created On : Fri Aug 25 15:21:11 2017
|
---|
[09687aa] | 11 | // Last Modified By : Peter A. Buhr
|
---|
[25773cd] | 12 | // Last Modified On : Thu Apr 11 18:27:45 2019
|
---|
| 13 | // Update Count : 10
|
---|
[5b21138] | 14 | //
|
---|
| 15 |
|
---|
[73abe95] | 16 | #include <fstream.hfa>
|
---|
| 17 | #include <stdlib.hfa>
|
---|
[5b21138] | 18 |
|
---|
| 19 | #define length(array) (sizeof((array))/sizeof((array)[0]))
|
---|
| 20 | #define begin(array) (&array[0]) // there's currently a bug in passing an array to a polymorphic function, so ensure a pointer is passed instead
|
---|
| 21 | #define end(array) (&array[length(array)])
|
---|
| 22 |
|
---|
| 23 | // STL-like Algorithms
|
---|
[fd54fef] | 24 | trait Assignable(T &, U &) { T ?=?(T &, U); };
|
---|
| 25 | trait Copyable(T &) { void ?{}(T &, T); };
|
---|
| 26 | trait Destructable(T &) { void ^?{}(T &); };
|
---|
[5b21138] | 27 |
|
---|
[fd54fef] | 28 | trait Iterator(iter & | sized(iter) | Copyable(iter) | Destructable(iter), T) {
|
---|
[5b21138] | 29 | T & *?(iter);
|
---|
| 30 | iter ++?(iter &);
|
---|
| 31 | int ?!=?(iter, iter);
|
---|
| 32 | };
|
---|
| 33 |
|
---|
[fd54fef] | 34 | forall(Tin, Input & | Iterator(Input, Tin), Tout, Output & | Iterator(Output, Tout) | Assignable(Tout, Tin))
|
---|
[5b21138] | 35 | Output copy(Input first, Input last, Output result) {
|
---|
[09687aa] | 36 | while (first != last) {
|
---|
| 37 | *result = *first;
|
---|
| 38 | ++result; ++first;
|
---|
| 39 | }
|
---|
| 40 | return result;
|
---|
[5b21138] | 41 | }
|
---|
| 42 |
|
---|
| 43 | // test ?()(T *, ...) -- ?() with function call-by-pointer
|
---|
[fd54fef] | 44 | forall(Tin, Input & | Iterator(Input, Tin), Tout, Output & | Iterator(Output, Tout), FuncRet, Func & | { FuncRet ?()(Func *, Tin); } | Assignable(Tout, FuncRet))
|
---|
[5b21138] | 45 | Output transform (Input first, Input last, Output result, Func * op) {
|
---|
[09687aa] | 46 | while (first != last) {
|
---|
| 47 | *result = op(*first);
|
---|
| 48 | ++result; ++first;
|
---|
| 49 | }
|
---|
| 50 | return result;
|
---|
[5b21138] | 51 | }
|
---|
| 52 |
|
---|
| 53 | // test ?()(T, ...) -- ?() with function call-by-value
|
---|
[fd54fef] | 54 | forall(Iter &, T | Iterator(Iter, T), Pred | { int ?()(Pred, T); })
|
---|
[5b21138] | 55 | Iter find_if (Iter first, Iter last, Pred pred) {
|
---|
[09687aa] | 56 | while (first != last) {
|
---|
| 57 | if (pred(*first)) return first;
|
---|
| 58 | ++first;
|
---|
| 59 | }
|
---|
| 60 | return last;
|
---|
[5b21138] | 61 | }
|
---|
| 62 |
|
---|
| 63 | // test ?()(T, ...) -- ?() with function call-by-reference
|
---|
[fd54fef] | 64 | forall(Generator, GenRet | { GenRet ?()(Generator &); }, Iter &, T | Iterator(Iter, T) | Assignable(T, GenRet))
|
---|
[5b21138] | 65 | void generate(Iter first, Iter last, Generator & gen) {
|
---|
[09687aa] | 66 | int i = 0;
|
---|
| 67 | while (first != last) {
|
---|
| 68 | *first = gen();
|
---|
| 69 | ++first;
|
---|
| 70 | }
|
---|
[5b21138] | 71 | }
|
---|
| 72 |
|
---|
| 73 | // encapsulate a counter that increments by one every time it is called
|
---|
| 74 | struct Counter { int c; };
|
---|
| 75 | void ?{}(Counter & cnt) { cnt.c = 0; }
|
---|
| 76 | int ?()(Counter & cnt) { return cnt.c++; }
|
---|
| 77 |
|
---|
| 78 | // TODO: abstract over os type with ostream trait; resolver is currently too slow for this to be reasonable, but it does work.
|
---|
| 79 | struct os_wrapper {
|
---|
[09687aa] | 80 | ofstream * out;
|
---|
[5b21138] | 81 | };
|
---|
| 82 |
|
---|
| 83 | // TODO: abstract over (os, T)
|
---|
| 84 | os_wrapper ?=?(os_wrapper & wrapper, int x) {
|
---|
[200fcb3] | 85 | *wrapper.out | x;
|
---|
[09687aa] | 86 | return wrapper;
|
---|
[5b21138] | 87 | }
|
---|
| 88 |
|
---|
[09687aa] | 89 | struct ostream_iterator {
|
---|
| 90 | os_wrapper * out;
|
---|
| 91 | };
|
---|
[5b21138] | 92 | void ?{}(ostream_iterator & iter, ofstream * out) {
|
---|
[09687aa] | 93 | iter.out = new(out);
|
---|
[b3763ca] | 94 | }
|
---|
[5b21138] | 95 | // no destructor, memory leak. This is necessary for this to work at the moment, since
|
---|
| 96 | // *? requires its parameter by value and returns a reference.
|
---|
| 97 |
|
---|
| 98 | // implement Iterator
|
---|
| 99 | os_wrapper & *?(ostream_iterator iter) {
|
---|
[09687aa] | 100 | return *iter.out;
|
---|
[5b21138] | 101 | }
|
---|
| 102 | ostream_iterator ++?(ostream_iterator & iter) {
|
---|
[09687aa] | 103 | // nothing to do
|
---|
| 104 | return iter;
|
---|
[5b21138] | 105 | }
|
---|
| 106 | int ?!=?(ostream_iterator i1, ostream_iterator i2) {
|
---|
[09687aa] | 107 | return i1.out->out != i2.out->out;
|
---|
[5b21138] | 108 | }
|
---|
| 109 |
|
---|
[fd54fef] | 110 | forall(T | { int ?==?(T, T); })
|
---|
[5b21138] | 111 | struct Equals {
|
---|
| 112 | T val;
|
---|
| 113 | };
|
---|
| 114 |
|
---|
[fd54fef] | 115 | forall(T | { int ?==?(T, T); })
|
---|
[5b21138] | 116 | int ?()(Equals(T) eq, T x) {
|
---|
| 117 | return eq.val == x;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
[fd54fef] | 120 | forall(T | { T ?*?(T, T); })
|
---|
[5b21138] | 121 | struct Multiply {
|
---|
| 122 | T val;
|
---|
| 123 | };
|
---|
| 124 |
|
---|
[fd54fef] | 125 | forall(T | { T ?*?(T, T); })
|
---|
[5b21138] | 126 | T ?()(Multiply(T) * mult, T x) {
|
---|
| 127 | return mult->val * x;
|
---|
| 128 | }
|
---|
| 129 |
|
---|
[7d9ad510] | 130 | // TODO: generalize to ttype return; doesn't work yet
|
---|
| 131 | // like std::function
|
---|
[fd54fef] | 132 | forall(Return, Args...)
|
---|
[7d9ad510] | 133 | struct function {
|
---|
[09687aa] | 134 | Return (*f)(Args);
|
---|
[7d9ad510] | 135 | };
|
---|
| 136 | // TODO: missing adapter in these functions
|
---|
| 137 | // // value, reference, pointer operators
|
---|
| 138 | // forall(otype Return, ttype Args) Return ?()(function(Return, Args) func, Args args) { return func.f(args); }
|
---|
| 139 | // forall(otype Return, ttype Args) Return ?()(function(Return, Args) & func, Args args) { return func.f(args); }
|
---|
| 140 | // forall(otype Return, ttype Args) Return ?()(function(Return, Args) * func, Args args) { return func->f(args); }
|
---|
| 141 |
|
---|
[5b21138] | 142 | int main() {
|
---|
| 143 | // generate for array fill
|
---|
| 144 | Counter c;
|
---|
| 145 | int x[10], y[10];
|
---|
| 146 | generate(begin(x), end(x), c);
|
---|
| 147 | generate(begin(y), end(y), c);
|
---|
| 148 |
|
---|
| 149 | // copy for output
|
---|
[09687aa] | 150 | ostream_iterator out_iter = { &sout };
|
---|
[5b21138] | 151 | copy(begin(x), end(x), out_iter);
|
---|
| 152 | copy(begin(y), end(y), out_iter);
|
---|
| 153 |
|
---|
| 154 | // find_if for searching
|
---|
| 155 | Equals(int) is5 = { 5 };
|
---|
| 156 | if (find_if(begin(x), end(x), is5) != end(y)) {
|
---|
| 157 | printf("Found 5 in x.\n");
|
---|
| 158 | } else {
|
---|
| 159 | printf("Did not find 5 in x.\n");
|
---|
| 160 | }
|
---|
| 161 | if (find_if(begin(y), end(y), is5) != end(y)) {
|
---|
| 162 | printf("Found 5 in y.\n");
|
---|
| 163 | } else {
|
---|
| 164 | printf("Did not find 5 in y.\n");
|
---|
| 165 | }
|
---|
| 166 |
|
---|
| 167 | Multiply(int) times2 = { 2 };
|
---|
| 168 | transform(begin(x), end(x), begin(x), ×2);
|
---|
| 169 | copy(begin(x), end(x), out_iter);
|
---|
[b3763ca] | 170 |
|
---|
| 171 | // REMOVE WHEN ?* PROBLEM FIXED.
|
---|
| 172 | delete(out_iter.out);
|
---|
[5b21138] | 173 | }
|
---|
| 174 |
|
---|
| 175 | // Local Variables: //
|
---|
| 176 | // tab-width: 4 //
|
---|
| 177 | // End: //
|
---|