all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: the next volume of Berserk
Date: Sat, 04 Sep 2021 07:44:20 +0200	[thread overview]
Message-ID: <87eea428uj.fsf@zoho.eu> (raw)
In-Reply-To: 87sfylhtx0.fsf@zoho.eu

I wrote a better version - I think - by getting away with the
string match stuff (almost) and instead unified the retrieval
from the ISBN-13 string ... keep it real.

;;; -*- lexical-binding: t -*-
;;;
;;; this file:
;;;   https://dataswamp.org/~incal/emacs-init/bibtex/bibtex-next-volume.el
;;;
;;; uses:
;;;   https://dataswamp.org/~incal/emacs-init/bibtex-incal.el
;;;   https://dataswamp.org/~incal/emacs-init/isbn-verify.el
;;;
;;; To test, uncomment the below entry (named "berserk-23"),
;;; move point above it, and do
;;;
;;;   M-x next-book RET RET RET RET RET RET
;;;
;;; @book{berserk-23,
;;;   author     = {Kentaro Miura},
;;;   isbn       = {978-1-59307-864-5},
;;;   publisher  = {Dark Horse},
;;;   title      = {Berserk 23},
;;;   year       = {2008}
;;; }
;;;
;;; This will insert the following entry, which indeed is the
;;; next book in the series:
;;;
;;; @book{berserk-24,
;;;   author     = {Kentaro Miura},
;;;   isbn       = {978-1-59307-865-2},
;;;   publisher  = {Dark Horse},
;;;   title      = {Berserk 24},
;;;   year       = {2008}
;;; }

(require 'cl-lib)
(require 'bibtex)
(require 'bibtex-incal)
(require 'isbn-verify)

(defun title-next (title)
  (when (string-match "\\(.+\\) \\([[:digit:]]+\\)" title)
    (let*((name     (match-string 1 title))
          (vol      (match-string 2 title))
          (vol-next (read-number "Volume: " (1+ (string-to-number vol)))) )
      (format "%s %s" name vol-next) )))
;; (title-next "Berserk 23") ; Berserk 24

(defun isbn-13-bibtex-entry-get-isbn ()
  (let ((isbn-13 (bibtex-autokey-get-field "isbn-13")))
    (if (not (string= isbn-13 ""))
        isbn-13
      (let ((isbn (bibtex-autokey-get-field "isbn")))
        (unless (string= isbn "")
          isbn) ))))

(defun isbn-13-field (isbn field &optional field-stop)
  (let*((beg  (1- field))
        (end  (or field-stop field))
        (sep  "-")
        (subl (cl-subseq (split-string isbn sep) beg end)) )
    (if (= 1 (length subl))
        (string-to-number (car subl))
      (string-join subl sep) )))
;; (isbn-13-field "978-1-59307-864-5" 1)   ; 978
;; (isbn-13-field "978-1-59307-864-5" 1 4) ; 978-1-59307-864

(defun isbn-13-publisher (isbn)
  (let ((publisher (isbn-13-field isbn 3)))
    (read-number "Publisher: " publisher) ))
;; (isbn-13-publisher "978-1-59307-864-5") ; 59307

(defun isbn-13-publication-next (isbn)
  (let*((publication      (isbn-13-field isbn 4))
        (publication-next (1+ publication)) )
    (read-number "Publication: " publication-next) ))
;; (isbn-13-publication-next "978-1-59307-864-5") ; 865

(defun isbn-13-next (isbn)
  (let*((but-last    (format "%s-%s-%s" (isbn-13-field isbn 1 2)
                                        (isbn-13-publisher isbn)
                                        (isbn-13-publication-next isbn) ))
        (check-digit (read-number "Check digit: " (isbn-verify but-last))) )
    (format "%s-%s" but-last check-digit) ))
;; (isbn-13-next "978-1-59307-864-5") ; 978-1-59307-865-2

(defun new-book-next ()
  (interactive)
  (let ((beg (point)))
    (when (bibtex-next-entry)
      (let ((author    (bibtex-autokey-get-field "author"))
            (isbn      (isbn-13-bibtex-entry-get-isbn))
            (publisher (bibtex-autokey-get-field "publisher"))
            (title     (bibtex-autokey-get-field "title"))
            (year      (string-to-number
                        (bibtex-autokey-get-field "year") )))
        (unless (and author isbn publisher title year)
          (error "Incomplete Bibtex entry") )
        (let*((isbn-new  (isbn-13-next isbn))
              (title-new (title-next title))
              (year-new  (read-number "Year: " year)) )
          (goto-char beg)
          (create-book author isbn-new publisher title-new year-new)
          (bibtex-insert-autokey-check-isbn)
          (goto-char beg) )))))
(defalias 'next-book #'new-book-next)

-- 
underground experts united
https://dataswamp.org/~incal




      reply	other threads:[~2021-09-04  5:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-04  4:00 the next volume of Berserk Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-04  5:44 ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87eea428uj.fsf@zoho.eu \
    --to=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.