2 Module : Gargantext.API.Ngrams
3 Description : Server API
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
13 get ngrams filtered by NgramsType
18 {-# OPTIONS_GHC -fno-warn-unused-top-binds #-}
20 {-# LANGUAGE ConstraintKinds #-}
21 {-# LANGUAGE ScopedTypeVariables #-}
22 {-# LANGUAGE TypeOperators #-}
23 {-# LANGUAGE TypeFamilies #-}
25 module Gargantext.API.Ngrams
32 --, rmListNgrams TODO fix before exporting
33 , apiNgramsTableCorpus
56 , NgramsRepoElement(..)
81 , VersionedWithCount(..)
83 , listNgramsChangedSince
87 import Control.Concurrent
88 import Control.Lens ((.~), view, (^.), (^..), (+~), (%~), (.~), sumOf, at, _Just, Each(..), (%%~), mapped, ifolded, withIndex)
89 import Control.Monad.Reader
90 import Data.Aeson hiding ((.=))
91 import Data.Either (Either(..))
93 import Data.Map.Strict (Map)
94 import Data.Maybe (fromMaybe)
96 import Data.Ord (Down(..))
97 import Data.Patch.Class (Action(act), Transformable(..), ours)
98 import Data.Swagger hiding (version, patch)
99 import Data.Text (Text, isInfixOf, unpack)
100 import Data.Text.Lazy.IO as DTL
101 import Formatting (hprint, int, (%))
102 import GHC.Generics (Generic)
103 import Gargantext.API.Admin.Orchestrator.Types (JobLog(..), AsyncJobs)
104 import Gargantext.API.Admin.Types (HasSettings)
105 import Gargantext.API.Ngrams.Types
106 import Gargantext.API.Prelude
107 import Gargantext.Core.Types (ListType(..), NodeId, ListId, DocId, Limit, Offset, TODO, assertValid)
108 import Gargantext.Core.Utils (something)
109 import Gargantext.Database.Action.Flow.Types
110 import Gargantext.Database.Action.Metrics.NgramsByNode (getOccByNgramsOnlyFast')
111 import Gargantext.Database.Admin.Config (userMaster)
112 import Gargantext.Database.Admin.Types.Node (NodeType(..))
113 import Gargantext.Database.Prelude (HasConnectionPool, HasConfig)
114 import Gargantext.Database.Query.Table.Ngrams hiding (NgramsType(..), ngramsType, ngrams_terms)
115 import Gargantext.Database.Query.Table.Node (getNode)
116 import Gargantext.Database.Query.Table.Node.Error (HasNodeError)
117 import Gargantext.Database.Query.Table.Node.Select
118 import Gargantext.Database.Schema.Node (node_id, node_parent_id, node_user_id)
119 import Gargantext.Prelude hiding (log)
120 import Gargantext.API.Job
121 import Gargantext.Prelude.Clock (hasTime, getTime)
122 import Prelude (error)
123 import Servant hiding (Patch)
124 import Servant.Job.Async (JobFunction(..), serveJobsAPI)
125 import System.IO (stderr)
126 import Test.QuickCheck (elements)
127 import Test.QuickCheck.Arbitrary (Arbitrary, arbitrary)
128 import qualified Data.Aeson.Text as DAT
129 import qualified Data.List as List
130 import qualified Data.Map.Strict as Map
131 import qualified Data.Map.Strict.Patch as PM
132 import qualified Data.Set as S
133 import qualified Data.Set as Set
134 import qualified Gargantext.API.Metrics as Metrics
135 import qualified Gargantext.Database.Query.Table.Ngrams as TableNgrams
138 -- TODO sequences of modifications (Patchs)
139 type NgramsIdPatch = Patch NgramsId NgramsPatch
141 ngramsPatch :: Int -> NgramsPatch
142 ngramsPatch n = NgramsPatch (DM.fromList [(1, StopTerm)]) (Set.fromList [n]) Set.empty
144 toEdit :: NgramsId -> NgramsPatch -> Edit NgramsId NgramsPatch
145 toEdit n p = Edit n p
146 ngramsIdPatch :: Patch NgramsId NgramsPatch
147 ngramsIdPatch = fromList $ catMaybes $ reverse [ replace (1::NgramsId) (Just $ ngramsPatch 1) Nothing
148 , replace (1::NgramsId) Nothing (Just $ ngramsPatch 2)
149 , replace (2::NgramsId) Nothing (Just $ ngramsPatch 2)
152 -- applyPatchBack :: Patch -> IO Patch
153 -- isEmptyPatch = Map.all (\x -> Set.isEmpty (add_children x) && Set.isEmpty ... )
155 ------------------------------------------------------------------------
156 ------------------------------------------------------------------------
157 ------------------------------------------------------------------------
160 -- TODO: Replace.old is ignored which means that if the current list
161 -- `MapTerm` and that the patch is `Replace CandidateTerm StopTerm` then
162 -- the list is going to be `StopTerm` while it should keep `MapTerm`.
163 -- However this should not happen in non conflicting situations.
164 mkListsUpdate :: NgramsType -> NgramsTablePatch -> [(NgramsTypeId, NgramsTerm, ListTypeId)]
165 mkListsUpdate nt patches =
166 [ (ngramsTypeId nt, ng, listTypeId lt)
167 | (ng, patch) <- patches ^.. ntp_ngrams_patches . ifolded . withIndex
168 , lt <- patch ^.. patch_list . new
171 mkChildrenGroups :: (PatchSet NgramsTerm -> Set NgramsTerm)
174 -> [(NgramsTypeId, NgramsParent, NgramsChild)]
175 mkChildrenGroups addOrRem nt patches =
176 [ (ngramsTypeId nt, parent, child)
177 | (parent, patch) <- patches ^.. ntp_ngrams_patches . ifolded . withIndex
178 , child <- patch ^.. patch_children . to addOrRem . folded
182 ------------------------------------------------------------------------
184 saveRepo :: ( MonadReader env m, MonadBase IO m, HasRepoSaver env )
186 saveRepo = liftBase =<< view repoSaver
188 listTypeConflictResolution :: ListType -> ListType -> ListType
189 listTypeConflictResolution _ _ = undefined -- TODO Use Map User ListType
191 ngramsStatePatchConflictResolution
192 :: TableNgrams.NgramsType
195 -> ConflictResolutionNgramsPatch
196 ngramsStatePatchConflictResolution _ngramsType _nodeId _ngramsTerm
197 = (ours, (const ours, ours), (False, False))
198 -- (False, False) mean here that Mod has always priority.
199 -- (True, False) <- would mean priority to the left (same as ours).
201 -- undefined {- TODO think this through -}, listTypeConflictResolution)
204 -- Insertions are not considered as patches,
205 -- they do not extend history,
206 -- they do not bump version.
207 insertNewOnly :: a -> Maybe b -> a
208 insertNewOnly m = maybe m (const $ error "insertNewOnly: impossible")
209 -- TODO error handling
212 -- TODO refactor with putListNgrams
213 copyListNgrams :: RepoCmdM env err m
214 => NodeId -> NodeId -> NgramsType
216 copyListNgrams srcListId dstListId ngramsType = do
218 liftBase $ modifyMVar_ var $
219 pure . (r_state . at ngramsType %~ (Just . f . something))
222 f :: Map NodeId NgramsTableMap -> Map NodeId NgramsTableMap
223 f m = m & at dstListId %~ insertNewOnly (m ^. at srcListId)
225 -- TODO refactor with putListNgrams
226 -- The list must be non-empty!
227 -- The added ngrams must be non-existent!
228 addListNgrams :: RepoCmdM env err m
229 => NodeId -> NgramsType
230 -> [NgramsElement] -> m ()
231 addListNgrams listId ngramsType nes = do
233 liftBase $ modifyMVar_ var $
234 pure . (r_state . at ngramsType . _Just . at listId . _Just <>~ m)
237 m = Map.fromList $ (\n -> (n ^. ne_ngrams, n)) <$> nes
241 rmListNgrams :: RepoCmdM env err m
243 -> TableNgrams.NgramsType
245 rmListNgrams l nt = setListNgrams l nt mempty
247 -- | TODO: incr the Version number
248 -- && should use patch
250 setListNgrams :: RepoCmdM env err m
252 -> TableNgrams.NgramsType
253 -> Map NgramsTerm NgramsRepoElement
255 setListNgrams listId ngramsType ns = do
257 liftBase $ modifyMVar_ var $
261 (at listId .~ ( Just ns))
265 printDebug "List modified" NodeList
269 currentVersion :: RepoCmdM env err m
273 r <- liftBase $ readMVar var
274 pure $ r ^. r_version
276 newNgramsFromNgramsStatePatch :: NgramsStatePatch -> [Ngrams]
277 newNgramsFromNgramsStatePatch p =
278 [ text2ngrams (unNgramsTerm n)
279 | (n,np) <- p ^.. _PatchMap . each . _PatchMap . each . _NgramsTablePatch . _PatchMap . ifolded . withIndex
280 , _ <- np ^.. patch_new . _Just
283 -- tableNgramsPut :: (HasInvalidError err, RepoCmdM env err m)
284 commitStatePatch :: RepoCmdM env err m => Versioned NgramsStatePatch -> m (Versioned NgramsStatePatch)
285 commitStatePatch (Versioned p_version p) = do
287 vq' <- liftBase $ modifyMVar var $ \r -> do
289 q = mconcat $ take (r ^. r_version - p_version) (r ^. r_history)
290 (p', q') = transformWith ngramsStatePatchConflictResolution p q
291 r' = r & r_version +~ 1
293 & r_history %~ (p' :)
295 -- Ideally we would like to check these properties. However:
296 -- * They should be checked only to debug the code. The client data
297 -- should be able to trigger these.
298 -- * What kind of error should they throw (we are in IO here)?
299 -- * Should we keep modifyMVar?
300 -- * Should we throw the validation in an Exception, catch it around
301 -- modifyMVar and throw it back as an Error?
302 assertValid $ transformable p q
303 assertValid $ applicable p' (r ^. r_state)
305 pure (r', Versioned (r' ^. r_version) q')
310 _ <- insertNgrams (newNgramsFromNgramsStatePatch p)
314 -- This is a special case of tableNgramsPut where the input patch is empty.
315 tableNgramsPull :: RepoCmdM env err m
317 -> TableNgrams.NgramsType
319 -> m (Versioned NgramsTablePatch)
320 tableNgramsPull listId ngramsType p_version = do
322 r <- liftBase $ readMVar var
325 q = mconcat $ take (r ^. r_version - p_version) (r ^. r_history)
326 q_table = q ^. _PatchMap . at ngramsType . _Just . _PatchMap . at listId . _Just
328 pure (Versioned (r ^. r_version) q_table)
330 -- Apply the given patch to the DB and returns the patch to be applied on the
333 tableNgramsPut :: ( FlowCmdM env err m
338 -> Versioned NgramsTablePatch
339 -> m (Versioned NgramsTablePatch)
340 tableNgramsPut tabType listId (Versioned p_version p_table)
341 | p_table == mempty = do
342 let ngramsType = ngramsTypeFromTabType tabType
343 tableNgramsPull listId ngramsType p_version
346 let ngramsType = ngramsTypeFromTabType tabType
347 (p0, p0_validity) = PM.singleton listId p_table
348 (p, p_validity) = PM.singleton ngramsType p0
350 assertValid p0_validity
351 assertValid p_validity
353 ret <- commitStatePatch (Versioned p_version p)
354 <&> v_data %~ (view (_PatchMap . at ngramsType . _Just . _PatchMap . at listId . _Just))
359 tableNgramsPostChartsAsync :: ( FlowCmdM env err m
363 => UpdateTableNgramsCharts
366 tableNgramsPostChartsAsync utn logStatus = do
367 let tabType = utn ^. utn_tab_type
368 let listId = utn ^. utn_list_id
370 node <- getNode listId
371 let nId = node ^. node_id
372 _uId = node ^. node_user_id
373 mCId = node ^. node_parent_id
375 printDebug "[tableNgramsPut] tabType" tabType
376 printDebug "[tableNgramsPut] listId" listId
380 printDebug "[tableNgramsPut] can't update charts, no parent, nId" nId
381 pure $ jobLogFail $ jobLogInit 1
385 -- printDebug "[tableNgramsPut] Authors, updating Pie, cId" cId
386 (logRef, logRefSuccess, getRef) <- runJobLog 1 logStatus
388 _ <- Metrics.updatePie cId (Just listId) tabType Nothing
393 -- printDebug "[tableNgramsPut] Institutes, updating Tree, cId" cId
394 -- printDebug "[tableNgramsPut] updating tree StopTerm, cId" cId
395 (logRef, logRefSuccess, getRef) <- runJobLog 3 logStatus
397 _ <- Metrics.updateTree cId (Just listId) tabType StopTerm
398 -- printDebug "[tableNgramsPut] updating tree CandidateTerm, cId" cId
400 _ <- Metrics.updateTree cId (Just listId) tabType CandidateTerm
401 -- printDebug "[tableNgramsPut] updating tree MapTerm, cId" cId
403 _ <- Metrics.updateTree cId (Just listId) tabType MapTerm
408 -- printDebug "[tableNgramsPut] Sources, updating chart, cId" cId
409 (logRef, logRefSuccess, getRef) <- runJobLog 1 logStatus
411 _ <- Metrics.updatePie cId (Just listId) tabType Nothing
416 -- printDebug "[tableNgramsPut] Terms, updating Metrics (Histo), cId" cId
417 (logRef, logRefSuccess, getRef) <- runJobLog 6 logStatus
420 _ <- Metrics.updateChart cId (Just listId) tabType Nothing
422 _ <- Metrics.updatePie cId (Just listId) tabType Nothing
424 _ <- Metrics.updateScatter cId (Just listId) tabType Nothing
426 _ <- Metrics.updateTree cId (Just listId) tabType StopTerm
428 _ <- Metrics.updateTree cId (Just listId) tabType CandidateTerm
430 _ <- Metrics.updateTree cId (Just listId) tabType MapTerm
436 printDebug "[tableNgramsPut] no update for tabType = " tabType
437 pure $ jobLogFail $ jobLogInit 1
440 { _ne_list :: ListType
441 If we merge the parents/children we can potentially create cycles!
442 , _ne_parent :: Maybe NgramsTerm
443 , _ne_children :: MSet NgramsTerm
447 getNgramsTableMap :: RepoCmdM env err m
449 -> TableNgrams.NgramsType
450 -> m (Versioned NgramsTableMap)
451 getNgramsTableMap nodeId ngramsType = do
453 repo <- liftBase $ readMVar v
454 pure $ Versioned (repo ^. r_version)
455 (repo ^. r_state . at ngramsType . _Just . at nodeId . _Just)
457 dumpJsonTableMap :: RepoCmdM env err m
460 -> TableNgrams.NgramsType
462 dumpJsonTableMap fpath nodeId ngramsType = do
463 m <- getNgramsTableMap nodeId ngramsType
464 liftBase $ DTL.writeFile (unpack fpath) (DAT.encodeToLazyText m)
470 -- | TODO Errors management
471 -- TODO: polymorphic for Annuaire or Corpus or ...
472 -- | Table of Ngrams is a ListNgrams formatted (sorted and/or cut).
473 -- TODO: should take only one ListId
476 getTableNgrams :: forall env err m.
477 (RepoCmdM env err m, HasNodeError err, HasConnectionPool env, HasConfig env)
478 => NodeType -> NodeId -> TabType
479 -> ListId -> Limit -> Maybe Offset
481 -> Maybe MinSize -> Maybe MaxSize
483 -> (NgramsTerm -> Bool)
484 -> m (VersionedWithCount NgramsTable)
485 getTableNgrams _nType nId tabType listId limit_ offset
486 listType minSize maxSize orderBy searchQuery = do
489 -- lIds <- selectNodesWithUsername NodeList userMaster
491 ngramsType = ngramsTypeFromTabType tabType
492 offset' = maybe 0 identity offset
493 listType' = maybe (const True) (==) listType
494 minSize' = maybe (const True) (<=) minSize
495 maxSize' = maybe (const True) (>=) maxSize
497 selected_node n = minSize' s
499 && searchQuery (n ^. ne_ngrams)
500 && listType' (n ^. ne_list)
504 selected_inner roots n = maybe False (`Set.member` roots) (n ^. ne_root)
506 ---------------------------------------
507 sortOnOrder Nothing = identity
508 sortOnOrder (Just TermAsc) = List.sortOn $ view ne_ngrams
509 sortOnOrder (Just TermDesc) = List.sortOn $ Down . view ne_ngrams
510 sortOnOrder (Just ScoreAsc) = List.sortOn $ view ne_occurrences
511 sortOnOrder (Just ScoreDesc) = List.sortOn $ Down . view ne_occurrences
513 ---------------------------------------
515 filteredNodes :: Map NgramsTerm NgramsElement -> [NgramsElement]
516 filteredNodes tableMap = rootOf <$> list & filter selected_node
518 rootOf ne = maybe ne (\r -> fromMaybe (panic "getTableNgrams: invalid root")
522 list = tableMap ^.. each
524 ---------------------------------------
525 selectAndPaginate :: Map NgramsTerm NgramsElement -> [NgramsElement]
526 selectAndPaginate tableMap = roots <> inners
528 list = tableMap ^.. each
529 rootOf ne = maybe ne (\r -> fromMaybe (panic "getTableNgrams: invalid root")
533 selected_nodes = list & take limit_
535 . filter selected_node
536 . sortOnOrder orderBy
537 roots = rootOf <$> selected_nodes
538 rootsSet = Set.fromList (_ne_ngrams <$> roots)
539 inners = list & filter (selected_inner rootsSet)
541 ---------------------------------------
542 setScores :: forall t. Each t t NgramsElement NgramsElement => Bool -> t -> m t
543 setScores False table = pure table
544 setScores True table = do
545 let ngrams_terms = table ^.. each . ne_ngrams
547 occurrences <- getOccByNgramsOnlyFast' nId
552 liftBase $ hprint stderr
553 ("getTableNgrams/setScores #ngrams=" % int % " time=" % hasTime % "\n")
554 (length ngrams_terms) t1 t2
556 occurrences <- getOccByNgramsOnlySlow nType nId
562 setOcc ne = ne & ne_occurrences .~ sumOf (at (ne ^. ne_ngrams) . _Just) occurrences
564 pure $ table & each %~ setOcc
565 ---------------------------------------
567 -- lists <- catMaybes <$> listsWith userMaster
568 -- trace (show lists) $
569 -- getNgramsTableMap ({-lists <>-} listIds) ngramsType
572 let scoresNeeded = needsScores orderBy
573 tableMap1 <- getNgramsTableMap listId ngramsType
575 tableMap2 <- tableMap1 & v_data %%~ setScores scoresNeeded
576 . Map.mapWithKey ngramsElementFromRepo
578 fltr <- tableMap2 & v_data %%~ fmap NgramsTable . setScores (not scoresNeeded)
580 let fltrCount = length $ fltr ^. v_data . _NgramsTable
583 tableMap3 <- tableMap2 & v_data %%~ fmap NgramsTable
584 . setScores (not scoresNeeded)
587 liftBase $ hprint stderr
588 ("getTableNgrams total=" % hasTime
592 % " sql=" % (if scoresNeeded then "map2" else "map3")
594 ) t0 t3 t0 t1 t1 t2 t2 t3
595 pure $ toVersionedWithCount fltrCount tableMap3
598 scoresRecomputeTableNgrams :: forall env err m.
599 (RepoCmdM env err m, HasNodeError err, HasConnectionPool env, HasConfig env)
600 => NodeId -> TabType -> ListId -> m Int
601 scoresRecomputeTableNgrams nId tabType listId = do
602 tableMap <- getNgramsTableMap listId ngramsType
603 _ <- tableMap & v_data %%~ setScores
604 . Map.mapWithKey ngramsElementFromRepo
608 ngramsType = ngramsTypeFromTabType tabType
610 setScores :: forall t. Each t t NgramsElement NgramsElement => t -> m t
612 let ngrams_terms = table ^.. each . ne_ngrams
613 occurrences <- getOccByNgramsOnlyFast' nId
618 setOcc ne = ne & ne_occurrences .~ sumOf (at (ne ^. ne_ngrams) . _Just) occurrences
620 pure $ table & each %~ setOcc
626 -- TODO: find a better place for the code above, All APIs stay here
628 data OrderBy = TermAsc | TermDesc | ScoreAsc | ScoreDesc
629 deriving (Generic, Enum, Bounded, Read, Show)
631 instance FromHttpApiData OrderBy
633 parseUrlPiece "TermAsc" = pure TermAsc
634 parseUrlPiece "TermDesc" = pure TermDesc
635 parseUrlPiece "ScoreAsc" = pure ScoreAsc
636 parseUrlPiece "ScoreDesc" = pure ScoreDesc
637 parseUrlPiece _ = Left "Unexpected value of OrderBy"
640 instance ToParamSchema OrderBy
641 instance FromJSON OrderBy
642 instance ToJSON OrderBy
643 instance ToSchema OrderBy
644 instance Arbitrary OrderBy
646 arbitrary = elements [minBound..maxBound]
648 needsScores :: Maybe OrderBy -> Bool
649 needsScores (Just ScoreAsc) = True
650 needsScores (Just ScoreDesc) = True
651 needsScores _ = False
653 type TableNgramsApiGet = Summary " Table Ngrams API Get"
654 :> QueryParamR "ngramsType" TabType
655 :> QueryParamR "list" ListId
656 :> QueryParamR "limit" Limit
657 :> QueryParam "offset" Offset
658 :> QueryParam "listType" ListType
659 :> QueryParam "minTermSize" MinSize
660 :> QueryParam "maxTermSize" MaxSize
661 :> QueryParam "orderBy" OrderBy
662 :> QueryParam "search" Text
663 :> Get '[JSON] (VersionedWithCount NgramsTable)
665 type TableNgramsApiPut = Summary " Table Ngrams API Change"
666 :> QueryParamR "ngramsType" TabType
667 :> QueryParamR "list" ListId
668 :> ReqBody '[JSON] (Versioned NgramsTablePatch)
669 :> Put '[JSON] (Versioned NgramsTablePatch)
671 type RecomputeScoresNgramsApiGet = Summary " Recompute scores for ngrams table"
672 :> QueryParamR "ngramsType" TabType
673 :> QueryParamR "list" ListId
674 :> "recompute" :> Post '[JSON] Int
676 type TableNgramsApiGetVersion = Summary " Table Ngrams API Get Version"
677 :> QueryParamR "ngramsType" TabType
678 :> QueryParamR "list" ListId
679 :> Get '[JSON] Version
681 type TableNgramsApi = TableNgramsApiGet
682 :<|> TableNgramsApiPut
683 :<|> RecomputeScoresNgramsApiGet
684 :<|> "version" :> TableNgramsApiGetVersion
685 :<|> TableNgramsAsyncApi
687 type TableNgramsAsyncApi = Summary "Table Ngrams Async API"
691 :> AsyncJobs JobLog '[JSON] UpdateTableNgramsCharts JobLog
693 getTableNgramsCorpus :: (RepoCmdM env err m, HasNodeError err, HasConnectionPool env, HasConfig env)
700 -> Maybe MinSize -> Maybe MaxSize
702 -> Maybe Text -- full text search
703 -> m (VersionedWithCount NgramsTable)
704 getTableNgramsCorpus nId tabType listId limit_ offset listType minSize maxSize orderBy mt =
705 getTableNgrams NodeCorpus nId tabType listId limit_ offset listType minSize maxSize orderBy searchQuery
707 searchQuery (NgramsTerm nt) = maybe (const True) isInfixOf mt nt
709 getTableNgramsVersion :: (RepoCmdM env err m, HasNodeError err, HasConnectionPool env, HasConfig env)
714 getTableNgramsVersion _nId _tabType _listId = currentVersion
716 -- Versioned { _v_version = v } <- getTableNgramsCorpus nId tabType listId 100000 Nothing Nothing Nothing Nothing Nothing Nothing
717 -- This line above looks like a waste of computation to finally get only the version.
718 -- See the comment about listNgramsChangedSince.
721 -- | Text search is deactivated for now for ngrams by doc only
722 getTableNgramsDoc :: (RepoCmdM env err m, HasNodeError err, HasConnectionPool env, HasConfig env)
724 -> ListId -> Limit -> Maybe Offset
726 -> Maybe MinSize -> Maybe MaxSize
728 -> Maybe Text -- full text search
729 -> m (VersionedWithCount NgramsTable)
730 getTableNgramsDoc dId tabType listId limit_ offset listType minSize maxSize orderBy _mt = do
731 ns <- selectNodesWithUsername NodeList userMaster
732 let ngramsType = ngramsTypeFromTabType tabType
733 ngs <- selectNgramsByDoc (ns <> [listId]) dId ngramsType
734 let searchQuery (NgramsTerm nt) = flip S.member (S.fromList ngs) nt
735 getTableNgrams NodeDocument dId tabType listId limit_ offset listType minSize maxSize orderBy searchQuery
739 apiNgramsTableCorpus :: ( GargServerC env err m
741 => NodeId -> ServerT TableNgramsApi m
742 apiNgramsTableCorpus cId = getTableNgramsCorpus cId
744 :<|> scoresRecomputeTableNgrams cId
745 :<|> getTableNgramsVersion cId
746 :<|> apiNgramsAsync cId
748 apiNgramsTableDoc :: ( GargServerC env err m
750 => DocId -> ServerT TableNgramsApi m
751 apiNgramsTableDoc dId = getTableNgramsDoc dId
753 :<|> scoresRecomputeTableNgrams dId
754 :<|> getTableNgramsVersion dId
755 :<|> apiNgramsAsync dId
756 -- > index all the corpus accordingly (TODO AD)
758 apiNgramsAsync :: NodeId -> GargServer TableNgramsAsyncApi
759 apiNgramsAsync _dId =
761 JobFunction $ \i log ->
764 printDebug "tableNgramsPostChartsAsync" x
766 in tableNgramsPostChartsAsync i log'
768 -- Did the given list of ngrams changed since the given version?
769 -- The returned value is versioned boolean value, meaning that one always retrieve the
771 -- If the given version is negative then one simply receive the latest version and True.
772 -- Using this function is more precise than simply comparing the latest version number
773 -- with the local version number. Indeed there might be no change to this particular list
774 -- and still the version number has changed because of other lists.
776 -- Here the added value is to make a compromise between precision, computation, and bandwidth:
777 -- * currentVersion: good computation, good bandwidth, bad precision.
778 -- * listNgramsChangedSince: good precision, good bandwidth, bad computation.
779 -- * tableNgramsPull: good precision, good bandwidth (if you use the received data!), bad computation.
780 listNgramsChangedSince :: RepoCmdM env err m
781 => ListId -> TableNgrams.NgramsType -> Version -> m (Versioned Bool)
782 listNgramsChangedSince listId ngramsType version
784 Versioned <$> currentVersion <*> pure True
786 tableNgramsPull listId ngramsType version & mapped . v_data %~ (== mempty)