/usr/share/uim/uim-module-manager.scm is in uim-data 1:1.8.6+gh20180114.64e3173-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | ;;; uim-module-manager.scm: Part of uim-module-manager, it's not a part of libuim.
;;;
;;; Copyright (c) 2005-2013 uim Project https://github.com/uim/uim
;;;
;;; All rights reserved.
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
;;; are met:
;;; 1. Redistributions of source code must retain the above copyright
;;; notice, this list of conditions and the following disclaimer.
;;; 2. Redistributions in binary form must reproduce the above copyright
;;; notice, this list of conditions and the following disclaimer in the
;;; documentation and/or other materials provided with the distribution.
;;; 3. Neither the name of authors nor the names of its contributors
;;; may be used to endorse or promote products derived from this software
;;; without specific prior written permission.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
;;; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
;;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
;;; OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
;;; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
;;; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
;;; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
;;; SUCH DAMAGE.
;;;;
(require "util.scm")
(require "im.scm")
(require "lazy-load.scm")
(define stub-im-list '()) ;; dummy
(define prepare-installed-im-list
(lambda ()
(let ((orig-enabled-im-list enabled-im-list)
(orig-require require))
(set! enabled-im-list ()) ;; enable all IMs
(set! im-list ()) ;; reset im-list
;; XXX temporary solution to register all IM in a file
(set! require
(lambda (file)
(let* ((loaded-sym (string->symbol
(string-append "*" file "-loaded*")))
(reloaded-sym (string->symbol
(string-append "*" file "-reloaded*"))))
(cond
((symbol-bound? reloaded-sym)
loaded-sym)
((try-load file)
(eval (list 'define loaded-sym #t)
(interaction-environment))
(eval (list 'define reloaded-sym #t)
(interaction-environment))
loaded-sym)
(else
#f)))))
(for-each require-module installed-im-module-list)
(set! require orig-require)
(set! enabled-im-list orig-enabled-im-list)
(reverse (delete 'direct (map im-name im-list))))))
(define add-modules-to-module-list
(lambda (modules current-module-list)
(append
(filter
(lambda (module)
;; Test if the module is valid
(if (require-module (symbol->string module))
#t
(begin (display (string-append "Warning: Module "
(symbol->string module)
" is not a correct module.\n"))
#f)))
(remove
(lambda (module)
(if (memq module current-module-list)
(begin (display (string-append "Warning: Module "
(symbol->string module)
" is already registered\n"))
#t)
#f))
modules))
current-module-list)))
(define remove-modules-from-module-list
(lambda (removing-modules current-module-list)
(remove
(lambda (module)
(if (memq module removing-modules)
#t
#f))
current-module-list)))
;; This function is called with 'uim-module-manager --register'
(define register-modules
(lambda (module-names)
(let* ((modules (map string->symbol module-names))
(current-module-list (map string->symbol installed-im-module-list))
(revised-module-list (add-modules-to-module-list modules
current-module-list)))
(update-all-files revised-module-list))))
;; This function is called with 'uim-module-manager --unregister'
(define unregister-modules
(lambda (module-names)
(let* ((modules (map string->symbol module-names))
(current-module-list (map string->symbol installed-im-module-list))
(revised-module-list (remove-modules-from-module-list
modules
current-module-list)))
(update-all-files revised-module-list))))
(define unregister-all-modules
(lambda (dummy)
(update-all-files '())))
(define update-all-files
(lambda (module-list)
(update-installed-modules-scm module-list)
(update-loader-scm module-list)))
(define update-loader-scm
(lambda (module-list)
(set! installed-im-module-list (map symbol->string module-list))
(write-loader.scm
(string-append
"(define stub-im-rec-spec\n"
" '((name #f)\n"
" (lang \"\")\n"
" (encoding \"\")\n"
" (name-label \"\")\n"
" (short-desc \"\")\n"
" (module-name \"\")))\n"
"(define-record 'stub-im stub-im-rec-spec)\n\n"
"(define stub-im-list\n"
" '(\n"
(string-join (stub-im-generate-all-stub-im-list) "\n")
" ))\n\n"
"(for-each (lambda (stub)\n"
" (if (memq (stub-im-name stub) enabled-im-list)\n"
" (if enable-lazy-loading?\n"
" (apply register-stub-im stub)\n"
" (require-module (stub-im-module-name stub)))))\n"
" stub-im-list)\n"
))))
(define update-installed-modules-scm
(lambda (module-list)
(set! installed-im-module-list (map symbol->string module-list))
(try-require "custom.scm")
(set! installed-im-list (prepare-installed-im-list))
(write-installed-modules.scm
(string-append
";; The described order of input methods affects which IM is preferred\n"
";; at the default IM selection process for each locale. i.e. list\n"
";; preferable IM first for each language\n"
"(define installed-im-module-list "
(custom-list-as-literal installed-im-module-list)
")\n"
"(define installed-im-list "
(custom-list-as-literal installed-im-list)
")\n"
"(define enabled-im-list installed-im-list)\n"))))
(prealloc-heaps-for-heavy-job)
(verbose 1)
|