Template Haskell is a GHC extension to Haskell that adds compile-time meta-programming facilities. This allows users to write programs that generate or modify their program at compile time: a form of compile-time macros.
6
votes
2answers
85 views
How to create a non-TH package from code generated using Template Haskell?
I'm making a small package that defines wrappers for tuples and adds instances form them, like
newtype Tuple2 a = Tuple2 { untuple2 :: (a, a) }
deriving (...)
tuple2 :: a -> a -> Tuple2 a
...
3
votes
1answer
66 views
Template Haskell: GHC stage restriction and how to overcome
I have the following code in a module:
{-# LANGUAGE TemplateHaskell #-}
module Alpha where
import Language.Haskell.TH
import Data.List
data Alpha = Alpha { name :: String, value :: Int } deriving ...
3
votes
1answer
63 views
Template Haskell names of declarations as strings
Say I have this:
f x = x + 1
tt2 name o = sequence [valD (varP (mkName name)) (normalB [| f $(varE o) |]) []]
I'd like to convert tt2 to tt:
tt name o = [d| ??? = f $(varE o) |]
I cannot figure ...
4
votes
1answer
128 views
Working with a list in TemplateHaskell
Here's the tutorial I'm working from.
He has an example, tupleReplicate, which returns a function that takes a value and replicates it:
tupleReplicate :: Int -> Q Exp
tupleReplicate n = do id ...
1
vote
1answer
32 views
How do I use TemplateHaskell's addDependentFile on a file relative to the file being compiled?
I want that my TemplateHaskell expression, which uses IO and depends on the file MyDependency.txt, is recomputed when that file is being changed.
Therefore I am using addDependentFile ...
2
votes
1answer
68 views
GHC -ddump-splices option — Template Haskell
I'm following the Yesod book, which states:
But by using the -ddump-splices GHC option, we can get an immediate
look at the generated code. A much cleaned up version of it is:
How would I do ...
7
votes
1answer
79 views
Template Haskell error when using “deriving”
A little confused with the results I'm getting. Using the following:
GHCi, version 7.4.2: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package ...
5
votes
1answer
121 views
Is there a template haskell function for quoting?
I am playing with Template Haskell. I want to create a quasi quoter which allows me to create default initializers for records, i.e. something like
[record| data Config = { shouldDoX = True; featureY ...
5
votes
1answer
71 views
Defining TH Lift instances for algebraic data types
Suppose I have an algebraic data type with multiple constructors, like
data Animal a = Mouse a | Beaver a | Rabbit a
How would I create a Lift instance effectively? The easiest way of doing so ...
4
votes
1answer
95 views
Is there a nice(r) way of writing this Template Haskell code involving singleton data types?
I've just started to use Template Haskell (I've finally got a use case, yay!) and now I'm cognitively stuck.
What I'm trying to do is generating a singleton datatype declaration of the form
data ...
6
votes
4answers
182 views
Function to output function name
Is it possible in Haskell to implement a function which returns its own function name?
A possible type could be (a -> b) -> String.
5
votes
1answer
87 views
Splicing arbitrary expressions in a Haskell quasiquoter
Reading through Why It’s Nice to be Quoted, in section 3 there's an example of splicing a variable identifier in a quasiquote.
subst [:lam | $exp:e1 $exp:e2 |] x y =
let e1' = subst e1 x y
...
0
votes
1answer
24 views
Why does GHC not terminate with this GADT template Haskell module?
I have a problem with generating GADTs with template Haskell. The problem is that I can't get the code to compile completely. GHCI does not terminate when loading the file and a ghc process uses much ...
3
votes
2answers
160 views
Is it possible to generate and run TemplateHaskell generated code at runtime?
Is it possible to generate and run TemplateHaskell generated code at runtime?
Using C, at runtime, I can:
create the source code of a function,
call out to gcc to compile it to a .so (linux) (or ...
4
votes
1answer
102 views
Standalone deriving declaration in Template Haskell quotation
Why Template Haskell ignores standalone deriving declaration in quotation?
{-# LANGUAGE TemplateHaskell, StandaloneDeriving #-}
data Test a = Test a
$([d| deriving instance Show a => Show (Test a); f ...
3
votes
1answer
122 views
Template Haskell and Implicit Parameters
Is there a way to create functions with implicit parameters or let bindings with implicit parameters using template haskell?
I.e. is it possible to generate a signature like this using template ...
1
vote
1answer
77 views
Trouble with Template Haskell stage restriction
I just start learning Template Haskell, and stuck on simple problem with splicing.
In one module I've implemented function tupleN which replies N-th element of the tuple:
tupleN :: Lift a => a ...
1
vote
1answer
76 views
Data Type Haskell error
I declare some data type as follow:
data TX_OR_TY = TX | TY
data TX = X Int
data TY = Y Float
Now I write some function return their data type:
funcTX :: TX
funcTX = X 3
funcTY :: TY
funcTY = Y ...
0
votes
1answer
58 views
Haskell type expression
I have two questions about Haskell type expression:
Question 1 -
I would like to declare a type NODE
data NODE = Node String ATTR
and a type ATTR contains 3 sub-type as follow:
Source Bool
...
4
votes
2answers
154 views
Haskell variant of template metaprogramming
I'm new to Haskell. Given the whole premise of Haskell is that a function will always return the same value, I'd expect there to be some way of e.g. calculating fibonacci values of constants at ...
6
votes
1answer
117 views
Is there a way of deriving Binary instances for Vinyl record types using Derive and Template Haskell or otherwise
I have been trying out the Vinyl package, which uses type level kinds to create record structures with field level polymorphism and automatically provided lenses. Both of these features would be very ...
1
vote
1answer
108 views
How to use Template Haskell to get the body of function?
Currently I'm trying to do a translation from a Haskell subset without having to deal with all the parsing, typechecking etc. issues. Documentation didn't help me to figure out a function to get the ...
6
votes
1answer
170 views
Why does Template Haskell allow arbitrary IO operations during compilation?
As I'm trying to learn about TH I found out that it allows arbitrary IO actions during compilation (see What's so bad about Template Haskell?). This seems quite dangerous to me. Why is that? Is it ...
1
vote
1answer
62 views
How does one apply HamletSettings to a quasiquote in Hamlet?
Background: I am studying how Hamlet works, with WAI, but without Yesod. I have no grasp of Template Haskell, but before I dive into it, I am wondering if there is a known/quick solution for this ...
4
votes
1answer
114 views
Loop and Recursion unrolling
W_t = M_t[i] if 0 <= t <= 15
W_t = ROTL_1(W_(t-3) XOR W_(t-8) XOR W_(t-14) XOR W_(t-16)) if 16 <= t <= 79
This is from the SHA-1 standards. In haskell what you would trivially do is ...
3
votes
1answer
179 views
Haskell: I think I could really use Lisp-like macros here
The AI code for my little soccer game basically works like this: There is a function that derives facts that describe the current situation on the pitch:
deriveFacts :: GameState -> [Fact]
... ...
0
votes
1answer
211 views
Directed Graph in Haskell
I am now struggling with Haskell. Even, I have some experience with imperative languages, with OOP, but Haskell seems to be different from them. I under-evaluated Haskell, and think learning a new ...
3
votes
2answers
95 views
Can Template Haskell generate multi-param typeclass instances?
The latest (2.8.0.0) definition for the Dec has the following instance constructor:
InstanceD Cxt Type [Dec]
Seems that only one type can be instantiated. Is there a way to work around this?
0
votes
1answer
134 views
Use Shakespeare-text and external file
How can I convert the below example to use an external file instead of the embedded lazy text quasi quotes?
{-# LANGUAGE QuasiQuotes, OverloadedStrings #-}
import Text.Shakespeare.Text
import ...
3
votes
3answers
120 views
GHC stage restriction (Template Haskell)
I could not figure out why I am getting "GHC stage restriction" in the following code:
import Language.Haskell.TH
rules :: [ExpQ]
rules = [ [| \a -> a |], [| \_ -> 1 |] ]
findTransforms :: ...
1
vote
1answer
156 views
Avoiding boilerplate that's not part of a Haskell class
I'm developing a framework for artificial life experiments. The framework
can support multiple species, as long as each species is an instance of the
Agent class. I wrap each Agent in an AgentBox so ...
4
votes
5answers
169 views
Function dealing with finite but arbitrary number of heterogenous elements
I am working on a library to study game theoretic learning.
In this setting, N agents are brought together and interact with an environment.
Each agent derives a model of the interaction.
The model of ...
3
votes
1answer
155 views
Can I rely on Template Haskell expansion (using -ddump-splices) to always generate valid code?
I have written a small utility to expand all TH splices in a Haskell module, so that I can use the haskell module even where TH is unavailable. To accomplish this, I pass the -ddump-splices option to ...
2
votes
1answer
78 views
Template Haskell compile error when calling with different parameters
Why does the following fail to compile (on GHC 7.4.2)?
{-# LANGUAGE TemplateHaskell #-}
f1 = $([| id |])
main = print $ (f1 (42 :: Int), f1 (42 :: Integer))
Note that the following compiles fine:
...
2
votes
1answer
132 views
Template Haskell compile error
Consider the following code:
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE NoMonomorphismRestriction #-}
import Data.HList.GhcSyntax((.!.),(.=.),(.*.))
import Data.HList.Record(emptyRecord)
import ...
2
votes
1answer
108 views
Processing standard quasiquote from external file in Haskell
I wanted to read an external Haskell source file for compile-time AST manipulation. How can I do that? I tried something like the following, but it didn't compile with the error message "TH.hs:15:12:
...
19
votes
3answers
445 views
Is it possible to use a bracketing syntactic sugar for an applicative functor?
I've seen (in McBride and Paterson's 'Applicative programming with effects' http://strictlypositive.org/IdiomLite.pdf) the use of the lovely syntactic sugar
[| f x y z |]
for
f <$> x ...
2
votes
1answer
105 views
Get all functions/values in scope with template haskell
With template haskell, is there a way to list all functions in scope? Something like
allVarsInScope :: Q [Name]
What I'm trying to do with this is get a list of all imported functions beginning ...
1
vote
1answer
132 views
Template Haskell tuple update function
Is there a function, or how do I write a function updateTuple, such that:
$(updateTuple 5 (0, 2, 4)) (_ -> 'a', (*2), _ -> 42) (1, 2, 3, 'b', 'c')
-> ('a', 2, 6, 'b', 42)
Basically the ...
3
votes
1answer
100 views
Expression quasiquoter for an AST where one constructor produces a monadic computation?
In a very simplified sense, I have something like the following:
type Runtime a = {- More or less a StateT on top of an Either monad -}
-- The list of strings in Fn is a bunch of parameter names, ...
7
votes
1answer
245 views
Reify a module into a record
Suppose I have an arbitrary module
module Foo where
foo :: Moo -> Goo
bar :: Car -> Far
baz :: Can -> Haz
where foo, bar, and baz are correctly implemented, etc.
I'd like to reify this ...
6
votes
2answers
162 views
Why does TemplateHaskell cause GHC to load packages?
I have a trivial Template Haskell program that prints the name of the current module (Main, here):
{-# LANGUAGE TemplateHaskell #-}
module Main
( main
) where
import Language.Haskell.TH
import ...
8
votes
2answers
691 views
Code generation with Scala
When using the SBT toolchain in Scala, is it possible to write a task that will read a special part of the project's source to generate scala-code at compile time.
Any ideas or even ...
4
votes
2answers
204 views
Automatic derivation of Data.Vector.Unbox with associated type synonyms
I have a datatype
newtype Zq q = Zq (IntType q)
where 'q' will be an instance of the class
class Foo a where
type IntType a
and 'IntType' is just the underlying representation (i.e. Int, ...
5
votes
0answers
106 views
Creating a data type from a Name? [duplicate]
Possible Duplicate:
Local variables in Template Haskell declarations
I'm trying to construct a simple Template Haskell function that, given a string like "Foo", will construct the syntax ...
110
votes
5answers
6k views
What's so bad about Template Haskell?
It seems that Template Haskell is often viewed by the Haskell community as an unfortunate convenience. It's hard to put into words exactly what I have observed in this regard, but consider these few ...
1
vote
1answer
157 views
Export template haskell generated definitions
My module contains definitions, part of which are exported (in module clause). I want to export Template Haskell-generated declarations too. But since there is seemingly no way to modify module clause ...
4
votes
2answers
159 views
Compile time code rewriting outside of template haskell scope?
Is it possible to create a function which rewrites haskell code at compile time from outside of template haskell quotes?
For example:
differentiate :: Floating a => (a -> a) -> a -> ...
4
votes
1answer
313 views
get function name inside it
I have a bunch of functions like: method1, method2, method3. For all of them there are HUnit test functions like: testMethod1, testMethod2, testMethod3.
testMethod1 = TestCase $
assertEqual ...
3
votes
1answer
150 views
How to include code in different places during compilations in Haskell?
Quasi-quotes allow generating AST code during compilations, but it inserts generated code at the place where Quasi-quote was written. Is it possible in any way to insert the compile-time generated ...