[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
gds.el 0.1.1
From: |
Mathias Dahl |
Subject: |
gds.el 0.1.1 |
Date: |
Wed, 08 Feb 2006 21:18:52 +0100 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (windows-nt) |
It was easy to add `gds-dired', so I did. Snatched pieces of code from
`w32-find-dired.el'. Seems to work OK.
/Mathias
;;; gds.el --- Emacs interface to Google Desktop Search
;;
;; Copyright (C) 2006 Mathias Dahl
;;
;; Version: 0.1.1
;; Keywords: search, convenience, files, gds, google
;; Author: Mathias Dahl <address@hidden>
;; This file is not part of GNU Emacs.
;; GNU Emacs 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.
;; GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;;
;; gds.el provides a couple of commands to interface Google Desktop
;; Search (GDS) from Emacs.
;;
;; gds.el should work on all operating systems where GDS
;; exist. Currently it seems only to exist in Microsoft Windows.
;;
;; Basically all it does is to build a URL with the search, send it to
;; GDS and do different fun things with the result. The only command
;; currently implemented is `gds-iswitchb-open-file'.
;;
;; It is easy to use, just customize `gds-search-url' and get going!
;;
;;; Todo:
;;
;; - Implement `gds-dired'.
;;
;;; History:
;;
;; Version 0.1, 2006-02-08
;;
;; * First release.
;;
;; Version 0.1.1, 2006-02-09
;;
;; * Finished first version of `gds-dired'.
;;
;;; Code:
(require 'url)
(require 'xml)
(defcustom gds-search-url ""
"Search URL for the GDS installation.
You must specify this value. It can be found in the Windows
registry, under
HKEY_CURRENT_USER\\Software\\Google\\Google Desktop\\AP\I\search_url"
:type 'string
:group 'gds)
(defun gds-search-url ()
"Get GDS search url. Raise error if empty or nil.
Maybe this is ugly, I don't know, but it sure should make the
user configure this..."
(if (or (string= "" gds-search-url)
(not gds-search-url))
(error "Option gds-search-url is empty or nil")
gds-search-url))
(defun gds-get-xml-response (search &optional num)
"Do a Google Desktop Search for SEARCH, return result as xml.
Optional argument NUM is used to set the number of hits to get."
(with-temp-buffer
(url-insert-file-contents
(format "%s%s&format=xml%s"
(gds-search-url)
search
(if num
(format "&num=%d" num)
"")))
(goto-char (point-min))
(if (not (search-forward-regexp "^<\\?xml" nil t))
(message "No XML data from GDS search")
(xml-parse-region (match-beginning 0) (point-max)))))
(defcustom gds-ignored-file-names-regexp ""
"Regexp of file names to remove from the hit list."
:type 'string
:group 'gds)
(defun gds-get-matching-files (search &optional num)
"Search GDS for files containing SEARCH.
Returns a list of file names.
Optional argument NUM sets the number of search results. Default
is 10 hits.
Only hits of category \"file\" are returned. File names matching
`gds-ignored-file-names-regexp' will be removed."
(let ((xml (xml-get-children
(car (gds-get-xml-response search num)) 'result))
result results)
(while xml
(setq result (car xml))
(let ((category (car (xml-node-children (assoc 'category result))))
(file-name (car (xml-node-children (assoc 'url result)))))
(if (and (string= "file" category)
(not (string-match gds-ignored-file-names-regexp file-name)))
(setq results (append
results
(list file-name)))))
(setq xml (cdr xml)))
results))
(defcustom gds-iswitchb-open-file-number-of-hits 20
"Number of hits to fetch from GDS when using `gds-iswitchb-open-file'.
Note that this is the number of hits to get from GDS *before*
filtering non-file hits and file names matching
`gds-ignored-file-names-regexp'. This means that you probably
want to make this number higher that the number of files you want
to choose from at the prompt."
:type 'integer
:group 'gds)
(defun gds-iswitchb-open-file (search)
"Use iswitchb to open file matching SEARCH in GDS."
(interactive "sSearch for: ")
(let ((iswitchb-make-buflist-hook
(lambda ()
(setq iswitchb-temp-buflist (gds-get-matching-files search 20)))))
(find-file (iswitchb-read-buffer "Find file: "))))
(defcustom gds-dired-number-of-hits 100
"Number of hits to fetch from GDS when using `gds-dired'.
Note that this is the number of hits to get from GDS *before*
filtering non-file hits and file names matching
`gds-ignored-file-names-regexp'. This means that you probably
want to make this number higher that the number of files you want
to choose from at the prompt."
:type 'integer
:group 'gds)
(defun gds-dired ()
"Use Google Desktop Search to find files and list them in dired.
It generates a result like `find-dired' does, but uses Google
Desktop Search to find matching files."
(interactive)
(let ((dir (read-directory-name "Set current directory: "))
(search (read-string "Search string: "))
(buf (get-buffer-create "*gds-dired*")))
(switch-to-buffer buf)
(kill-all-local-variables)
(setq buffer-read-only nil)
(erase-buffer)
(setq default-directory dir)
(dired-mode dir)
(use-local-map (append (make-sparse-keymap) (current-local-map)))
(define-key (current-local-map) "g" 'undefined)
;; Set subdir-alist so that Tree Dired will work:
(if (fboundp 'dired-simple-subdir-alist)
;; will work even with nested dired format (dired-nstd.el,v
;; 1.15 and later)
(dired-simple-subdir-alist)
;; else we have an ancient tree dired (or classic dired, where
;; this does no harm)
(set (make-local-variable 'dired-subdir-alist)
(list (cons default-directory (point-min-marker)))))
(setq buffer-read-only nil)
(insert " " dir ":\n")
;; Make second line a ``dir'' line in analogy to the ``total'' or
;; ``wildcard'' line.
(insert " GDS search results for \"" search "\"\n")
(let ((buffer-read-only nil)
(saved-pos nil))
(goto-char (point-max))
(setq mode-line-process (concat ": GDS search"))
(mapc
(lambda (x)
(when (file-exists-p x)
(insert " ")
(insert-directory (expand-file-name x) "")))
(gds-get-matching-files search gds-dired-number-of-hits))
(insert " at " (substring (current-time-string) 0 19))
(force-mode-line-update))
(goto-char (point-min))
(forward-line 1)
(dired-next-line 1)))
(provide 'gds)
;;; gds.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- gds.el 0.1.1,
Mathias Dahl <=