2020-09-06 11:32:08 +02:00
|
|
|
;; tinmop: an humble gemini and pleroma client
|
2020-05-08 15:45:43 +02:00
|
|
|
;; Copyright (C) 2020 cage
|
|
|
|
|
|
|
|
;; 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(in-package :stack)
|
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defclass stack ()
|
|
|
|
((container
|
|
|
|
:initform ()
|
|
|
|
:initarg :container
|
|
|
|
:accessor container)
|
|
|
|
(test-fn
|
|
|
|
:initform #'eq
|
|
|
|
:initarg :test-fn
|
|
|
|
:accessor test-fn)
|
|
|
|
(key-fn
|
|
|
|
:initform #'identity
|
|
|
|
:initarg :key-fn
|
|
|
|
:accessor key-fn)))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defmethod print-object ((object stack) stream)
|
|
|
|
(print-unreadable-object (object stream :type t :identity nil)
|
2020-06-22 13:58:04 +02:00
|
|
|
(format stream "~s" (container object))))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defgeneric stack-push (object val))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defgeneric stack-pop (object))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defgeneric stack-remove (object val))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defgeneric stack-find (object val))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defgeneric stack-position (object val))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-05-09 21:58:12 +02:00
|
|
|
(defgeneric stack-raise-to-top (object val))
|
|
|
|
|
|
|
|
(defgeneric stack-empty-p (object))
|
|
|
|
|
|
|
|
(defmethod stack-push ((object stack) val)
|
|
|
|
(with-accessors ((container container)) object
|
|
|
|
(setf container (push val container))
|
|
|
|
object))
|
|
|
|
|
|
|
|
(defmethod stack-pop ((object stack))
|
|
|
|
(with-accessors ((container container)) object
|
|
|
|
(if (not (stack-empty-p object))
|
|
|
|
(prog1
|
2020-06-22 13:58:04 +02:00
|
|
|
(alexandria:first-elt container)
|
|
|
|
(setf container (misc:safe-delete@ container 0)))
|
2020-05-09 21:58:12 +02:00
|
|
|
nil)))
|
|
|
|
|
|
|
|
(defmethod stack-find ((object stack) val)
|
|
|
|
(with-accessors ((container container)
|
|
|
|
(key-fn key-fn)
|
|
|
|
(test-fn test-fn)) object
|
|
|
|
(find val container :key key-fn :test test-fn)))
|
|
|
|
|
|
|
|
(defmethod stack-position ((object stack) val)
|
|
|
|
(with-accessors ((container container)
|
|
|
|
(key-fn key-fn)
|
|
|
|
(test-fn test-fn)) object
|
|
|
|
(position val container :key key-fn :test test-fn)))
|
|
|
|
|
|
|
|
(defmethod stack-empty-p ((object stack))
|
|
|
|
(not (> (length (container object))
|
|
|
|
0)))
|
|
|
|
|
|
|
|
(defmethod stack-raise-to-top ((object stack) val)
|
|
|
|
(with-accessors ((container container)) object
|
2020-09-19 19:13:45 +02:00
|
|
|
(stack-remove object val)
|
|
|
|
(stack-push object val)))
|
2020-05-09 21:58:12 +02:00
|
|
|
|
|
|
|
(defmethod stack-remove ((object stack) val)
|
|
|
|
(with-accessors ((container container)) object
|
|
|
|
(when-let ((val-position (stack-position object val)))
|
|
|
|
(setf container (misc:safe-delete@ container val-position)))
|
|
|
|
object))
|
|
|
|
|
|
|
|
(defmacro do-stack-element ((element stack) &body body)
|
|
|
|
`(loop for ,element in (reverse (container ,stack)) do
|
|
|
|
,@body))
|