mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
106 lines
3.1 KiB
EmacsLisp
106 lines
3.1 KiB
EmacsLisp
;;; doom-version-parser.el --- A version parser for doom-modeline -*- lexical-binding: t -*-
|
|
|
|
;; Copyright (C) 2019 Justin Barclay, Vincent Zhang
|
|
|
|
;; 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 2, 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; see the file COPYING. If not, write to
|
|
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
;; Floor, Boston, MA 02110-1301, USA.
|
|
;;
|
|
;;; Commentary:
|
|
;;
|
|
;; Parse programming environment version.
|
|
;;
|
|
|
|
;;; Code:
|
|
|
|
(require 'subr-x)
|
|
|
|
(defun doom-version-parser--ruby (line)
|
|
"Parse Ruby version from LINE."
|
|
(car (split-string
|
|
(cadr
|
|
(split-string line))
|
|
"p")))
|
|
|
|
(defun doom-version-parser--elixir (line)
|
|
"Parse Elixir version from LINE."
|
|
(cadr
|
|
(split-string line)))
|
|
|
|
(defun doom-version-parser--rustc (line)
|
|
"Parse Rust version from LINE."
|
|
(car
|
|
(split-string
|
|
(cadr
|
|
(split-string line))
|
|
"-")))
|
|
|
|
(defun doom-version-parser--go (line)
|
|
"Parse Go version from LINE."
|
|
(cadr
|
|
(split-string
|
|
(cadr
|
|
(cdr
|
|
(split-string
|
|
line)))
|
|
"go")))
|
|
|
|
(defun doom-version-parser--perl (line)
|
|
"Parse Perl version from LINE."
|
|
(cadr
|
|
(split-string
|
|
(car
|
|
(split-string
|
|
(cadr
|
|
(split-string line "("))
|
|
")"))
|
|
"v")))
|
|
|
|
(defun doom-version-parser--python (line)
|
|
"Parse Python version from LINE."
|
|
(cadr
|
|
(split-string line)))
|
|
|
|
(defun doom-version-parser--get (prog args callback)
|
|
"Start a sub process using PROG and apply the ARGS to the sub process.
|
|
Once it recieves information from STDOUT, it closes off the subprocess and
|
|
passes on the information into the CALLBACK.
|
|
Example:
|
|
(doom-version-parser--get
|
|
\"ruby\"
|
|
'(\"version\")
|
|
(lambda (line)
|
|
(message (doom-modeline-parser--ruby line)))"
|
|
(let ((proc (apply 'start-process
|
|
(append ;; Flaten process-args into a single list so we can handle variadic length args
|
|
(list "doom-modeline-prog" "doom-modeline-prog" prog)
|
|
args)))
|
|
(parser callback))
|
|
(set-process-filter
|
|
proc
|
|
(lambda (proc1 line)
|
|
(defvar old-buffer-query-functions kill-buffer-query-functions) ;; Store old query function
|
|
(setq kill-buffer-query-functions nil) ;; No need to query user when we kill this buffer and process
|
|
(kill-process proc1) ;; Clean up after ourselves
|
|
(kill-buffer "doom-modeline-prog")
|
|
(setq kill-buffer-query-functions old-buffer-query-functions) ;; let's restore everthing
|
|
(funcall parser line)))
|
|
nil))
|
|
|
|
(provide 'doom-version-parser)
|
|
|
|
;;; doom-version-parser.el ends here
|