forked from GitHub/gf-core
Compare commits
66 Commits
lpgf-strin
...
canonical
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a27b07542d | ||
|
|
78b73fba20 | ||
|
|
e5a2aed5b6 | ||
|
|
13575b093f | ||
|
|
32be75ca7d | ||
|
|
587004f985 | ||
|
|
4436cb101e | ||
|
|
0f5be0bbaa | ||
|
|
0a70eca6e2 | ||
|
|
6efbd23c5c | ||
|
|
3a27fa0d39 | ||
|
|
1ba5449d21 | ||
|
|
cf9afa8f74 | ||
|
|
91d2ecf23c | ||
|
|
8206143328 | ||
|
|
5564a2f244 | ||
|
|
cf2eff3801 | ||
|
|
5a53a38247 | ||
|
|
02671cafd0 | ||
|
|
0a18688788 | ||
|
|
889be1ab8e | ||
|
|
65522a63c3 | ||
|
|
7065125e19 | ||
|
|
2c37e7dfad | ||
|
|
f505d88a8e | ||
|
|
b1ed63b089 | ||
|
|
f23031ea1d | ||
|
|
c3153134b7 | ||
|
|
fd4fb62b9e | ||
|
|
53c3afbd6f | ||
|
|
544b39a8a5 | ||
|
|
6179d79e72 | ||
|
|
ecb19013c0 | ||
|
|
c416571406 | ||
|
|
a1372040b4 | ||
|
|
67fcf21577 | ||
|
|
a7ab610f95 | ||
|
|
e5b8fa095b | ||
|
|
6beebbac2b | ||
|
|
95917a7715 | ||
|
|
de8b23c014 | ||
|
|
098541dda2 | ||
|
|
af87664d27 | ||
|
|
af1360d37e | ||
|
|
eeda03e9b0 | ||
|
|
7042768054 | ||
|
|
84fd431afd | ||
|
|
588cd6ddb1 | ||
|
|
437bd8e7f9 | ||
|
|
e56d1b2959 | ||
|
|
450368f9bb | ||
|
|
07fd41294a | ||
|
|
4729d22c36 | ||
|
|
60bc752a6f | ||
|
|
91278e2b4b | ||
|
|
76bec6d71e | ||
|
|
1740181daf | ||
|
|
2dc179239f | ||
|
|
9b02385e3e | ||
|
|
54e5fb6645 | ||
|
|
8ca4baf470 | ||
|
|
1f7584bf98 | ||
|
|
4364b1d9fb | ||
|
|
33aad1b8de | ||
|
|
dc6dd988bc | ||
|
|
ac81b418d6 |
6
.github/workflows/build-all-versions.yml
vendored
6
.github/workflows/build-all-versions.yml
vendored
@@ -90,6 +90,6 @@ jobs:
|
|||||||
stack build --system-ghc --stack-yaml stack-ghc${{ matrix.ghc }}.yaml
|
stack build --system-ghc --stack-yaml stack-ghc${{ matrix.ghc }}.yaml
|
||||||
# stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks
|
# stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks
|
||||||
|
|
||||||
# - name: Test
|
- name: Test
|
||||||
# run: |
|
run: |
|
||||||
# stack test --system-ghc
|
stack test --system-ghc --stack-yaml stack-ghc${{ matrix.ghc }}.yaml
|
||||||
|
|||||||
2
.github/workflows/build-python-package.yml
vendored
2
.github/workflows/build-python-package.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Install cibuildwheel
|
- name: Install cibuildwheel
|
||||||
run: |
|
run: |
|
||||||
python -m pip install git+https://github.com/joerick/cibuildwheel.git@master
|
python -m pip install git+https://github.com/joerick/cibuildwheel.git@main
|
||||||
|
|
||||||
- name: Install build tools for OSX
|
- name: Install build tools for OSX
|
||||||
if: startsWith(matrix.os, 'macos')
|
if: startsWith(matrix.os, 'macos')
|
||||||
|
|||||||
4
.gitignore
vendored
4
.gitignore
vendored
@@ -53,6 +53,10 @@ DATA_DIR
|
|||||||
|
|
||||||
stack*.yaml.lock
|
stack*.yaml.lock
|
||||||
|
|
||||||
|
# Output files for test suite
|
||||||
|
*.out
|
||||||
|
gf-tests.html
|
||||||
|
|
||||||
# Generated documentation (not exhaustive)
|
# Generated documentation (not exhaustive)
|
||||||
demos/index-numbers.html
|
demos/index-numbers.html
|
||||||
demos/resourcegrammars.html
|
demos/resourcegrammars.html
|
||||||
|
|||||||
@@ -30,13 +30,16 @@ GF particularly addresses four aspects of grammars:
|
|||||||
|
|
||||||
## Compilation and installation
|
## Compilation and installation
|
||||||
|
|
||||||
The simplest way of installing GF is with the command:
|
The simplest way of installing GF from source is with the command:
|
||||||
```
|
```
|
||||||
cabal install
|
cabal install
|
||||||
```
|
```
|
||||||
|
or:
|
||||||
|
```
|
||||||
|
stack install
|
||||||
|
```
|
||||||
|
|
||||||
For more details, see the [download page](http://www.grammaticalframework.org/download/index.html)
|
For more information, including links to precompiled binaries, see the [download page](http://www.grammaticalframework.org/download/index.html).
|
||||||
and [developers manual](http://www.grammaticalframework.org/doc/gf-developers.html).
|
|
||||||
|
|
||||||
## About this repository
|
## About this repository
|
||||||
|
|
||||||
|
|||||||
@@ -45,6 +45,8 @@ but the generated _artifacts_ must be manually attached to the release as _asset
|
|||||||
|
|
||||||
### 4. Upload to Hackage
|
### 4. Upload to Hackage
|
||||||
|
|
||||||
|
In order to do this you will need to be added the [GF maintainers](https://hackage.haskell.org/package/gf/maintainers/) on Hackage.
|
||||||
|
|
||||||
1. Run `make sdist`
|
1. Run `make sdist`
|
||||||
2. Upload the package, either:
|
2. Upload the package, either:
|
||||||
1. **Manually**: visit <https://hackage.haskell.org/upload> and upload the file `dist/gf-X.Y.tar.gz`
|
1. **Manually**: visit <https://hackage.haskell.org/upload> and upload the file `dist/gf-X.Y.tar.gz`
|
||||||
|
|||||||
15
WebSetup.hs
15
WebSetup.hs
@@ -26,6 +26,14 @@ import Distribution.PackageDescription(PackageDescription(..))
|
|||||||
so users won't see this message unless they check the log.)
|
so users won't see this message unless they check the log.)
|
||||||
-}
|
-}
|
||||||
|
|
||||||
|
-- | Notice about contrib grammars
|
||||||
|
noContribMsg :: IO ()
|
||||||
|
noContribMsg = putStr $ unlines
|
||||||
|
[ "Example grammars are no longer included in the main GF repository, but have moved to gf-contrib."
|
||||||
|
, "If you want them to be built, clone the following repository in the same directory as gf-core:"
|
||||||
|
, "https://github.com/GrammaticalFramework/gf-contrib.git"
|
||||||
|
]
|
||||||
|
|
||||||
example_grammars :: [(String, String, [String])] -- [(pgf, subdir, source modules)]
|
example_grammars :: [(String, String, [String])] -- [(pgf, subdir, source modules)]
|
||||||
example_grammars =
|
example_grammars =
|
||||||
[("Letter.pgf","letter",letterSrc)
|
[("Letter.pgf","letter",letterSrc)
|
||||||
@@ -50,11 +58,8 @@ buildWeb gf flags (pkg,lbi) = do
|
|||||||
contrib_exists <- doesDirectoryExist contrib_dir
|
contrib_exists <- doesDirectoryExist contrib_dir
|
||||||
if contrib_exists
|
if contrib_exists
|
||||||
then mapM_ build_pgf example_grammars
|
then mapM_ build_pgf example_grammars
|
||||||
else putStr $ unlines
|
-- else noContribMsg
|
||||||
[ "Example grammars are no longer included in the main GF repository, but have moved to gf-contrib."
|
else return ()
|
||||||
, "If you want these example grammars to be built, clone this repository in the same top-level directory as GF:"
|
|
||||||
, "https://github.com/GrammaticalFramework/gf-contrib.git"
|
|
||||||
]
|
|
||||||
where
|
where
|
||||||
gfo_dir = buildDir lbi </> "examples"
|
gfo_dir = buildDir lbi </> "examples"
|
||||||
|
|
||||||
|
|||||||
@@ -49,15 +49,17 @@ You will probably need to update the `PATH` environment variable to include your
|
|||||||
|
|
||||||
For more information, see [Using GF on Windows](https://www.grammaticalframework.org/~inari/gf-windows.html) (latest updated for Windows 10).
|
For more information, see [Using GF on Windows](https://www.grammaticalframework.org/~inari/gf-windows.html) (latest updated for Windows 10).
|
||||||
|
|
||||||
## Installing the latest release from source
|
## Installing the latest Hackage release (macOS, Linux, and WSL2 on Windows)
|
||||||
|
|
||||||
[GF is on Hackage](http://hackage.haskell.org/package/gf), so under
|
[GF is on Hackage](http://hackage.haskell.org/package/gf), so under
|
||||||
normal circumstances the procedure is fairly simple:
|
normal circumstances the procedure is fairly simple:
|
||||||
|
|
||||||
1. Install a recent version of the [Haskell Platform](http://hackage.haskell.org/platform) (see note below)
|
1. Install ghcup https://www.haskell.org/ghcup/
|
||||||
2. `cabal update`
|
2. `ghcup install ghc 8.10.4`
|
||||||
3. On Linux: install some C libraries from your Linux distribution (see note below)
|
3. `ghcup set ghc 8.10.4`
|
||||||
4. `cabal install gf`
|
4. `cabal update`
|
||||||
|
5. On Linux: install some C libraries from your Linux distribution (see note below)
|
||||||
|
6. `cabal install gf-3.11`
|
||||||
|
|
||||||
You can also download the source code release from [GitHub](https://github.com/GrammaticalFramework/gf-core/releases),
|
You can also download the source code release from [GitHub](https://github.com/GrammaticalFramework/gf-core/releases),
|
||||||
and follow the instructions below under **Installing from the latest developer source code**.
|
and follow the instructions below under **Installing from the latest developer source code**.
|
||||||
@@ -74,17 +76,6 @@ so you might want to add this directory to your path (in `.bash_profile` or simi
|
|||||||
PATH=$HOME/.cabal/bin:$PATH
|
PATH=$HOME/.cabal/bin:$PATH
|
||||||
```
|
```
|
||||||
|
|
||||||
**Build tools**
|
|
||||||
|
|
||||||
In order to compile GF you need the build tools **Alex** and **Happy**.
|
|
||||||
These can be installed via Cabal, e.g.:
|
|
||||||
|
|
||||||
```
|
|
||||||
cabal install alex happy
|
|
||||||
```
|
|
||||||
|
|
||||||
or obtained by other means, depending on your OS.
|
|
||||||
|
|
||||||
**Haskeline**
|
**Haskeline**
|
||||||
|
|
||||||
GF uses [`haskeline`](http://hackage.haskell.org/package/haskeline), which
|
GF uses [`haskeline`](http://hackage.haskell.org/package/haskeline), which
|
||||||
|
|||||||
6
gf.cabal
6
gf.cabal
@@ -14,6 +14,7 @@ maintainer: Thomas Hallgren
|
|||||||
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3
|
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3
|
||||||
|
|
||||||
data-dir: src
|
data-dir: src
|
||||||
|
extra-source-files: WebSetup.hs
|
||||||
data-files:
|
data-files:
|
||||||
www/*.html
|
www/*.html
|
||||||
www/*.css
|
www/*.css
|
||||||
@@ -71,7 +72,7 @@ flag c-runtime
|
|||||||
Description: Include functionality from the C run-time library (which must be installed already)
|
Description: Include functionality from the C run-time library (which must be installed already)
|
||||||
Default: False
|
Default: False
|
||||||
|
|
||||||
Library
|
library
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
build-depends: base >= 4.6 && <5,
|
build-depends: base >= 4.6 && <5,
|
||||||
array,
|
array,
|
||||||
@@ -319,7 +320,7 @@ Library
|
|||||||
if impl(ghc>=8.2)
|
if impl(ghc>=8.2)
|
||||||
ghc-options: -fhide-source-paths
|
ghc-options: -fhide-source-paths
|
||||||
|
|
||||||
Executable gf
|
executable gf
|
||||||
hs-source-dirs: src/programs
|
hs-source-dirs: src/programs
|
||||||
main-is: gf-main.hs
|
main-is: gf-main.hs
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
@@ -352,4 +353,5 @@ test-suite gf-tests
|
|||||||
main-is: run.hs
|
main-is: run.hs
|
||||||
hs-source-dirs: testsuite
|
hs-source-dirs: testsuite
|
||||||
build-depends: base>=4.3 && <5, Cabal>=1.8, directory, filepath, process
|
build-depends: base>=4.3 && <5, Cabal>=1.8, directory, filepath, process
|
||||||
|
build-tool-depends: gf:gf
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|||||||
@@ -228,6 +228,10 @@ least one, it may help you to get a first idea of what GF is.
|
|||||||
<h2>News</h2>
|
<h2>News</h2>
|
||||||
|
|
||||||
<dl class="row">
|
<dl class="row">
|
||||||
|
<dt class="col-sm-3 text-center text-nowrap">2021-05-05</dt>
|
||||||
|
<dd class="col-sm-9">
|
||||||
|
<a href="https://cloud.grammaticalframework.org/wordnet/">GF WordNet</a> now supports languages for which there are no other WordNets. New additions: Afrikaans, German, Korean, Maltese, Polish, Somali, Swahili.
|
||||||
|
</dd>
|
||||||
<dt class="col-sm-3 text-center text-nowrap">2021-03-01</dt>
|
<dt class="col-sm-3 text-center text-nowrap">2021-03-01</dt>
|
||||||
<dd class="col-sm-9">
|
<dd class="col-sm-9">
|
||||||
<a href="//school.grammaticalframework.org/2020/">Seventh GF Summer School</a>, in Singapore and online, 26 July – 8 August 2021.
|
<a href="//school.grammaticalframework.org/2020/">Seventh GF Summer School</a>, in Singapore and online, 26 July – 8 August 2021.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{-# LANGUAGE FlexibleInstances, UndecidableInstances #-}
|
{-# LANGUAGE FlexibleInstances, UndecidableInstances, CPP #-}
|
||||||
module GF.Command.Commands (
|
module GF.Command.Commands (
|
||||||
PGFEnv,HasPGFEnv(..),pgf,mos,pgfEnv,pgfCommands,
|
PGFEnv,HasPGFEnv(..),pgf,mos,pgfEnv,pgfCommands,
|
||||||
options,flags,
|
options,flags,
|
||||||
@@ -741,7 +741,7 @@ pgfCommands = Map.fromList [
|
|||||||
Nothing -> do putStrLn ("unknown category of function identifier "++show id)
|
Nothing -> do putStrLn ("unknown category of function identifier "++show id)
|
||||||
return void
|
return void
|
||||||
[e] -> case inferExpr pgf e of
|
[e] -> case inferExpr pgf e of
|
||||||
Left tcErr -> error $ render (ppTcError tcErr)
|
Left tcErr -> errorWithoutStackTrace $ render (ppTcError tcErr)
|
||||||
Right (e,ty) -> do putStrLn ("Expression: "++showExpr [] e)
|
Right (e,ty) -> do putStrLn ("Expression: "++showExpr [] e)
|
||||||
putStrLn ("Type: "++showType [] ty)
|
putStrLn ("Type: "++showType [] ty)
|
||||||
putStrLn ("Probability: "++show (probTree pgf e))
|
putStrLn ("Probability: "++show (probTree pgf e))
|
||||||
@@ -1019,3 +1019,7 @@ stanzas = map unlines . chop . lines where
|
|||||||
chop ls = case break (=="") ls of
|
chop ls = case break (=="") ls of
|
||||||
(ls1,[]) -> [ls1]
|
(ls1,[]) -> [ls1]
|
||||||
(ls1,_:ls2) -> ls1 : chop ls2
|
(ls1,_:ls2) -> ls1 : chop ls2
|
||||||
|
|
||||||
|
#if !(MIN_VERSION_base(4,9,0))
|
||||||
|
errorWithoutStackTrace = error
|
||||||
|
#endif
|
||||||
@@ -528,7 +528,7 @@ value2term' stop loc xs v0 =
|
|||||||
-- VGlue v1 v2 -> Glue (v2t v1) (v2t v2)
|
-- VGlue v1 v2 -> Glue (v2t v1) (v2t v2)
|
||||||
-- VExtR v1 v2 -> ExtR (v2t v1) (v2t v2)
|
-- VExtR v1 v2 -> ExtR (v2t v1) (v2t v2)
|
||||||
VError err -> return (Error err)
|
VError err -> return (Error err)
|
||||||
_ -> bug ("value2term "++show loc++" : "++show v0)
|
|
||||||
where
|
where
|
||||||
v2t = v2txs xs
|
v2t = v2txs xs
|
||||||
v2txs = value2term' stop loc
|
v2txs = value2term' stop loc
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import GF.Text.Pretty
|
|||||||
--import GF.Grammar.Predef(cPredef,cInts)
|
--import GF.Grammar.Predef(cPredef,cInts)
|
||||||
--import GF.Compile.Compute.Predef(predef)
|
--import GF.Compile.Compute.Predef(predef)
|
||||||
--import GF.Compile.Compute.Value(Predefined(..))
|
--import GF.Compile.Compute.Value(Predefined(..))
|
||||||
import GF.Infra.Ident(Ident,identS,identW,prefixIdent)
|
import GF.Infra.Ident(Ident,identC,identS,identW,prefixIdent,showRawIdent,rawIdentS)
|
||||||
import GF.Infra.Option
|
import GF.Infra.Option
|
||||||
import GF.Haskell as H
|
import GF.Haskell as H
|
||||||
import GF.Grammar.Canonical as C
|
import GF.Grammar.Canonical as C
|
||||||
@@ -21,7 +21,7 @@ concretes2haskell opts absname gr =
|
|||||||
| let Grammar abstr cncs = grammar2canonical opts absname gr,
|
| let Grammar abstr cncs = grammar2canonical opts absname gr,
|
||||||
cncmod<-cncs,
|
cncmod<-cncs,
|
||||||
let ModId name = concName cncmod
|
let ModId name = concName cncmod
|
||||||
filename = name ++ ".hs" :: FilePath
|
filename = showRawIdent name ++ ".hs" :: FilePath
|
||||||
]
|
]
|
||||||
|
|
||||||
-- | Generate Haskell code for the given concrete module.
|
-- | Generate Haskell code for the given concrete module.
|
||||||
@@ -53,7 +53,7 @@ concrete2haskell opts
|
|||||||
labels = S.difference (S.unions (map S.fromList recs)) common_labels
|
labels = S.difference (S.unions (map S.fromList recs)) common_labels
|
||||||
common_records = S.fromList [[label_s]]
|
common_records = S.fromList [[label_s]]
|
||||||
common_labels = S.fromList [label_s]
|
common_labels = S.fromList [label_s]
|
||||||
label_s = LabelId "s"
|
label_s = LabelId (rawIdentS "s")
|
||||||
|
|
||||||
signature (CatDef c _) = TypeSig lf (Fun abs (pure lin))
|
signature (CatDef c _) = TypeSig lf (Fun abs (pure lin))
|
||||||
where
|
where
|
||||||
@@ -321,7 +321,7 @@ coerce env ty t =
|
|||||||
TableValue ti [TableRow p (coerce env tv t)|TableRow p t<-cs]
|
TableValue ti [TableRow p (coerce env tv t)|TableRow p t<-cs]
|
||||||
(RecordType rt,RecordValue r) ->
|
(RecordType rt,RecordValue r) ->
|
||||||
RecordValue [RecordRow l (coerce env ft f) |
|
RecordValue [RecordRow l (coerce env ft f) |
|
||||||
RecordRow l f<-r,ft<-[ft|RecordRow l' ft<-rt,l'==l]]
|
RecordRow l f<-r,ft<-[ft | RecordRow l' ft <- rt, l'==l]]
|
||||||
(RecordType rt,VarValue x)->
|
(RecordType rt,VarValue x)->
|
||||||
case lookup x env of
|
case lookup x env of
|
||||||
Just ty' | ty'/=ty -> -- better to compare to normal form of ty'
|
Just ty' | ty'/=ty -> -- better to compare to normal form of ty'
|
||||||
@@ -334,18 +334,17 @@ coerce env ty t =
|
|||||||
_ -> t
|
_ -> t
|
||||||
where
|
where
|
||||||
app f ts = ParamConstant (Param f ts) -- !! a hack
|
app f ts = ParamConstant (Param f ts) -- !! a hack
|
||||||
to_rcon = ParamId . Unqual . to_rcon' . labels
|
to_rcon = ParamId . Unqual . rawIdentS . to_rcon' . labels
|
||||||
|
|
||||||
patVars p = []
|
patVars p = []
|
||||||
|
|
||||||
labels r = [l|RecordRow l _<-r]
|
labels r = [l | RecordRow l _ <- r]
|
||||||
|
|
||||||
proj = Var . identS . proj'
|
proj = Var . identS . proj'
|
||||||
proj' (LabelId l) = "proj_"++l
|
proj' (LabelId l) = "proj_" ++ showRawIdent l
|
||||||
rcon = Var . rcon'
|
rcon = Var . rcon'
|
||||||
rcon' = identS . rcon_name
|
rcon' = identS . rcon_name
|
||||||
rcon_name ls = "R"++concat (sort ['_':l|LabelId l<-ls])
|
rcon_name ls = "R"++concat (sort ['_':showRawIdent l | LabelId l <- ls])
|
||||||
|
|
||||||
to_rcon' = ("to_"++) . rcon_name
|
to_rcon' = ("to_"++) . rcon_name
|
||||||
|
|
||||||
recordType ls =
|
recordType ls =
|
||||||
@@ -400,17 +399,17 @@ linfunName c = prefixIdent "lin" (toIdent c)
|
|||||||
|
|
||||||
class ToIdent i where toIdent :: i -> Ident
|
class ToIdent i where toIdent :: i -> Ident
|
||||||
|
|
||||||
instance ToIdent ParamId where toIdent (ParamId q) = qIdentS q
|
instance ToIdent ParamId where toIdent (ParamId q) = qIdentC q
|
||||||
instance ToIdent PredefId where toIdent (PredefId s) = identS s
|
instance ToIdent PredefId where toIdent (PredefId s) = identC s
|
||||||
instance ToIdent CatId where toIdent (CatId s) = identS s
|
instance ToIdent CatId where toIdent (CatId s) = identC s
|
||||||
instance ToIdent C.FunId where toIdent (FunId s) = identS s
|
instance ToIdent C.FunId where toIdent (FunId s) = identC s
|
||||||
instance ToIdent VarValueId where toIdent (VarValueId q) = qIdentS q
|
instance ToIdent VarValueId where toIdent (VarValueId q) = qIdentC q
|
||||||
|
|
||||||
qIdentS = identS . unqual
|
qIdentC = identS . unqual
|
||||||
|
|
||||||
unqual (Qual (ModId m) n) = m++"_"++n
|
unqual (Qual (ModId m) n) = showRawIdent m++"_"++ showRawIdent n
|
||||||
unqual (Unqual n) = n
|
unqual (Unqual n) = showRawIdent n
|
||||||
|
|
||||||
instance ToIdent VarId where
|
instance ToIdent VarId where
|
||||||
toIdent Anonymous = identW
|
toIdent Anonymous = identW
|
||||||
toIdent (VarId s) = identS s
|
toIdent (VarId s) = identC s
|
||||||
|
|||||||
@@ -6,30 +6,35 @@ module GF.Compile.GrammarToCanonical(
|
|||||||
) where
|
) where
|
||||||
import Data.List(nub,partition)
|
import Data.List(nub,partition)
|
||||||
import qualified Data.Map as M
|
import qualified Data.Map as M
|
||||||
|
import Data.Maybe(fromMaybe)
|
||||||
import qualified Data.Set as S
|
import qualified Data.Set as S
|
||||||
import GF.Data.ErrM
|
import GF.Data.ErrM
|
||||||
import GF.Text.Pretty
|
import GF.Text.Pretty
|
||||||
import GF.Grammar.Grammar
|
import GF.Grammar.Grammar as G
|
||||||
import GF.Grammar.Lookup(lookupOrigInfo,allOrigInfos,allParamValues)
|
import GF.Grammar.Lookup(lookupOrigInfo,allOrigInfos,allParamValues)
|
||||||
import GF.Grammar.Macros(typeForm,collectOp,collectPattOp,mkAbs,mkApp,term2patt)
|
import GF.Grammar.Macros(typeForm,collectOp,collectPattOp,composSafeOp,mkAbs,mkApp,term2patt,sortRec)
|
||||||
import GF.Grammar.Lockfield(isLockLabel)
|
import GF.Grammar.Lockfield(isLockLabel)
|
||||||
import GF.Grammar.Predef(cPredef,cInts)
|
import GF.Grammar.Predef(cPredef,cInts)
|
||||||
import GF.Compile.Compute.Predef(predef)
|
import GF.Compile.Compute.Predef(predef)
|
||||||
import GF.Compile.Compute.Value(Predefined(..))
|
import GF.Compile.Compute.Value(Predefined(..))
|
||||||
import GF.Infra.Ident(ModuleName(..),Ident,prefixIdent,showIdent,isWildIdent)
|
import GF.Infra.Ident(ModuleName(..),Ident,ident2raw,rawIdentS,showIdent,isWildIdent)
|
||||||
import GF.Infra.Option(optionsPGF)
|
import GF.Infra.Option(Options,optionsPGF)
|
||||||
import PGF.Internal(Literal(..))
|
import PGF.Internal(Literal(..))
|
||||||
import GF.Compile.Compute.ConcreteNew(normalForm,resourceValues)
|
import GF.Compile.Compute.ConcreteNew(GlobalEnv,normalForm,resourceValues)
|
||||||
import GF.Grammar.Canonical as C
|
import GF.Grammar.Canonical as C
|
||||||
import Debug.Trace
|
import System.FilePath ((</>), (<.>))
|
||||||
|
import qualified Debug.Trace as T
|
||||||
|
|
||||||
|
|
||||||
-- | Generate Canonical code for the named abstract syntax and all associated
|
-- | Generate Canonical code for the named abstract syntax and all associated
|
||||||
-- concrete syntaxes
|
-- concrete syntaxes
|
||||||
|
grammar2canonical :: Options -> ModuleName -> G.Grammar -> C.Grammar
|
||||||
grammar2canonical opts absname gr =
|
grammar2canonical opts absname gr =
|
||||||
Grammar (abstract2canonical absname gr)
|
Grammar (abstract2canonical absname gr)
|
||||||
(map snd (concretes2canonical opts absname gr))
|
(map snd (concretes2canonical opts absname gr))
|
||||||
|
|
||||||
-- | Generate Canonical code for the named abstract syntax
|
-- | Generate Canonical code for the named abstract syntax
|
||||||
|
abstract2canonical :: ModuleName -> G.Grammar -> Abstract
|
||||||
abstract2canonical absname gr =
|
abstract2canonical absname gr =
|
||||||
Abstract (modId absname) (convFlags gr absname) cats funs
|
Abstract (modId absname) (convFlags gr absname) cats funs
|
||||||
where
|
where
|
||||||
@@ -44,6 +49,7 @@ abstract2canonical absname gr =
|
|||||||
convHypo (bt,name,t) =
|
convHypo (bt,name,t) =
|
||||||
case typeForm t of
|
case typeForm t of
|
||||||
([],(_,cat),[]) -> gId cat -- !!
|
([],(_,cat),[]) -> gId cat -- !!
|
||||||
|
tf -> error $ "abstract2canonical convHypo: " ++ show tf
|
||||||
|
|
||||||
convType t =
|
convType t =
|
||||||
case typeForm t of
|
case typeForm t of
|
||||||
@@ -54,23 +60,24 @@ abstract2canonical absname gr =
|
|||||||
|
|
||||||
convHypo' (bt,name,t) = TypeBinding (gId name) (convType t)
|
convHypo' (bt,name,t) = TypeBinding (gId name) (convType t)
|
||||||
|
|
||||||
|
|
||||||
-- | Generate Canonical code for the all concrete syntaxes associated with
|
-- | Generate Canonical code for the all concrete syntaxes associated with
|
||||||
-- the named abstract syntax in given the grammar.
|
-- the named abstract syntax in given the grammar.
|
||||||
|
concretes2canonical :: Options -> ModuleName -> G.Grammar -> [(FilePath, Concrete)]
|
||||||
concretes2canonical opts absname gr =
|
concretes2canonical opts absname gr =
|
||||||
[(cncname,concrete2canonical gr cenv absname cnc cncmod)
|
[(cncname,concrete2canonical gr cenv absname cnc cncmod)
|
||||||
| let cenv = resourceValues opts gr,
|
| let cenv = resourceValues opts gr,
|
||||||
cnc<-allConcretes gr absname,
|
cnc<-allConcretes gr absname,
|
||||||
let cncname = "canonical/"++render cnc ++ ".gf" :: FilePath
|
let cncname = "canonical" </> render cnc <.> "gf"
|
||||||
Ok cncmod = lookupModule gr cnc
|
Ok cncmod = lookupModule gr cnc
|
||||||
]
|
]
|
||||||
|
|
||||||
-- | Generate Canonical GF for the given concrete module.
|
-- | Generate Canonical GF for the given concrete module.
|
||||||
|
concrete2canonical :: G.Grammar -> GlobalEnv -> ModuleName -> ModuleName -> ModuleInfo -> Concrete
|
||||||
concrete2canonical gr cenv absname cnc modinfo =
|
concrete2canonical gr cenv absname cnc modinfo =
|
||||||
Concrete (modId cnc) (modId absname) (convFlags gr cnc)
|
Concrete (modId cnc) (modId absname) (convFlags gr cnc)
|
||||||
(neededParamTypes S.empty (params defs))
|
(neededParamTypes S.empty (params defs))
|
||||||
[lincat|(_,Left lincat)<-defs]
|
[lincat | (_,Left lincat) <- defs]
|
||||||
[lin|(_,Right lin)<-defs]
|
[lin | (_,Right lin) <- defs]
|
||||||
where
|
where
|
||||||
defs = concatMap (toCanonical gr absname cenv) .
|
defs = concatMap (toCanonical gr absname cenv) .
|
||||||
M.toList $
|
M.toList $
|
||||||
@@ -85,6 +92,7 @@ concrete2canonical gr cenv absname cnc modinfo =
|
|||||||
else let ((got,need),def) = paramType gr q
|
else let ((got,need),def) = paramType gr q
|
||||||
in def++neededParamTypes (S.union got have) (S.toList need++qs)
|
in def++neededParamTypes (S.union got have) (S.toList need++qs)
|
||||||
|
|
||||||
|
toCanonical :: G.Grammar -> ModuleName -> GlobalEnv -> (Ident, Info) -> [(S.Set QIdent, Either LincatDef LinDef)]
|
||||||
toCanonical gr absname cenv (name,jment) =
|
toCanonical gr absname cenv (name,jment) =
|
||||||
case jment of
|
case jment of
|
||||||
CncCat (Just (L loc typ)) _ _ pprn _ ->
|
CncCat (Just (L loc typ)) _ _ pprn _ ->
|
||||||
@@ -97,7 +105,8 @@ toCanonical gr absname cenv (name,jment) =
|
|||||||
where
|
where
|
||||||
tts = tableTypes gr [e']
|
tts = tableTypes gr [e']
|
||||||
|
|
||||||
e' = unAbs (length params) $
|
e' = cleanupRecordFields lincat $
|
||||||
|
unAbs (length params) $
|
||||||
nf loc (mkAbs params (mkApp def (map Vr args)))
|
nf loc (mkAbs params (mkApp def (map Vr args)))
|
||||||
params = [(b,x)|(b,x,_)<-ctx]
|
params = [(b,x)|(b,x,_)<-ctx]
|
||||||
args = map snd params
|
args = map snd params
|
||||||
@@ -108,12 +117,12 @@ toCanonical gr absname cenv (name,jment) =
|
|||||||
_ -> []
|
_ -> []
|
||||||
where
|
where
|
||||||
nf loc = normalForm cenv (L loc name)
|
nf loc = normalForm cenv (L loc name)
|
||||||
-- aId n = prefixIdent "A." (gId n)
|
|
||||||
|
|
||||||
unAbs 0 t = t
|
unAbs 0 t = t
|
||||||
unAbs n (Abs _ _ t) = unAbs (n-1) t
|
unAbs n (Abs _ _ t) = unAbs (n-1) t
|
||||||
unAbs _ t = t
|
unAbs _ t = t
|
||||||
|
|
||||||
|
tableTypes :: G.Grammar -> [Term] -> S.Set QIdent
|
||||||
tableTypes gr ts = S.unions (map tabtys ts)
|
tableTypes gr ts = S.unions (map tabtys ts)
|
||||||
where
|
where
|
||||||
tabtys t =
|
tabtys t =
|
||||||
@@ -122,6 +131,7 @@ tableTypes gr ts = S.unions (map tabtys ts)
|
|||||||
T (TTyped t) cs -> S.union (paramTypes gr t) (tableTypes gr (map snd cs))
|
T (TTyped t) cs -> S.union (paramTypes gr t) (tableTypes gr (map snd cs))
|
||||||
_ -> collectOp tabtys t
|
_ -> collectOp tabtys t
|
||||||
|
|
||||||
|
paramTypes :: G.Grammar -> G.Type -> S.Set QIdent
|
||||||
paramTypes gr t =
|
paramTypes gr t =
|
||||||
case t of
|
case t of
|
||||||
RecType fs -> S.unions (map (paramTypes gr.snd) fs)
|
RecType fs -> S.unions (map (paramTypes gr.snd) fs)
|
||||||
@@ -140,11 +150,26 @@ paramTypes gr t =
|
|||||||
Ok (_,ResParam {}) -> S.singleton q
|
Ok (_,ResParam {}) -> S.singleton q
|
||||||
_ -> ignore
|
_ -> ignore
|
||||||
|
|
||||||
ignore = trace ("Ignore: "++show t) S.empty
|
ignore = T.trace ("Ignore: " ++ show t) S.empty
|
||||||
|
|
||||||
|
-- | Filter out record fields from definitions which don't appear in lincat.
|
||||||
|
cleanupRecordFields :: G.Type -> Term -> Term
|
||||||
|
cleanupRecordFields (RecType ls) (R as) =
|
||||||
|
let defnFields = M.fromList ls
|
||||||
|
in R
|
||||||
|
[ (lbl, (mty, t'))
|
||||||
|
| (lbl, (mty, t)) <- as
|
||||||
|
, M.member lbl defnFields
|
||||||
|
, let Just ty = M.lookup lbl defnFields
|
||||||
|
, let t' = cleanupRecordFields ty t
|
||||||
|
]
|
||||||
|
cleanupRecordFields ty t@(FV _) = composSafeOp (cleanupRecordFields ty) t
|
||||||
|
cleanupRecordFields _ t = t
|
||||||
|
|
||||||
|
convert :: G.Grammar -> Term -> LinValue
|
||||||
convert gr = convert' gr []
|
convert gr = convert' gr []
|
||||||
|
|
||||||
|
convert' :: G.Grammar -> [Ident] -> Term -> LinValue
|
||||||
convert' gr vs = ppT
|
convert' gr vs = ppT
|
||||||
where
|
where
|
||||||
ppT0 = convert' gr vs
|
ppT0 = convert' gr vs
|
||||||
@@ -162,20 +187,20 @@ convert' gr vs = ppT
|
|||||||
S t p -> selection (ppT t) (ppT p)
|
S t p -> selection (ppT t) (ppT p)
|
||||||
C t1 t2 -> concatValue (ppT t1) (ppT t2)
|
C t1 t2 -> concatValue (ppT t1) (ppT t2)
|
||||||
App f a -> ap (ppT f) (ppT a)
|
App f a -> ap (ppT f) (ppT a)
|
||||||
R r -> RecordValue (fields r)
|
R r -> RecordValue (fields (sortRec r))
|
||||||
P t l -> projection (ppT t) (lblId l)
|
P t l -> projection (ppT t) (lblId l)
|
||||||
Vr x -> VarValue (gId x)
|
Vr x -> VarValue (gId x)
|
||||||
Cn x -> VarValue (gId x) -- hmm
|
Cn x -> VarValue (gId x) -- hmm
|
||||||
Con c -> ParamConstant (Param (gId c) [])
|
Con c -> ParamConstant (Param (gId c) [])
|
||||||
Sort k -> VarValue (gId k)
|
Sort k -> VarValue (gId k)
|
||||||
EInt n -> LiteralValue (IntConstant n)
|
EInt n -> LiteralValue (IntConstant n)
|
||||||
Q (m,n) -> if m==cPredef then ppPredef n else VarValue ((gQId m n))
|
Q (m,n) -> if m==cPredef then ppPredef n else VarValue (gQId m n)
|
||||||
QC (m,n) -> ParamConstant (Param ((gQId m n)) [])
|
QC (m,n) -> ParamConstant (Param (gQId m n) [])
|
||||||
K s -> LiteralValue (StrConstant s)
|
K s -> LiteralValue (StrConstant s)
|
||||||
Empty -> LiteralValue (StrConstant "")
|
Empty -> LiteralValue (StrConstant "")
|
||||||
FV ts -> VariantValue (map ppT ts)
|
FV ts -> VariantValue (map ppT ts)
|
||||||
Alts t' vs -> alts vs (ppT t')
|
Alts t' vs -> alts vs (ppT t')
|
||||||
_ -> error $ "convert' "++show t
|
_ -> error $ "convert' ppT: " ++ show t
|
||||||
|
|
||||||
ppCase (p,t) = TableRow (ppP p) (ppTv (patVars p++vs) t)
|
ppCase (p,t) = TableRow (ppP p) (ppTv (patVars p++vs) t)
|
||||||
|
|
||||||
@@ -188,12 +213,12 @@ convert' gr vs = ppT
|
|||||||
Ok ALL_CAPIT -> p "ALL_CAPIT"
|
Ok ALL_CAPIT -> p "ALL_CAPIT"
|
||||||
_ -> VarValue (gQId cPredef n) -- hmm
|
_ -> VarValue (gQId cPredef n) -- hmm
|
||||||
where
|
where
|
||||||
p = PredefValue . PredefId
|
p = PredefValue . PredefId . rawIdentS
|
||||||
|
|
||||||
ppP p =
|
ppP p =
|
||||||
case p of
|
case p of
|
||||||
PC c ps -> ParamPattern (Param (gId c) (map ppP ps))
|
PC c ps -> ParamPattern (Param (gId c) (map ppP ps))
|
||||||
PP (m,c) ps -> ParamPattern (Param ((gQId m c)) (map ppP ps))
|
PP (m,c) ps -> ParamPattern (Param (gQId m c) (map ppP ps))
|
||||||
PR r -> RecordPattern (fields r) {-
|
PR r -> RecordPattern (fields r) {-
|
||||||
PW -> WildPattern
|
PW -> WildPattern
|
||||||
PV x -> VarP x
|
PV x -> VarP x
|
||||||
@@ -202,6 +227,7 @@ convert' gr vs = ppT
|
|||||||
PFloat x -> Lit (show x)
|
PFloat x -> Lit (show x)
|
||||||
PT _ p -> ppP p
|
PT _ p -> ppP p
|
||||||
PAs x p -> AsP x (ppP p) -}
|
PAs x p -> AsP x (ppP p) -}
|
||||||
|
_ -> error $ "convert' ppP: " ++ show p
|
||||||
where
|
where
|
||||||
fields = map field . filter (not.isLockLabel.fst)
|
fields = map field . filter (not.isLockLabel.fst)
|
||||||
field (l,p) = RecordRow (lblId l) (ppP p)
|
field (l,p) = RecordRow (lblId l) (ppP p)
|
||||||
@@ -218,12 +244,12 @@ convert' gr vs = ppT
|
|||||||
pre Empty = [""] -- Empty == K ""
|
pre Empty = [""] -- Empty == K ""
|
||||||
pre (Strs ts) = concatMap pre ts
|
pre (Strs ts) = concatMap pre ts
|
||||||
pre (EPatt p) = pat p
|
pre (EPatt p) = pat p
|
||||||
pre t = error $ "pre "++show t
|
pre t = error $ "convert' alts pre: " ++ show t
|
||||||
|
|
||||||
pat (PString s) = [s]
|
pat (PString s) = [s]
|
||||||
pat (PAlt p1 p2) = pat p1++pat p2
|
pat (PAlt p1 p2) = pat p1++pat p2
|
||||||
pat (PSeq p1 p2) = [s1++s2 | s1<-pat p1, s2<-pat p2]
|
pat (PSeq p1 p2) = [s1++s2 | s1<-pat p1, s2<-pat p2]
|
||||||
pat p = error $ "pat "++show p
|
pat p = error $ "convert' alts pat: "++show p
|
||||||
|
|
||||||
fields = map field . filter (not.isLockLabel.fst)
|
fields = map field . filter (not.isLockLabel.fst)
|
||||||
field (l,(_,t)) = RecordRow (lblId l) (ppT t)
|
field (l,(_,t)) = RecordRow (lblId l) (ppT t)
|
||||||
@@ -236,6 +262,7 @@ convert' gr vs = ppT
|
|||||||
ParamConstant (Param p (ps++[a]))
|
ParamConstant (Param p (ps++[a]))
|
||||||
_ -> error $ "convert' ap: "++render (ppA f <+> ppA a)
|
_ -> error $ "convert' ap: "++render (ppA f <+> ppA a)
|
||||||
|
|
||||||
|
concatValue :: LinValue -> LinValue -> LinValue
|
||||||
concatValue v1 v2 =
|
concatValue v1 v2 =
|
||||||
case (v1,v2) of
|
case (v1,v2) of
|
||||||
(LiteralValue (StrConstant ""),_) -> v2
|
(LiteralValue (StrConstant ""),_) -> v2
|
||||||
@@ -243,21 +270,24 @@ concatValue v1 v2 =
|
|||||||
_ -> ConcatValue v1 v2
|
_ -> ConcatValue v1 v2
|
||||||
|
|
||||||
-- | Smart constructor for projections
|
-- | Smart constructor for projections
|
||||||
projection r l = maybe (Projection r l) id (proj r l)
|
projection :: LinValue -> LabelId -> LinValue
|
||||||
|
projection r l = fromMaybe (Projection r l) (proj r l)
|
||||||
|
|
||||||
|
proj :: LinValue -> LabelId -> Maybe LinValue
|
||||||
proj r l =
|
proj r l =
|
||||||
case r of
|
case r of
|
||||||
RecordValue r -> case [v|RecordRow l' v<-r,l'==l] of
|
RecordValue r -> case [v | RecordRow l' v <- r, l'==l] of
|
||||||
[v] -> Just v
|
[v] -> Just v
|
||||||
_ -> Nothing
|
_ -> Nothing
|
||||||
_ -> Nothing
|
_ -> Nothing
|
||||||
|
|
||||||
-- | Smart constructor for selections
|
-- | Smart constructor for selections
|
||||||
|
selection :: LinValue -> LinValue -> LinValue
|
||||||
selection t v =
|
selection t v =
|
||||||
-- Note: impossible cases can become possible after grammar transformation
|
-- Note: impossible cases can become possible after grammar transformation
|
||||||
case t of
|
case t of
|
||||||
TableValue tt r ->
|
TableValue tt r ->
|
||||||
case nub [rv|TableRow _ rv<-keep] of
|
case nub [rv | TableRow _ rv <- keep] of
|
||||||
[rv] -> rv
|
[rv] -> rv
|
||||||
_ -> Selection (TableValue tt r') v
|
_ -> Selection (TableValue tt r') v
|
||||||
where
|
where
|
||||||
@@ -276,13 +306,16 @@ selection t v =
|
|||||||
(keep,discard) = partition (mightMatchRow v) r
|
(keep,discard) = partition (mightMatchRow v) r
|
||||||
_ -> Selection t v
|
_ -> Selection t v
|
||||||
|
|
||||||
|
impossible :: LinValue -> LinValue
|
||||||
impossible = CommentedValue "impossible"
|
impossible = CommentedValue "impossible"
|
||||||
|
|
||||||
|
mightMatchRow :: LinValue -> TableRow rhs -> Bool
|
||||||
mightMatchRow v (TableRow p _) =
|
mightMatchRow v (TableRow p _) =
|
||||||
case p of
|
case p of
|
||||||
WildPattern -> True
|
WildPattern -> True
|
||||||
_ -> mightMatch v p
|
_ -> mightMatch v p
|
||||||
|
|
||||||
|
mightMatch :: LinValue -> LinPattern -> Bool
|
||||||
mightMatch v p =
|
mightMatch v p =
|
||||||
case v of
|
case v of
|
||||||
ConcatValue _ _ -> False
|
ConcatValue _ _ -> False
|
||||||
@@ -294,16 +327,18 @@ mightMatch v p =
|
|||||||
RecordValue rv ->
|
RecordValue rv ->
|
||||||
case p of
|
case p of
|
||||||
RecordPattern rp ->
|
RecordPattern rp ->
|
||||||
and [maybe False (flip mightMatch p) (proj v l) | RecordRow l p<-rp]
|
and [maybe False (`mightMatch` p) (proj v l) | RecordRow l p<-rp]
|
||||||
_ -> False
|
_ -> False
|
||||||
_ -> True
|
_ -> True
|
||||||
|
|
||||||
|
patVars :: Patt -> [Ident]
|
||||||
patVars p =
|
patVars p =
|
||||||
case p of
|
case p of
|
||||||
PV x -> [x]
|
PV x -> [x]
|
||||||
PAs x p -> x:patVars p
|
PAs x p -> x:patVars p
|
||||||
_ -> collectPattOp patVars p
|
_ -> collectPattOp patVars p
|
||||||
|
|
||||||
|
convType :: Term -> LinType
|
||||||
convType = ppT
|
convType = ppT
|
||||||
where
|
where
|
||||||
ppT t =
|
ppT t =
|
||||||
@@ -315,9 +350,9 @@ convType = ppT
|
|||||||
Sort k -> convSort k
|
Sort k -> convSort k
|
||||||
-- EInt n -> tcon0 (identS ("({-"++show n++"-})")) -- type level numeric literal
|
-- EInt n -> tcon0 (identS ("({-"++show n++"-})")) -- type level numeric literal
|
||||||
FV (t:ts) -> ppT t -- !!
|
FV (t:ts) -> ppT t -- !!
|
||||||
QC (m,n) -> ParamType (ParamTypeId ((gQId m n)))
|
QC (m,n) -> ParamType (ParamTypeId (gQId m n))
|
||||||
Q (m,n) -> ParamType (ParamTypeId ((gQId m n)))
|
Q (m,n) -> ParamType (ParamTypeId (gQId m n))
|
||||||
_ -> error $ "Missing case in convType for: "++show t
|
_ -> error $ "convType ppT: " ++ show t
|
||||||
|
|
||||||
convFields = map convField . filter (not.isLockLabel.fst)
|
convFields = map convField . filter (not.isLockLabel.fst)
|
||||||
convField (l,r) = RecordRow (lblId l) (ppT r)
|
convField (l,r) = RecordRow (lblId l) (ppT r)
|
||||||
@@ -326,15 +361,20 @@ convType = ppT
|
|||||||
"Float" -> FloatType
|
"Float" -> FloatType
|
||||||
"Int" -> IntType
|
"Int" -> IntType
|
||||||
"Str" -> StrType
|
"Str" -> StrType
|
||||||
_ -> error ("convSort "++show k)
|
_ -> error $ "convType convSort: " ++ show k
|
||||||
|
|
||||||
|
toParamType :: Term -> ParamType
|
||||||
toParamType t = case convType t of
|
toParamType t = case convType t of
|
||||||
ParamType pt -> pt
|
ParamType pt -> pt
|
||||||
_ -> error ("toParamType "++show t)
|
_ -> error $ "toParamType: " ++ show t
|
||||||
|
|
||||||
|
toParamId :: Term -> ParamId
|
||||||
toParamId t = case toParamType t of
|
toParamId t = case toParamType t of
|
||||||
ParamTypeId p -> p
|
ParamTypeId p -> p
|
||||||
|
|
||||||
|
paramType :: G.Grammar
|
||||||
|
-> (ModuleName, Ident)
|
||||||
|
-> ((S.Set (ModuleName, Ident), S.Set QIdent), [ParamDef])
|
||||||
paramType gr q@(_,n) =
|
paramType gr q@(_,n) =
|
||||||
case lookupOrigInfo gr q of
|
case lookupOrigInfo gr q of
|
||||||
Ok (m,ResParam (Just (L _ ps)) _)
|
Ok (m,ResParam (Just (L _ ps)) _)
|
||||||
@@ -342,7 +382,7 @@ paramType gr q@(_,n) =
|
|||||||
((S.singleton (m,n),argTypes ps),
|
((S.singleton (m,n),argTypes ps),
|
||||||
[ParamDef name (map (param m) ps)]
|
[ParamDef name (map (param m) ps)]
|
||||||
)
|
)
|
||||||
where name = (gQId m n)
|
where name = gQId m n
|
||||||
Ok (m,ResOper _ (Just (L _ t)))
|
Ok (m,ResOper _ (Just (L _ t)))
|
||||||
| m==cPredef && n==cInts ->
|
| m==cPredef && n==cInts ->
|
||||||
((S.empty,S.empty),[]) {-
|
((S.empty,S.empty),[]) {-
|
||||||
@@ -350,36 +390,46 @@ paramType gr q@(_,n) =
|
|||||||
[Type (ConAp ((gQId m n)) [identS "n"]) (TId (identS "Int"))])-}
|
[Type (ConAp ((gQId m n)) [identS "n"]) (TId (identS "Int"))])-}
|
||||||
| otherwise ->
|
| otherwise ->
|
||||||
((S.singleton (m,n),paramTypes gr t),
|
((S.singleton (m,n),paramTypes gr t),
|
||||||
[ParamAliasDef ((gQId m n)) (convType t)])
|
[ParamAliasDef (gQId m n) (convType t)])
|
||||||
_ -> ((S.empty,S.empty),[])
|
_ -> ((S.empty,S.empty),[])
|
||||||
where
|
where
|
||||||
param m (n,ctx) = Param ((gQId m n)) [toParamId t|(_,_,t)<-ctx]
|
param m (n,ctx) = Param (gQId m n) [toParamId t|(_,_,t)<-ctx]
|
||||||
argTypes = S.unions . map argTypes1
|
argTypes = S.unions . map argTypes1
|
||||||
argTypes1 (n,ctx) = S.unions [paramTypes gr t|(_,_,t)<-ctx]
|
argTypes1 (n,ctx) = S.unions [paramTypes gr t|(_,_,t)<-ctx]
|
||||||
|
|
||||||
lblId = LabelId . render -- hmm
|
lblId :: Label -> C.LabelId
|
||||||
modId (MN m) = ModId (showIdent m)
|
lblId (LIdent ri) = LabelId ri
|
||||||
|
lblId (LVar i) = LabelId (rawIdentS (show i)) -- hmm
|
||||||
|
|
||||||
class FromIdent i where gId :: Ident -> i
|
modId :: ModuleName -> C.ModId
|
||||||
|
modId (MN m) = ModId (ident2raw m)
|
||||||
|
|
||||||
|
class FromIdent i where
|
||||||
|
gId :: Ident -> i
|
||||||
|
|
||||||
instance FromIdent VarId where
|
instance FromIdent VarId where
|
||||||
gId i = if isWildIdent i then Anonymous else VarId (showIdent i)
|
gId i = if isWildIdent i then Anonymous else VarId (ident2raw i)
|
||||||
|
|
||||||
instance FromIdent C.FunId where gId = C.FunId . showIdent
|
instance FromIdent C.FunId where gId = C.FunId . ident2raw
|
||||||
instance FromIdent CatId where gId = CatId . showIdent
|
instance FromIdent CatId where gId = CatId . ident2raw
|
||||||
instance FromIdent ParamId where gId = ParamId . unqual
|
instance FromIdent ParamId where gId = ParamId . unqual
|
||||||
instance FromIdent VarValueId where gId = VarValueId . unqual
|
instance FromIdent VarValueId where gId = VarValueId . unqual
|
||||||
|
|
||||||
class FromIdent i => QualIdent i where gQId :: ModuleName -> Ident -> i
|
class FromIdent i => QualIdent i where
|
||||||
|
gQId :: ModuleName -> Ident -> i
|
||||||
|
|
||||||
instance QualIdent ParamId where gQId m n = ParamId (qual m n)
|
instance QualIdent ParamId where gQId m n = ParamId (qual m n)
|
||||||
instance QualIdent VarValueId where gQId m n = VarValueId (qual m n)
|
instance QualIdent VarValueId where gQId m n = VarValueId (qual m n)
|
||||||
|
|
||||||
qual m n = Qual (modId m) (showIdent n)
|
qual :: ModuleName -> Ident -> QualId
|
||||||
unqual n = Unqual (showIdent n)
|
qual m n = Qual (modId m) (ident2raw n)
|
||||||
|
|
||||||
|
unqual :: Ident -> QualId
|
||||||
|
unqual n = Unqual (ident2raw n)
|
||||||
|
|
||||||
|
convFlags :: G.Grammar -> ModuleName -> Flags
|
||||||
convFlags gr mn =
|
convFlags gr mn =
|
||||||
Flags [(n,convLit v) |
|
Flags [(rawIdentS n,convLit v) |
|
||||||
(n,v)<-err (const []) (optionsPGF.mflags) (lookupModule gr mn)]
|
(n,v)<-err (const []) (optionsPGF.mflags) (lookupModule gr mn)]
|
||||||
where
|
where
|
||||||
convLit l =
|
convLit l =
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
module GF.Grammar.Canonical where
|
module GF.Grammar.Canonical where
|
||||||
import Prelude hiding ((<>))
|
import Prelude hiding ((<>))
|
||||||
import GF.Text.Pretty
|
import GF.Text.Pretty
|
||||||
|
import GF.Infra.Ident (RawIdent)
|
||||||
|
|
||||||
-- | A Complete grammar
|
-- | A Complete grammar
|
||||||
data Grammar = Grammar Abstract [Concrete] deriving Show
|
data Grammar = Grammar Abstract [Concrete] deriving Show
|
||||||
@@ -126,7 +127,7 @@ data FlagValue = Str String | Int Int | Flt Double deriving Show
|
|||||||
|
|
||||||
-- *** Identifiers
|
-- *** Identifiers
|
||||||
|
|
||||||
type Id = String
|
type Id = RawIdent
|
||||||
data QualId = Qual ModId Id | Unqual Id deriving (Eq,Ord,Show)
|
data QualId = Qual ModId Id | Unqual Id deriving (Eq,Ord,Show)
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
@@ -265,7 +266,6 @@ instance PPA LinPattern where
|
|||||||
RecordPattern r -> block r
|
RecordPattern r -> block r
|
||||||
TuplePattern ps -> "<"<>punctuate "," ps<>">"
|
TuplePattern ps -> "<"<>punctuate "," ps<>">"
|
||||||
WildPattern -> pp "_"
|
WildPattern -> pp "_"
|
||||||
_ -> parens p
|
|
||||||
|
|
||||||
instance RhsSeparator LinPattern where rhsSep _ = pp "="
|
instance RhsSeparator LinPattern where rhsSep _ = pp "="
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import Control.Applicative ((<|>))
|
|||||||
import Data.Ratio (denominator, numerator)
|
import Data.Ratio (denominator, numerator)
|
||||||
import GF.Grammar.Canonical
|
import GF.Grammar.Canonical
|
||||||
import Control.Monad (guard)
|
import Control.Monad (guard)
|
||||||
|
import GF.Infra.Ident (RawIdent,showRawIdent,rawIdentS)
|
||||||
|
|
||||||
|
|
||||||
encodeJSON :: FilePath -> Grammar -> IO ()
|
encodeJSON :: FilePath -> Grammar -> IO ()
|
||||||
@@ -204,12 +205,12 @@ instance JSON a => JSON (RecordRow a) where
|
|||||||
-- record rows and lists of record rows are both encoded as JSON records (i.e., objects)
|
-- record rows and lists of record rows are both encoded as JSON records (i.e., objects)
|
||||||
showJSON row = showJSONs [row]
|
showJSON row = showJSONs [row]
|
||||||
showJSONs rows = makeObj (map toRow rows)
|
showJSONs rows = makeObj (map toRow rows)
|
||||||
where toRow (RecordRow (LabelId lbl) val) = (lbl, showJSON val)
|
where toRow (RecordRow (LabelId lbl) val) = (showRawIdent lbl, showJSON val)
|
||||||
|
|
||||||
readJSON obj = head <$> readJSONs obj
|
readJSON obj = head <$> readJSONs obj
|
||||||
readJSONs obj = mapM fromRow (assocsJSObject obj)
|
readJSONs obj = mapM fromRow (assocsJSObject obj)
|
||||||
where fromRow (lbl, jsvalue) = do value <- readJSON jsvalue
|
where fromRow (lbl, jsvalue) = do value <- readJSON jsvalue
|
||||||
return (RecordRow (LabelId lbl) value)
|
return (RecordRow (LabelId (rawIdentS lbl)) value)
|
||||||
|
|
||||||
instance JSON rhs => JSON (TableRow rhs) where
|
instance JSON rhs => JSON (TableRow rhs) where
|
||||||
showJSON (TableRow l v) = makeObj [(".pattern", showJSON l), (".value", showJSON v)]
|
showJSON (TableRow l v) = makeObj [(".pattern", showJSON l), (".value", showJSON v)]
|
||||||
@@ -242,20 +243,24 @@ instance JSON VarId where
|
|||||||
<|> VarId <$> readJSON o
|
<|> VarId <$> readJSON o
|
||||||
|
|
||||||
instance JSON QualId where
|
instance JSON QualId where
|
||||||
showJSON (Qual (ModId m) n) = showJSON (m++"."++n)
|
showJSON (Qual (ModId m) n) = showJSON (showRawIdent m++"."++showRawIdent n)
|
||||||
showJSON (Unqual n) = showJSON n
|
showJSON (Unqual n) = showJSON n
|
||||||
|
|
||||||
readJSON o = do qualid <- readJSON o
|
readJSON o = do qualid <- readJSON o
|
||||||
let (mod, id) = span (/= '.') qualid
|
let (mod, id) = span (/= '.') qualid
|
||||||
return $ if null mod then Unqual id else Qual (ModId mod) id
|
return $ if null mod then Unqual (rawIdentS id) else Qual (ModId (rawIdentS mod)) (rawIdentS id)
|
||||||
|
|
||||||
|
instance JSON RawIdent where
|
||||||
|
showJSON i = showJSON $ showRawIdent i
|
||||||
|
readJSON o = rawIdentS <$> readJSON o
|
||||||
|
|
||||||
instance JSON Flags where
|
instance JSON Flags where
|
||||||
-- flags are encoded directly as JSON records (i.e., objects):
|
-- flags are encoded directly as JSON records (i.e., objects):
|
||||||
showJSON (Flags fs) = makeObj [(f, showJSON v) | (f, v) <- fs]
|
showJSON (Flags fs) = makeObj [(showRawIdent f, showJSON v) | (f, v) <- fs]
|
||||||
|
|
||||||
readJSON obj = Flags <$> mapM fromRow (assocsJSObject obj)
|
readJSON obj = Flags <$> mapM fromRow (assocsJSObject obj)
|
||||||
where fromRow (lbl, jsvalue) = do value <- readJSON jsvalue
|
where fromRow (lbl, jsvalue) = do value <- readJSON jsvalue
|
||||||
return (lbl, value)
|
return (rawIdentS lbl, value)
|
||||||
|
|
||||||
instance JSON FlagValue where
|
instance JSON FlagValue where
|
||||||
-- flag values are encoded as basic JSON types:
|
-- flag values are encoded as basic JSON types:
|
||||||
|
|||||||
@@ -590,7 +590,7 @@ noExist = FV []
|
|||||||
defaultLinType :: Type
|
defaultLinType :: Type
|
||||||
defaultLinType = mkRecType linLabel [typeStr]
|
defaultLinType = mkRecType linLabel [typeStr]
|
||||||
|
|
||||||
-- normalize records and record types; put s first
|
-- | normalize records and record types; put s first
|
||||||
|
|
||||||
sortRec :: [(Label,a)] -> [(Label,a)]
|
sortRec :: [(Label,a)] -> [(Label,a)]
|
||||||
sortRec = sortBy ordLabel where
|
sortRec = sortBy ordLabel where
|
||||||
|
|||||||
@@ -13,18 +13,18 @@
|
|||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
|
|
||||||
module GF.Infra.Ident (-- ** Identifiers
|
module GF.Infra.Ident (-- ** Identifiers
|
||||||
ModuleName(..), moduleNameS,
|
ModuleName(..), moduleNameS,
|
||||||
Ident, ident2utf8, showIdent, prefixIdent,
|
Ident, ident2utf8, showIdent, prefixIdent,
|
||||||
-- *** Normal identifiers (returned by the parser)
|
-- *** Normal identifiers (returned by the parser)
|
||||||
identS, identC, identW,
|
identS, identC, identW,
|
||||||
-- *** Special identifiers for internal use
|
-- *** Special identifiers for internal use
|
||||||
identV, identA, identAV,
|
identV, identA, identAV,
|
||||||
argIdent, isArgIdent, getArgIndex,
|
argIdent, isArgIdent, getArgIndex,
|
||||||
varStr, varX, isWildIdent, varIndex,
|
varStr, varX, isWildIdent, varIndex,
|
||||||
-- *** Raw identifiers
|
-- *** Raw identifiers
|
||||||
RawIdent, rawIdentS, rawIdentC, ident2raw, prefixRawIdent,
|
RawIdent, rawIdentS, rawIdentC, ident2raw, prefixRawIdent,
|
||||||
isPrefixOf, showRawIdent
|
isPrefixOf, showRawIdent
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import qualified Data.ByteString.UTF8 as UTF8
|
import qualified Data.ByteString.UTF8 as UTF8
|
||||||
import qualified Data.ByteString.Char8 as BS(append,isPrefixOf)
|
import qualified Data.ByteString.Char8 as BS(append,isPrefixOf)
|
||||||
@@ -77,7 +77,6 @@ instance Binary RawIdent where
|
|||||||
put = put . rawId2utf8
|
put = put . rawId2utf8
|
||||||
get = fmap rawIdentC get
|
get = fmap rawIdentC get
|
||||||
|
|
||||||
|
|
||||||
-- | This function should be used with care, since the returned ByteString is
|
-- | This function should be used with care, since the returned ByteString is
|
||||||
-- UTF-8-encoded.
|
-- UTF-8-encoded.
|
||||||
ident2utf8 :: Ident -> UTF8.ByteString
|
ident2utf8 :: Ident -> UTF8.ByteString
|
||||||
@@ -88,6 +87,7 @@ ident2utf8 i = case i of
|
|||||||
IAV (Id s) b j -> BS.append s (pack ('_':show b ++ '_':show j))
|
IAV (Id s) b j -> BS.append s (pack ('_':show b ++ '_':show j))
|
||||||
IW -> pack "_"
|
IW -> pack "_"
|
||||||
|
|
||||||
|
ident2raw :: Ident -> RawIdent
|
||||||
ident2raw = Id . ident2utf8
|
ident2raw = Id . ident2utf8
|
||||||
|
|
||||||
showIdent :: Ident -> String
|
showIdent :: Ident -> String
|
||||||
@@ -95,13 +95,14 @@ showIdent i = unpack $! ident2utf8 i
|
|||||||
|
|
||||||
instance Pretty Ident where pp = pp . showIdent
|
instance Pretty Ident where pp = pp . showIdent
|
||||||
|
|
||||||
|
instance Pretty RawIdent where pp = pp . showRawIdent
|
||||||
|
|
||||||
identS :: String -> Ident
|
identS :: String -> Ident
|
||||||
identS = identC . rawIdentS
|
identS = identC . rawIdentS
|
||||||
|
|
||||||
identC :: RawIdent -> Ident
|
identC :: RawIdent -> Ident
|
||||||
identW :: Ident
|
identW :: Ident
|
||||||
|
|
||||||
|
|
||||||
prefixIdent :: String -> Ident -> Ident
|
prefixIdent :: String -> Ident -> Ident
|
||||||
prefixIdent pref = identC . Id . BS.append (pack pref) . ident2utf8
|
prefixIdent pref = identC . Id . BS.append (pack pref) . ident2utf8
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import qualified Data.Map as M
|
|||||||
import Control.Applicative -- for GHC<7.10
|
import Control.Applicative -- for GHC<7.10
|
||||||
import Control.Monad(when)
|
import Control.Monad(when)
|
||||||
import Control.Monad.State(StateT(..),get,gets,put)
|
import Control.Monad.State(StateT(..),get,gets,put)
|
||||||
import Control.Monad.Error(ErrorT(..),Error(..))
|
import Control.Monad.Except(ExceptT(..),runExceptT)
|
||||||
import System.Random(randomRIO)
|
import System.Random(randomRIO)
|
||||||
--import System.IO(stderr,hPutStrLn)
|
--import System.IO(stderr,hPutStrLn)
|
||||||
import GF.System.Catch(try)
|
import GF.System.Catch(try)
|
||||||
@@ -108,9 +108,9 @@ handle_fcgi execute1 state0 stateM cache =
|
|||||||
|
|
||||||
-- * Request handler
|
-- * Request handler
|
||||||
-- | Handler monad
|
-- | Handler monad
|
||||||
type HM s a = StateT (Q,s) (ErrorT Response IO) a
|
type HM s a = StateT (Q,s) (ExceptT Response IO) a
|
||||||
run :: HM s Response -> (Q,s) -> IO (s,Response)
|
run :: HM s Response -> (Q,s) -> IO (s,Response)
|
||||||
run m s = either bad ok =<< runErrorT (runStateT m s)
|
run m s = either bad ok =<< runExceptT (runStateT m s)
|
||||||
where
|
where
|
||||||
bad resp = return (snd s,resp)
|
bad resp = return (snd s,resp)
|
||||||
ok (resp,(qs,state)) = return (state,resp)
|
ok (resp,(qs,state)) = return (state,resp)
|
||||||
@@ -123,12 +123,12 @@ put_qs qs = do state <- get_state; put (qs,state)
|
|||||||
put_state state = do qs <- get_qs; put (qs,state)
|
put_state state = do qs <- get_qs; put (qs,state)
|
||||||
|
|
||||||
err :: Response -> HM s a
|
err :: Response -> HM s a
|
||||||
err e = StateT $ \ s -> ErrorT $ return $ Left e
|
err e = StateT $ \ s -> ExceptT $ return $ Left e
|
||||||
|
|
||||||
hmbracket_ :: IO () -> IO () -> HM s a -> HM s a
|
hmbracket_ :: IO () -> IO () -> HM s a -> HM s a
|
||||||
hmbracket_ pre post m =
|
hmbracket_ pre post m =
|
||||||
do s <- get
|
do s <- get
|
||||||
e <- liftIO $ bracket_ pre post $ runErrorT $ runStateT m s
|
e <- liftIO $ bracket_ pre post $ runExceptT $ runStateT m s
|
||||||
case e of
|
case e of
|
||||||
Left resp -> err resp
|
Left resp -> err resp
|
||||||
Right (a,s) -> do put s;return a
|
Right (a,s) -> do put s;return a
|
||||||
@@ -407,9 +407,6 @@ resp404 path = Response 404 [plain,xo] $ "Not found: "++path++"\n"
|
|||||||
resp500 msg = Response 500 [plain,xo] $ "Internal error: "++msg++"\n"
|
resp500 msg = Response 500 [plain,xo] $ "Internal error: "++msg++"\n"
|
||||||
resp501 msg = Response 501 [plain,xo] $ "Not implemented: "++msg++"\n"
|
resp501 msg = Response 501 [plain,xo] $ "Not implemented: "++msg++"\n"
|
||||||
|
|
||||||
instance Error Response where
|
|
||||||
noMsg = resp500 "no message"
|
|
||||||
strMsg = resp500
|
|
||||||
|
|
||||||
-- * Content types
|
-- * Content types
|
||||||
plain = ct "text/plain" ""
|
plain = ct "text/plain" ""
|
||||||
|
|||||||
@@ -9,14 +9,24 @@ instance JSON Grammar where
|
|||||||
showJSON (Grammar name extends abstract concretes) =
|
showJSON (Grammar name extends abstract concretes) =
|
||||||
makeObj ["basename".=name, "extends".=extends,
|
makeObj ["basename".=name, "extends".=extends,
|
||||||
"abstract".=abstract, "concretes".=concretes]
|
"abstract".=abstract, "concretes".=concretes]
|
||||||
|
readJSON = error "Grammar.readJSON intentionally not defined"
|
||||||
|
|
||||||
instance JSON Abstract where
|
instance JSON Abstract where
|
||||||
showJSON (Abstract startcat cats funs) =
|
showJSON (Abstract startcat cats funs) =
|
||||||
makeObj ["startcat".=startcat, "cats".=cats, "funs".=funs]
|
makeObj ["startcat".=startcat, "cats".=cats, "funs".=funs]
|
||||||
|
readJSON = error "Abstract.readJSON intentionally not defined"
|
||||||
|
|
||||||
instance JSON Fun where showJSON (Fun name typ) = signature name typ
|
instance JSON Fun where
|
||||||
instance JSON Param where showJSON (Param name rhs) = definition name rhs
|
showJSON (Fun name typ) = signature name typ
|
||||||
instance JSON Oper where showJSON (Oper name rhs) = definition name rhs
|
readJSON = error "Fun.readJSON intentionally not defined"
|
||||||
|
|
||||||
|
instance JSON Param where
|
||||||
|
showJSON (Param name rhs) = definition name rhs
|
||||||
|
readJSON = error "Param.readJSON intentionally not defined"
|
||||||
|
|
||||||
|
instance JSON Oper where
|
||||||
|
showJSON (Oper name rhs) = definition name rhs
|
||||||
|
readJSON = error "Oper.readJSON intentionally not defined"
|
||||||
|
|
||||||
signature name typ = makeObj ["name".=name,"type".=typ]
|
signature name typ = makeObj ["name".=name,"type".=typ]
|
||||||
definition name rhs = makeObj ["name".=name,"rhs".=rhs]
|
definition name rhs = makeObj ["name".=name,"rhs".=rhs]
|
||||||
@@ -26,12 +36,15 @@ instance JSON Concrete where
|
|||||||
makeObj ["langcode".=langcode, "opens".=opens,
|
makeObj ["langcode".=langcode, "opens".=opens,
|
||||||
"params".=params, "opers".=opers,
|
"params".=params, "opers".=opers,
|
||||||
"lincats".=lincats, "lins".=lins]
|
"lincats".=lincats, "lins".=lins]
|
||||||
|
readJSON = error "Concrete.readJSON intentionally not defined"
|
||||||
|
|
||||||
instance JSON Lincat where
|
instance JSON Lincat where
|
||||||
showJSON (Lincat cat lintype) = makeObj ["cat".=cat, "type".=lintype]
|
showJSON (Lincat cat lintype) = makeObj ["cat".=cat, "type".=lintype]
|
||||||
|
readJSON = error "Lincat.readJSON intentionally not defined"
|
||||||
|
|
||||||
instance JSON Lin where
|
instance JSON Lin where
|
||||||
showJSON (Lin fun args lin) = makeObj ["fun".=fun, "args".=args, "lin".=lin]
|
showJSON (Lin fun args lin) = makeObj ["fun".=fun, "args".=args, "lin".=lin]
|
||||||
|
readJSON = error "Lin.readJSON intentionally not defined"
|
||||||
|
|
||||||
infix 1 .=
|
infix 1 .=
|
||||||
name .= v = (name,showJSON v)
|
name .= v = (name,showJSON v)
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
|
## 1.3.0
|
||||||
|
|
||||||
|
- Add completion support.
|
||||||
|
|
||||||
## 1.2.1
|
## 1.2.1
|
||||||
|
|
||||||
- Remove deprecated pgf_print_expr_tuple
|
- Remove deprecated `pgf_print_expr_tuple`.
|
||||||
- Added an API for cloning expressions/types/literals
|
- Added an API for cloning expressions/types/literals.
|
||||||
|
|
||||||
## 1.2.0
|
## 1.2.0
|
||||||
|
|
||||||
|
|||||||
@@ -43,30 +43,28 @@ module PGF2 (-- * PGF
|
|||||||
mkCId,
|
mkCId,
|
||||||
exprHash, exprSize, exprFunctions, exprSubstitute,
|
exprHash, exprSize, exprFunctions, exprSubstitute,
|
||||||
treeProbability,
|
treeProbability,
|
||||||
|
|
||||||
-- ** Types
|
-- ** Types
|
||||||
Type, Hypo, BindType(..), startCat,
|
Type, Hypo, BindType(..), startCat,
|
||||||
readType, showType, showContext,
|
readType, showType, showContext,
|
||||||
mkType, unType,
|
mkType, unType,
|
||||||
|
|
||||||
-- ** Type checking
|
-- ** Type checking
|
||||||
|
-- | Dynamically-built expressions should always be type-checked before using in other functions,
|
||||||
|
-- as the exceptions thrown by using invalid expressions may not catchable.
|
||||||
checkExpr, inferExpr, checkType,
|
checkExpr, inferExpr, checkType,
|
||||||
|
|
||||||
-- ** Computing
|
-- ** Computing
|
||||||
compute,
|
compute,
|
||||||
|
|
||||||
-- * Concrete syntax
|
-- * Concrete syntax
|
||||||
ConcName,Concr,languages,concreteName,languageCode,
|
ConcName,Concr,languages,concreteName,languageCode,
|
||||||
|
|
||||||
-- ** Linearization
|
-- ** Linearization
|
||||||
linearize,linearizeAll,tabularLinearize,tabularLinearizeAll,bracketedLinearize,bracketedLinearizeAll,
|
linearize,linearizeAll,tabularLinearize,tabularLinearizeAll,bracketedLinearize,bracketedLinearizeAll,
|
||||||
FId, BracketedString(..), showBracketedString, flattenBracketedString,
|
FId, BracketedString(..), showBracketedString, flattenBracketedString,
|
||||||
printName, categoryFields,
|
printName, categoryFields,
|
||||||
|
|
||||||
alignWords,
|
alignWords,
|
||||||
-- ** Parsing
|
-- ** Parsing
|
||||||
ParseOutput(..), parse, parseWithHeuristics,
|
ParseOutput(..), parse, parseWithHeuristics,
|
||||||
parseToChart, PArg(..),
|
parseToChart, PArg(..),
|
||||||
|
complete,
|
||||||
-- ** Sentence Lookup
|
-- ** Sentence Lookup
|
||||||
lookupSentence,
|
lookupSentence,
|
||||||
-- ** Generation
|
-- ** Generation
|
||||||
@@ -974,6 +972,67 @@ parseWithOracle lang cat sent (predict,complete,literal) =
|
|||||||
return ep
|
return ep
|
||||||
Nothing -> do return nullPtr
|
Nothing -> do return nullPtr
|
||||||
|
|
||||||
|
-- | Returns possible completions of the current partial input.
|
||||||
|
complete :: Concr -- ^ the language with which we parse
|
||||||
|
-> Type -- ^ the start category
|
||||||
|
-> String -- ^ the input sentence (excluding token being completed)
|
||||||
|
-> String -- ^ prefix (partial token being completed)
|
||||||
|
-> ParseOutput [(String, CId, CId, Float)] -- ^ (token, category, function, probability)
|
||||||
|
complete lang (Type ctype _) sent pfx =
|
||||||
|
unsafePerformIO $ do
|
||||||
|
parsePl <- gu_new_pool
|
||||||
|
exn <- gu_new_exn parsePl
|
||||||
|
sent <- newUtf8CString sent parsePl
|
||||||
|
pfx <- newUtf8CString pfx parsePl
|
||||||
|
enum <- pgf_complete (concr lang) ctype sent pfx exn parsePl
|
||||||
|
failed <- gu_exn_is_raised exn
|
||||||
|
if failed
|
||||||
|
then do
|
||||||
|
is_parse_error <- gu_exn_caught exn gu_exn_type_PgfParseError
|
||||||
|
if is_parse_error
|
||||||
|
then do
|
||||||
|
c_err <- (#peek GuExn, data.data) exn
|
||||||
|
c_offset <- (#peek PgfParseError, offset) c_err
|
||||||
|
token_ptr <- (#peek PgfParseError, token_ptr) c_err
|
||||||
|
token_len <- (#peek PgfParseError, token_len) c_err
|
||||||
|
tok <- peekUtf8CStringLen token_ptr token_len
|
||||||
|
gu_pool_free parsePl
|
||||||
|
return (ParseFailed (fromIntegral (c_offset :: CInt)) tok)
|
||||||
|
else do
|
||||||
|
is_exn <- gu_exn_caught exn gu_exn_type_PgfExn
|
||||||
|
if is_exn
|
||||||
|
then do
|
||||||
|
c_msg <- (#peek GuExn, data.data) exn
|
||||||
|
msg <- peekUtf8CString c_msg
|
||||||
|
gu_pool_free parsePl
|
||||||
|
throwIO (PGFError msg)
|
||||||
|
else do
|
||||||
|
gu_pool_free parsePl
|
||||||
|
throwIO (PGFError "Parsing failed")
|
||||||
|
else do
|
||||||
|
fpl <- newForeignPtr gu_pool_finalizer parsePl
|
||||||
|
ParseOk <$> fromCompletions enum fpl
|
||||||
|
where
|
||||||
|
fromCompletions :: Ptr GuEnum -> ForeignPtr GuPool -> IO [(String, CId, CId, Float)]
|
||||||
|
fromCompletions enum fpl =
|
||||||
|
withGuPool $ \tmpPl -> do
|
||||||
|
cmpEntry <- alloca $ \ptr ->
|
||||||
|
withForeignPtr fpl $ \pl ->
|
||||||
|
do gu_enum_next enum ptr pl
|
||||||
|
peek ptr
|
||||||
|
if cmpEntry == nullPtr
|
||||||
|
then do
|
||||||
|
finalizeForeignPtr fpl
|
||||||
|
touchConcr lang
|
||||||
|
return []
|
||||||
|
else do
|
||||||
|
tok <- peekUtf8CString =<< (#peek PgfTokenProb, tok) cmpEntry
|
||||||
|
cat <- peekUtf8CString =<< (#peek PgfTokenProb, cat) cmpEntry
|
||||||
|
fun <- peekUtf8CString =<< (#peek PgfTokenProb, fun) cmpEntry
|
||||||
|
prob <- (#peek PgfTokenProb, prob) cmpEntry
|
||||||
|
toks <- unsafeInterleaveIO (fromCompletions enum fpl)
|
||||||
|
return ((tok, cat, fun, prob) : toks)
|
||||||
|
|
||||||
-- | Returns True if there is a linearization defined for that function in that language
|
-- | Returns True if there is a linearization defined for that function in that language
|
||||||
hasLinearization :: Concr -> Fun -> Bool
|
hasLinearization :: Concr -> Fun -> Bool
|
||||||
hasLinearization lang id = unsafePerformIO $
|
hasLinearization lang id = unsafePerformIO $
|
||||||
|
|||||||
@@ -256,6 +256,7 @@ data PgfApplication
|
|||||||
data PgfConcr
|
data PgfConcr
|
||||||
type PgfExpr = Ptr ()
|
type PgfExpr = Ptr ()
|
||||||
data PgfExprProb
|
data PgfExprProb
|
||||||
|
data PgfTokenProb
|
||||||
data PgfExprParser
|
data PgfExprParser
|
||||||
data PgfFullFormEntry
|
data PgfFullFormEntry
|
||||||
data PgfMorphoCallback
|
data PgfMorphoCallback
|
||||||
@@ -422,6 +423,9 @@ foreign import ccall
|
|||||||
foreign import ccall "pgf/pgf.h pgf_parse_with_oracle"
|
foreign import ccall "pgf/pgf.h pgf_parse_with_oracle"
|
||||||
pgf_parse_with_oracle :: Ptr PgfConcr -> CString -> CString -> Ptr PgfOracleCallback -> Ptr GuExn -> Ptr GuPool -> Ptr GuPool -> IO (Ptr GuEnum)
|
pgf_parse_with_oracle :: Ptr PgfConcr -> CString -> CString -> Ptr PgfOracleCallback -> Ptr GuExn -> Ptr GuPool -> Ptr GuPool -> IO (Ptr GuEnum)
|
||||||
|
|
||||||
|
foreign import ccall "pgf/pgf.h pgf_complete"
|
||||||
|
pgf_complete :: Ptr PgfConcr -> PgfType -> CString -> CString -> Ptr GuExn -> Ptr GuPool -> IO (Ptr GuEnum)
|
||||||
|
|
||||||
foreign import ccall "pgf/pgf.h pgf_lookup_morpho"
|
foreign import ccall "pgf/pgf.h pgf_lookup_morpho"
|
||||||
pgf_lookup_morpho :: Ptr PgfConcr -> CString -> Ptr PgfMorphoCallback -> Ptr GuExn -> IO ()
|
pgf_lookup_morpho :: Ptr PgfConcr -> CString -> Ptr PgfMorphoCallback -> Ptr GuExn -> IO ()
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: pgf2
|
name: pgf2
|
||||||
version: 1.2.1
|
version: 1.3.0
|
||||||
synopsis: Bindings to the C version of the PGF runtime
|
synopsis: Bindings to the C version of the PGF runtime
|
||||||
description:
|
description:
|
||||||
GF, Grammatical Framework, is a programming language for multilingual grammar applications.
|
GF, Grammatical Framework, is a programming language for multilingual grammar applications.
|
||||||
@@ -9,8 +9,7 @@ homepage: https://www.grammaticalframework.org
|
|||||||
license: LGPL-3
|
license: LGPL-3
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Krasimir Angelov
|
author: Krasimir Angelov
|
||||||
maintainer: kr.angelov@gmail.com
|
category: Natural Language Processing
|
||||||
category: Language
|
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
extra-source-files: CHANGELOG.md, README.md
|
extra-source-files: CHANGELOG.md, README.md
|
||||||
cabal-version: >=1.10
|
cabal-version: >=1.10
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ import qualified Data.ByteString.Lazy as L
|
|||||||
import Data.ByteString.Base (inlinePerformIO)
|
import Data.ByteString.Base (inlinePerformIO)
|
||||||
import qualified Data.ByteString.Base as S
|
import qualified Data.ByteString.Base as S
|
||||||
#else
|
#else
|
||||||
import Data.ByteString.Internal (inlinePerformIO)
|
import Data.ByteString.Internal (accursedUnutterablePerformIO)
|
||||||
import qualified Data.ByteString.Internal as S
|
import qualified Data.ByteString.Internal as S
|
||||||
--import qualified Data.ByteString.Lazy.Internal as L
|
--import qualified Data.ByteString.Lazy.Internal as L
|
||||||
#endif
|
#endif
|
||||||
@@ -199,7 +199,7 @@ defaultSize = 32 * k - overhead
|
|||||||
|
|
||||||
-- | Sequence an IO operation on the buffer
|
-- | Sequence an IO operation on the buffer
|
||||||
unsafeLiftIO :: (Buffer -> IO Buffer) -> Builder
|
unsafeLiftIO :: (Buffer -> IO Buffer) -> Builder
|
||||||
unsafeLiftIO f = Builder $ \ k buf -> inlinePerformIO $ do
|
unsafeLiftIO f = Builder $ \ k buf -> accursedUnutterablePerformIO $ do
|
||||||
buf' <- f buf
|
buf' <- f buf
|
||||||
return (k buf')
|
return (k buf')
|
||||||
{-# INLINE unsafeLiftIO #-}
|
{-# INLINE unsafeLiftIO #-}
|
||||||
|
|||||||
@@ -423,7 +423,7 @@ readN n f = fmap f $ getBytes n
|
|||||||
getPtr :: Storable a => Int -> Get a
|
getPtr :: Storable a => Int -> Get a
|
||||||
getPtr n = do
|
getPtr n = do
|
||||||
(fp,o,_) <- readN n B.toForeignPtr
|
(fp,o,_) <- readN n B.toForeignPtr
|
||||||
return . B.inlinePerformIO $ withForeignPtr fp $ \p -> peek (castPtr $ p `plusPtr` o)
|
return . B.accursedUnutterablePerformIO $ withForeignPtr fp $ \p -> peek (castPtr $ p `plusPtr` o)
|
||||||
{- INLINE getPtr -}
|
{- INLINE getPtr -}
|
||||||
|
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ import Control.Applicative
|
|||||||
import Control.Monad
|
import Control.Monad
|
||||||
--import Control.Monad.Identity
|
--import Control.Monad.Identity
|
||||||
import Control.Monad.State
|
import Control.Monad.State
|
||||||
import Control.Monad.Error
|
import Control.Monad.Except
|
||||||
import Text.PrettyPrint
|
import Text.PrettyPrint
|
||||||
|
|
||||||
-----------------------------------------------------
|
-----------------------------------------------------
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: pgf
|
name: pgf
|
||||||
version: 3.10
|
version: 3.10.1-git
|
||||||
|
|
||||||
cabal-version: >= 1.20
|
cabal-version: >= 1.20
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
@@ -9,20 +9,21 @@ synopsis: Grammatical Framework
|
|||||||
description: A library for interpreting the Portable Grammar Format (PGF)
|
description: A library for interpreting the Portable Grammar Format (PGF)
|
||||||
homepage: http://www.grammaticalframework.org/
|
homepage: http://www.grammaticalframework.org/
|
||||||
bug-reports: https://github.com/GrammaticalFramework/gf-core/issues
|
bug-reports: https://github.com/GrammaticalFramework/gf-core/issues
|
||||||
maintainer: Thomas Hallgren
|
tested-with: GHC==7.6.3, GHC==7.8.3, GHC==7.10.3, GHC==8.0.2, GHC==8.4.4
|
||||||
tested-with: GHC==7.6.3, GHC==7.8.3, GHC==7.10.3, GHC==8.0.2
|
|
||||||
|
|
||||||
Library
|
library
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
build-depends: base >= 4.6 && <5,
|
build-depends:
|
||||||
array,
|
array,
|
||||||
containers,
|
base >= 4.6 && <5,
|
||||||
bytestring,
|
bytestring,
|
||||||
utf8-string,
|
containers,
|
||||||
random,
|
-- exceptions,
|
||||||
pretty,
|
ghc-prim,
|
||||||
mtl,
|
mtl,
|
||||||
exceptions
|
pretty,
|
||||||
|
random,
|
||||||
|
utf8-string
|
||||||
|
|
||||||
other-modules:
|
other-modules:
|
||||||
-- not really part of GF but I have changed the original binary library
|
-- not really part of GF but I have changed the original binary library
|
||||||
@@ -37,7 +38,6 @@ Library
|
|||||||
--if impl(ghc>=7.8)
|
--if impl(ghc>=7.8)
|
||||||
-- ghc-options: +RTS -A20M -RTS
|
-- ghc-options: +RTS -A20M -RTS
|
||||||
ghc-prof-options: -fprof-auto
|
ghc-prof-options: -fprof-auto
|
||||||
extensions:
|
|
||||||
|
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
PGF
|
PGF
|
||||||
|
|||||||
@@ -151,29 +151,37 @@ getFile get path =
|
|||||||
cpgfMain qsem command (t,(pgf,pc)) =
|
cpgfMain qsem command (t,(pgf,pc)) =
|
||||||
case command of
|
case command of
|
||||||
"c-parse" -> withQSem qsem $
|
"c-parse" -> withQSem qsem $
|
||||||
out t=<< join (parse # input % start % limit % treeopts)
|
out t=<< join (parse # input % cat % start % limit % treeopts)
|
||||||
"c-parseToChart"-> withQSem qsem $
|
"c-parseToChart"-> withQSem qsem $
|
||||||
out t=<< join (parseToChart # input % limit)
|
out t=<< join (parseToChart # input % cat % limit)
|
||||||
"c-linearize" -> out t=<< lin # tree % to
|
"c-linearize" -> out t=<< lin # tree % to
|
||||||
"c-bracketedLinearize"
|
"c-bracketedLinearize"
|
||||||
-> out t=<< bracketedLin # tree % to
|
-> out t=<< bracketedLin # tree % to
|
||||||
"c-linearizeAll"-> out t=<< linAll # tree % to
|
"c-linearizeAll"-> out t=<< linAll # tree % to
|
||||||
"c-translate" -> withQSem qsem $
|
"c-translate" -> withQSem qsem $
|
||||||
out t=<<join(trans # input % to % start % limit%treeopts)
|
out t=<<join(trans # input % cat % to % start % limit%treeopts)
|
||||||
"c-lookupmorpho"-> out t=<< morpho # from1 % textInput
|
"c-lookupmorpho"-> out t=<< morpho # from1 % textInput
|
||||||
"c-lookupcohorts"->out t=<< cohorts # from1 % getInput "filter" % textInput
|
"c-lookupcohorts"->out t=<< cohorts # from1 % getInput "filter" % textInput
|
||||||
"c-flush" -> out t=<< flush
|
"c-flush" -> out t=<< flush
|
||||||
"c-grammar" -> out t grammar
|
"c-grammar" -> out t grammar
|
||||||
"c-abstrtree" -> outputGraphviz=<< C.graphvizAbstractTree pgf C.graphvizDefaults # tree
|
"c-abstrtree" -> outputGraphviz=<< C.graphvizAbstractTree pgf C.graphvizDefaults # tree
|
||||||
"c-parsetree" -> outputGraphviz=<< (\cnc -> C.graphvizParseTree cnc C.graphvizDefaults) . snd # from1 %tree
|
"c-parsetree" -> outputGraphviz=<< (\cnc -> C.graphvizParseTree cnc C.graphvizDefaults) . snd # from1 %tree
|
||||||
"c-wordforword" -> out t =<< wordforword # input % to
|
"c-wordforword" -> out t =<< wordforword # input % cat % to
|
||||||
_ -> badRequest "Unknown command" command
|
_ -> badRequest "Unknown command" command
|
||||||
where
|
where
|
||||||
flush = liftIO $ do --modifyMVar_ pc $ const $ return Map.empty
|
flush = liftIO $ do --modifyMVar_ pc $ const $ return Map.empty
|
||||||
performGC
|
performGC
|
||||||
return $ showJSON ()
|
return $ showJSON ()
|
||||||
|
|
||||||
cat = C.startCat pgf
|
cat :: CGI C.Type
|
||||||
|
cat =
|
||||||
|
do mcat <- getInput1 "cat"
|
||||||
|
case mcat of
|
||||||
|
Nothing -> return (C.startCat pgf)
|
||||||
|
Just cat -> case C.readType cat of
|
||||||
|
Nothing -> badRequest "Bad category" cat
|
||||||
|
Just typ -> return typ
|
||||||
|
|
||||||
langs = C.languages pgf
|
langs = C.languages pgf
|
||||||
|
|
||||||
grammar = showJSON $ makeObj
|
grammar = showJSON $ makeObj
|
||||||
@@ -184,8 +192,8 @@ cpgfMain qsem command (t,(pgf,pc)) =
|
|||||||
where
|
where
|
||||||
languages = [makeObj ["name".= l] | (l,_)<-Map.toList langs]
|
languages = [makeObj ["name".= l] | (l,_)<-Map.toList langs]
|
||||||
|
|
||||||
parse input@((from,_),_) start mlimit (trie,json) =
|
parse input@((from,_),_) cat start mlimit (trie,json) =
|
||||||
do r <- parse' start mlimit input
|
do r <- parse' cat start mlimit input
|
||||||
return $ showJSON [makeObj ("from".=from:jsonParseResult json r)]
|
return $ showJSON [makeObj ("from".=from:jsonParseResult json r)]
|
||||||
|
|
||||||
jsonParseResult json = either bad good
|
jsonParseResult json = either bad good
|
||||||
@@ -195,7 +203,7 @@ cpgfMain qsem command (t,(pgf,pc)) =
|
|||||||
tp (tree,prob) = makeObj (addTree json tree++["prob".=prob])
|
tp (tree,prob) = makeObj (addTree json tree++["prob".=prob])
|
||||||
|
|
||||||
-- Without caching parse results:
|
-- Without caching parse results:
|
||||||
parse' start mlimit ((from,concr),input) =
|
parse' cat start mlimit ((from,concr),input) =
|
||||||
case C.parseWithHeuristics concr cat input (-1) callbacks of
|
case C.parseWithHeuristics concr cat input (-1) callbacks of
|
||||||
C.ParseOk ts -> return (Right (maybe id take mlimit (drop start ts)))
|
C.ParseOk ts -> return (Right (maybe id take mlimit (drop start ts)))
|
||||||
C.ParseFailed _ tok -> return (Left tok)
|
C.ParseFailed _ tok -> return (Left tok)
|
||||||
@@ -221,7 +229,7 @@ cpgfMain qsem command (t,(pgf,pc)) =
|
|||||||
-- remove unused parse results after 2 minutes
|
-- remove unused parse results after 2 minutes
|
||||||
-}
|
-}
|
||||||
|
|
||||||
parseToChart ((from,concr),input) mlimit =
|
parseToChart ((from,concr),input) cat mlimit =
|
||||||
do r <- case C.parseToChart concr cat input (-1) callbacks (fromMaybe 5 mlimit) of
|
do r <- case C.parseToChart concr cat input (-1) callbacks (fromMaybe 5 mlimit) of
|
||||||
C.ParseOk chart -> return (good chart)
|
C.ParseOk chart -> return (good chart)
|
||||||
C.ParseFailed _ tok -> return (bad tok)
|
C.ParseFailed _ tok -> return (bad tok)
|
||||||
@@ -262,8 +270,8 @@ cpgfMain qsem command (t,(pgf,pc)) =
|
|||||||
bracketedLin' tree (tos,unlex) =
|
bracketedLin' tree (tos,unlex) =
|
||||||
[makeObj ["to".=to,"brackets".=showJSON (C.bracketedLinearize c tree)]|(to,c)<-tos]
|
[makeObj ["to".=to,"brackets".=showJSON (C.bracketedLinearize c tree)]|(to,c)<-tos]
|
||||||
|
|
||||||
trans input@((from,_),_) to start mlimit (trie,jsontree) =
|
trans input@((from,_),_) cat to start mlimit (trie,jsontree) =
|
||||||
do parses <- parse' start mlimit input
|
do parses <- parse' cat start mlimit input
|
||||||
return $
|
return $
|
||||||
showJSON [ makeObj ["from".=from,
|
showJSON [ makeObj ["from".=from,
|
||||||
"translations".= jsonParses parses]]
|
"translations".= jsonParses parses]]
|
||||||
@@ -297,7 +305,7 @@ cpgfMain qsem command (t,(pgf,pc)) =
|
|||||||
_ -> id)
|
_ -> id)
|
||||||
(C.lookupCohorts concr input)]
|
(C.lookupCohorts concr input)]
|
||||||
|
|
||||||
wordforword input@((from,_),_) = jsonWFW from . wordforword' input
|
wordforword input@((from,_),_) cat = jsonWFW from . wordforword' input cat
|
||||||
|
|
||||||
jsonWFW from rs =
|
jsonWFW from rs =
|
||||||
showJSON
|
showJSON
|
||||||
@@ -307,7 +315,7 @@ cpgfMain qsem command (t,(pgf,pc)) =
|
|||||||
[makeObj["to".=to,"text".=text]
|
[makeObj["to".=to,"text".=text]
|
||||||
| (to,text)<-rs]]]]]
|
| (to,text)<-rs]]]]]
|
||||||
|
|
||||||
wordforword' inp@((from,concr),input) (tos,unlex) =
|
wordforword' inp@((from,concr),input) cat (tos,unlex) =
|
||||||
[(to,unlex . unwords $ map (lin_word' c) pws)
|
[(to,unlex . unwords $ map (lin_word' c) pws)
|
||||||
|let pws=map parse_word' (words input),(to,c)<-tos]
|
|let pws=map parse_word' (words input),(to,c)<-tos]
|
||||||
where
|
where
|
||||||
@@ -1024,6 +1032,7 @@ instance JSON PGF.Trie where
|
|||||||
showJSON (PGF.Ap f [[]]) = makeObj ["fun".=f] -- leaf
|
showJSON (PGF.Ap f [[]]) = makeObj ["fun".=f] -- leaf
|
||||||
-- showJSON (PGF.Ap f [es]) = makeObj ["fun".=f,"children".=es] -- one alternative
|
-- showJSON (PGF.Ap f [es]) = makeObj ["fun".=f,"children".=es] -- one alternative
|
||||||
showJSON (PGF.Ap f alts) = makeObj ["fun".=f,"alts".=alts]
|
showJSON (PGF.Ap f alts) = makeObj ["fun".=f,"alts".=alts]
|
||||||
|
readJSON = error "PGF.Trie.readJSON intentionally not defined"
|
||||||
|
|
||||||
instance JSON PGF.CId where
|
instance JSON PGF.CId where
|
||||||
readJSON x = readJSON x >>= maybe (fail "Bad language.") return . PGF.readLanguage
|
readJSON x = readJSON x >>= maybe (fail "Bad language.") return . PGF.readLanguage
|
||||||
|
|||||||
@@ -4,9 +4,16 @@ extra-deps:
|
|||||||
- happy-1.19.9
|
- happy-1.19.9
|
||||||
- alex-3.2.4
|
- alex-3.2.4
|
||||||
- transformers-compat-0.6.5
|
- transformers-compat-0.6.5
|
||||||
|
- directory-1.2.3.0
|
||||||
|
- process-1.2.3.0@sha256:ee08707f1c806ad4a628c5997d8eb6e66d2ae924283548277d85a66341d57322,1806
|
||||||
|
|
||||||
allow-newer: true
|
allow-newer: true
|
||||||
|
|
||||||
flags:
|
flags:
|
||||||
transformers-compat:
|
transformers-compat:
|
||||||
four: true
|
four: true
|
||||||
|
# gf:
|
||||||
|
# c-runtime: true
|
||||||
|
#
|
||||||
|
# extra-lib-dirs:
|
||||||
|
# - /usr/local/lib
|
||||||
|
|||||||
@@ -1 +1,7 @@
|
|||||||
resolver: lts-9.21 # ghc 8.0.2
|
resolver: lts-9.21 # ghc 8.0.2
|
||||||
|
|
||||||
|
# flags:
|
||||||
|
# gf:
|
||||||
|
# c-runtime: true
|
||||||
|
# extra-lib-dirs:
|
||||||
|
# - /usr/local/lib
|
||||||
|
|||||||
@@ -4,3 +4,9 @@ extra-deps:
|
|||||||
- cgi-3001.3.0.3
|
- cgi-3001.3.0.3
|
||||||
- httpd-shed-0.4.0.3
|
- httpd-shed-0.4.0.3
|
||||||
- exceptions-0.10.2
|
- exceptions-0.10.2
|
||||||
|
|
||||||
|
# flags:
|
||||||
|
# gf:
|
||||||
|
# c-runtime: true
|
||||||
|
# extra-lib-dirs:
|
||||||
|
# - /usr/local/lib
|
||||||
|
|||||||
@@ -2,3 +2,9 @@ resolver: lts-12.26 # ghc 8.4.4
|
|||||||
|
|
||||||
extra-deps:
|
extra-deps:
|
||||||
- cgi-3001.3.0.3
|
- cgi-3001.3.0.3
|
||||||
|
|
||||||
|
# flags:
|
||||||
|
# gf:
|
||||||
|
# c-runtime: true
|
||||||
|
# extra-lib-dirs:
|
||||||
|
# - /usr/local/lib
|
||||||
|
|||||||
@@ -4,3 +4,9 @@ extra-deps:
|
|||||||
- network-2.6.3.6
|
- network-2.6.3.6
|
||||||
- httpd-shed-0.4.0.3
|
- httpd-shed-0.4.0.3
|
||||||
- cgi-3001.5.0.0
|
- cgi-3001.5.0.0
|
||||||
|
|
||||||
|
# flags:
|
||||||
|
# gf:
|
||||||
|
# c-runtime: true
|
||||||
|
# extra-lib-dirs:
|
||||||
|
# - /usr/local/lib
|
||||||
|
|||||||
@@ -7,3 +7,8 @@ extra-deps:
|
|||||||
- json-0.10@sha256:d9fc6b07ce92b8894825a17d2cf14799856767eb30c8bf55962baa579207d799,3210
|
- json-0.10@sha256:d9fc6b07ce92b8894825a17d2cf14799856767eb30c8bf55962baa579207d799,3210
|
||||||
- multipart-0.2.0@sha256:b8770e3ff6089be4dd089a8250894b31287cca671f3d258190a505f9351fa8a9,1084
|
- multipart-0.2.0@sha256:b8770e3ff6089be4dd089a8250894b31287cca671f3d258190a505f9351fa8a9,1084
|
||||||
|
|
||||||
|
# flags:
|
||||||
|
# gf:
|
||||||
|
# c-runtime: true
|
||||||
|
# extra-lib-dirs:
|
||||||
|
# - /usr/local/lib
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
# This default stack file is a copy of stack-ghc8.6.5.yaml
|
# This default stack file is a copy of stack-ghc8.6.5.yaml
|
||||||
# But committing a symlink is probably a bad idea, so it's a real copy
|
# But committing a symlink can be problematic on Windows, so it's a real copy.
|
||||||
|
# See: https://github.com/GrammaticalFramework/gf-core/pull/106
|
||||||
|
|
||||||
resolver: lts-14.27 # ghc 8.6.5
|
resolver: lts-14.27 # ghc 8.6.5
|
||||||
|
|
||||||
@@ -7,3 +8,9 @@ extra-deps:
|
|||||||
- network-2.6.3.6
|
- network-2.6.3.6
|
||||||
- httpd-shed-0.4.0.3
|
- httpd-shed-0.4.0.3
|
||||||
- cgi-3001.5.0.0
|
- cgi-3001.5.0.0
|
||||||
|
|
||||||
|
# flags:
|
||||||
|
# gf:
|
||||||
|
# c-runtime: true
|
||||||
|
# extra-lib-dirs:
|
||||||
|
# - /usr/local/lib
|
||||||
|
|||||||
1
testsuite/canonical/.gitignore
vendored
Normal file
1
testsuite/canonical/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
canonical/
|
||||||
102
testsuite/canonical/gold/FoodsFin.gf
Normal file
102
testsuite/canonical/gold/FoodsFin.gf
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
concrete FoodsFin of Foods = {
|
||||||
|
param ParamX_Number = ParamX_Sg | ParamX_Pl;
|
||||||
|
param Prelude_Bool = Prelude_False | Prelude_True;
|
||||||
|
param ResFin_Agr = ResFin_Ag ParamX_Number ParamX_Person | ResFin_AgPol;
|
||||||
|
param ParamX_Person = ParamX_P1 | ParamX_P2 | ParamX_P3;
|
||||||
|
param ResFin_Harmony = ResFin_Back | ResFin_Front;
|
||||||
|
param ResFin_NForm =
|
||||||
|
ResFin_NCase ParamX_Number ResFin_Case | ResFin_NComit | ResFin_NInstruct |
|
||||||
|
ResFin_NPossNom ParamX_Number | ResFin_NPossGen ParamX_Number |
|
||||||
|
ResFin_NPossTransl ParamX_Number | ResFin_NPossIllat ParamX_Number |
|
||||||
|
ResFin_NCompound;
|
||||||
|
param ResFin_Case =
|
||||||
|
ResFin_Nom | ResFin_Gen | ResFin_Part | ResFin_Transl | ResFin_Ess |
|
||||||
|
ResFin_Iness | ResFin_Elat | ResFin_Illat | ResFin_Adess | ResFin_Ablat |
|
||||||
|
ResFin_Allat | ResFin_Abess;
|
||||||
|
param ResFin_NPForm = ResFin_NPCase ResFin_Case | ResFin_NPAcc | ResFin_NPSep;
|
||||||
|
lincat Comment = {s : Str};
|
||||||
|
Item =
|
||||||
|
{s : ResFin_NPForm => Str; a : ResFin_Agr; isNeg : Prelude_Bool;
|
||||||
|
isPron : Prelude_Bool};
|
||||||
|
Kind =
|
||||||
|
{s : ResFin_NForm => Str; h : ResFin_Harmony;
|
||||||
|
postmod : ParamX_Number => Str};
|
||||||
|
Quality =
|
||||||
|
{s : Prelude_Bool => ResFin_NForm => Str; hasPrefix : Prelude_Bool;
|
||||||
|
p : Str};
|
||||||
|
lin Expensive =
|
||||||
|
{s =
|
||||||
|
table {Prelude_False =>
|
||||||
|
table {ResFin_NCase ParamX_Sg ResFin_Nom => "kallis";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Gen => "kalliin";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Part => "kallista";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Transl => "kalliiksi";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Ess => "kalliina";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Iness => "kalliissa";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Elat => "kalliista";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Illat => "kalliiseen";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Adess => "kalliilla";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Ablat => "kalliilta";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Allat => "kalliille";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Abess => "kalliitta";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Nom => "kalliit";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Gen => "kalliiden";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Part => "kalliita";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Transl => "kalliiksi";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Ess => "kalliina";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Iness => "kalliissa";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Elat => "kalliista";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Illat => "kalliisiin";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Adess => "kalliilla";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Ablat => "kalliilta";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Allat => "kalliille";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Abess => "kalliitta";
|
||||||
|
ResFin_NComit => "kalliine";
|
||||||
|
ResFin_NInstruct => "kalliin";
|
||||||
|
ResFin_NPossNom ParamX_Sg => "kallii";
|
||||||
|
ResFin_NPossNom ParamX_Pl => "kallii";
|
||||||
|
ResFin_NPossGen ParamX_Sg => "kallii";
|
||||||
|
ResFin_NPossGen ParamX_Pl => "kalliide";
|
||||||
|
ResFin_NPossTransl ParamX_Sg => "kalliikse";
|
||||||
|
ResFin_NPossTransl ParamX_Pl => "kalliikse";
|
||||||
|
ResFin_NPossIllat ParamX_Sg => "kalliisee";
|
||||||
|
ResFin_NPossIllat ParamX_Pl => "kalliisii";
|
||||||
|
ResFin_NCompound => "kallis"};
|
||||||
|
Prelude_True =>
|
||||||
|
table {ResFin_NCase ParamX_Sg ResFin_Nom => "kallis";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Gen => "kalliin";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Part => "kallista";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Transl => "kalliiksi";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Ess => "kalliina";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Iness => "kalliissa";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Elat => "kalliista";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Illat => "kalliiseen";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Adess => "kalliilla";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Ablat => "kalliilta";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Allat => "kalliille";
|
||||||
|
ResFin_NCase ParamX_Sg ResFin_Abess => "kalliitta";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Nom => "kalliit";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Gen => "kalliiden";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Part => "kalliita";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Transl => "kalliiksi";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Ess => "kalliina";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Iness => "kalliissa";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Elat => "kalliista";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Illat => "kalliisiin";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Adess => "kalliilla";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Ablat => "kalliilta";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Allat => "kalliille";
|
||||||
|
ResFin_NCase ParamX_Pl ResFin_Abess => "kalliitta";
|
||||||
|
ResFin_NComit => "kalliine";
|
||||||
|
ResFin_NInstruct => "kalliin";
|
||||||
|
ResFin_NPossNom ParamX_Sg => "kallii";
|
||||||
|
ResFin_NPossNom ParamX_Pl => "kallii";
|
||||||
|
ResFin_NPossGen ParamX_Sg => "kallii";
|
||||||
|
ResFin_NPossGen ParamX_Pl => "kalliide";
|
||||||
|
ResFin_NPossTransl ParamX_Sg => "kalliikse";
|
||||||
|
ResFin_NPossTransl ParamX_Pl => "kalliikse";
|
||||||
|
ResFin_NPossIllat ParamX_Sg => "kalliisee";
|
||||||
|
ResFin_NPossIllat ParamX_Pl => "kalliisii";
|
||||||
|
ResFin_NCompound => "kallis"}};
|
||||||
|
hasPrefix = Prelude_False; p = ""};
|
||||||
|
}
|
||||||
29
testsuite/canonical/gold/PhrasebookBul.gf
Normal file
29
testsuite/canonical/gold/PhrasebookBul.gf
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
concrete PhrasebookBul of Phrasebook = {
|
||||||
|
param Prelude_Bool = Prelude_False | Prelude_True;
|
||||||
|
param ResBul_AGender = ResBul_AMasc ResBul_Animacy | ResBul_AFem | ResBul_ANeut;
|
||||||
|
param ResBul_Animacy = ResBul_Human | ResBul_NonHuman;
|
||||||
|
param ResBul_Case = ResBul_Acc | ResBul_Dat | ResBul_WithPrep | ResBul_CPrep;
|
||||||
|
param ResBul_NForm =
|
||||||
|
ResBul_NF ParamX_Number ResBul_Species | ResBul_NFSgDefNom |
|
||||||
|
ResBul_NFPlCount | ResBul_NFVocative;
|
||||||
|
param ParamX_Number = ParamX_Sg | ParamX_Pl;
|
||||||
|
param ResBul_Species = ResBul_Indef | ResBul_Def;
|
||||||
|
lincat PlaceKind =
|
||||||
|
{at : {s : Str; c : ResBul_Case}; isPl : Prelude_Bool;
|
||||||
|
name : {s : ResBul_NForm => Str; g : ResBul_AGender};
|
||||||
|
to : {s : Str; c : ResBul_Case}};
|
||||||
|
VerbPhrase = {s : Str};
|
||||||
|
lin Airport =
|
||||||
|
{at = {s = "на"; c = ResBul_Acc}; isPl = Prelude_False;
|
||||||
|
name =
|
||||||
|
{s =
|
||||||
|
table {ResBul_NF ParamX_Sg ResBul_Indef => "летище";
|
||||||
|
ResBul_NF ParamX_Sg ResBul_Def => "летището";
|
||||||
|
ResBul_NF ParamX_Pl ResBul_Indef => "летища";
|
||||||
|
ResBul_NF ParamX_Pl ResBul_Def => "летищата";
|
||||||
|
ResBul_NFSgDefNom => "летището";
|
||||||
|
ResBul_NFPlCount => "летища";
|
||||||
|
ResBul_NFVocative => "летище"};
|
||||||
|
g = ResBul_ANeut};
|
||||||
|
to = {s = "до"; c = ResBul_CPrep}};
|
||||||
|
}
|
||||||
251
testsuite/canonical/gold/PhrasebookGer.gf
Normal file
251
testsuite/canonical/gold/PhrasebookGer.gf
Normal file
@@ -0,0 +1,251 @@
|
|||||||
|
concrete PhrasebookGer of Phrasebook = {
|
||||||
|
param Prelude_Bool = Prelude_False | Prelude_True;
|
||||||
|
param ResGer_Agr = ResGer_Ag ResGer_Gender ParamX_Number ParamX_Person;
|
||||||
|
param ParamX_Number = ParamX_Sg | ParamX_Pl;
|
||||||
|
param ParamX_Person = ParamX_P1 | ParamX_P2 | ParamX_P3;
|
||||||
|
param ResGer_Gender = ResGer_Masc | ResGer_Fem | ResGer_Neutr;
|
||||||
|
param ResGer_Control = ResGer_SubjC | ResGer_ObjC | ResGer_NoC;
|
||||||
|
param ResGer_PCase = ResGer_NPC ResGer_Case | ResGer_NPP ResGer_CPrep;
|
||||||
|
param ResGer_CPrep =
|
||||||
|
ResGer_CAnDat | ResGer_CInAcc | ResGer_CInDat | ResGer_CZuDat |
|
||||||
|
ResGer_CVonDat;
|
||||||
|
param ResGer_Case = ResGer_Nom | ResGer_Acc | ResGer_Dat | ResGer_Gen;
|
||||||
|
param ResGer_VAux = ResGer_VHaben | ResGer_VSein;
|
||||||
|
param ResGer_VForm =
|
||||||
|
ResGer_VInf Prelude_Bool | ResGer_VFin Prelude_Bool ResGer_VFormFin |
|
||||||
|
ResGer_VImper ParamX_Number | ResGer_VPresPart ResGer_AForm |
|
||||||
|
ResGer_VPastPart ResGer_AForm;
|
||||||
|
param ResGer_AForm = ResGer_APred | ResGer_AMod ResGer_GenNum ResGer_Case;
|
||||||
|
param ResGer_GenNum = ResGer_GSg ResGer_Gender | ResGer_GPl;
|
||||||
|
param ResGer_VFormFin =
|
||||||
|
ResGer_VPresInd ParamX_Number ParamX_Person |
|
||||||
|
ResGer_VPresSubj ParamX_Number ParamX_Person;
|
||||||
|
param ResGer_VType = ResGer_VAct | ResGer_VRefl ResGer_Case;
|
||||||
|
lincat PlaceKind = {s : Str};
|
||||||
|
VerbPhrase =
|
||||||
|
{s :
|
||||||
|
{s : ResGer_VForm => Str; aux : ResGer_VAux; particle : Str;
|
||||||
|
prefix : Str; vtype : ResGer_VType};
|
||||||
|
a1 : Str; a2 : Str; adj : Str; ext : Str;
|
||||||
|
inf : {s : Str; ctrl : ResGer_Control; isAux : Prelude_Bool};
|
||||||
|
infExt : Str; isAux : Prelude_Bool;
|
||||||
|
nn :
|
||||||
|
ResGer_Agr =>
|
||||||
|
{p1 : Str; p2 : Str; p3 : Str; p4 : Str; p5 : Str; p6 : Str};
|
||||||
|
subjc :
|
||||||
|
{s : Str; c : ResGer_PCase; isPrep : Prelude_Bool; s2 : Str}};
|
||||||
|
lin VRead =
|
||||||
|
{s =
|
||||||
|
{s =
|
||||||
|
table {ResGer_VInf Prelude_False => "lesen";
|
||||||
|
ResGer_VInf Prelude_True => "zu" ++ "lesen";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresInd ParamX_Sg ParamX_P1) =>
|
||||||
|
"lese";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresInd ParamX_Sg ParamX_P2) =>
|
||||||
|
"liest";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresInd ParamX_Sg ParamX_P3) =>
|
||||||
|
"liest";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresInd ParamX_Pl ParamX_P1) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresInd ParamX_Pl ParamX_P2) =>
|
||||||
|
"lest";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresInd ParamX_Pl ParamX_P3) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresSubj ParamX_Sg ParamX_P1) =>
|
||||||
|
"lese";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresSubj ParamX_Sg ParamX_P2) =>
|
||||||
|
"lesest";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresSubj ParamX_Sg ParamX_P3) =>
|
||||||
|
"lese";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresSubj ParamX_Pl ParamX_P1) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresSubj ParamX_Pl ParamX_P2) =>
|
||||||
|
"leset";
|
||||||
|
ResGer_VFin Prelude_False
|
||||||
|
(ResGer_VPresSubj ParamX_Pl ParamX_P3) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresInd ParamX_Sg ParamX_P1) =>
|
||||||
|
"lese";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresInd ParamX_Sg ParamX_P2) =>
|
||||||
|
"liest";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresInd ParamX_Sg ParamX_P3) =>
|
||||||
|
"liest";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresInd ParamX_Pl ParamX_P1) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresInd ParamX_Pl ParamX_P2) =>
|
||||||
|
"lest";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresInd ParamX_Pl ParamX_P3) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresSubj ParamX_Sg ParamX_P1) =>
|
||||||
|
"lese";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresSubj ParamX_Sg ParamX_P2) =>
|
||||||
|
"lesest";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresSubj ParamX_Sg ParamX_P3) =>
|
||||||
|
"lese";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresSubj ParamX_Pl ParamX_P1) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresSubj ParamX_Pl ParamX_P2) =>
|
||||||
|
"leset";
|
||||||
|
ResGer_VFin Prelude_True
|
||||||
|
(ResGer_VPresSubj ParamX_Pl ParamX_P3) =>
|
||||||
|
"lesen";
|
||||||
|
ResGer_VImper ParamX_Sg => "les";
|
||||||
|
ResGer_VImper ParamX_Pl => "lest";
|
||||||
|
ResGer_VPresPart ResGer_APred => "lesend";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Nom) =>
|
||||||
|
"lesender";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Acc) =>
|
||||||
|
"lesenden";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Dat) =>
|
||||||
|
"lesendem";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Gen) =>
|
||||||
|
"lesenden";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Nom) =>
|
||||||
|
"lesende";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Acc) =>
|
||||||
|
"lesende";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Dat) =>
|
||||||
|
"lesender";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Gen) =>
|
||||||
|
"lesender";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Nom) =>
|
||||||
|
"lesendes";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Acc) =>
|
||||||
|
"lesendes";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Dat) =>
|
||||||
|
"lesendem";
|
||||||
|
ResGer_VPresPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Gen) =>
|
||||||
|
"lesenden";
|
||||||
|
ResGer_VPresPart (ResGer_AMod ResGer_GPl ResGer_Nom) =>
|
||||||
|
"lesende";
|
||||||
|
ResGer_VPresPart (ResGer_AMod ResGer_GPl ResGer_Acc) =>
|
||||||
|
"lesende";
|
||||||
|
ResGer_VPresPart (ResGer_AMod ResGer_GPl ResGer_Dat) =>
|
||||||
|
"lesenden";
|
||||||
|
ResGer_VPresPart (ResGer_AMod ResGer_GPl ResGer_Gen) =>
|
||||||
|
"lesender";
|
||||||
|
ResGer_VPastPart ResGer_APred => "gelesen";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Nom) =>
|
||||||
|
"gelesener";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Acc) =>
|
||||||
|
"gelesenen";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Dat) =>
|
||||||
|
"gelesenem";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Masc)
|
||||||
|
ResGer_Gen) =>
|
||||||
|
"gelesenen";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Nom) =>
|
||||||
|
"gelesene";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Acc) =>
|
||||||
|
"gelesene";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Dat) =>
|
||||||
|
"gelesener";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Fem)
|
||||||
|
ResGer_Gen) =>
|
||||||
|
"gelesener";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Nom) =>
|
||||||
|
"gelesenes";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Acc) =>
|
||||||
|
"gelesenes";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Dat) =>
|
||||||
|
"gelesenem";
|
||||||
|
ResGer_VPastPart (ResGer_AMod (ResGer_GSg ResGer_Neutr)
|
||||||
|
ResGer_Gen) =>
|
||||||
|
"gelesenen";
|
||||||
|
ResGer_VPastPart (ResGer_AMod ResGer_GPl ResGer_Nom) =>
|
||||||
|
"gelesene";
|
||||||
|
ResGer_VPastPart (ResGer_AMod ResGer_GPl ResGer_Acc) =>
|
||||||
|
"gelesene";
|
||||||
|
ResGer_VPastPart (ResGer_AMod ResGer_GPl ResGer_Dat) =>
|
||||||
|
"gelesenen";
|
||||||
|
ResGer_VPastPart (ResGer_AMod ResGer_GPl ResGer_Gen) =>
|
||||||
|
"gelesener"};
|
||||||
|
aux = ResGer_VHaben; particle = ""; prefix = "";
|
||||||
|
vtype = ResGer_VAct};
|
||||||
|
a1 = ""; a2 = ""; adj = ""; ext = "";
|
||||||
|
inf = {s = ""; ctrl = ResGer_NoC; isAux = Prelude_True}; infExt = "";
|
||||||
|
isAux = Prelude_False;
|
||||||
|
nn =
|
||||||
|
table {ResGer_Ag ResGer_Masc ParamX_Sg ParamX_P1 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Masc ParamX_Sg ParamX_P2 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Masc ParamX_Sg ParamX_P3 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Masc ParamX_Pl ParamX_P1 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Masc ParamX_Pl ParamX_P2 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Masc ParamX_Pl ParamX_P3 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Fem ParamX_Sg ParamX_P1 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Fem ParamX_Sg ParamX_P2 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Fem ParamX_Sg ParamX_P3 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Fem ParamX_Pl ParamX_P1 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Fem ParamX_Pl ParamX_P2 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Fem ParamX_Pl ParamX_P3 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Neutr ParamX_Sg ParamX_P1 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Neutr ParamX_Sg ParamX_P2 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Neutr ParamX_Sg ParamX_P3 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Neutr ParamX_Pl ParamX_P1 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Neutr ParamX_Pl ParamX_P2 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""};
|
||||||
|
ResGer_Ag ResGer_Neutr ParamX_Pl ParamX_P3 =>
|
||||||
|
{p1 = ""; p2 = ""; p3 = ""; p4 = ""; p5 = ""; p6 = ""}};
|
||||||
|
subjc =
|
||||||
|
{s = ""; c = ResGer_NPC ResGer_Nom; isPrep = Prelude_False;
|
||||||
|
s2 = ""}};
|
||||||
|
}
|
||||||
16
testsuite/canonical/grammars/Foods.gf
Normal file
16
testsuite/canonical/grammars/Foods.gf
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
-- (c) 2009 Aarne Ranta under LGPL
|
||||||
|
|
||||||
|
abstract Foods = {
|
||||||
|
flags startcat = Comment ;
|
||||||
|
cat
|
||||||
|
Comment ; Item ; Kind ; Quality ;
|
||||||
|
fun
|
||||||
|
-- Pred : Item -> Quality -> Comment ;
|
||||||
|
-- This, That, These, Those : Kind -> Item ;
|
||||||
|
-- Mod : Quality -> Kind -> Kind ;
|
||||||
|
-- Wine, Cheese, Fish, Pizza : Kind ;
|
||||||
|
-- Very : Quality -> Quality ;
|
||||||
|
-- Fresh, Warm, Italian,
|
||||||
|
-- Expensive, Delicious, Boring : Quality ;
|
||||||
|
Expensive: Quality;
|
||||||
|
}
|
||||||
6
testsuite/canonical/grammars/FoodsFin.gf
Normal file
6
testsuite/canonical/grammars/FoodsFin.gf
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
-- (c) 2009 Aarne Ranta under LGPL
|
||||||
|
|
||||||
|
concrete FoodsFin of Foods = FoodsI with
|
||||||
|
(Syntax = SyntaxFin),
|
||||||
|
(LexFoods = LexFoodsFin) ;
|
||||||
29
testsuite/canonical/grammars/FoodsI.gf
Normal file
29
testsuite/canonical/grammars/FoodsI.gf
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
-- (c) 2009 Aarne Ranta under LGPL
|
||||||
|
|
||||||
|
incomplete concrete FoodsI of Foods =
|
||||||
|
open Syntax, LexFoods in {
|
||||||
|
lincat
|
||||||
|
Comment = Utt ;
|
||||||
|
Item = NP ;
|
||||||
|
Kind = CN ;
|
||||||
|
Quality = AP ;
|
||||||
|
lin
|
||||||
|
Pred item quality = mkUtt (mkCl item quality) ;
|
||||||
|
This kind = mkNP this_Det kind ;
|
||||||
|
That kind = mkNP that_Det kind ;
|
||||||
|
These kind = mkNP these_Det kind ;
|
||||||
|
Those kind = mkNP those_Det kind ;
|
||||||
|
Mod quality kind = mkCN quality kind ;
|
||||||
|
Very quality = mkAP very_AdA quality ;
|
||||||
|
|
||||||
|
Wine = mkCN wine_N ;
|
||||||
|
Pizza = mkCN pizza_N ;
|
||||||
|
Cheese = mkCN cheese_N ;
|
||||||
|
Fish = mkCN fish_N ;
|
||||||
|
Fresh = mkAP fresh_A ;
|
||||||
|
Warm = mkAP warm_A ;
|
||||||
|
Italian = mkAP italian_A ;
|
||||||
|
Expensive = mkAP expensive_A ;
|
||||||
|
Delicious = mkAP delicious_A ;
|
||||||
|
Boring = mkAP boring_A ;
|
||||||
|
}
|
||||||
15
testsuite/canonical/grammars/LexFoods.gf
Normal file
15
testsuite/canonical/grammars/LexFoods.gf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
-- (c) 2009 Aarne Ranta under LGPL
|
||||||
|
|
||||||
|
interface LexFoods = open Syntax in {
|
||||||
|
oper
|
||||||
|
wine_N : N ;
|
||||||
|
pizza_N : N ;
|
||||||
|
cheese_N : N ;
|
||||||
|
fish_N : N ;
|
||||||
|
fresh_A : A ;
|
||||||
|
warm_A : A ;
|
||||||
|
italian_A : A ;
|
||||||
|
expensive_A : A ;
|
||||||
|
delicious_A : A ;
|
||||||
|
boring_A : A ;
|
||||||
|
}
|
||||||
21
testsuite/canonical/grammars/LexFoodsFin.gf
Normal file
21
testsuite/canonical/grammars/LexFoodsFin.gf
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
-- (c) 2009 Aarne Ranta under LGPL
|
||||||
|
--# -coding=latin1
|
||||||
|
|
||||||
|
instance LexFoodsFin of LexFoods =
|
||||||
|
open SyntaxFin, ParadigmsFin in {
|
||||||
|
oper
|
||||||
|
wine_N = mkN "viini" ;
|
||||||
|
pizza_N = mkN "pizza" ;
|
||||||
|
cheese_N = mkN "juusto" ;
|
||||||
|
fish_N = mkN "kala" ;
|
||||||
|
fresh_A = mkA "tuore" ;
|
||||||
|
warm_A = mkA
|
||||||
|
(mkN "l<>mmin" "l<>mpim<69>n" "l<>mmint<6E>" "l<>mpim<69>n<EFBFBD>" "l<>mpim<69><6D>n"
|
||||||
|
"l<>mpimin<69>" "l<>mpimi<6D>" "l<>mpimien" "l<>mpimiss<73>" "l<>mpimiin"
|
||||||
|
)
|
||||||
|
"l<>mpim<69>mpi" "l<>mpimin" ;
|
||||||
|
italian_A = mkA "italialainen" ;
|
||||||
|
expensive_A = mkA "kallis" ;
|
||||||
|
delicious_A = mkA "herkullinen" ;
|
||||||
|
boring_A = mkA "tyls<6C>" ;
|
||||||
|
}
|
||||||
9
testsuite/canonical/grammars/Phrasebook.gf
Normal file
9
testsuite/canonical/grammars/Phrasebook.gf
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
abstract Phrasebook = {
|
||||||
|
|
||||||
|
cat PlaceKind ;
|
||||||
|
fun Airport : PlaceKind ;
|
||||||
|
|
||||||
|
cat VerbPhrase ;
|
||||||
|
fun VRead : VerbPhrase ;
|
||||||
|
|
||||||
|
}
|
||||||
31
testsuite/canonical/grammars/PhrasebookBul.gf
Normal file
31
testsuite/canonical/grammars/PhrasebookBul.gf
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
--# -path=.:present
|
||||||
|
|
||||||
|
concrete PhrasebookBul of Phrasebook =
|
||||||
|
open
|
||||||
|
SyntaxBul,
|
||||||
|
(R = ResBul),
|
||||||
|
ParadigmsBul,
|
||||||
|
Prelude in {
|
||||||
|
|
||||||
|
lincat
|
||||||
|
PlaceKind = CNPlace ;
|
||||||
|
|
||||||
|
oper
|
||||||
|
CNPlace : Type = {name : CN ; at : Prep ; to : Prep; isPl : Bool} ;
|
||||||
|
|
||||||
|
mkPlace : N -> Prep -> {name : CN ; at : Prep ; to : Prep; isPl : Bool} = \n,p ->
|
||||||
|
mkCNPlace (mkCN n) p to_Prep ;
|
||||||
|
|
||||||
|
mkCNPlace : CN -> Prep -> Prep -> CNPlace = \p,i,t -> {
|
||||||
|
name = p ;
|
||||||
|
at = i ;
|
||||||
|
to = t ;
|
||||||
|
isPl = False
|
||||||
|
} ;
|
||||||
|
|
||||||
|
na_Prep = mkPrep "на" R.Acc ;
|
||||||
|
|
||||||
|
lin
|
||||||
|
Airport = mkPlace (mkN066 "летище") na_Prep ;
|
||||||
|
|
||||||
|
}
|
||||||
14
testsuite/canonical/grammars/PhrasebookGer.gf
Normal file
14
testsuite/canonical/grammars/PhrasebookGer.gf
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
--# -path=.:present
|
||||||
|
|
||||||
|
concrete PhrasebookGer of Phrasebook =
|
||||||
|
open
|
||||||
|
SyntaxGer,
|
||||||
|
LexiconGer in {
|
||||||
|
|
||||||
|
lincat
|
||||||
|
VerbPhrase = VP ;
|
||||||
|
|
||||||
|
lin
|
||||||
|
VRead = mkVP <lin V read_V2 : V> ;
|
||||||
|
|
||||||
|
}
|
||||||
36
testsuite/canonical/run-on-grammar.sh
Executable file
36
testsuite/canonical/run-on-grammar.sh
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
# For a given grammar, compile into canonical format,
|
||||||
|
# then ensure that the canonical format itself is compilable.
|
||||||
|
|
||||||
|
if [ $# -lt 1 ]; then
|
||||||
|
echo "Please specify concrete modules to test with, e.g.:"
|
||||||
|
echo "./run-on-grammar.sh ../../../gf-contrib/foods/FoodsEng.gf ../../../gf-contrib/foods/FoodsFin.gf"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
FAILURES=0
|
||||||
|
|
||||||
|
for CNC_PATH in "$@"; do
|
||||||
|
CNC_FILE=$(basename "$CNC_PATH")
|
||||||
|
stack run -- --batch --output-format=canonical_gf "$CNC_PATH"
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Failed to compile into canonical"
|
||||||
|
FAILURES=$((FAILURES+1))
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
stack run -- --batch "canonical/$CNC_FILE"
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Failed to compile canonical"
|
||||||
|
FAILURES=$((FAILURES+1))
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Summary
|
||||||
|
if [ $FAILURES -ne 0 ]; then
|
||||||
|
echo "Failures: $FAILURES"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo "All tests passed"
|
||||||
|
fi
|
||||||
54
testsuite/canonical/run.sh
Executable file
54
testsuite/canonical/run.sh
Executable file
@@ -0,0 +1,54 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
FAILURES=0
|
||||||
|
|
||||||
|
# https://github.com/GrammaticalFramework/gf-core/issues/100
|
||||||
|
stack run -- --batch --output-format=canonical_gf grammars/PhrasebookBul.gf
|
||||||
|
stack run -- --batch canonical/PhrasebookBul.gf
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Canonical grammar doesn't compile: FAIL"
|
||||||
|
FAILURES=$((FAILURES+1))
|
||||||
|
else
|
||||||
|
# echo "Canonical grammar compiles: OK"
|
||||||
|
diff canonical/PhrasebookBul.gf gold/PhrasebookBul.gf
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Canonical grammar doesn't match gold version: FAIL"
|
||||||
|
FAILURES=$((FAILURES+1))
|
||||||
|
else
|
||||||
|
echo "Canonical grammar matches gold version: OK"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# https://github.com/GrammaticalFramework/gf-core/issues/101
|
||||||
|
stack run -- --batch --output-format=canonical_gf grammars/PhrasebookGer.gf
|
||||||
|
diff canonical/PhrasebookGer.gf gold/PhrasebookGer.gf
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Canonical grammar doesn't match gold version: FAIL"
|
||||||
|
FAILURES=$((FAILURES+1))
|
||||||
|
else
|
||||||
|
echo "Canonical grammar matches gold version: OK"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# https://github.com/GrammaticalFramework/gf-core/issues/102
|
||||||
|
stack run -- --batch --output-format=canonical_gf grammars/FoodsFin.gf
|
||||||
|
diff canonical/FoodsFin.gf gold/FoodsFin.gf
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Canonical grammar doesn't match gold version: FAIL"
|
||||||
|
FAILURES=$((FAILURES+1))
|
||||||
|
else
|
||||||
|
echo "Canonical grammar matches gold version: OK"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Summary
|
||||||
|
if [ $FAILURES -ne 0 ]; then
|
||||||
|
echo "Failures: $FAILURES"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo "All tests passed"
|
||||||
|
fi
|
||||||
48
testsuite/compiler/check/lincat-types/Predef.gf
Normal file
48
testsuite/compiler/check/lincat-types/Predef.gf
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
--1 Predefined functions for concrete syntax
|
||||||
|
|
||||||
|
-- The definitions of these constants are hard-coded in GF, and defined
|
||||||
|
-- in Predef.hs (gf-core/src/compiler/GF/Compile/Compute/Predef.hs).
|
||||||
|
-- Applying them to run-time variables leads to compiler errors that are
|
||||||
|
-- often only detected at the code generation time.
|
||||||
|
|
||||||
|
resource Predef = {
|
||||||
|
|
||||||
|
-- This type of booleans is for internal use only.
|
||||||
|
|
||||||
|
param PBool = PTrue | PFalse ;
|
||||||
|
|
||||||
|
oper Error : Type = variants {} ; -- the empty type
|
||||||
|
oper Float : Type = variants {} ; -- the type of floats
|
||||||
|
oper Int : Type = variants {} ; -- the type of integers
|
||||||
|
oper Ints : Int -> PType = variants {} ; -- the type of integers from 0 to n
|
||||||
|
|
||||||
|
oper error : Str -> Error = variants {} ; -- forms error message
|
||||||
|
oper length : Tok -> Int = variants {} ; -- length of string
|
||||||
|
oper drop : Int -> Tok -> Tok = variants {} ; -- drop prefix of length
|
||||||
|
oper take : Int -> Tok -> Tok = variants {} ; -- take prefix of length
|
||||||
|
oper tk : Int -> Tok -> Tok = variants {} ; -- drop suffix of length
|
||||||
|
oper dp : Int -> Tok -> Tok = variants {} ; -- take suffix of length
|
||||||
|
oper eqInt : Int -> Int -> PBool = variants {} ; -- test if equal integers
|
||||||
|
oper lessInt: Int -> Int -> PBool = variants {} ; -- test order of integers
|
||||||
|
oper plus : Int -> Int -> Int = variants {} ; -- add integers
|
||||||
|
oper eqStr : Tok -> Tok -> PBool = variants {} ; -- test if equal strings
|
||||||
|
oper occur : Tok -> Tok -> PBool = variants {} ; -- test if occurs as substring
|
||||||
|
oper occurs : Tok -> Tok -> PBool = variants {} ; -- test if any char occurs
|
||||||
|
oper isUpper : Tok -> PBool = variants {} ; -- test if all chars are upper-case
|
||||||
|
oper toUpper : Tok -> Tok = variants {} ; -- map all chars to upper case
|
||||||
|
oper toLower : Tok -> Tok = variants {} ; -- map all chars to lower case
|
||||||
|
oper show : (P : Type) -> P -> Tok = variants {} ; -- convert param to string
|
||||||
|
oper read : (P : Type) -> Tok -> P = variants {} ; -- convert string to param
|
||||||
|
oper eqVal : (P : Type) -> P -> P -> PBool = variants {} ; -- test if equal values
|
||||||
|
oper toStr : (L : Type) -> L -> Str = variants {} ; -- find the "first" string
|
||||||
|
oper mapStr : (L : Type) -> (Str -> Str) -> L -> L = variants {} ;
|
||||||
|
-- map all strings in a data structure; experimental ---
|
||||||
|
|
||||||
|
oper nonExist : Str = variants {} ; -- a placeholder for non-existant morphological forms
|
||||||
|
oper BIND : Str = variants {} ; -- a token for gluing
|
||||||
|
oper SOFT_BIND : Str = variants {} ; -- a token for soft gluing
|
||||||
|
oper SOFT_SPACE : Str = variants {} ; -- a token for soft space
|
||||||
|
oper CAPIT : Str = variants {} ; -- a token for capitalization
|
||||||
|
oper ALL_CAPIT : Str = variants {} ; -- a token for capitalization of abreviations
|
||||||
|
|
||||||
|
} ;
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
|
|
||||||
|
|
||||||
testsuite/compiler/check/lincat-types/TestCnc.gf:3:
|
testsuite/compiler/check/lincat-types/TestCnc.gf:
|
||||||
Happened in linearization type of S
|
testsuite/compiler/check/lincat-types/TestCnc.gf:3:
|
||||||
type of PTrue
|
Happened in linearization type of S
|
||||||
expected: Type
|
type of PTrue
|
||||||
inferred: PBool
|
expected: Type
|
||||||
|
inferred: Predef.PBool
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,3 @@
|
|||||||
checking module linsCnc
|
|
||||||
Warning: no linearization type for C, inserting default {s : Str}
|
|
||||||
Warning: no linearization of test
|
|
||||||
abstract lins {
|
abstract lins {
|
||||||
cat C Nat ;
|
cat C Nat ;
|
||||||
cat Float ;
|
cat Float ;
|
||||||
@@ -12,16 +9,23 @@ abstract lins {
|
|||||||
}
|
}
|
||||||
concrete linsCnc {
|
concrete linsCnc {
|
||||||
productions
|
productions
|
||||||
C1 -> F2[]
|
C1 -> F4[]
|
||||||
lindefs
|
lindefs
|
||||||
C0 -> F0
|
C0 -> F0[CVar]
|
||||||
C1 -> F1
|
C1 -> F2[CVar]
|
||||||
|
linrefs
|
||||||
|
CVar -> F1[C0]
|
||||||
|
CVar -> F3[C1]
|
||||||
lin
|
lin
|
||||||
F0 := (S0) [lindef C]
|
F0 := (S2) ['lindef C']
|
||||||
F1 := () [lindef Nat]
|
F1 := (S1) ['lindef C']
|
||||||
F2 := () [zero]
|
F2 := () ['lindef Nat']
|
||||||
|
F3 := (S0) ['lindef Nat']
|
||||||
|
F4 := () [zero]
|
||||||
sequences
|
sequences
|
||||||
S0 := {0,0}
|
S0 :=
|
||||||
|
S1 := <0,0>
|
||||||
|
S2 := {0,0}
|
||||||
categories
|
categories
|
||||||
C := range [C0 .. C0]
|
C := range [C0 .. C0]
|
||||||
labels ["s"]
|
labels ["s"]
|
||||||
@@ -33,7 +37,5 @@ concrete linsCnc {
|
|||||||
labels []
|
labels []
|
||||||
String := range [CString .. CString]
|
String := range [CString .. CString]
|
||||||
labels ["s"]
|
labels ["s"]
|
||||||
__gfVar := range [CVar .. CVar]
|
|
||||||
labels [""]
|
|
||||||
printnames
|
printnames
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
testsuite/compiler/check/oper-definition/Res.gf:3:
|
testsuite/compiler/check/oper-definition/Res.gf:
|
||||||
Happened in operation my_oper
|
testsuite/compiler/check/oper-definition/Res.gf:3:
|
||||||
No definition given to the operation
|
Happened in operation my_oper
|
||||||
|
No definition given to the operation
|
||||||
|
|||||||
161
testsuite/compiler/check/strMatch/Prelude.gf
Normal file
161
testsuite/compiler/check/strMatch/Prelude.gf
Normal file
@@ -0,0 +1,161 @@
|
|||||||
|
--1 The GF Prelude
|
||||||
|
|
||||||
|
-- This file defines some prelude facilities usable in all grammars.
|
||||||
|
|
||||||
|
resource Prelude = Predef[nonExist, BIND, SOFT_BIND, SOFT_SPACE, CAPIT, ALL_CAPIT] ** open (Predef=Predef) in {
|
||||||
|
|
||||||
|
oper
|
||||||
|
|
||||||
|
--2 Strings, records, and tables
|
||||||
|
|
||||||
|
SS : Type = {s : Str} ;
|
||||||
|
ss : Str -> SS = \s -> {s = s} ;
|
||||||
|
ss2 : (_,_ : Str) -> SS = \x,y -> ss (x ++ y) ;
|
||||||
|
ss3 : (_,_ ,_: Str) -> SS = \x,y,z -> ss (x ++ y ++ z) ;
|
||||||
|
|
||||||
|
cc2 : (_,_ : SS) -> SS = \x,y -> ss (x.s ++ y.s) ;
|
||||||
|
cc3 : (_,_,_ : SS) -> SS = \x,y,z -> ss (x.s ++ y.s ++ z.s) ;
|
||||||
|
|
||||||
|
SS1 : PType -> Type = \P -> {s : P => Str} ;
|
||||||
|
ss1 : (A : PType) -> Str -> SS1 A = \A,s -> {s = table {_ => s}} ;
|
||||||
|
|
||||||
|
SP1 : Type -> Type = \P -> {s : Str ; p : P} ;
|
||||||
|
sp1 : (A : Type) -> Str -> A -> SP1 A = \_,s,a -> {s = s ; p = a} ;
|
||||||
|
|
||||||
|
constTable : (A : PType) -> (B : Type) -> B -> A => B = \u,v,b -> \\_ => b ;
|
||||||
|
constStr : (A : PType) -> Str -> A => Str = \A -> constTable A Str ;
|
||||||
|
|
||||||
|
-- Discontinuous constituents.
|
||||||
|
|
||||||
|
SD2 : Type = {s1,s2 : Str} ;
|
||||||
|
sd2 : (_,_ : Str) -> SD2 = \x,y -> {s1 = x ; s2 = y} ;
|
||||||
|
|
||||||
|
|
||||||
|
--2 Optional elements
|
||||||
|
|
||||||
|
-- Optional string with preference on the string vs. empty.
|
||||||
|
|
||||||
|
optStr : Str -> Str = \s -> variants {s ; []} ;
|
||||||
|
strOpt : Str -> Str = \s -> variants {[] ; s} ;
|
||||||
|
|
||||||
|
-- Free order between two strings.
|
||||||
|
|
||||||
|
bothWays : Str -> Str -> Str = \x,y -> variants {x ++ y ; y ++ x} ;
|
||||||
|
|
||||||
|
-- Parametric order between two strings.
|
||||||
|
|
||||||
|
preOrPost : Bool -> Str -> Str -> Str = \pr,x,y ->
|
||||||
|
if_then_Str pr (x ++ y) (y ++ x) ;
|
||||||
|
|
||||||
|
--2 Infixes. prefixes, and postfixes
|
||||||
|
|
||||||
|
-- Fixes with precedences are defined in [Precedence Precedence.html].
|
||||||
|
|
||||||
|
infixSS : Str -> SS -> SS -> SS = \f,x,y -> ss (x.s ++ f ++ y.s) ;
|
||||||
|
prefixSS : Str -> SS -> SS = \f,x -> ss (f ++ x.s) ;
|
||||||
|
postfixSS : Str -> SS -> SS = \f,x -> ss (x.s ++ f) ;
|
||||||
|
embedSS : Str -> Str -> SS -> SS = \f,g,x -> ss (f ++ x.s ++ g) ;
|
||||||
|
|
||||||
|
|
||||||
|
--2 Booleans
|
||||||
|
|
||||||
|
param Bool = False | True ;
|
||||||
|
|
||||||
|
oper
|
||||||
|
if_then_else : (A : Type) -> Bool -> A -> A -> A = \_,c,d,e ->
|
||||||
|
case c of {
|
||||||
|
True => d ; ---- should not need to qualify
|
||||||
|
False => e
|
||||||
|
} ;
|
||||||
|
|
||||||
|
andB : (_,_ : Bool) -> Bool = \a,b -> if_then_else Bool a b False ;
|
||||||
|
orB : (_,_ : Bool) -> Bool = \a,b -> if_then_else Bool a True b ;
|
||||||
|
notB : Bool -> Bool = \a -> if_then_else Bool a False True ;
|
||||||
|
|
||||||
|
if_then_Str : Bool -> Str -> Str -> Str = if_then_else Str ;
|
||||||
|
|
||||||
|
onlyIf : Bool -> Str -> Str = \b,s -> case b of {
|
||||||
|
True => s ;
|
||||||
|
_ => nonExist
|
||||||
|
} ;
|
||||||
|
|
||||||
|
-- Interface to internal booleans
|
||||||
|
|
||||||
|
pbool2bool : Predef.PBool -> Bool = \b -> case b of {
|
||||||
|
Predef.PFalse => False ; Predef.PTrue => True
|
||||||
|
} ;
|
||||||
|
|
||||||
|
init : Tok -> Tok = Predef.tk 1 ;
|
||||||
|
last : Tok -> Tok = Predef.dp 1 ;
|
||||||
|
|
||||||
|
--2 High-level acces to Predef operations
|
||||||
|
|
||||||
|
isNil : Tok -> Bool = \b -> pbool2bool (Predef.eqStr [] b) ;
|
||||||
|
|
||||||
|
ifTok : (A : Type) -> Tok -> Tok -> A -> A -> A = \A,t,u,a,b ->
|
||||||
|
case Predef.eqStr t u of {Predef.PTrue => a ; Predef.PFalse => b} ;
|
||||||
|
|
||||||
|
--2 Lexer-related operations
|
||||||
|
|
||||||
|
-- Bind together two tokens in some lexers, either obligatorily or optionally
|
||||||
|
|
||||||
|
oper
|
||||||
|
glue : Str -> Str -> Str = \x,y -> x ++ BIND ++ y ;
|
||||||
|
glueOpt : Str -> Str -> Str = \x,y -> variants {glue x y ; x ++ y} ;
|
||||||
|
noglueOpt : Str -> Str -> Str = \x,y -> variants {x ++ y ; glue x y} ;
|
||||||
|
|
||||||
|
-- Force capitalization of next word in some unlexers
|
||||||
|
|
||||||
|
capitalize : Str -> Str = \s -> CAPIT ++ s ;
|
||||||
|
|
||||||
|
-- These should be hidden, and never changed since they are hardcoded in (un)lexers
|
||||||
|
|
||||||
|
PARA : Str = "&-" ;
|
||||||
|
|
||||||
|
-- Embed between commas, where the latter one disappears in front of other punctuation
|
||||||
|
|
||||||
|
embedInCommas : Str -> Str = \s -> bindComma ++ s ++ endComma ;
|
||||||
|
endComma : Str = pre {"," | "." => []; "" => bindComma ; _ => []} ;
|
||||||
|
|
||||||
|
bindComma : Str = SOFT_BIND ++ "," ;
|
||||||
|
optComma : Str = bindComma | [] ;
|
||||||
|
optCommaSS : SS -> SS = \s -> ss (s.s ++ optComma) ;
|
||||||
|
|
||||||
|
--2 Miscellaneous
|
||||||
|
|
||||||
|
-- Identity function
|
||||||
|
|
||||||
|
id : (A : Type) -> A -> A = \_,a -> a ;
|
||||||
|
|
||||||
|
-- Parentheses
|
||||||
|
|
||||||
|
paren : Str -> Str = \s -> "(" ++ s ++ ")" ;
|
||||||
|
parenss : SS -> SS = \s -> ss (paren s.s) ;
|
||||||
|
|
||||||
|
-- Zero, one, two, or more (elements in a list etc)
|
||||||
|
|
||||||
|
param
|
||||||
|
ENumber = E0 | E1 | E2 | Emore ;
|
||||||
|
|
||||||
|
oper
|
||||||
|
eNext : ENumber -> ENumber = \e -> case e of {
|
||||||
|
E0 => E1 ; E1 => E2 ; _ => Emore} ;
|
||||||
|
|
||||||
|
-- convert initial to upper/lower
|
||||||
|
|
||||||
|
toUpperFirst : Str -> Str = \s -> case s of {
|
||||||
|
x@? + xs => Predef.toUpper x + xs ;
|
||||||
|
_ => s
|
||||||
|
} ;
|
||||||
|
|
||||||
|
toLowerFirst : Str -> Str = \s -> case s of {
|
||||||
|
x@? + xs => Predef.toLower x + xs ;
|
||||||
|
_ => s
|
||||||
|
} ;
|
||||||
|
|
||||||
|
-- handling errors caused by temporarily missing definitions
|
||||||
|
|
||||||
|
notYet : Str -> Predef.Error = \s ->
|
||||||
|
Predef.error ("NOT YET IMPLEMENTED:" ++ s) ;
|
||||||
|
|
||||||
|
}
|
||||||
1
testsuite/compiler/check/strMatch/strMatch.gfs.gold
Normal file
1
testsuite/compiler/check/strMatch/strMatch.gfs.gold
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
0
testsuite/compiler/params/params.gfs.gold
Normal file
0
testsuite/compiler/params/params.gfs.gold
Normal file
15
testsuite/compiler/typecheck/abstract/LetInDefAbs.gfs.gold
Normal file
15
testsuite/compiler/typecheck/abstract/LetInDefAbs.gfs.gold
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
fun f : Int -> Int ;
|
||||||
|
def f n = ? ;
|
||||||
|
000 CHECK_ARGS 1
|
||||||
|
ALLOC 2
|
||||||
|
PUT_CLOSURE 001
|
||||||
|
SET_PAD
|
||||||
|
TUCK hp(0) 1
|
||||||
|
EVAL f tail(0)
|
||||||
|
001 ALLOC 2
|
||||||
|
PUT_LIT 0
|
||||||
|
PUSH_FRAME
|
||||||
|
PUSH hp(0)
|
||||||
|
EVAL f update
|
||||||
|
Probability: 1.0
|
||||||
|
|
||||||
@@ -1 +1,3 @@
|
|||||||
fun f : (Int -> Int) -> Int -> Int
|
fun f : (Int -> Int) -> Int -> Int ;
|
||||||
|
Probability: 1.0
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ cat CStr String ;
|
|||||||
CFloat Float ;
|
CFloat Float ;
|
||||||
|
|
||||||
data empty : CStr "" ;
|
data empty : CStr "" ;
|
||||||
null : CStr [] ;
|
-- null : CStr [] ; -- Commented out by IL 06/2021: causes parse error
|
||||||
other : CStr "other" ;
|
other : CStr "other" ;
|
||||||
|
|
||||||
data zero : CInt 0 ;
|
data zero : CInt 0 ;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
i -src testsuite/compiler/typecheck/abstract/LitAbs.gf
|
i -src testsuite/compiler/typecheck/abstract/LitAbs.gf
|
||||||
ai null
|
|
||||||
ai empty
|
ai empty
|
||||||
ai other
|
ai other
|
||||||
ai zero
|
ai zero
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
data null : CStr ""
|
data empty : CStr "" ;
|
||||||
|
Probability: 0.5
|
||||||
data empty : CStr ""
|
|
||||||
|
data other : CStr "other" ;
|
||||||
data other : CStr "other"
|
Probability: 0.5
|
||||||
|
|
||||||
|
data zero : CInt 0 ;
|
||||||
|
Probability: 1.0
|
||||||
|
|
||||||
|
data pi : CFloat 3.14 ;
|
||||||
|
Probability: 1.0
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,5 @@
|
|||||||
i -src testsuite/compiler/typecheck/abstract/PolyTypes.gf
|
i -src testsuite/compiler/typecheck/abstract/PolyTypes.gf
|
||||||
|
ai f
|
||||||
|
|
||||||
i -src testsuite/compiler/typecheck/abstract/RecTypes.gf
|
i -src testsuite/compiler/typecheck/abstract/RecTypes.gf
|
||||||
|
ai f
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
testsuite/compiler/typecheck/abstract/A.gf:4:
|
testsuite/compiler/typecheck/abstract/A.gf:
|
||||||
Happened in the category B
|
testsuite/compiler/typecheck/abstract/A.gf:4:
|
||||||
Prod expected for function A instead of Type
|
Happened in the category B
|
||||||
|
Prod expected for function A instead of Type
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
testsuite/compiler/typecheck/abstract/B.gf:5:
|
testsuite/compiler/typecheck/abstract/B.gf:
|
||||||
Happened in the type of function f
|
testsuite/compiler/typecheck/abstract/B.gf:5:
|
||||||
Prod expected for function S instead of Type
|
Happened in the type of function f
|
||||||
|
Prod expected for function S instead of Type
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
testsuite/compiler/typecheck/abstract/C.gf:6:
|
testsuite/compiler/typecheck/abstract/C.gf:
|
||||||
Happened in the definition of function f
|
testsuite/compiler/typecheck/abstract/C.gf:6:
|
||||||
{Int <> S}
|
Happened in the definition of function f
|
||||||
|
{Int <> S}
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
|
|
||||||
|
|
||||||
testsuite/compiler/typecheck/concrete/A.gf:5:
|
testsuite/compiler/typecheck/concrete/A.gf:
|
||||||
Happened in operation silly
|
testsuite/compiler/typecheck/concrete/A.gf:5:
|
||||||
A function type is expected for a_Det instead of type Str
|
Happened in operation silly
|
||||||
|
A function type is expected for a_Det instead of type Str
|
||||||
|
|
||||||
|
** Maybe you gave too many arguments to a_Det
|
||||||
|
|
||||||
|
|||||||
@@ -1,226 +0,0 @@
|
|||||||
se utf8
|
|
||||||
i alltenses/LangEng.gfo
|
|
||||||
i alltenses/LangSwe.gfo
|
|
||||||
i alltenses/LangBul.gfo
|
|
||||||
-- Adjective
|
|
||||||
|
|
||||||
l -treebank PositA warm_A
|
|
||||||
l -treebank ComparA warm_A (UsePron i_Pron)
|
|
||||||
l -treebank ComplA2 married_A2 (UsePron she_Pron)
|
|
||||||
l -treebank ComplA2 married_A2 (DetNP (DetQuant (PossPron she_Pron) NumPl))
|
|
||||||
l -treebank ComplA2 married_A2 (DetNP (DetQuant (PossPron she_Pron) NumSg))
|
|
||||||
l -treebank ReflA2 married_A2
|
|
||||||
l -treebank PositA (UseA2 married_A2)
|
|
||||||
l -treebank SentAP (PositA good_A) (EmbedS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseComp (CompAdv here_Adv)))))
|
|
||||||
l -treebank AdAP very_AdA (PositA warm_A)
|
|
||||||
|
|
||||||
|
|
||||||
-- Adverb
|
|
||||||
|
|
||||||
l -treebank PositAdvAdj warm_A
|
|
||||||
l -treebank PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (UseN house_N))
|
|
||||||
l -treebank ComparAdvAdj more_CAdv warm_A (UsePN john_PN)
|
|
||||||
l -treebank ComparAdvAdjS more_CAdv warm_A (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (UseV run_V)))
|
|
||||||
l -treebank SubjS when_Subj (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseV sleep_V)))
|
|
||||||
l -treebank AdNum (AdnCAdv more_CAdv) (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5))))))
|
|
||||||
|
|
||||||
|
|
||||||
-- Conjunction
|
|
||||||
|
|
||||||
l -treebank ConjS and_Conj (BaseS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (UseV walk_V))) (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseV run_V))))
|
|
||||||
l -treebank ConjAP and_Conj (BaseAP (PositA cold_A) (PositA warm_A))
|
|
||||||
l -treebank ConjNP or_Conj (BaseNP (UsePron she_Pron) (UsePron we_Pron))
|
|
||||||
l -treebank ConjAdv or_Conj (BaseAdv here_Adv there_Adv)
|
|
||||||
l -treebank ConjS either7or_DConj (BaseS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron he_Pron) (UseV walk_V))) (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseV run_V))))
|
|
||||||
l -treebank ConjAP both7and_DConj (BaseAP (PositA warm_A) (PositA cold_A))
|
|
||||||
l -treebank ConjNP either7or_DConj (BaseNP (UsePron he_Pron) (UsePron she_Pron))
|
|
||||||
l -treebank ConjAdv both7and_DConj (BaseAdv here_Adv there_Adv)
|
|
||||||
|
|
||||||
-- Idiom
|
|
||||||
|
|
||||||
l -treebank ImpersCl (UseComp (CompAP (PositA hot_A)))
|
|
||||||
l -treebank GenericCl (UseV sleep_V)
|
|
||||||
l -treebank CleftNP (UsePron i_Pron) (UseRCl (TTAnt TPast ASimul) PPos (RelVP IdRP (ComplSlash (SlashV2a do_V2) (UsePron it_Pron))))
|
|
||||||
l -treebank CleftAdv here_Adv (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron she_Pron) (UseV sleep_V)))
|
|
||||||
l -treebank ExistNP (DetCN (DetQuant IndefArt NumSg) (UseN house_N))
|
|
||||||
l -treebank ExistIP (IdetCN (IdetQuant which_IQuant NumPl) (UseN house_N))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ProgrVP (UseV sleep_V))
|
|
||||||
l -treebank ImpPl1 (UseV go_V)
|
|
||||||
|
|
||||||
-- Noun
|
|
||||||
|
|
||||||
l -treebank DetCN (DetQuant DefArt NumSg) (UseN man_N)
|
|
||||||
l -treebank UsePN john_PN
|
|
||||||
l -treebank UsePron he_Pron
|
|
||||||
l -treebank PredetNP only_Predet (DetCN (DetQuant DefArt NumSg) (UseN man_N))
|
|
||||||
l -treebank PPartNP (DetCN (DetQuant DefArt NumSg) (UseN man_N)) see_V2
|
|
||||||
l -treebank AdvNP (UsePN paris_PN) today_Adv
|
|
||||||
l -treebank RelNP (UsePN paris_PN) (UseRCl (TTAnt TPres ASimul) PPos (RelVP IdRP (UseComp (CompAdv here_Adv))))
|
|
||||||
l -treebank DetNP (DetQuant this_Quant (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5))))))))
|
|
||||||
l -treebank DetCN (DetQuantOrd this_Quant (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5))))))) (OrdSuperl good_A)) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant this_Quant (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5)))))))) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant this_Quant NumPl) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant this_Quant NumSg) (UseN man_N)
|
|
||||||
l -treebank NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5))))))
|
|
||||||
l -treebank NumCard (NumDigits (IIDig D_5 (IDig D_1)))
|
|
||||||
l -treebank NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot1plus n5 pot01)))))
|
|
||||||
l -treebank NumCard (AdNum almost_AdN (NumDigits (IIDig D_5 (IDig D_1))))
|
|
||||||
l -treebank OrdDigits (IIDig D_5 (IDig D_1))
|
|
||||||
l -treebank OrdNumeral (num (pot2as3 (pot1as2 (pot1plus n5 pot01))))
|
|
||||||
l -treebank OrdSuperl warm_A
|
|
||||||
l -treebank DetCN (DetQuantOrd DefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5))))))) (OrdSuperl good_A)) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant DefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5)))))))) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01))))))) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant DefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 pot01))))))) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant DefArt NumSg) (UseN man_N)
|
|
||||||
l -treebank DetCN (DetQuant DefArt NumPl) (UseN man_N)
|
|
||||||
l -treebank MassNP (UseN beer_N)
|
|
||||||
l -treebank DetCN (DetQuant (PossPron i_Pron) NumSg) (UseN house_N)
|
|
||||||
l -treebank UseN house_N
|
|
||||||
l -treebank ComplN2 mother_N2 (DetCN (DetQuant DefArt NumSg) (UseN king_N))
|
|
||||||
l -treebank ComplN2 (ComplN3 distance_N3 (DetCN (DetQuant this_Quant NumSg) (UseN city_N))) (UsePN paris_PN)
|
|
||||||
l -treebank UseN2 mother_N2
|
|
||||||
l -treebank ComplN2 (Use2N3 distance_N3) (DetCN (DetQuant this_Quant NumSg) (UseN city_N))
|
|
||||||
l -treebank ComplN2 (Use3N3 distance_N3) (UsePN paris_PN)
|
|
||||||
l -treebank UseN2 (Use2N3 distance_N3)
|
|
||||||
l -treebank AdjCN (PositA big_A) (UseN house_N)
|
|
||||||
l -treebank RelCN (UseN house_N) (UseRCl (TTAnt TPast ASimul) PPos (RelSlash IdRP (SlashVP (UsePN john_PN) (SlashV2a buy_V2))))
|
|
||||||
l -treebank AdvCN (UseN house_N) (PrepNP on_Prep (DetCN (DetQuant DefArt NumSg) (UseN hill_N)))
|
|
||||||
l -treebank SentCN (UseN question_N) (EmbedQS (UseQCl (TTAnt TPres ASimul) PPos (QuestIAdv where_IAdv (PredVP (UsePron she_Pron) (UseV sleep_V)))))
|
|
||||||
l -treebank DetCN (DetQuant DefArt NumSg) (ApposCN (UseN city_N) (UsePN paris_PN))
|
|
||||||
l -treebank DetCN (DetQuant (PossPron i_Pron) NumSg) (ApposCN (UseN friend_N) (UsePN john_PN))
|
|
||||||
|
|
||||||
-- Numeral
|
|
||||||
|
|
||||||
l -treebank num (pot2as3 (pot1as2 (pot0as1 (pot0 n6))))
|
|
||||||
l -treebank num (pot2as3 (pot1as2 (pot0as1 pot01)))
|
|
||||||
l -treebank num (pot2as3 (pot1as2 (pot1 n6)))
|
|
||||||
l -treebank num (pot2as3 (pot1as2 pot110))
|
|
||||||
l -treebank num (pot2as3 (pot1as2 pot111))
|
|
||||||
l -treebank num (pot2as3 (pot1as2 (pot1to19 n6)))
|
|
||||||
l -treebank num (pot2as3 (pot1as2 (pot1 n6)))
|
|
||||||
l -treebank num (pot2as3 (pot1as2 (pot1plus n6 (pot0 n5))))
|
|
||||||
l -treebank num (pot2as3 (pot2 (pot0 n4)))
|
|
||||||
l -treebank num (pot2as3 (pot2plus (pot0 n4) (pot1plus n6 (pot0 n7))))
|
|
||||||
l -treebank num (pot3 (pot2plus (pot0 n4) (pot1plus n6 (pot0 n7))))
|
|
||||||
l -treebank num (pot3plus (pot2plus (pot0 n4) (pot1plus n6 (pot0 n7))) (pot1as2 (pot1plus n8 (pot0 n9))))
|
|
||||||
l -treebank IDig D_8
|
|
||||||
l -treebank IIDig D_8 (IIDig D_0 (IIDig D_0 (IIDig D_1 (IIDig D_7 (IIDig D_8 (IDig D_9))))))
|
|
||||||
|
|
||||||
|
|
||||||
-- Phrase
|
|
||||||
|
|
||||||
l -treebank PhrUtt but_PConj (UttImpSg PPos (ImpVP (AdvVP (UseV come_V) here_Adv))) (VocNP (DetCN (DetQuant (PossPron i_Pron) NumSg) (UseN friend_N)))
|
|
||||||
l -treebank PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePN john_PN) (UseV walk_V)))) NoVoc
|
|
||||||
l -treebank UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestCl (PredVP (UsePron it_Pron) (UseComp (CompAP (PositA good_A))))))
|
|
||||||
l -treebank UttImpSg PNeg (ImpVP (ReflVP (SlashV2a love_V2)))
|
|
||||||
l -treebank UttImpPl PNeg (ImpVP (ReflVP (SlashV2a love_V2)))
|
|
||||||
l -treebank UttImpPol PNeg (ImpVP (UseV sleep_V))
|
|
||||||
l -treebank UttIP whoPl_IP
|
|
||||||
l -treebank UttIP whoSg_IP
|
|
||||||
l -treebank UttIAdv why_IAdv
|
|
||||||
l -treebank UttNP (DetCN (DetQuant this_Quant NumSg) (UseN man_N))
|
|
||||||
l -treebank UttAdv here_Adv
|
|
||||||
l -treebank UttVP (UseV sleep_V)
|
|
||||||
l -treebank VocNP (DetCN (DetQuant (PossPron i_Pron) NumSg) (UseN friend_N))
|
|
||||||
|
|
||||||
|
|
||||||
-- Question
|
|
||||||
|
|
||||||
l -treebank QuestCl (PredVP (UsePN john_PN) (UseV walk_V))
|
|
||||||
l -treebank QuestVP whoSg_IP (UseV walk_V)
|
|
||||||
l -treebank QuestSlash whoSg_IP (SlashVP (UsePN john_PN) (SlashV2a love_V2))
|
|
||||||
l -treebank QuestIAdv why_IAdv (PredVP (UsePN john_PN) (UseV walk_V))
|
|
||||||
l -treebank QuestIComp (CompIAdv where_IAdv) (UsePN john_PN)
|
|
||||||
l -treebank IdetCN (IdetQuant which_IQuant (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5)))))))) (UseN song_N)
|
|
||||||
l -treebank IdetIP (IdetQuant which_IQuant (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n5))))))))
|
|
||||||
l -treebank AdvIP whoSg_IP (PrepNP in_Prep (UsePN paris_PN))
|
|
||||||
l -treebank IdetIP (IdetQuant which_IQuant NumSg)
|
|
||||||
l -treebank PrepIP with_Prep whoSg_IP
|
|
||||||
l -treebank QuestIComp (CompIAdv where_IAdv) (UsePron it_Pron)
|
|
||||||
l -treebank QuestIComp (CompIP whoSg_IP) (UsePron it_Pron)
|
|
||||||
|
|
||||||
|
|
||||||
-- Relative
|
|
||||||
|
|
||||||
l -treebank ExistNP (DetCN (DetQuant IndefArt NumSg) (RelCN (UseN woman_N) (UseRCl (TTAnt TPres ASimul) PPos (RelCl (PredVP (UsePN john_PN) (ComplSlash (SlashV2a love_V2) (UsePron she_Pron)))))))
|
|
||||||
l -treebank ExistNP (DetCN (DetQuant IndefArt NumSg) (RelCN (UseN woman_N) (UseRCl (TTAnt TPres ASimul) PPos (RelVP IdRP (ComplSlash (SlashV2a love_V2) (UsePN john_PN))))))
|
|
||||||
l -treebank ExistNP (DetCN (DetQuant IndefArt NumSg) (RelCN (UseN woman_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePN john_PN) (SlashV2a love_V2))))))
|
|
||||||
l -treebank ExistNP (DetCN (DetQuant IndefArt NumSg) (RelCN (UseN woman_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash (FunRP possess_Prep (DetCN (DetQuant DefArt NumSg) (UseN2 mother_N2)) IdRP) (SlashVP (UsePN john_PN) (SlashV2a love_V2))))))
|
|
||||||
|
|
||||||
-- Sentence
|
|
||||||
|
|
||||||
l -treebank PredVP (UsePN john_PN) (UseV walk_V)
|
|
||||||
l -treebank PredSCVP (EmbedS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseV go_V)))) (UseComp (CompAP (PositA good_A)))
|
|
||||||
l -treebank RelCN (UseN girl_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron he_Pron) (SlashV2a see_V2))))
|
|
||||||
l -treebank RelCN (UseN girl_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (AdvSlash (SlashVP (UsePron he_Pron) (SlashV2a see_V2)) today_Adv)))
|
|
||||||
l -treebank RelCN (UseN girl_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashPrep (PredVP (UsePron he_Pron) (UseV walk_V)) with_Prep)))
|
|
||||||
l -treebank RelCN (UseN girl_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVS (UsePron she_Pron) say_VS (UseSlash (TTAnt TPres ASimul) PPos (SlashVP (UsePron he_Pron) (SlashV2a love_V2))))))
|
|
||||||
l -treebank ImpVP (ReflVP (SlashV2a love_V2))
|
|
||||||
l -treebank EmbedS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseV go_V)))
|
|
||||||
l -treebank EmbedQS (UseQCl (TTAnt TPres ASimul) PPos (QuestVP whoSg_IP (UseV go_V)))
|
|
||||||
l -treebank EmbedVP (UseV go_V)
|
|
||||||
l -treebank UseCl (TTAnt TCond AAnter) PNeg (PredVP (UsePN john_PN) (UseV walk_V))
|
|
||||||
l -treebank UseQCl (TTAnt TCond AAnter) PNeg (QuestCl (PredVP (UsePN john_PN) (UseV walk_V)))
|
|
||||||
l -treebank RelCN (UseN girl_N) (UseRCl (TTAnt TCond AAnter) PNeg (RelVP IdRP (UseV walk_V)))
|
|
||||||
l -treebank RelCN (UseN girl_N) (UseRCl (TTAnt TCond AAnter) PNeg (RelSlash IdRP (SlashPrep (PredVP (UsePron i_Pron) (UseV walk_V)) with_Prep)))
|
|
||||||
l -treebank RelS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseV sleep_V))) (UseRCl (TTAnt TPres ASimul) PPos (RelVP IdRP (UseComp (CompAP (PositA good_A)))))
|
|
||||||
|
|
||||||
|
|
||||||
-- Text
|
|
||||||
|
|
||||||
l -treebank TEmpty
|
|
||||||
l -treebank TFullStop (PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePN john_PN) (UseV walk_V)))) NoVoc) TEmpty
|
|
||||||
l -treebank TQuestMark (PhrUtt NoPConj (UttQS (UseQCl (TTAnt TPres ASimul) PPos (QuestCl (PredVP (UsePron they_Pron) (UseComp (CompAdv here_Adv)))))) NoVoc) TEmpty
|
|
||||||
l -treebank TExclMark (PhrUtt NoPConj (ImpPl1 (UseV go_V)) NoVoc) TEmpty
|
|
||||||
|
|
||||||
-- Verb
|
|
||||||
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (UseV sleep_V)
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplVV want_VV (UseV run_V))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplVS say_VS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron she_Pron) (UseV run_V))))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplVQ wonder_VQ (UseQCl (TTAnt TPres ASimul) PPos (QuestVP whoSg_IP (UseV run_V))))
|
|
||||||
l -treebank PredVP (UsePron they_Pron) (ComplVA become_VA (PositA red_A))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplSlash (Slash3V3 give_V3 (UsePron he_Pron)) (UsePron it_Pron))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplSlash (SlashV2V beg_V2V (UseV go_V)) (UsePron she_Pron))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplSlash (SlashV2S answer_V2S (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron it_Pron) (UseComp (CompAP (PositA good_A)))))) (UsePron he_Pron))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplSlash (SlashV2Q ask_V2Q (UseQCl (TTAnt TPast ASimul) PPos (QuestVP whoSg_IP (UseV come_V)))) (UsePron he_Pron))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (ComplSlash (SlashV2A paint_V2A (PositA red_A)) (UsePron it_Pron))
|
|
||||||
l -treebank RelCN (UseN car_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashVV want_VV (SlashV2a buy_V2)))))
|
|
||||||
l -treebank RelCN (UseN car_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron they_Pron) (SlashV2VNP beg_V2V (UsePron i_Pron) (SlashV2a buy_V2)))))
|
|
||||||
l -treebank PredVP (UsePron he_Pron) (ReflVP (SlashV2a love_V2))
|
|
||||||
l -treebank PredVP (DetNP (DetQuant this_Quant NumSg)) (UseComp (CompAP (PositA warm_A)))
|
|
||||||
l -treebank PredVP (UsePron we_Pron) (PassV2 love_V2)
|
|
||||||
l -treebank PredVP (UsePron we_Pron) (AdvVP (UseV sleep_V) here_Adv)
|
|
||||||
l -treebank PredVP (UsePron we_Pron) (AdVVP always_AdV (UseV sleep_V))
|
|
||||||
l -treebank PredVP (UsePron we_Pron) (UseComp (CompAP (PositA small_A)))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN man_N))))
|
|
||||||
l -treebank PredVP (UsePron i_Pron) (UseComp (CompAdv here_Adv))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Janna's and Krasimir's long examples
|
|
||||||
|
|
||||||
l -treebank RelCN (UseN car_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron they_Pron) (SlashV2VNP beg_V2V (UsePron i_Pron) (SlashVV want_VV (SlashV2A paint_V2A (PositA red_A)))))))
|
|
||||||
l -treebank PhrUtt NoPConj (UttImpSg PPos (ImpVP (AdVVP always_AdV (ComplSlash (SlashV2a listen_V2) (DetCN (DetQuant DefArt NumSg) (UseN sea_N)))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (ExistNP (PredetNP only_Predet (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot0as1 (pot0 n2)))))))) (AdvCN (RelCN (UseN woman_N) (UseRCl (TTAnt TCond ASimul) PPos (RelSlash IdRP (SlashPrep (PredVP (UsePron i_Pron) (ComplVV want_VV (PassV2 see_V2))) with_Prep)))) (PrepNP in_Prep (DetCN (DetQuant DefArt NumSg) (UseN rain_N))))))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttImpSg PPos (ImpVP (ComplSlash (SlashV2A paint_V2A (ConjAP both7and_DConj (BaseAP (ComparA small_A (DetCN (DetQuant DefArt NumSg) (UseN sun_N))) (ComparA big_A (DetCN (DetQuant DefArt NumSg) (UseN moon_N)))))) (DetCN (DetQuant DefArt NumSg) (UseN earth_N))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (ImpPl1 (ComplVS hope_VS (ConjS either7or_DConj (BaseS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (ComplN2 father_N2 (DetCN (DetQuant DefArt NumSg) (UseN baby_N)))) (UseV run_V))) (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN2 (Use2N3 distance_N3))) (UseComp (CompAP (PositA small_A))))))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN every_Det (UseN baby_N)) (UseComp (CompNP (ConjNP either7or_DConj (BaseNP (DetCN (DetQuant IndefArt NumSg) (UseN boy_N)) (DetCN (DetQuant IndefArt NumSg) (UseN girl_N))))))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttAdv (ConjAdv either7or_DConj (ConsAdv here7from_Adv (BaseAdv there_Adv everywhere_Adv)))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttVP (PassV2 know_V2)) NoVoc
|
|
||||||
l -treebank RelCN (UseN bird_N) (UseRCl (TTAnt TPres ASimul) PPos (RelSlash IdRP (SlashVP (UsePron i_Pron) (SlashVV want_VV (SlashV2A paint_V2A (PositA red_A))))))
|
|
||||||
l -treebank UttImpSg PPos (ImpVP (ComplVV want_VV (ComplSlash (SlashV2a buy_V2) (UsePron it_Pron))))
|
|
||||||
l -treebank UttImpSg PPos (ImpVP (ComplVV want_VV (ComplSlash (SlashV2A paint_V2A (PositA red_A)) (UsePron it_Pron))))
|
|
||||||
l -treebank UttImpSg PPos (ImpVP (ComplSlash (SlashVV want_VV (SlashV2VNP beg_V2V (UsePron i_Pron) (SlashV2a buy_V2))) (UsePron it_Pron)))
|
|
||||||
l -treebank PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumPl) (UseN fruit_N)) (ReflVP (Slash3V3 sell_V3 (DetCN (DetQuant DefArt NumSg) (UseN road_N))))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron i_Pron) (ReflVP (SlashV2V beg_V2V (UseV live_V)))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (UsePron i_Pron) (ReflVP (SlashV2S answer_V2S (UseCl (TTAnt TPres ASimul) PPos (ImpersCl (ComplVV must_VV (ReflVP (SlashV2a understand_V2)))))))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttImpSg PPos (ImpVP (ReflVP (SlashV2Q ask_V2Q (UseQCl (TTAnt TPast ASimul) PPos (QuestVP whoSg_IP (UseV come_V))))))) NoVoc
|
|
||||||
l -treebank PhrUtt NoPConj (UttS (UseCl (TTAnt TPast ASimul) PPos (PredVP (UsePron i_Pron) (ReflVP (SlashV2A paint_V2A (ComparA beautiful_A (UsePN john_PN))))))) NoVoc
|
|
||||||
|
|
||||||
-- more long examples
|
|
||||||
|
|
||||||
l -treebank UttS (UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant this_Quant NumSg) (UseN grammar_N)) (ComplSlash (SlashV2a speak_V2) (DetCN (DetQuant IndefArt (NumCard (NumNumeral (num (pot2as3 (pot1as2 (pot1to19 n2))))))) (UseN language_N)))))
|
|
||||||
l -treebank UseCl (TTAnt TPast AAnter) PPos (PredVP (UsePron she_Pron) (ComplSlash (SlashV2a buy_V2) (DetCN (DetQuant IndefArt NumSg) (AdjCN (PositA red_A) (UseN house_N)))))
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
|||||||
import Data.List(partition)
|
import Data.List(partition)
|
||||||
import System.IO
|
import System.IO
|
||||||
import Distribution.Simple.BuildPaths(exeExtension)
|
import Distribution.Simple.BuildPaths(exeExtension)
|
||||||
import Distribution.System ( buildPlatform )
|
import Distribution.System ( buildPlatform, OS (Windows), Platform (Platform) )
|
||||||
import System.Process(readProcess)
|
import System.Process(readProcess)
|
||||||
import System.Directory(doesFileExist,getDirectoryContents)
|
import System.Directory(doesFileExist,getDirectoryContents)
|
||||||
import System.FilePath((</>),(<.>),takeExtension)
|
import System.FilePath((</>),(<.>),takeExtension)
|
||||||
@@ -11,10 +11,10 @@ main =
|
|||||||
do res <- walk "testsuite"
|
do res <- walk "testsuite"
|
||||||
let cnt = length res
|
let cnt = length res
|
||||||
(good,bad) = partition ((=="OK").fst.snd) res
|
(good,bad) = partition ((=="OK").fst.snd) res
|
||||||
ok = length good
|
ok = length good + length (filter ((=="FAIL (expected)").fst.snd) bad)
|
||||||
fail = ok<cnt
|
fail = ok<cnt
|
||||||
putStrLn $ show ok++"/"++show cnt++ " passed/tests"
|
putStrLn $ show ok++"/"++show cnt++ " passed/tests"
|
||||||
let overview = "dist/test/gf-tests.html"
|
let overview = "gf-tests.html"
|
||||||
writeFile overview (toHTML bad)
|
writeFile overview (toHTML bad)
|
||||||
if ok<cnt
|
if ok<cnt
|
||||||
then do putStrLn $ overview++" contains an overview of the failed tests"
|
then do putStrLn $ overview++" contains an overview of the failed tests"
|
||||||
@@ -55,13 +55,15 @@ main =
|
|||||||
|
|
||||||
runTest in_file out_file gold_file = do
|
runTest in_file out_file gold_file = do
|
||||||
input <- readFile in_file
|
input <- readFile in_file
|
||||||
writeFile out_file =<< run_gf input
|
writeFile out_file =<< run_gf ["-run"] input
|
||||||
exists <- doesFileExist gold_file
|
exists <- doesFileExist gold_file
|
||||||
if exists
|
if exists
|
||||||
then do out <- compatReadFile out_file
|
then do out <- compatReadFile out_file
|
||||||
gold <- compatReadFile gold_file
|
gold <- compatReadFile gold_file
|
||||||
let info = (input,gold,out)
|
let info = (input,gold,out)
|
||||||
return $! if out == gold then ("OK",info) else ("FAIL",info)
|
if in_file `elem` expectedFailures
|
||||||
|
then return $! if out == gold then ("Unexpected success",info) else ("FAIL (expected)",info)
|
||||||
|
else return $! if out == gold then ("OK",info) else ("FAIL",info)
|
||||||
else do out <- compatReadFile out_file
|
else do out <- compatReadFile out_file
|
||||||
return ("MISSING GOLD",(input,"",out))
|
return ("MISSING GOLD",(input,"",out))
|
||||||
-- Avoid failures caused by Win32/Unix text file incompatibility
|
-- Avoid failures caused by Win32/Unix text file incompatibility
|
||||||
@@ -70,10 +72,21 @@ main =
|
|||||||
hSetNewlineMode h universalNewlineMode
|
hSetNewlineMode h universalNewlineMode
|
||||||
hGetContents h
|
hGetContents h
|
||||||
|
|
||||||
|
expectedFailures :: [String]
|
||||||
|
expectedFailures =
|
||||||
|
[ "testsuite/runtime/parser/parser.gfs" -- Only parses `z` as `zero` and not also as e.g. `succ zero` as expected
|
||||||
|
, "testsuite/runtime/linearize/brackets.gfs" -- Missing "cannot linearize in the end"
|
||||||
|
, "testsuite/compiler/typecheck/abstract/non-abstract-terms.gfs" -- Gives a different error than expected
|
||||||
|
]
|
||||||
|
|
||||||
-- Should consult the Cabal configuration!
|
-- Should consult the Cabal configuration!
|
||||||
run_gf = readProcess default_gf ["-run","-gf-lib-path="++gf_lib_path]
|
run_gf = readProcess default_gf
|
||||||
default_gf = "dist/build/gf/gf"<.>exeExtension buildPlatform
|
default_gf = "gf"<.>exeExtension
|
||||||
gf_lib_path = "dist/build/rgl"
|
where
|
||||||
|
-- shadows Distribution.Simple.BuildPaths.exeExtension, which changed type signature in Cabal 2.4
|
||||||
|
exeExtension = case buildPlatform of
|
||||||
|
Platform arch Windows -> "exe"
|
||||||
|
_ -> ""
|
||||||
|
|
||||||
-- | List files, excluding "." and ".."
|
-- | List files, excluding "." and ".."
|
||||||
ls path = filter (`notElem` [".",".."]) `fmap` getDirectoryContents path
|
ls path = filter (`notElem` [".",".."]) `fmap` getDirectoryContents path
|
||||||
|
|||||||
@@ -1,28 +1,19 @@
|
|||||||
(S:2 (E:1 (_:0 ?1)) is even)
|
(S:2 (E:1 (_:0 ?1)) is even)
|
||||||
|
|
||||||
|
|
||||||
(S:3 exists x such that (S:2 (E:1 (_:0 x)) is even))
|
(S:3 exists x such that (S:2 (E:1 (_:0 x)) is even))
|
||||||
|
|
||||||
|
|
||||||
(S:1 (E:0 a))
|
(S:1 (E:0 a))
|
||||||
|
|
||||||
|
|
||||||
(S:1 (E:0 aa) a)
|
(S:1 (E:0 aa) a)
|
||||||
|
|
||||||
|
|
||||||
(S:1 (E:0 a) b)
|
(S:1 (E:0 a) b)
|
||||||
|
|
||||||
|
|
||||||
(S:1 (String:0 abcd) is string)
|
(S:1 (String:0 abcd) is string)
|
||||||
|
|
||||||
|
|
||||||
(S:1 (Int:0 100) is integer)
|
(S:1 (Int:0 100) is integer)
|
||||||
|
|
||||||
|
|
||||||
(S:1 (Float:0 12.4) is float)
|
(S:1 (Float:0 12.4) is float)
|
||||||
|
|
||||||
|
|
||||||
(S:1 (String:0 xyz) is string)
|
(S:1 (String:0 xyz) is string)
|
||||||
|
|
||||||
|
cannot linearize
|
||||||
cannot linearize
|
|
||||||
|
|||||||
@@ -1,30 +1,20 @@
|
|||||||
?1 is even
|
?1 is even
|
||||||
|
|
||||||
|
|
||||||
exists x such that x is even
|
exists x such that x is even
|
||||||
|
|
||||||
|
|
||||||
a
|
a
|
||||||
|
|
||||||
|
|
||||||
aa a
|
aa a
|
||||||
|
|
||||||
|
|
||||||
a b
|
a b
|
||||||
|
|
||||||
|
|
||||||
abcd is string
|
abcd is string
|
||||||
|
|
||||||
|
|
||||||
100 is integer
|
100 is integer
|
||||||
|
|
||||||
|
|
||||||
12.4 is float
|
12.4 is float
|
||||||
|
|
||||||
|
|
||||||
xyz is string
|
xyz is string
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user