modules: move (public) datatypes into a new module
[mate.git] / Mate / Utilities.hs
1 {-# LANGUAGE OverloadedStrings #-}
2 module Mate.Utilities where
3
4 import Data.Word
5 import qualified Data.Map as M
6 import qualified Data.ByteString.Lazy as B
7
8 import JVM.ClassFile
9
10 import Mate.Types
11
12
13 -- TODO: actually this function already exists in hs-java-0.3!
14 lookupMethod :: B.ByteString -> Class Resolved -> Maybe (Method Resolved)
15 lookupMethod name cls = look (classMethods cls)
16   where
17     look [] = Nothing
18     look (f:fs)
19       | methodName f == name = Just f
20       | otherwise  = look fs
21
22 buildMethodID :: Class Resolved -> Word16 -> MethodInfo
23 buildMethodID cls idx = MethodInfo (ntName nt) rc (ntSignature nt) idx
24   where
25   (CMethod rc nt) = (constsPool cls) M.! idx
26
27 methodGetArgsCount :: Class Resolved -> Word16 -> Word32
28 methodGetArgsCount cls idx = fromIntegral $ length args
29   where
30   (CMethod _ nt) = (constsPool cls) M.! idx
31   (MethodSignature args _) = ntSignature nt
32
33 -- TODO(bernhard): Extend it to more than just int, and provide typeinformation
34 methodHaveReturnValue :: Class Resolved -> Word16 -> Bool
35 methodHaveReturnValue cls idx = case ret of
36     ReturnsVoid -> False;
37     (Returns IntType) -> True;
38     _ -> error "methodHaveReturnValue: todo"
39   where
40   (CMethod _ nt) = (constsPool cls) M.! idx
41   (MethodSignature _ ret) = ntSignature nt