aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-08-10 13:28:13 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-08-10 13:28:13 +0200
commitd8c3f29f788f6b508818d78d72975cb251ec9ee8 (patch)
tree58d18c261c1f43251de55384a08eb4e3c57d0db2
parentRemove old limiter on execute-query. (diff)
downloadcalp-d8c3f29f788f6b508818d78d72975cb251ec9ee8.tar.gz
calp-d8c3f29f788f6b508818d78d72975cb251ec9ee8.tar.xz
Got new timeslice limiter to work, document.
-rw-r--r--module/output/terminal.scm1
-rw-r--r--module/srfi/srfi-41/util.scm17
-rw-r--r--module/vcomponent/search.scm93
3 files changed, 76 insertions, 35 deletions
diff --git a/module/output/terminal.scm b/module/output/terminal.scm
index 4d12b48d..372f065a 100644
--- a/module/output/terminal.scm
+++ b/module/output/terminal.scm
@@ -293,6 +293,7 @@
)
(define-method (input (this <search-view>) char)
+ ;; TODO update this to match actual page length
(set! (page-length this) 10)
(case char
diff --git a/module/srfi/srfi-41/util.scm b/module/srfi/srfi-41/util.scm
index a6c6dc3d..51671985 100644
--- a/module/srfi/srfi-41/util.scm
+++ b/module/srfi/srfi-41/util.scm
@@ -1,8 +1,10 @@
(define-module (srfi srfi-41 util)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-41)
+ #:use-module ((ice-9 sandbox) :select (call-with-time-limit))
#:use-module (util) ; let*, find-min
- #:export (stream-car+cdr interleave-streams with-streams))
+ #:export (stream-car+cdr interleave-streams with-streams
+ stream-timeslice-limit))
(define (stream-car+cdr stream)
(values (stream-car stream)
@@ -103,20 +105,21 @@
(stream-paginate% stream page-size))
+;; stream cons, but eval arguments beforehand.
(define (eager-stream-cons a b)
(stream-cons a b))
-(use-modules (ice-9 sandbox) )
-(define (stream-timeslice-limit strm)
+;; Wrap a stream in time limits. Each element has at most @var{timeslice}
+;; seconds to produce a value, otherwise the stream ends. Useful for finding the
+;; "final" element matching a predicate in an infinite stream.
+(define-stream (stream-timeslice-limit strm timeslice)
(call-with-time-limit
- 0.1
+ timeslice
(lambda () (eager-stream-cons
(stream-car strm)
- (stream-timeslice-limit (stream-cdr strm))))
+ (stream-timeslice-limit (stream-cdr strm) timeslice)))
(lambda _ stream-null)))
-(export stream-timeslice-limit)
-
;; Evaluates @var{body} in a context where most list fundamentals are
;; replaced by stream alternatives.
;; commented defifinitions are items which could be included, but for
diff --git a/module/vcomponent/search.scm b/module/vcomponent/search.scm
index 74c5a8aa..fab53f79 100644
--- a/module/vcomponent/search.scm
+++ b/module/vcomponent/search.scm
@@ -1,11 +1,38 @@
+;;; Commentary:
+
+;; Procedures for searching in a (possibly) infinite stream. Everything is general,
+;; with the exception of @var{build-query-proc}, which is tailored for searches on
+;; sets on vcomponents.
+
+;; > TODO since most of this module is generic, break it out and only have the
+;; > vcomponent-specific parts here.
+
+;; A search isn't guaranteed to include all available objects, since each object
+;; only has a limited time to get found. This is mostly a problem if the matches
+;; are /really/ far from one another.
+;; NOTE a system of continuations to allow a search to be resumed with a higher
+;; timeout would be cool to have.
+
+;; Currently all searches is assumed to go through prepare-query and the paginator
+;; interface. It shouldn't however be a problem to work with the flat result-set
+;; returned by @var{execute-query} directly.
+
+;; @var{<paginator>} isn't strictly necessary even for paginated queries, since the
+;; evaluation time and pagination is baked into the stream. It is however useful
+;; for keeping track of the number of available pages, and if we have found the
+;; "final" element.
+
+;;; Code:
+
(define-module (vcomponent search)
:use-module (util)
- :use-module (ice-9 sandbox)
:use-module (srfi srfi-1)
:use-module (srfi srfi-9)
:use-module (srfi srfi-41)
:use-module (srfi srfi-41 util)
- )
+ :use-module ((ice-9 sandbox)
+ :select (make-sandbox-module
+ all-pure-bindings)))
;; Takes a string and appends closing parenthese until all parenthese are
@@ -42,34 +69,35 @@
,@all-pure-bindings)
)))
-;; execute a query procedure created by build-query-proc.
-;; (event → bool), int, (optional int) → (list event) throws 'timed-out
-(define* (execute-query query page key: (time-limit 1))
- (call-with-time-limit
- time-limit
- ;; Stream->list needs to be here, since the actual
- ;; stream-force needs to happen within the actual
- ;; @var{call-with-time-limit}.
- (lambda () (stream->list (stream-ref query page)))
- (lambda _ (format (current-error-port) "~a~%" 'timed-out)
- (throw 'timed-out)))
-)
+;; Returns a new stream which is the result of filtering the input set with the
+;; query procedure.
+;; (a → bool), (stream a) → (stream a)
+(define (execute-query query-proc event-set)
+ (stream-timeslice-limit
+ (stream-filter query-proc event-set)
+ ;; .5s, tested on my laptop. .1s sometimes doesn't get to events on
+ ;; 2020-08-10, where the first event is on 1974-12-02.
+ 0.5))
;; Creates a prepared query wrappend in a paginator.
;; (event → bool), (stream event) → <paginator>
(define*-public (prepare-query query-proc event-set optional: (page-size 10))
- (make-paginator (stream-paginate
- (stream-timeslice-limit
- (stream-filter query-proc event-set))
- page-size)))
+ (make-paginator (stream-paginate (execute-query query-proc event-set)
+ page-size)))
(define-record-type <paginator>
(make-paginator% query max-page true-max-page?)
paginator?
(query get-query) ; (paginated-stream event)
(max-page get-max-page set-max-page!) ; int
- (true-max-page? true-max-page? set-true-max-page!))
+ (true-max-page? true-max-page? %set-true-max-page!))
+
+(define (set-true-max-page! paginator)
+ (%set-true-max-page! paginator #t))
+
+(define (unset-true-max-page! paginator)
+ (%set-true-max-page! paginator #f))
(export paginator? get-query get-max-page true-max-page?)
@@ -109,15 +137,24 @@
;; highest known available page.
;; <paginator>, int → (list event) throws ('max-page <int>)
(define-public (get-page paginator page)
- (catch 'timed-out
- (lambda () (let ((result (execute-query (get-query paginator) page)))
- (set-max-page! paginator (max page (get-max-page paginator)))
- (when (> 10 (length result))
- (set-true-max-page! paginator #t))
- result))
- (lambda (err . args)
+ (catch 'wrong-type-arg
+ (lambda () (let ((q (get-query paginator)))
+ (if (stream-null? q)
+ (begin
+ (set-true-max-page! paginator)
+ '())
+ (let ((result (stream->list
+ (stream-ref (get-query paginator) page))))
+ (when (> 10 (length result))
+ (set-true-max-page! paginator))
+
+ (set-max-page! paginator (max page (get-max-page paginator)))
+ result))))
+ (lambda (err proc fmt args data)
+ ;; (format (current-error-port) "~?~%" fmt args)
(set-max-page! paginator (get-max-page paginator))
- (set-true-max-page! paginator #t)
- (throw 'max-page (get-max-page paginator)))))
+ (set-true-max-page! paginator)
+ (throw 'max-page (get-max-page paginator))
+ )))