-- 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. An additional grant -- of patent rights can be found in the PATENTS file in the same directory. {-# LANGUAGE GADTs #-} {-# LANGUAGE OverloadedStrings #-} module Duckling.Duration.HE.Rules ( rules ) where import Control.Monad (join) import Data.Maybe import Data.String import Data.Text (Text) import Prelude import qualified Data.Text as Text import Duckling.Dimensions.Types import Duckling.Duration.Helpers import Duckling.Duration.Types (DurationData (..)) import Duckling.Numeral.Helpers (parseInteger) import Duckling.Numeral.Types (NumeralData(..)) import Duckling.Regex.Types import Duckling.Types import qualified Duckling.Duration.Types as TDuration import qualified Duckling.Numeral.Types as TNumeral import qualified Duckling.TimeGrain.Types as TG ruleQuarterOfAnHour :: Rule ruleQuarterOfAnHour = Rule { name = "quarter of an hour" , pattern = [ regex "(1/4/s \x05e9\x05e2\x05d4|\x05e8\x05d1\x05e2 \x05e9\x05e2\x05d4)" ] , prod = \_ -> Just . Token Duration $ duration TG.Minute 15 } ruleHalfAnHour :: Rule ruleHalfAnHour = Rule { name = "half an hour" , pattern = [ regex "(1/2/s \x05e9\x05e2\x05d4|\x05d7\x05e6\x05d9 \x05e9\x05e2\x05d4)" ] , prod = \_ -> Just . Token Duration $ duration TG.Minute 30 } ruleThreequartersOfAnHour :: Rule ruleThreequartersOfAnHour = Rule { name = "three-quarters of an hour" , pattern = [ regex "(3/4/s \x05e9\x05e2\x05d4|\x05e9\x05dc\x05d5\x05e9\x05ea \x05e8\x05d1\x05e2\x05d9 \x05e9\x05e2\x05d4)" ] , prod = \_ -> Just . Token Duration $ duration TG.Minute 45 } ruleNumbernumberHours :: Rule ruleNumbernumberHours = Rule { name = "number.number hours" , pattern = [ regex "(\\d+)\\.(\\d+)" , regex "\x05e9\x05e2\x05d4|\x05e9\x05e2\x05d5\x05ea" ] , prod = \tokens -> case tokens of (Token RegexMatch (GroupMatch (h:m:_)):_) -> do hh <- parseInteger h mnum <- parseInteger m let mden = 10 ^ Text.length m Just . Token Duration $ minutesFromHourMixedFraction hh mnum mden _ -> Nothing } ruleIntegerAndAnHalfHours :: Rule ruleIntegerAndAnHalfHours = Rule { name = " and an half hours" , pattern = [ Predicate isNatural , regex "\x05d5\x05d7\x05e6\x05d9 (\x05e9\x05e2\x05d5\x05ea|\x05e9\x05e2\x05d4)" ] , prod = \tokens -> case tokens of (Token Numeral (NumeralData {TNumeral.value = v}):_) -> Just . Token Duration . duration TG.Minute $ 30 + 60 * floor v _ -> Nothing } ruleAboutDuration :: Rule ruleAboutDuration = Rule { name = "about " , pattern = [ regex "(\x05d1\x05e2\x05e8\x05da|\x05e1\x05d1\x05d9\x05d1\x05d5\x05ea|\x05d1\x05e7\x05d9\x05e8\x05d5\x05d1)" , dimension Duration ] , prod = \tokens -> case tokens of (_:token:_) -> Just token _ -> Nothing } ruleExactlyDuration :: Rule ruleExactlyDuration = Rule { name = "exactly " , pattern = [ regex "\x05d1\x05d3\x05d9\x05d5\x05e7" , dimension Duration ] , prod = \tokens -> case tokens of (_:token:_) -> Just token _ -> Nothing } rules :: [Rule] rules = [ ruleAboutDuration , ruleExactlyDuration , ruleHalfAnHour , ruleIntegerAndAnHalfHours , ruleNumbernumberHours , ruleQuarterOfAnHour , ruleThreequartersOfAnHour ]