mirror of
https://github.com/SqrtMinusOne/biome.git
synced 2025-12-10 14:35:13 +03:00
504 lines
19 KiB
EmacsLisp
504 lines
19 KiB
EmacsLisp
;;; biome-query.el --- Query interface for Open Meteo -*- lexical-binding: t -*-
|
|
|
|
;; Copyright (C) 2023 Korytov Pavel
|
|
|
|
;; Maintainer: Korytov Pavel <thexcloud@gmail.com>
|
|
;; Homepage: https://github.com/SqrtMinusOne/biome
|
|
|
|
;; This file is NOT part of GNU Emacs.
|
|
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;; TODO
|
|
|
|
;;; Code:
|
|
(require 'biome-api-data)
|
|
(require 'font-lock)
|
|
(require 'org)
|
|
(require 'compat)
|
|
(require 'transient)
|
|
|
|
(defcustom biome-query-max-fields-in-row 20
|
|
"Maximum number of fields in a row."
|
|
:type 'integer
|
|
:group 'biome)
|
|
|
|
(defconst biome-query-groups '("daily" "hourly" "minutely_15" "hourly")
|
|
"Name of groups.
|
|
|
|
A group is a mutually exclusive choice. E.g. in the \"Weather
|
|
Forecast\" report you can choose between \"daily\" and \"hourly\". In
|
|
principle, the API can return results for both groups, but they would
|
|
have to be displayed separately.")
|
|
|
|
(defconst biome-query--ignore-items '("m" "cm")
|
|
"Items to ignore when generating unique keys.")
|
|
|
|
(defvar biome-query-current nil
|
|
"Current report.
|
|
|
|
It is an alist with the following keys:
|
|
- `:name' - name of the root section.
|
|
- `:group' - name of the group (see `biome-query-groups').
|
|
- `:params' - alist with parameters, where the key is either nil (for
|
|
global parameters) or the value of `:param' key of the corresponding
|
|
section.
|
|
In the former case, the value is an alist with values; in the latter
|
|
case, the value is a list of variable names available in the group.")
|
|
|
|
(defvar biome-query--current-section nil
|
|
"Current section.")
|
|
|
|
(defvar biome-query--layout-cache (make-hash-table :test 'equal)
|
|
"Cache for dynamic transient layout.")
|
|
|
|
(setq biome-query--layout-cache (make-hash-table :test 'equal))
|
|
|
|
;; Transient display classes
|
|
(defclass biome-query--transient-report (transient-suffix)
|
|
((transient :initform t))
|
|
"A transient class to display the current report.")
|
|
|
|
(cl-defmethod transient-init-value ((_ biome-query--transient-report))
|
|
"A dummy method for `biome-query--transient-report'."
|
|
nil)
|
|
|
|
(cl-defmethod transient-format ((_ biome-query--transient-report))
|
|
"Format the current report."
|
|
(prin1-to-string biome-query-current))
|
|
|
|
(transient-define-infix biome-query--transient-report-infix ()
|
|
:class 'biome-query--transient-report
|
|
:key "~~1")
|
|
|
|
(defclass biome-query--transient-path (transient-suffix)
|
|
((transient :initform t))
|
|
"A transient class to display the current path.")
|
|
|
|
(cl-defmethod transient-init-value ((_ biome-query--transient-path))
|
|
"A dummy method for `biome-query--transient-report'."
|
|
nil)
|
|
|
|
(cl-defmethod transient-format ((_ biome-query--transient-path))
|
|
"Format the current path."
|
|
(let* ((scope (oref (or transient--prefix
|
|
transient-current-prefix)
|
|
scope))
|
|
(parents (alist-get :parents scope))
|
|
(section (alist-get :section scope)))
|
|
(concat
|
|
(cl-loop for parent in (reverse parents)
|
|
concat (propertize
|
|
(alist-get :name parent)
|
|
'face 'font-lock-variable-name-face)
|
|
concat " > ")
|
|
(propertize
|
|
(alist-get :name section)
|
|
'face 'transient-heading))))
|
|
|
|
(transient-define-infix biome-query--transient-path-infix ()
|
|
:class 'biome-query--transient-path
|
|
:key "~~1")
|
|
|
|
(defclass biome-query--transient-switch-variable (transient-argument)
|
|
((name :initarg :name)
|
|
(param :initarg :param))
|
|
"A transient class to display a switch.
|
|
|
|
The switch works the following way: if `:param' is non-nil, then the
|
|
value corresponds to NAME being in the list of values in
|
|
`biome-query-current' for `:param'. Cases when `:param' is nil
|
|
shouldn't exist.")
|
|
|
|
(cl-defmethod transient-init-value ((obj biome-query--transient-switch-variable))
|
|
"Initialize the value of the variable switch.
|
|
|
|
OBJ is an instance of `biome-query--transient-switch-variable'."
|
|
(oset obj value
|
|
(not
|
|
(null
|
|
(member
|
|
(oref obj name)
|
|
(if-let ((param (oref obj param)))
|
|
(cdr
|
|
(assoc
|
|
param
|
|
(alist-get :params biome-query-current)))
|
|
(alist-get :params biome-query-current)))))))
|
|
|
|
(defmacro biome-query--update-list (item list-place add)
|
|
"Add or remove ITEM from LIST-PLACE depending on ADD."
|
|
`(setf ,list-place
|
|
(if ,add
|
|
(cons ,item ,list-place)
|
|
(delete ,item ,list-place))))
|
|
|
|
(cl-defmethod transient-infix-read ((obj biome-query--transient-switch-variable))
|
|
"Toggle the variable switch on or off.
|
|
|
|
OBJ is an instance of `biome-query--transient-switch-variable'."
|
|
(setq my/test obj)
|
|
(let ((new-value (not (oref obj value)))
|
|
(param (oref obj param))
|
|
(name (oref obj name)))
|
|
(if param
|
|
(biome-query--update-list
|
|
name (alist-get param (alist-get :params biome-query-current) nil nil #'equal)
|
|
new-value)
|
|
(biome-query--update-list
|
|
name (alist-get :params biome-query-current nil nil #'equal)
|
|
new-value))
|
|
new-value))
|
|
|
|
(cl-defmethod transient-format ((obj biome-query--transient-switch-variable))
|
|
"Return a string generated using OBJ's `format'.
|
|
%k is formatted using `transient-format-key'.
|
|
%d is formatted using `transient-format-description'.
|
|
%v is formatted using `transient-format-value'."
|
|
(concat
|
|
(string-pad (transient-format-key obj) 6)
|
|
(transient-format-description obj)
|
|
(when (oref obj value)
|
|
(propertize " (+)" 'face 'transient-argument))))
|
|
|
|
|
|
(defclass biome-query--transient-date-variable (transient-variable)
|
|
((name :initarg :name)
|
|
(key :initarg :key)
|
|
(reader :initform #'biome-query--transient-date-reader))
|
|
"A transient class to display a date variable.")
|
|
|
|
(defun biome-query--transient-date-reader (prompt _initial-input _history)
|
|
"Read the date with `org-read-date'.
|
|
|
|
PROMPT is a string to prompt with.
|
|
|
|
Returns a UNIX timestamp."
|
|
(time-convert
|
|
(org-read-date nil t nil prompt)
|
|
'integer))
|
|
|
|
(cl-defmethod transient-init-value ((obj biome-query--transient-date-variable))
|
|
"Initialize the value of the variable switch.
|
|
|
|
OBJ is an instance of `biome-query--transient-switch-variable'."
|
|
(oset obj value
|
|
(alist-get (oref obj key)
|
|
(alist-get :params biome-query-current)
|
|
nil nil #'equal)))
|
|
|
|
(cl-defmethod transient-format-value ((obj biome-query--transient-date-variable))
|
|
"Format the value of OBJ."
|
|
(let ((value (if (slot-boundp obj 'value) (slot-value obj 'value) nil)))
|
|
(if value
|
|
(propertize
|
|
(format-time-string
|
|
org-journal-date-format
|
|
(seconds-to-time
|
|
value))
|
|
'face 'transient-value)
|
|
(propertize "unset" 'face 'transient-inactive-value))))
|
|
|
|
(cl-defmethod transient-infix-set ((obj biome-query--transient-date-variable) value)
|
|
"Set the value of OBJ to VALUE.
|
|
|
|
OBJ is an instance of `biome-query--transient-date-variable'."
|
|
(if value
|
|
(setf
|
|
(alist-get (oref obj key) (alist-get :params biome-query-current)
|
|
nil nil #'equal)
|
|
value)
|
|
(setf
|
|
(alist-get :params biome-query-current)
|
|
(delq (assoc (oref obj key) (alist-get :params biome-query-current))
|
|
(alist-get :params biome-query-current))))
|
|
(oset obj value value))
|
|
|
|
;; Layout generation
|
|
|
|
(defun biome-query--cartesian-product (a b)
|
|
"Compute the Cartesian product of A and B."
|
|
(mapcan
|
|
(lambda (item-from-a)
|
|
(mapcar
|
|
(lambda (item-from-b)
|
|
(if (listp item-from-a)
|
|
(append item-from-a (list item-from-b))
|
|
(list item-from-a item-from-b)))
|
|
b))
|
|
a))
|
|
|
|
(iter-defun biome-query--unique-key-cands (name)
|
|
"Generate unique key candidates for NAME."
|
|
(let ((name-low (replace-regexp-in-string (rx (not alnum)) " " (downcase name)))
|
|
(generated-keys (make-hash-table :test 'equal)))
|
|
(let* ((items (seq-filter
|
|
(lambda (i)
|
|
(not (member i biome-query--ignore-items)))
|
|
(split-string name-low)))
|
|
(sequences (mapcar (lambda (item)
|
|
(if (string-match-p (rx num) item)
|
|
(number-sequence 0 (length item) (length item))
|
|
(number-sequence 0 (length item) 1)))
|
|
items)))
|
|
(dolist (item-take (thread-last
|
|
(reverse sequences)
|
|
(reduce #'biome-query--cartesian-product)
|
|
(mapcar (lambda (it) (if (listp it) (nreverse it) (list it))))
|
|
(seq-sort-by
|
|
(lambda (it)
|
|
;; TODO better weight function
|
|
(cl-loop for take in it
|
|
for seq in sequences
|
|
if (= 2 (length seq)) sum 1
|
|
else sum take))
|
|
#'<)))
|
|
(let ((val (cl-loop for i from 0
|
|
for item in items
|
|
for take = (nth i item-take)
|
|
concat (seq-take item take))))
|
|
(unless (or (gethash val generated-keys)
|
|
(string-empty-p val)
|
|
(string-match-p (rx bos (+ num) eos) val))
|
|
(puthash val t generated-keys)
|
|
(iter-yield val)))))))
|
|
|
|
(defun biome-query--unique-keys (names &optional exclude)
|
|
"Get unique keys for NAMES.
|
|
|
|
NAMES is a list of strings. EXCLUDE is a list of strings to
|
|
exclude from the result."
|
|
(let ((keys-by-name (make-hash-table :test 'equal))
|
|
(names-by-key (make-hash-table :test 'equal))
|
|
(iters (make-hash-table :test 'equal)))
|
|
(cl-loop for name in names
|
|
do (puthash name (biome-query--unique-key-cands name) iters))
|
|
(while-let ((names-to-update
|
|
(append
|
|
;; Unset forbidden keys
|
|
(cl-loop for name in names
|
|
for key = (gethash name keys-by-name)
|
|
if (or (null key) (and
|
|
exclude key
|
|
(seq-some
|
|
(lambda (ex) (string-prefix-p ex key))
|
|
exclude)))
|
|
collect name)
|
|
;; Duplicate keys
|
|
(cl-loop for key being the hash-key of names-by-key
|
|
using (hash-values names)
|
|
if (< 1 (length names))
|
|
collect (car (seq-sort-by #'length #'> names)))
|
|
;; Duplicate subkeys
|
|
(cl-loop for key being the hash-key of names-by-key
|
|
append (cl-loop
|
|
for i from 1 to (1- (length key))
|
|
for subkey = (seq-take key i)
|
|
for dupe-names = (gethash subkey names-by-key)
|
|
when dupe-names append dupe-names)))))
|
|
(cl-loop
|
|
for name in names-to-update
|
|
for old-key = (gethash name keys-by-name)
|
|
for key = (iter-next (gethash name iters))
|
|
if old-key do (puthash old-key (remove name (gethash old-key names-by-key)) names-by-key)
|
|
do (puthash key (cons name (gethash key names-by-key)) names-by-key)
|
|
do (puthash name key keys-by-name)))
|
|
keys-by-name))
|
|
|
|
(defun biome-query--section-fields-children (fields keys parents cache-key)
|
|
"Get transient laoyut for FIELDS.
|
|
|
|
FIELDS is a list of fields as defined in `biome-api-parse--page'.
|
|
KEYS is the result of `biome-query--unique-keys'. PARENTS is a list
|
|
of parent sections. CACHE-KEY is the string that uniquely identifies
|
|
the position of the current section in the `biome-api-data' tree."
|
|
(when fields
|
|
(let ((param (seq-some (lambda (s) (alist-get :param s)) parents))
|
|
(infix-name (concat "biome-query--transient-" cache-key "-")))
|
|
(cl-loop
|
|
for field in fields
|
|
for field-api-key = (car field)
|
|
for name = (alist-get :name (cdr field))
|
|
for key = (gethash name keys)
|
|
for type = (alist-get :type (cdr field))
|
|
for infix-symbol = (intern (concat infix-name field-api-key))
|
|
do (eval (pcase type
|
|
('checkbox
|
|
`(transient-define-infix ,infix-symbol ()
|
|
:class 'biome-query--transient-switch-variable
|
|
:key ,key
|
|
:description ,name
|
|
:argument ,name
|
|
:name ,name
|
|
:param ,param))
|
|
('date
|
|
`(transient-define-infix ,infix-symbol ()
|
|
:class 'biome-query--transient-date-variable
|
|
:key ,key
|
|
:description ,name
|
|
:prompt ,name))
|
|
(_
|
|
`(transient-define-infix ,infix-symbol ()
|
|
:key ,key
|
|
:description ,name
|
|
:argument ,name)))))
|
|
`(["Fields"
|
|
:class transient-columns
|
|
,@(thread-last
|
|
fields
|
|
(seq-map-indexed
|
|
(lambda (field idx) (cons field (/ idx biome-query-max-fields-in-row))))
|
|
(seq-group-by #'cdr)
|
|
(mapcar
|
|
(lambda (group)
|
|
(apply
|
|
#'vector
|
|
(mapcar
|
|
(lambda (el)
|
|
(let* ((field-api-key (caar el)))
|
|
(list (intern (concat infix-name field-api-key)))))
|
|
(cdr group))))))]))))
|
|
|
|
(defun biome-query--section-sections-children (sections keys parents)
|
|
"Get transient layout for SECTIONS.
|
|
|
|
SECTIONS is a list of sections as defined in `biome-api-parse--page'.
|
|
KEYS is the result of `biome-query--unique-keys'. PARENTS is a
|
|
list of parent sections."
|
|
(when sections
|
|
`(["Sections"
|
|
:class transient-row
|
|
,@(mapcar
|
|
(lambda (section)
|
|
`(,(gethash (alist-get :name section) keys)
|
|
,(alist-get :name section)
|
|
(lambda ()
|
|
(interactive)
|
|
(biome-query--section ',section ',parents))
|
|
:transient transient--do-replace))
|
|
sections)])))
|
|
|
|
(defmacro biome-query--with-layout-cache (cache-key &rest body)
|
|
"Cache layout for CACHE-KEY.
|
|
|
|
BODY is the body of the macro."
|
|
(declare (indent 1))
|
|
`(let ((layout (gethash ,cache-key biome-query--layout-cache)))
|
|
(if layout
|
|
layout
|
|
(let* ((cache-key ,cache-key)
|
|
(layout (progn ,@body)))
|
|
(puthash ,cache-key layout biome-query--layout-cache)
|
|
layout))))
|
|
|
|
(defun biome-query--section-layout (section parents)
|
|
"Get transient layout for SECTION.
|
|
|
|
SECTION is a form as defined by `biome-api-parse--page'. PARENTS
|
|
is a list of parent sections."
|
|
(biome-query--with-layout-cache
|
|
(string-join
|
|
(mapcar
|
|
(lambda (s) (string-replace " " "-" s))
|
|
(cons
|
|
(alist-get :name section)
|
|
(mapcar (lambda (s) (alist-get :name s)) parents)))
|
|
"-")
|
|
(let* ((sections (or (alist-get :children section)
|
|
(alist-get :sections section)))
|
|
(fields (alist-get :fields section))
|
|
(keys (biome-query--unique-keys
|
|
(append
|
|
(mapcar (lambda (s) (alist-get :name s)) sections)
|
|
(mapcar (lambda (s) (alist-get :name (cdr s))) fields))
|
|
'("q")))
|
|
(parents (cons section parents)))
|
|
(append
|
|
(biome-query--section-fields-children fields keys parents cache-key)
|
|
(biome-query--section-sections-children sections keys parents)))))
|
|
|
|
(defun biome-query--transient-prepare-layout (name suffixes)
|
|
"Prepare dynamic transient layout for NAME.
|
|
|
|
SUFFIXES is a list of suffix definitions."
|
|
(thread-last
|
|
suffixes
|
|
(cl-mapcan (lambda (s) (transient--parse-child 'tsc-dynamic-layout s)))
|
|
(mapcar #'eval)
|
|
(put name 'transient--layout)))
|
|
|
|
(defun biome-query--section-groups (section)
|
|
"Get list of groups for SECTION, e.g. hourly, daily, etc."
|
|
(cl-loop for child in (alist-get :sections section)
|
|
for group = (alist-get :param child)
|
|
when (and group (member group biome-query-groups))
|
|
collect group))
|
|
|
|
(defun biome-query--reset-report ()
|
|
(interactive)
|
|
(setq biome-query-current
|
|
(copy-tree
|
|
`((:name . ,(alist-get :name biome-query--current-section))
|
|
(:group . ,(car (biome-query--section-groups biome-query--current-section)))
|
|
(:params . nil)))))
|
|
|
|
(transient-define-prefix biome-query--section (section &optional parents)
|
|
"Render transient for SECTION.
|
|
|
|
SECTION is a form as defined in `biome-api-parse--page'."
|
|
(interactive (list nil))
|
|
(unwind-protect
|
|
(progn
|
|
(biome-query--prepare-layout
|
|
'biome-query--section
|
|
(append
|
|
'([(biome-query--transient-path-infix)])
|
|
'([(biome-query--transient-report-infix)])
|
|
(biome-query--section-layout section parents)
|
|
`(["Actions"
|
|
:class transient-row
|
|
("q" "Up" transient-quit-one)
|
|
("Q" "Quit" transient-quit-all)
|
|
,(unless parents
|
|
'("r" "Reset" biome-query--reset-report :transient t))])))
|
|
(transient-setup 'biome-query--section nil nil :scope
|
|
`((:section . ,section)
|
|
(:parents . ,parents))))
|
|
(put 'biome-query-section 'transient--layout nil)))
|
|
|
|
(transient-define-prefix biome-query ()
|
|
["Open Meteo Data"
|
|
:setup-children
|
|
(lambda (_)
|
|
(cl-loop for (name . params) in biome-api-data
|
|
collect (transient-parse-suffix
|
|
transient--prefix
|
|
`(,(alist-get :key params)
|
|
,name
|
|
(lambda () (interactive)
|
|
(setq biome-query--current-section ',params)
|
|
(when (and biome-query-current
|
|
(not (equal ,name (alist-get :name biome-query-current))))
|
|
(setq biome-query-current nil))
|
|
(unless biome-query-current
|
|
(biome-query--reset-report))
|
|
(biome-query--section ',params))
|
|
:transient transient--do-replace))))]
|
|
["Actions"
|
|
("q" "Quit" transient-quit-one)])
|
|
|
|
(provide 'biome-query)
|
|
;;; biome-query.el ends here
|