<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'><div dir='ltr'>
Thank you everyone for responding, the answers have been very informative. For my purposes, the method Ulf proposed looks to be the the optimal solution. It's going to make things so much easier than I had anticipated and now I just want this grind to end so I can get back to the fun stuff of writing my own code!<br><br><div>> Subject: Re: [erlang-questions] escript question<br>> From: ulf.wiger@erlang-solutions.com<br>> Date: Mon, 19 Sep 2011 16:37:53 +0200<br>> CC: silent_vendetta@hotmail.com; erlang-questions@erlang.org<br>> To: g@rre.tt<br>> <br>> <br>> On 19 Sep 2011, at 16:22, Garrett Smith wrote:<br>> <br>> > <br>> > E.g. store a function in your database that increments a number by 1:<br>> > <br>> > FStr = "fun(N) -> N + 1 end."<br>> > <br>> > When you're ready to use it:<br>> > <br>> > {ok, Tokens, _} = erl_scan:string(FStr),<br>> > {ok, Exprs} = erl_parse:parse_exprs(Tokens),<br>> > {value, F, []} = erl_eval:exprs(Exprs, []).<br>> > <br>> > Now:<br>> > <br>> > 2 = F(1).<br>> <br>> I'd go one step further and store Exprs in the database directly, eliminating the parsing step.<br>> <br>> To avoid having to learn the abstract form representation, you can use parse_trans_codegen.erl.<br>> <br>> http://github.com/esl/parse_trans<br>> <br>> Example:<br>> <br>> -module(storefun).<br>> -export([f/1]).<br>> <br>> -include_lib("parse_trans/include/codegen.hrl").<br>> <br>> f(1) -><br>>     codegen:exprs(fun() -><br>>                       fun(N) -><br>>                              N + 1<br>>                     end<br>>               end).<br>> <br>> Compiling this with parse_trans/ebin in the path:<br>> <br>> Eshell V5.8.4  (abort with ^G)<br>> 1> c(storefun).<br>> {ok,storefun}<br>> 2> storefun:f(1).<br>> [{'fun',8,<br>>         {clauses,[{clause,8,<br>>                           [{var,8,'N'}],<br>>                           [],<br>>                           [{op,9,'+',{var,9,'N'},{integer,9,1}}]}]}}]<br>> 3> {value, F, []} = erl_eval:exprs(v(2),[]).<br>> {value,#Fun<erl_eval.6.13229925>,[]}<br>> 4> F(2).<br>> 3<br>> <br>> That is, codegen:exprs(fun() -> <Exprs> end) returns the abstract form list for <Exprs>. If you want the expressions to inherit variables, you can do that  by defining those variables as arguments to the enclosing fun:<br>> <br>> f(2) -><br>>     codegen:exprs(fun(X) -><br>>                          fun(N) -><br>>                              N + X<br>>                     end<br>>               end).<br>> <br>> <br>> 5> c(storefun).                             <br>> {ok,storefun}<br>> 6> storefun:f(2).                           <br>> [{'fun',14,<br>>         {clauses,[{clause,14,<br>>                           [{var,14,'N'}],<br>>                           [],<br>>                           [{op,15,'+',{var,15,'N'},{var,15,'X'}}]}]}}]<br>> 7> {value, F2, []} = erl_eval:exprs(v(6),[]).<br>> ** exception error: {unbound_var,'X'}<br>> 8> {value, F2, []} = erl_eval:exprs(v(6),[{'X',17}]).<br>> ** exception error: no match of right hand side value <br>>                     {value,#Fun<erl_eval.6.13229925>,[{'X',17}]}<br>> 9> {value, F2, _} = erl_eval:exprs(v(6),[{'X',17}]). <br>> {value,#Fun<erl_eval.6.13229925>,[{'X',17}]}<br>> 10> F2(3).<br>> 20<br>> <br>> <br>> The abstract code is generated at compile-time, so there is very little overhead.<br>> <br>> BR,<br>> Ulf W<br>> <br>> Ulf Wiger, CTO, Erlang Solutions, Ltd.<br>> http://erlang-solutions.com<br>> <br>> <br>> <br></div>                                         </div></body>
</html>