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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
;; sourcepair.el --- Load the corresponding C/C++ header or source file for the current buffer.
;;
;; Copyright (C) 2007 Mohamed Hendawi
;;
;; Emacs Lisp Archive Entry
;; Filename: sourcepair.el
;; Version: 1.01
;; Keywords: c languages oop
;; Author: Mohamed Hendawi <moedev *AT* hendawi *DOT* com>
;; Description: Load the corresponding C/C++ header or source file for the current buffer.
;; URL: http://www.hendawi.com/emacs/sourcepair.el
;; Compatibility: Emacs20, Emacs21
;;
;; $Id: sourcepair.el,v 1.15 2007/10/22 11:41:24 moe Exp $
;;
;; 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 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, write to the Free
;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
;; MA 02110-1301 USA
;;
;; This code is inspired by a similar function written by Abiyu Diro.
;; Thanks to Jesper Pedersen for idea and initial implementation of
;; support for private header files.
;;
;;; Commentary:
;;
;; This Emacs lisp file provides the function "sourcepair-load" which will load
;; the corresponding header or source file for the current buffer. For example,
;; if you are looking at the file FooParser.cpp and enter M-x sourcepair-load
;; (or whatever keybinding you've set), the file FooParser.h will be loaded.
;; It also works the other way as well. To use it put this file somewhere
;; in your lisp library path and then add something like this to your .emacs
;; file:
;;
;; (load-file "sourcepair.el")
;;
;; KEYBINDINGS:
;;
;; You should set a keybinding to use this function easily. For example, I add
;; the following to my .emacs file:
;;
;; (define-key global-map "\C-xz" 'sourcepair-load)
;;
;;
;; GLOBAL VARIABLES:
;;
;; There are six global variables that can be used to adjust how the function
;; works:
;;
;; sourcepair-source-extensions :
;;
;; A list containing the recognized extensions for source files. By default
;; this is set to ( ".cpp" ".cxx" ".cc" ".c" ). For example: with the default
;; setting if you are looking at "foo.h", the function will look for
;; "foo.cpp", "foo.cxx", "foo.cc" or "foo.c" in that order in the
;; directories specified by sourcepair-source-path.
;;
;; sourcepair-header-extensions :
;;
;; A list containing the recognized extensions for header files. By default
;; this is set to ( ".h" ".hpp" ".hh" ). For example: with the default
;; setting if you are looking at "foo.cpp", the function will look for
;; "foo.h", "foo.hpp" or "foo.hh" in that order in the directories specified
;; by sourcepair-header-path.
;;
;; sourcepair-source-path :
;;
;; A list containing the path's to search for source files. By default this
;; is set to ( "." ) which means source files will only be searched for in
;; the current directory. Paths that end in "/*" will be searched
;; recursively. For example, if you specified sourcepair-source-path as
;; ( "." "../*" ) the function will look for source files first in the
;; current directory, and then in the parent directory, and then in any
;; subdirectories of the parent directory.
;;
;; sourcepair-header-path :
;;
;; Similar to sourcepair-source-path except for header files.
;;
;; sourcepair-recurse-ignore :
;;
;; A list containing directories to ignore when recursively searching
;; subdirectories for header or source files. By default this is set
;; to ( "CVS" )
;;
;; sourcepair-private-header-suffixes :
;;
;; A list containing suffixes that will be ignored when searching
;; for the corresponding source file for a given header file. This
;; allows supporting "private header files". For example, Foo.cpp
;; has a public interface in "Foo.h" and a private interface in
;; "Foo_p.h". By default this is set to ( "_p" "_impl" ).
;;
;; For example, in my .emacs file I have the following:
;;
;; (setq sourcepair-source-path '( "." "../*" ))
;; (setq sourcepair-header-path '( "." "include" "../include" "../*"))
;; (setq sourcepair-recurse-ignore '( "CVS" "Obj" "Debug" "Release" ))
;;; Code:
(defcustom sourcepair-source-extensions '( ".cpp" ".CPP" ".Cpp" ".cxx" ".CXX" ".cc" ".CC" ".c" ".C" ".c++" ".C++")
"*List of recognized extensions for source files.
This variable is used by `sourcepair-load'. The value should be a list
containing the recognized extensions for source files. For example: if the
value is ( \".cpp\" \".cxx\" \".cc\" \".C\" \".c\" ), and you are looking at
\"foo.h\", `sourcepair-load' will look for \"foo.cpp\", \"foo.cxx\",
\"foo.cc\" or \"foo.c\" in that order in the directories specified by
`sourcepair-source-path'."
:type '(repeat string)
:group 'sourcepair)
(defcustom sourcepair-header-extensions '( ".h" ".H" ".hpp" ".HPP" ".Hpp" ".hh" ".HH" ".hxx" ".HXX")
"*List of recognized extensions for header files.
This variable is used by `sourcepair-load'. The value should be a list
containing the recognized extensions for header files. For example: if the
value is (\".h\" \".hpp\" \".hh\" ), and you are looking at \"foo.cpp\",
`sourcepair-load' will look for \"foo.h\", \"foo.hpp\" or \"foo.hh\" in that
order in the directories specified by `sourcepair-header-path'."
:type '(repeat string)
:group 'sourcepair)
(defcustom sourcepair-private-header-suffixes '( "_p" "_impl" )
"*List of recognized suffixes for 'private' header files.
This variable is used by `sourcepair-load' to help support 'private header
files'. The value should be a list containing recognized suffixes that will
be ignored when searching for the corresponding source file for a given
header file. For example, Foo.cpp is an implementation of what is in
Foo_p.h. If you set this variable to include (\"_p\") and you are looking
at \"Foo_p.h\" or \"Foo.h\", `sourcepair-load' will load the file \"Foo.cpp\".
"
:type '(repeat-string)
:group 'sourcepair)
(defcustom sourcepair-source-path '( "." )
"*List of directories to search for corresponding source file.
This variable is used by `sourcepair-load'. The value should be a list
containing the directories to search for source files. By default this is set
to ( \".\" ) which means source files will only be searched for in the current
directory. Paths that end in \"/*\" will be searched recursively. For
example, if you specified `sourcepair-source-path' as ( \".\" \"../*\" )
`sourcepair-load' will look for source files first in the current directory,
and then in the parent directory, and then in any subdirectories of the parent
directory."
:type '(repeat string)
:group 'sourcepair)
(defcustom sourcepair-header-path '( "." )
"*List of directories to search for corresponding header file.
This is similar to `sourcepair-source-path' except for header files. See the
documentation for `sourcepair-source-path' for more info."
:type '(repeat string)
:group 'sourcepair)
(defcustom sourcepair-recurse-ignore '( "CVS" )
"*List of directories to ignore when recursively searching subdirectories.
This variable is used by `sourcepair-load'. The value should be a list
containing the names of directories to ignore when `sourcepair-load' is
recursively searching subdirectories for header or source files. By default
this is set to ( \"CVS\" )"
:type '(repeat string)
:group 'sourcepair)
(defun sourcepair-header-file-p (filename)
"Return t if argument is a C/C++ header file, nil otherwise
This function returns t if the filename specified is a C/C++ header
file, or nil otherwise. Header files are identified by extension via
the variable `sourcepair-header-extensions'."
(let* ((extension (concat (member ?. (append filename nil))))
(basename (substring filename 0 (- 0 (length extension)))))
(if (member extension sourcepair-header-extensions)
t
nil)))
(defun sourcepair-source-file-p (filename)
"Return t if argument is a C/C++ source file, nil otherwise
This function returns t if the filename specified is a C/C++ source file,
or nil otherwise. Source files are identified by extension via the
variable `sourcepair-source-extensions'."
(let* ((extension (concat (member ?. (append filename nil))))
(basename (substring filename 0 (- 0 (length extension)))))
(if (member extension sourcepair-source-extensions)
t
nil)))
(defun sourcepair-remove-private-suffixes (basename)
(car (delete 'nil (append (mapcar '(lambda (suffix)
(if (string= (substring basename (- (length basename) (length suffix))) suffix)
(substring basename 0 (- (length basename) (length suffix)))))
sourcepair-private-header-suffixes)
(list basename)))))
(defun sourcepair-analyze-filename (filename)
(let* ((extension (concat (member ?. (append filename nil))))
(basename (substring filename 0 (- 0 (length extension)))))
(if (member extension sourcepair-header-extensions)
(progn (setq basename (sourcepair-remove-private-suffixes basename))
(cons sourcepair-source-path (mapcar '(lambda (arg) (concat basename arg)) sourcepair-source-extensions)))
(if (member extension sourcepair-source-extensions)
(cons sourcepair-header-path
(apply 'append
(mapcar '(lambda (suffix) (mapcar '(lambda (ext) (concat basename suffix ext)) sourcepair-header-extensions))
(append '("") sourcepair-private-header-suffixes))))))))
(defun sourcepair-find-one-of (path choices recurse)
(catch 'matching-filename
(if (file-directory-p path)
(let ((possible-filenames choices)
(matching-filename nil)
(files-in-directory nil))
;; Check if there's a match in this directory
(while possible-filenames
(let ((possible-filename (expand-file-name (car possible-filenames) path)))
(if (file-exists-p possible-filename)
(throw 'matching-filename possible-filename)
(setq possible-filenames (cdr possible-filenames)))))
;; Recursively search subdirectories
(if (not (eq recurse nil))
(progn
(setq files-in-directory (directory-files path nil "^[^\\.]"))
(while files-in-directory
(let ((possible-subdir (car files-in-directory)))
(if (not (member possible-subdir sourcepair-recurse-ignore))
(progn
(setq possible-subdir (expand-file-name possible-subdir path))
(if (file-directory-p possible-subdir)
(progn
(message "Checking %s" possible-subdir)
(setq matching-filename
(sourcepair-find-one-of possible-subdir choices t))
(if (not (eq matching-filename nil))
(throw 'matching-filename matching-filename))))))
(setq files-in-directory (cdr files-in-directory))))))))
;; Return nil if nothing found
nil))
(defun sourcepair-matching-file-for-file (filename)
(catch 'found-matching-file
(let* ((temp (sourcepair-analyze-filename (file-name-nondirectory filename)))
(search-path (car temp))
(possible-filenames (cdr temp)))
(if (= (length possible-filenames) 0)
(message "%s is not a recognized source or header file (consider updating sourcepair-source-extensions or sourcepair-header-extensions)" (buffer-name))
(progn
(while search-path
(let ((path-to-check (car search-path))
(matching-filename nil))
(if (and (> (length path-to-check) 3)
(equal (substring path-to-check -2) "/*"))
(setq matching-filename (sourcepair-find-one-of (substring path-to-check 0 -2)
possible-filenames
t))
(setq matching-filename
(sourcepair-find-one-of path-to-check possible-filenames nil)))
(if (eq matching-filename nil)
(setq search-path (cdr search-path))
(throw 'found-matching-file matching-filename))))
nil)))))
(defun sourcepair-load ()
"Load the corresponding C/C++ header or source file for the current buffer.
This function can be invoked by \\[sourcepair-load]. It will load the the
corresponding header or source file for the current buffer. For example, if
you are looking at the file FooParser.cpp and press \\[sourcepair-load], the
file FooParser.h will be loaded. It also works the other way as well.
There are six global variables that can be used to adjust how the function
works:
`sourcepair-source-extensions'
`sourcepair-header-extensions'
`sourcepair-source-path'
`sourcepair-header-path'
`sourcepair-recurse-ignore'
`sourcepair-private-header-suffixes'
See the documentation for these variables for more info.
"
(interactive)
(let ((file (sourcepair-matching-file-for-file (buffer-file-name))))
(if file
(find-file file)
(message (concat "No matching file for " (buffer-name)
" (consider updating sourcepair-source-path, sourcepair-header-path)")))))
(defun sourcepair-jump-to-headerfile (prefix)
"Jump to header file for class at point"
(interactive "P")
(save-excursion
(let* ((word-at-point (if prefix
(read-from-minibuffer "Class: ")
(current-word)))
(file1 (sourcepair-matching-file-for-file (concat word-at-point ".cpp" )))
(file (if file1 file1 (sourcepair-matching-file-for-file (concat (downcase word-at-point) ".cpp" )))))
(if file
(find-file file)
(message "Sorry couldn't find include file for class")))))
(defun sourcepair-yank-advice ()
"Advice function called after a yank.
This function is called when advising the yank function. If you are
looking at a header file and paste a method declaration that was copied
from a source file, this function will remove the class prefix (e.g.
\"Foo::\"), add a semicolon at the end of the declaration and reindent the
region. If you paste something other than a method declaration this
function will just reindent the region.
"
(if (member major-mode '(c-mode c++-mode))
(if (sourcepair-header-file-p (buffer-name))
(let* ((this-buffer-name (buffer-name))
(extension (concat (member ?. (append this-buffer-name nil))))
(basename (substring this-buffer-name 0 (- 0 (length extension))))
(class-prefix (concat basename "::"))
(begin-point (region-beginning))
(end-point (region-end))
(region-len (- end-point begin-point)))
(save-excursion
(set-window-point nil (- (point) region-len))
(if (re-search-forward class-prefix end-point t)
(progn
(replace-match "" nil t)
(set-window-point nil (- end-point (length class-prefix) 1))
(re-search-backward "[^ ]")
(set-window-point nil (+ (point) 1))
(insert ";")
(indent-region (region-beginning) (region-end) nil)
(message "Removed class prefix when pasting"))
(indent-region begin-point end-point nil))))
(indent-region (region-beginning) (region-end) nil))))
; This allows (require 'sourcepair)
(provide 'sourcepair)
;;; sourcepair.el ends here
|