forked from GitHub/gf-rgl
a script for making pure morphological lemgram dictionaries
This commit is contained in:
113
src/morphodict/MkMorphodict.hs
Normal file
113
src/morphodict/MkMorphodict.hs
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
module Main where
|
||||||
|
|
||||||
|
import PGF
|
||||||
|
|
||||||
|
import qualified Data.Map as M
|
||||||
|
import Data.Char
|
||||||
|
import Data.List
|
||||||
|
import System.Environment (getArgs)
|
||||||
|
|
||||||
|
-- AR 2020-02-28
|
||||||
|
|
||||||
|
-- making a word list purely morphological, i.e.
|
||||||
|
-- - functions are 1-to-1 with lemgrams, i.e.
|
||||||
|
-- - no sense distinctions
|
||||||
|
-- - no subcategorizations
|
||||||
|
-- - no variants
|
||||||
|
-- - functionname = baseform_category, with exceptions
|
||||||
|
-- - variant inflection tables: lie_1_V, lie_2_V
|
||||||
|
-- - words that have non-ident characters: 'bird\'s-eye_A'
|
||||||
|
-- - words that start with non-letters: W_'tween_Adv
|
||||||
|
|
||||||
|
-- example:
|
||||||
|
-- gf -make ../english/DictEng.gf
|
||||||
|
-- runghc MkMorphodict.hs DictEngAbs.pgf MorphoDictEng
|
||||||
|
-- 64923 -> 56599 functions
|
||||||
|
|
||||||
|
usage = "MkMorphodict <pgf> <outfile>"
|
||||||
|
|
||||||
|
main = do
|
||||||
|
pgfile:outfile:_ <- getArgs
|
||||||
|
pgf <- readPGF pgfile
|
||||||
|
config <- readFile (outfile ++ ".config") >>= return . mkConfig
|
||||||
|
|
||||||
|
let (absrules,cncrules) = mkMorphoDict (MDEnv pgf config (head (languages pgf)))
|
||||||
|
|
||||||
|
absheader <- readFile (outfile ++ "Abs.header")
|
||||||
|
cncheader <- readFile (outfile ++ ".header")
|
||||||
|
|
||||||
|
writeFile (outfile ++ "Abs.gf") absheader
|
||||||
|
appendFile (outfile ++ "Abs.gf") $ unlines absrules
|
||||||
|
appendFile (outfile ++ "Abs.gf") "}"
|
||||||
|
|
||||||
|
writeFile (outfile ++ ".gf") cncheader
|
||||||
|
appendFile (outfile ++ ".gf") $ unlines cncrules
|
||||||
|
appendFile (outfile ++ ".gf") "}"
|
||||||
|
|
||||||
|
|
||||||
|
type Cat = CId
|
||||||
|
type Oper = String
|
||||||
|
type Config = M.Map Cat (Cat,Oper,[Int])
|
||||||
|
|
||||||
|
data MDEnv = MDEnv {
|
||||||
|
pgf :: PGF,
|
||||||
|
config :: Config,
|
||||||
|
lang :: Language
|
||||||
|
}
|
||||||
|
|
||||||
|
mkConfig :: String -> Config
|
||||||
|
mkConfig ls = M.fromList [(c,i) | Left (c,i) <- map mkOne (lines ls)]
|
||||||
|
where
|
||||||
|
mkOne s = case words s of
|
||||||
|
"--":_ -> Right s
|
||||||
|
cat:":":tcat:oper:ints -> Left (mkCId cat,(mkCId tcat,oper,map read ints))
|
||||||
|
_ -> Right s
|
||||||
|
|
||||||
|
mkMorphoDict :: MDEnv -> ([String],[String])
|
||||||
|
mkMorphoDict env =
|
||||||
|
unzip $
|
||||||
|
map splitRule $
|
||||||
|
nameFunctions $
|
||||||
|
mergeRules $
|
||||||
|
concatMap findRules cats
|
||||||
|
where
|
||||||
|
splitRule (fun,(cat,lin)) = (unwords ["fun",fun,":",showCId cat,";"], unwords ["lin",fun,"=", unwords lin,";"])
|
||||||
|
|
||||||
|
cats = nub [c | (c,(_,_,_)) <- M.assocs (config env)]
|
||||||
|
|
||||||
|
findRules cat = [
|
||||||
|
([snd (head lin), showCId c], (c, op : appSig ints (map snd lin))) |
|
||||||
|
f <- functionsByCat (pgf env) cat,
|
||||||
|
lin <- tabularLinearizes (pgf env) (lang env) (mkApp f []), -- [[(String, String)]]
|
||||||
|
Just (c,op,ints) <- [M.lookup cat (config env)]
|
||||||
|
]
|
||||||
|
|
||||||
|
appSig ints forms = [quote (forms !! i) | i <- ints]
|
||||||
|
|
||||||
|
mergeRules = map head . groupBy (\x y -> snd x == snd y) . sortOn snd
|
||||||
|
|
||||||
|
nameFunctions = expandNames . sortOn fst
|
||||||
|
|
||||||
|
expandNames fls = case fls of
|
||||||
|
(f,l):fls2 -> case span ((==f) . fst) fls2 of
|
||||||
|
([],_) -> (mkFun f,l) : expandNames fls2
|
||||||
|
(fls1,fls3) -> renames ((f,l):fls1) ++ expandNames fls3
|
||||||
|
_ -> []
|
||||||
|
|
||||||
|
renames fls = [(mkFun (init f ++ [show i,last f]),l) | (i,(f,l)) <- zip [1..] fls]
|
||||||
|
|
||||||
|
|
||||||
|
mkFun = quoteIf . concat . intersperse "_"
|
||||||
|
quoteIf s = case s of
|
||||||
|
_ | any (\c -> not (isAlphaNum c || elem c "_'")) s -> "'" ++ unSgQuote s ++ "'"
|
||||||
|
c:_ | not (isAlpha c) -> "W_" ++ s
|
||||||
|
_ -> s
|
||||||
|
where
|
||||||
|
unSgQuote s = case s of
|
||||||
|
'\'':cs -> "\\\'" ++ unSgQuote cs
|
||||||
|
c:cs -> c : unSgQuote cs
|
||||||
|
_ -> s
|
||||||
|
|
||||||
|
|
||||||
|
quote s = "\"" ++ s ++ "\""
|
||||||
|
|
||||||
8
src/morphodict/MorphoDictEng.config
Normal file
8
src/morphodict/MorphoDictEng.config
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
N : N mkN 0 2
|
||||||
|
A : A mkA 0 2 4 6
|
||||||
|
V : V mkV 0 4 2
|
||||||
|
V2 : V mkV 0 4 2
|
||||||
|
Adv : Adv mkAdv 0
|
||||||
|
Prep : Prep mkPrep 0
|
||||||
|
|
||||||
|
|
||||||
56607
src/morphodict/MorphoDictEng.gf
Normal file
56607
src/morphodict/MorphoDictEng.gf
Normal file
File diff suppressed because it is too large
Load Diff
7
src/morphodict/MorphoDictEng.header
Normal file
7
src/morphodict/MorphoDictEng.header
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
concrete MorphoDictEng of MorphoDictEngAbs =
|
||||||
|
CatEng [N,A,V,Adv,Prep] **
|
||||||
|
open
|
||||||
|
ParadigmsEng
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
56604
src/morphodict/MorphoDictEngAbs.gf
Normal file
56604
src/morphodict/MorphoDictEngAbs.gf
Normal file
File diff suppressed because it is too large
Load Diff
4
src/morphodict/MorphoDictEngAbs.header
Normal file
4
src/morphodict/MorphoDictEngAbs.header
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
abstract MorphoDictEngAbs =
|
||||||
|
Cat [N,A,V,Adv,Prep] **
|
||||||
|
{
|
||||||
|
|
||||||
Reference in New Issue
Block a user