mirror of
https://github.com/facebook/duckling.git
synced 2024-11-28 08:34:46 +03:00
a3b35880e5
Summary: Modified `Entity` to use the new `ResolvedVal` data type. Other changes follow naturally. Related issues: https://github.com/facebook/duckling/issues/121 and https://github.com/facebook/duckling/issues/172 Now one can pattern match on the output value, for instance: ``` {-# LANGUAGE GADTs #-} import Data.Text import Duckling.Core import Duckling.Testing.Types import qualified Duckling.PhoneNumber.Types as PN parsePhoneNumber :: Text -> Text parsePhoneNumber input = case value entity of (RVal PhoneNumber (PN.PhoneNumberValue v)) -> v where (entity:_) = parse input testContext testOptions [This PhoneNumber] ``` Reviewed By: patapizza Differential Revision: D7502020 fbshipit-source-id: 76ba7b315cfd0d2c61ff95c855b7c95efc0a401c
73 lines
1.9 KiB
Haskell
73 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. An additional grant
|
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
{-# LANGUAGE NoRebindableSyntax #-}
|
|
|
|
-- | Everything needed to run Duckling.
|
|
|
|
module Duckling.Core
|
|
( Context(..)
|
|
, Dimension(..)
|
|
, Entity(..)
|
|
, Lang(..)
|
|
, Locale
|
|
, Node(..)
|
|
, Options(..)
|
|
, Range(..)
|
|
, Region(..)
|
|
, ResolvedVal(..)
|
|
, Some(..)
|
|
, fromName
|
|
, makeLocale
|
|
, toJText
|
|
, toName
|
|
|
|
-- Duckling API
|
|
, parse
|
|
, supportedDimensions
|
|
, allLocales
|
|
|
|
-- Reference time builders
|
|
, currentReftime
|
|
, fromZonedTime
|
|
, makeReftime
|
|
) where
|
|
|
|
import Data.HashMap.Strict (HashMap)
|
|
import Data.Text (Text)
|
|
import Data.Time
|
|
import Data.Time.LocalTime.TimeZone.Series
|
|
import Prelude
|
|
import qualified Data.HashMap.Strict as HashMap
|
|
|
|
import Duckling.Api
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Locale
|
|
import Duckling.Resolve
|
|
import Duckling.Types
|
|
|
|
-- | Builds a `DucklingTime` for timezone `tz` at `utcTime`.
|
|
-- If no `series` found for `tz`, uses UTC.
|
|
makeReftime :: HashMap Text TimeZoneSeries -> Text -> UTCTime -> DucklingTime
|
|
makeReftime series tz utcTime = DucklingTime $ ZoneSeriesTime ducklingTime tzs
|
|
where
|
|
tzs = HashMap.lookupDefault (TimeZoneSeries utc []) tz series
|
|
ducklingTime = toUTC $ utcToLocalTime' tzs utcTime
|
|
|
|
-- | Builds a `DucklingTime` for timezone `tz` at current time.
|
|
-- If no `series` found for `tz`, uses UTC.
|
|
currentReftime :: HashMap Text TimeZoneSeries -> Text -> IO DucklingTime
|
|
currentReftime series tz = do
|
|
utcNow <- getCurrentTime
|
|
return $ makeReftime series tz utcNow
|
|
|
|
-- | Builds a `DucklingTime` from a `ZonedTime`.
|
|
fromZonedTime :: ZonedTime -> DucklingTime
|
|
fromZonedTime (ZonedTime localTime timeZone) = DucklingTime $
|
|
ZoneSeriesTime (toUTC localTime) (TimeZoneSeries timeZone [])
|