-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#45] Add async worker for synchronizing database #132
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,23 +4,38 @@ data and insert it into the database. | |
-} | ||
|
||
module IW.Sync.Update | ||
( syncRepos | ||
( syncCache | ||
) where | ||
|
||
import Control.Monad.IO.Unlift (MonadUnliftIO) | ||
import UnliftIO.Async (mapConcurrently_) | ||
import UnliftIO.Async (async, mapConcurrently_, wait) | ||
|
||
import IW.App (WithError) | ||
import IW.App (AppErrorType, WithError, catchError) | ||
import IW.Core.Repo (Repo (..)) | ||
import IW.Db (WithDb, upsertRepos, updateRepoCategories) | ||
import IW.Db (WithDb, upsertRepos, updateRepoCategories, upsertIssues) | ||
import IW.Effects.Cabal (MonadCabal (..), getCabalCategories) | ||
import IW.Sync.Search (searchAllHaskellRepos) | ||
import IW.Sync.Search (searchAllHaskellRepos, searchAllHaskellIssues) | ||
import IW.Time (getToday) | ||
|
||
|
||
-- | This function fetches all repos from the GitHub API, downloads their @.cabal@ files, | ||
-- and upserts them into the database. | ||
syncRepos | ||
-- | Loop for keeping the database up to date with the latest GitHub data. | ||
syncCache | ||
:: forall env m. | ||
( MonadCabal m | ||
, MonadUnliftIO m | ||
, WithDb env m | ||
, WithLog env m | ||
, WithError m | ||
) | ||
=> Integer | ||
-> m () | ||
syncCache interval = forever $ syncWithGithub interval `catchError` syncErrHandler | ||
where | ||
syncErrHandler :: AppErrorType -> m a | ||
syncErrHandler = undefined | ||
|
||
-- | This function synchronizes the database with the latest GitHub data. | ||
syncWithGithub | ||
:: forall env m. | ||
( MonadCabal m | ||
, MonadUnliftIO m | ||
|
@@ -30,13 +45,22 @@ syncRepos | |
) | ||
=> Integer -- ^ The starting date interval used in the search function | ||
-> m () | ||
syncRepos interval = do | ||
syncWithGithub interval = do | ||
log I "Starting synchronization of all repositories and issues..." | ||
today <- liftIO getToday | ||
log I "Searching for all Haskell repositories..." | ||
repos <- searchAllHaskellRepos today interval | ||
log I "Upserting repositories into the database..." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Logging is very useful in this function! And we definitely should have it. It's just unfortunate that because of calls to logging functions the code becomes less readable and all steps are not apparent immediately... It's an open question, how to improve the situation though. But at least, these logging messages serve as a good documentation There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @chshersh Yes, I agree. I thought the same, but I think it’s definitely worth it. This was my first time using any logging library in Haskell, but I really enjoyed how easy and straightforward it is to use. Very user friendly. |
||
upsertRepos repos | ||
mapConcurrently_ syncCategories repos | ||
populateCategoriesAsync <- async $ mapConcurrently_ syncCategories repos | ||
log I "Searching for all Haskell issues..." | ||
issues <- searchAllHaskellIssues today interval | ||
log I "Upserting issues into the database..." | ||
upsertIssues issues | ||
wait populateCategoriesAsync | ||
log I "All repositories and issues successfully synchronized" | ||
|
||
-- | This function takes a @Repo@ and attempts to download its @.cabal@ file. | ||
-- | This function takes a @Repo@ and updates its category field in the database. | ||
syncCategories | ||
:: forall env m. | ||
( MonadCabal m | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chshersh @vrom911 Okay so once I implement this handler I think this PR is done. How should we handle the errors? We don't want it to stop syncing if an error is encountered, so do I have to think of some way to resume the sync process from where the error was thrown? Or is it simpler than that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will think about the problem 🤔