mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
bf89e34365
Reviewed By: JoelMarcey Differential Revision: D15439223 fbshipit-source-id: c5af3cb06318748142fe503945b38beffadfc28a
74 lines
1.9 KiB
Haskell
74 lines
1.9 KiB
Haskell
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
-- All rights reserved.
|
|
--
|
|
-- This source code is licensed under the BSD-style license found in the
|
|
-- LICENSE file in the root directory of this source tree.
|
|
|
|
|
|
{-# LANGUAGE GADTs #-}
|
|
{-# LANGUAGE LambdaCase #-}
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
module Duckling.Volume.PT.Rules
|
|
( rules ) where
|
|
|
|
import Data.String
|
|
import Data.Text (Text)
|
|
import Prelude
|
|
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Types
|
|
import Duckling.Regex.Types
|
|
import Duckling.Volume.Helpers
|
|
import Duckling.Numeral.Helpers (isPositive)
|
|
import qualified Duckling.Volume.Types as TVolume
|
|
import qualified Duckling.Numeral.Types as TNumeral
|
|
|
|
volumes :: [(Text, String, TVolume.Unit)]
|
|
volumes = [ ("<latent vol> ml" , "m(l|ililitros?)" , TVolume.Millilitre)
|
|
, ("<vol> hectoliters" , "(hectolitros?)" , TVolume.Hectolitre)
|
|
, ("<vol> liters" , "l(itros?)?" , TVolume.Litre)
|
|
, ("<latent vol> gallon", "gal(a|ã|o|õ)o?e?s?" , TVolume.Gallon)
|
|
]
|
|
|
|
rulesVolumes :: [Rule]
|
|
rulesVolumes = map go volumes
|
|
where
|
|
go :: (Text, String, TVolume.Unit) -> Rule
|
|
go (name, regexPattern, u) = Rule
|
|
{ name = name
|
|
, pattern =
|
|
[ regex regexPattern
|
|
]
|
|
, prod = \_ -> Just . Token Volume $ unitOnly u
|
|
}
|
|
|
|
fractions :: [(Text, String, Double)]
|
|
fractions = [ ("half", "meio", 1/2)
|
|
]
|
|
|
|
rulesFractionalVolume :: [Rule]
|
|
rulesFractionalVolume = map go fractions
|
|
where
|
|
go :: (Text, String, Double) -> Rule
|
|
go (name, regexPattern, f) = Rule
|
|
{ name = name
|
|
, pattern =
|
|
[ regex regexPattern
|
|
, Predicate isUnitOnly
|
|
]
|
|
, prod = \case
|
|
(_:
|
|
Token Volume TVolume.VolumeData{TVolume.unit = Just u}:
|
|
_) ->
|
|
Just . Token Volume $ volume u f
|
|
_ -> Nothing
|
|
}
|
|
|
|
rules :: [Rule]
|
|
rules =
|
|
[
|
|
]
|
|
++ rulesVolumes
|
|
++ rulesFractionalVolume
|