mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-04 06:53:12 +00:00
* chore: add retention policy with GB or MB limitation #1885 * chore: add retention policy with GB or MB limitation * chore: updated code post review- retention policy * ci: extract discordNotify to separate file Signed-off-by: Jakub Sokołowski <jakub@status.im> * ci: push images to new wakuorg/nwaku repo Signed-off-by: Jakub Sokołowski <jakub@status.im> * ci: enforce default Docker image tags strictly Signed-off-by: Jakub Sokołowski <jakub@status.im> * ci: push GIT_REF if it looks like a version Signed-off-by: Jakub Sokołowski <jakub@status.im> * fix: update wakuv2 fleet DNS discovery enrtree https://github.com/status-im/infra-misc/issues/171 * chore: resolving DNS IP and publishing it when no extIp is provided (#2030) * feat(coverage): Add simple coverage (#2067) * Add test aggregator to all directories. * Implement coverage script. * fix(ci): fix name of discord notify method Also use absolute path to load Groovy script. Signed-off-by: Jakub Sokołowski <jakub@status.im> * chore(networkmonitor): refactor setConnectedPeersMetrics, make it partially concurrent, add version (#2080) * chore(networkmonitor): refactor setConnectedPeersMetrics, make it partially concurrent, add version * add more metrics, refactor how most metrics are calculated * rework metrics table fillup * reset connErr to make sure we honour successful reconnection * chore(cbindings): Adding cpp example that integrates the 'libwaku' (#2079) * Adding cpp example that integrates the `libwaku` --------- Co-authored-by: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com> * fix(ci): update the dependency list in pre-release WF (#2088) * chore: adding NetConfig test suite (#2091) --------- Signed-off-by: Jakub Sokołowski <jakub@status.im> Co-authored-by: Jakub Sokołowski <jakub@status.im> Co-authored-by: Anton Iakimov <yakimant@gmail.com> Co-authored-by: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Co-authored-by: Álex Cabeza Romero <alex93cabeza@gmail.com> Co-authored-by: Vaclav Pavlin <vaclav@status.im> Co-authored-by: Ivan Folgueira Bande <128452529+Ivansete-status@users.noreply.github.com> Co-authored-by: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com>
73 lines
2.7 KiB
Nim
73 lines
2.7 KiB
Nim
when (NimMajor, NimMinor) < (1, 4):
|
|
{.push raises: [Defect].}
|
|
else:
|
|
{.push raises: [].}
|
|
|
|
import
|
|
std/options,
|
|
stew/results,
|
|
chronos
|
|
import
|
|
../waku_core,
|
|
./common
|
|
|
|
const DefaultPageSize*: uint = 25
|
|
|
|
type
|
|
ArchiveDriverResult*[T] = Result[T, string]
|
|
ArchiveDriver* = ref object of RootObj
|
|
OnErrHandler* = proc(errMsg: string) {.gcsafe, closure.}
|
|
|
|
type ArchiveRow* = (PubsubTopic, WakuMessage, seq[byte], Timestamp)
|
|
|
|
# ArchiveDriver interface
|
|
|
|
method put*(driver: ArchiveDriver,
|
|
pubsubTopic: PubsubTopic,
|
|
message: WakuMessage,
|
|
digest: MessageDigest,
|
|
receivedTime: Timestamp):
|
|
Future[ArchiveDriverResult[void]] {.base, async.} = discard
|
|
|
|
method getAllMessages*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[seq[ArchiveRow]]] {.base, async.} = discard
|
|
|
|
method getMessages*(driver: ArchiveDriver,
|
|
contentTopic: seq[ContentTopic] = @[],
|
|
pubsubTopic = none(PubsubTopic),
|
|
cursor = none(ArchiveCursor),
|
|
startTime = none(Timestamp),
|
|
endTime = none(Timestamp),
|
|
maxPageSize = DefaultPageSize,
|
|
ascendingOrder = true):
|
|
Future[ArchiveDriverResult[seq[ArchiveRow]]] {.base, async.} = discard
|
|
|
|
method getMessagesCount*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[int64]] {.base, async.} = discard
|
|
|
|
method getPagesCount*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[int64]] {.base, async.} = discard
|
|
|
|
method getPagesSize*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[int64]] {.base, async.} = discard
|
|
|
|
method performsVacuum*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[void]] {.base, async.} = discard
|
|
|
|
method getOldestMessageTimestamp*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[Timestamp]] {.base, async.} = discard
|
|
|
|
method getNewestMessageTimestamp*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[Timestamp]] {.base, async.} = discard
|
|
|
|
method deleteMessagesOlderThanTimestamp*(driver: ArchiveDriver,
|
|
ts: Timestamp):
|
|
Future[ArchiveDriverResult[void]] {.base, async.} = discard
|
|
|
|
method deleteOldestMessagesNotWithinLimit*(driver: ArchiveDriver,
|
|
limit: int):
|
|
Future[ArchiveDriverResult[void]] {.base, async.} = discard
|
|
|
|
method close*(driver: ArchiveDriver):
|
|
Future[ArchiveDriverResult[void]] {.base, async.} = discard
|