705 lines
27 KiB
EmacsLisp
705 lines
27 KiB
EmacsLisp
;;; ede/proj.el --- EDE Generic Project file driver -*- lexical-binding: t; -*-
|
||
|
||
;; Copyright (C) 1998-2003, 2007-2024 Free Software Foundation, Inc.
|
||
|
||
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
||
;; Keywords: project, make
|
||
|
||
;; This file is 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 3 of the License, 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. If not, see <https://www.gnu.org/licenses/>.
|
||
|
||
;;; Commentary:
|
||
;;
|
||
;; EDE defines a method for managing a project. EDE-PROJ aims to be a
|
||
;; generic project file format based on the EIEIO object stream
|
||
;; methods. Changes in the project structure will require Makefile
|
||
;; rebuild. The targets provided in ede-proj can be augmented with
|
||
;; additional target types inherited directly from `ede-proj-target'.
|
||
|
||
(require 'ede/proj-comp)
|
||
(require 'ede/make)
|
||
|
||
(declare-function ede-proj-makefile-create "ede/pmake")
|
||
(declare-function ede-proj-configure-synchronize "ede/pconf")
|
||
|
||
(autoload 'ede-proj-target-aux "ede/proj-aux"
|
||
"Target class for a group of lisp files." nil nil)
|
||
(autoload 'ede-proj-target-elisp "ede/proj-elisp"
|
||
"Target class for a group of lisp files." nil nil)
|
||
(autoload 'ede-proj-target-elisp-autoloads "ede/proj-elisp"
|
||
"Target class for generating autoload files." nil nil)
|
||
(autoload 'ede-proj-target-scheme "ede/proj-scheme"
|
||
"Target class for a group of lisp files." nil nil)
|
||
(autoload 'ede-proj-target-makefile-miscelaneous "ede/proj-misc"
|
||
"Target class for a group of miscellaneous with a special makefile." nil nil)
|
||
(autoload 'ede-proj-target-makefile-program "ede/proj-prog"
|
||
"Target class for building a program." nil nil)
|
||
(autoload 'ede-proj-target-makefile-archive "ede/proj-archive"
|
||
"Target class for building an archive of object code." nil nil)
|
||
(autoload 'ede-proj-target-makefile-shared-object "ede/proj-shared"
|
||
"Target class for building a shared object." nil nil)
|
||
(autoload 'ede-proj-target-makefile-info "ede/proj-info"
|
||
"Target class for info files." nil nil)
|
||
|
||
(eieio-defclass-autoload 'ede-proj-target-aux '(ede-proj-target)
|
||
"ede/proj-aux"
|
||
"Target class for a group of lisp files.")
|
||
(eieio-defclass-autoload 'ede-proj-target-elisp '(ede-proj-target-makefile)
|
||
"ede/proj-elisp"
|
||
"Target class for a group of lisp files.")
|
||
(eieio-defclass-autoload 'ede-proj-target-elisp-autoloads '(ede-proj-target-elisp)
|
||
"ede/proj-elisp"
|
||
"Target class for generating autoload files.")
|
||
(eieio-defclass-autoload 'ede-proj-target-scheme '(ede-proj-target)
|
||
"ede/proj-scheme"
|
||
"Target class for a group of lisp files.")
|
||
(eieio-defclass-autoload 'ede-proj-target-makefile-miscelaneous '(ede-proj-target-makefile)
|
||
"ede/proj-misc"
|
||
"Target class for a group of miscellaneous with a special makefile.")
|
||
(eieio-defclass-autoload 'ede-proj-target-makefile-program '(ede-proj-target-makefile-objectcode)
|
||
"ede/proj-prog"
|
||
"Target class for building a program.")
|
||
(eieio-defclass-autoload 'ede-proj-target-makefile-archive '(ede-proj-target-makefile-objectcode)
|
||
"ede/proj-archive"
|
||
"Target class for building an archive of object code.")
|
||
(eieio-defclass-autoload 'ede-proj-target-makefile-shared-object '(ede-proj-target-makefile-program)
|
||
"ede/proj-shared"
|
||
"Target class for building a shared object.")
|
||
(eieio-defclass-autoload 'ede-proj-target-makefile-info '(ede-proj-target-makefile)
|
||
"ede/proj-info"
|
||
"Target class for info files.")
|
||
|
||
;; Not in ede/ , but part of semantic.
|
||
(eieio-defclass-autoload 'semantic-ede-proj-target-grammar '(ede-proj-target-elisp)
|
||
"semantic/ede-grammar"
|
||
"Target classfor Semantic grammar files.")
|
||
|
||
;;; Class Definitions:
|
||
(defclass ede-proj-target (ede-target)
|
||
((auxsource :initarg :auxsource
|
||
:initform nil
|
||
:type list
|
||
:custom (repeat (string :tag "File"))
|
||
:label "Auxiliary Source Files"
|
||
:group (default source)
|
||
:documentation "Auxiliary source files included in this target.
|
||
Each of these is considered equivalent to a source file, but it is not
|
||
distributed, and each should have a corresponding rule to build it.")
|
||
(dirty :initform nil
|
||
:type boolean
|
||
:documentation "Non-nil when generated files needs updating.")
|
||
(compiler :initarg :compiler
|
||
:initform nil
|
||
:type (or null symbol)
|
||
:custom (choice (const :tag "None" nil)
|
||
(symbol :tag "Custom Compiler Symbol")
|
||
:slotofchoices availablecompilers)
|
||
:label "Compiler for building sources"
|
||
:group make
|
||
:documentation
|
||
"The compiler to be used to compile this object.
|
||
This should be a symbol, which contains the object defining the compiler.
|
||
This enables save/restore to do so by name, permitting the sharing
|
||
of these compiler resources, and global customization thereof.")
|
||
(linker :initarg :linker
|
||
:initform nil
|
||
:type (or null symbol)
|
||
:custom (choice (const :tag "None" nil)
|
||
(symbol :tag "Custom Linker Symbol")
|
||
:slotofchoices availablelinkers)
|
||
:label "Linker for combining intermediate object files."
|
||
:group make
|
||
:documentation
|
||
"The linker to be used to link compiled sources for this object.
|
||
This should be a symbol, which contains the object defining the linker.
|
||
This enables save/restore to do so by name, permitting the sharing
|
||
of these linker resources, and global customization thereof.")
|
||
;; Class allocated slots
|
||
(phony :allocation :class
|
||
:initform nil
|
||
:type boolean
|
||
:documentation
|
||
"A phony target is one where the build target does not relate to a file.
|
||
Such targets are always built, but make knows how to deal with them..")
|
||
(availablecompilers :allocation :class
|
||
:initform nil
|
||
:type (or null list)
|
||
:documentation
|
||
"A list of `ede-compiler' objects.
|
||
These are the compilers the user can choose from when setting the
|
||
`compiler' slot.")
|
||
(availablelinkers :allocation :class
|
||
:initform nil
|
||
:type (or null list)
|
||
:documentation
|
||
"A list of `ede-linker' objects.
|
||
These are the linkers the user can choose from when setting the
|
||
`linker' slot.")
|
||
)
|
||
"Abstract class for ede-proj targets.")
|
||
|
||
(defclass ede-proj-target-makefile (ede-proj-target)
|
||
((makefile :initarg :makefile
|
||
:initform "Makefile"
|
||
:type string
|
||
:custom string
|
||
:label "Parent Makefile"
|
||
:group make
|
||
:documentation "File name of generated Makefile.")
|
||
(partofall :initarg :partofall
|
||
:initform t
|
||
:type boolean
|
||
:custom boolean
|
||
:label "Part of all: target"
|
||
:group make
|
||
:documentation
|
||
"Non-nil means the rule created is part of the all: target.
|
||
Setting this to nil creates the rule to build this item, but does not
|
||
include it in the all: rule.")
|
||
(configuration-variables
|
||
:initarg :configuration-variables
|
||
:initform nil
|
||
:type list
|
||
:custom (repeat (cons (string :tag "Configuration")
|
||
(repeat
|
||
(cons (string :tag "Name")
|
||
(string :tag "Value")))))
|
||
:label "Environment Variables for configurations"
|
||
:group make
|
||
:documentation "Makefile variables appended to use in different configurations.
|
||
These variables are used in the makefile when a configuration becomes active.
|
||
Target variables are always renamed such as foo_CFLAGS, then included into
|
||
commands where the variable would usually appear.")
|
||
(rules :initarg :rules
|
||
:initform nil
|
||
:type (list-of ede-makefile-rule)
|
||
:custom (repeat (object :objecttype ede-makefile-rule))
|
||
:label "Additional Rules"
|
||
:group (make)
|
||
:documentation
|
||
"Arbitrary rules and dependencies needed to make this target.
|
||
It is safe to leave this blank.")
|
||
)
|
||
"Abstract class for Makefile based targets.")
|
||
|
||
(defvar ede-proj-target-alist
|
||
'(("program" . ede-proj-target-makefile-program)
|
||
("archive" . ede-proj-target-makefile-archive)
|
||
("sharedobject" . ede-proj-target-makefile-shared-object)
|
||
("emacs lisp" . ede-proj-target-elisp)
|
||
("emacs lisp autoloads" . ede-proj-target-elisp-autoloads)
|
||
("info" . ede-proj-target-makefile-info)
|
||
("auxiliary" . ede-proj-target-aux)
|
||
("scheme" . ede-proj-target-scheme)
|
||
("miscellaneous" . ede-proj-target-makefile-miscelaneous)
|
||
)
|
||
"Alist of names to class types for available project target classes.")
|
||
|
||
(defun ede-proj-register-target (name class)
|
||
"Register a new target class with NAME and class symbol CLASS.
|
||
This enables the creation of your target type."
|
||
(let ((a (assoc name ede-proj-target-alist)))
|
||
(if a
|
||
(setcdr a class)
|
||
(setq ede-proj-target-alist
|
||
(cons (cons name class) ede-proj-target-alist)))))
|
||
|
||
(defclass ede-proj-project (eieio-persistent ede-project eieio-named)
|
||
((extension :initform ".ede")
|
||
(file-header-line :initform ";; EDE Project Files are auto generated: Do Not Edit")
|
||
(makefile-type :initarg :makefile-type
|
||
:initform 'Makefile
|
||
:type symbol
|
||
:custom (choice (const Makefile)
|
||
;(const Makefile.in)
|
||
(const Makefile.am)
|
||
;(const cook)
|
||
)
|
||
:documentation "The type of Makefile to generate.
|
||
Can be one of 'Makefile, 'Makefile.in, or 'Makefile.am.
|
||
If this value is NOT 'Makefile, then that overrides the :makefile slot
|
||
in targets.")
|
||
(variables :initarg :variables
|
||
:initform nil
|
||
:type list
|
||
:custom (repeat (cons (string :tag "Name")
|
||
(string :tag "Value")))
|
||
:group (settings)
|
||
:documentation "Variables to set in this Makefile.")
|
||
(configuration-variables
|
||
:initarg :configuration-variables
|
||
:initform '("debug" (("DEBUG" . "1")))
|
||
:type list
|
||
:custom (repeat (cons (string :tag "Configuration")
|
||
(repeat
|
||
(cons (string :tag "Name")
|
||
(string :tag "Value")))))
|
||
:group (settings)
|
||
:documentation "Makefile variables to use in different configurations.
|
||
These variables are used in the makefile when a configuration becomes active.")
|
||
(inference-rules :initarg :inference-rules
|
||
:initform nil
|
||
:custom (repeat
|
||
(object :objecttype ede-makefile-rule))
|
||
:documentation "Inference rules to add to the makefile.")
|
||
(include-file :initarg :include-file
|
||
:initform nil
|
||
:custom (repeat
|
||
(string :tag "Include File"))
|
||
:documentation "Additional files to include.
|
||
These files can contain additional rules, variables, and customizations.")
|
||
(automatic-dependencies
|
||
:initarg :automatic-dependencies
|
||
:initform t
|
||
:type boolean
|
||
:custom boolean
|
||
:group (default settings)
|
||
:documentation
|
||
"Non-nil to do implement automatic dependencies in the Makefile.")
|
||
(menu :initform
|
||
'(
|
||
[ "Regenerate Makefiles" ede-proj-regenerate t ]
|
||
[ "Upload Distribution" ede-upload-distribution t ]
|
||
)
|
||
)
|
||
(metasubproject
|
||
:initarg :metasubproject
|
||
:initform nil
|
||
:type boolean
|
||
:custom boolean
|
||
:group (default settings)
|
||
:documentation
|
||
"Non-nil if this is a metasubproject.
|
||
Usually, a subproject is determined by a parent project. If multiple top level
|
||
projects are grouped into a large project not maintained by EDE, then you need
|
||
to set this to non-nil. The only effect is that the `dist' rule will then avoid
|
||
making a tar file.")
|
||
)
|
||
"The EDE-PROJ project definition class.")
|
||
|
||
;;; Code:
|
||
(defun ede-proj-load (project &optional rootproj)
|
||
"Load a project file from PROJECT directory.
|
||
If optional ROOTPROJ is provided then ROOTPROJ is the root project
|
||
for the tree being read in. If ROOTPROJ is nil, then assume that
|
||
the PROJECT being read in is the root project."
|
||
(save-excursion
|
||
(let ((ret (eieio-persistent-read (concat project "Project.ede")
|
||
'ede-proj-project))
|
||
(subdirs (directory-files project nil "[^.].*" nil)))
|
||
(if (not (object-of-class-p ret 'ede-proj-project))
|
||
(error "Corrupt project file"))
|
||
(oset ret directory project)
|
||
(oset ret rootproject rootproj)
|
||
|
||
;; Load the project file of each subdirectory containing a
|
||
;; loadable Project.ede.
|
||
(while subdirs
|
||
(let ((sd (file-name-as-directory
|
||
(expand-file-name (car subdirs) project))))
|
||
(if (and (file-directory-p sd)
|
||
(file-exists-p (expand-file-name "Project.ede" sd)))
|
||
(oset ret subproj
|
||
(cons (ede-proj-load sd (or rootproj ret))
|
||
(oref ret subproj))))
|
||
(setq subdirs (cdr subdirs))))
|
||
ret)))
|
||
|
||
(defun ede-proj-save (&optional project)
|
||
"Write out object PROJECT into its file."
|
||
(save-excursion
|
||
(if (not project) (setq project (ede-current-project)))
|
||
(let ((cdir (oref project directory)))
|
||
(unwind-protect
|
||
(progn
|
||
(slot-makeunbound project :directory)
|
||
(eieio-persistent-save project))
|
||
;; Restore the directory slot
|
||
(oset project directory cdir))) ))
|
||
|
||
(cl-defmethod ede-commit-local-variables ((proj ede-proj-project))
|
||
"Commit change to local variables in PROJ."
|
||
(ede-proj-save proj))
|
||
|
||
(cl-defmethod eieio-done-customizing ((proj ede-proj-project))
|
||
"Call this when a user finishes customizing this object.
|
||
Argument PROJ is the project to save."
|
||
(cl-call-next-method)
|
||
(ede-proj-save proj))
|
||
|
||
(cl-defmethod eieio-done-customizing ((_target ede-proj-target))
|
||
"Call this when a user finishes customizing this object.
|
||
Argument TARGET is the project we are completing customization on."
|
||
(cl-call-next-method)
|
||
(ede-proj-save (ede-current-project)))
|
||
|
||
(cl-defmethod ede-commit-project ((proj ede-proj-project))
|
||
"Commit any change to PROJ to its file."
|
||
(ede-proj-save proj))
|
||
|
||
(cl-defmethod ede-buffer-mine ((this ede-proj-project) buffer)
|
||
"Return t if object THIS lays claim to the file in BUFFER."
|
||
(let ((f (ede-convert-path this (buffer-file-name buffer))))
|
||
(or (string= (file-name-nondirectory (oref this file)) f)
|
||
(string= (ede-proj-dist-makefile this) f)
|
||
(string-match "Makefile\\(\\.\\(in\\|am\\)\\)?$" f)
|
||
(string-match "config\\(ure\\.\\(in\\|ac\\)\\|\\.status\\)?$" f)
|
||
(string-match "config.h\\(\\.in\\)?" f)
|
||
(member f '("AUTHORS" "NEWS" "COPYING" "INSTALL" "README"))
|
||
)))
|
||
|
||
(cl-defmethod ede-buffer-mine ((this ede-proj-target) buffer)
|
||
"Return t if object THIS lays claim to the file in BUFFER."
|
||
(or (cl-call-next-method)
|
||
(ede-target-buffer-in-sourcelist this buffer (oref this auxsource))))
|
||
|
||
|
||
;;; EDE command functions
|
||
;;
|
||
(defvar ede-proj-target-history nil
|
||
"History when querying for a target type.")
|
||
|
||
(cl-defmethod project-new-target ((this ede-proj-project)
|
||
&optional name type autoadd)
|
||
"Create a new target in THIS based on the current buffer."
|
||
(let* ((name (or name (read-string "Name: " "")))
|
||
(type (or type
|
||
(completing-read "Type: " ede-proj-target-alist
|
||
nil t nil '(ede-proj-target-history . 1))))
|
||
(ot nil)
|
||
(src (if (and (buffer-file-name)
|
||
(if (and autoadd (stringp autoadd))
|
||
(string= autoadd "y")
|
||
(y-or-n-p (format "Add %s to %s? " (buffer-name) name))))
|
||
(buffer-file-name)))
|
||
(fcn (cdr (assoc type ede-proj-target-alist)))
|
||
)
|
||
|
||
(when (not fcn)
|
||
(error "Unknown target type %s for EDE Project" type))
|
||
|
||
(setq ot (funcall fcn name :name name
|
||
:path (ede-convert-path this default-directory)
|
||
:source (if src
|
||
(list (file-name-nondirectory src))
|
||
nil)))
|
||
;; If we added it, set the local buffer's object.
|
||
(if src (progn
|
||
(setq ede-object ot)
|
||
(ede-apply-object-keymap)))
|
||
;; Add it to the project object
|
||
;;(oset this targets (cons ot (oref this targets)))
|
||
;; New form: Add to the end using fancy eieio function.
|
||
;; @todone - Some targets probably want to be in the front.
|
||
;; How to do that?
|
||
;; @ans - See elisp autoloads for answer
|
||
(object-add-to-list this 'targets ot t)
|
||
;; And save
|
||
(ede-proj-save this)))
|
||
|
||
(cl-defmethod project-new-target-custom ((this ede-proj-project))
|
||
"Create a new target in THIS for custom."
|
||
(let* ((name (read-string "Name: " ""))
|
||
(type (completing-read "Type: " ede-proj-target-alist
|
||
nil t nil '(ede-proj-target-history . 1))))
|
||
(funcall (cdr (assoc type ede-proj-target-alist)) name :name name
|
||
:path (ede-convert-path this default-directory)
|
||
:source nil)))
|
||
|
||
(cl-defmethod project-delete-target ((this ede-proj-target))
|
||
"Delete the current target THIS from its parent project."
|
||
(let ((p (ede-current-project))
|
||
(ts (oref this source)))
|
||
;; Loop across all sources. If it exists in a buffer,
|
||
;; clear its object.
|
||
(while ts
|
||
(let* ((default-directory (oref this path))
|
||
(b (get-file-buffer (car ts))))
|
||
(if b
|
||
(with-current-buffer b
|
||
(if (eq ede-object this)
|
||
(progn
|
||
(setq ede-object nil)
|
||
(ede-apply-object-keymap))))))
|
||
(setq ts (cdr ts)))
|
||
;; Remove THIS from its parent.
|
||
;; The two vectors should be pointer equivalent.
|
||
(oset p targets (delq this (oref p targets)))
|
||
(ede-proj-save (ede-current-project))))
|
||
|
||
(cl-defmethod project-add-file ((this ede-proj-target) file)
|
||
"Add to target THIS the current buffer represented as FILE."
|
||
(let ((file (ede-convert-path this file))
|
||
(src (ede-target-sourcecode this)))
|
||
(while (and src (not (ede-want-file-p (car src) file)))
|
||
(setq src (cdr src)))
|
||
(when src
|
||
(setq src (car src))
|
||
(cond ((ede-want-file-source-p this file)
|
||
(object-add-to-list this 'source file t))
|
||
((ede-want-file-auxiliary-p this file)
|
||
(object-add-to-list this 'auxsource file t))
|
||
(t (error "`project-add-file(ede-target)' source mismatch error")))
|
||
(ede-proj-save))))
|
||
|
||
(cl-defmethod project-remove-file ((target ede-proj-target) file)
|
||
"For TARGET, remove FILE.
|
||
FILE must be massaged by `ede-convert-path'."
|
||
;; Speedy delete should be safe.
|
||
(object-remove-from-list target 'source (ede-convert-path target file))
|
||
(object-remove-from-list target 'auxsource (ede-convert-path target file))
|
||
(ede-proj-save))
|
||
|
||
(cl-defmethod project-update-version ((_this ede-proj-project))
|
||
"The :version of project THIS has changed."
|
||
(ede-proj-save))
|
||
|
||
(cl-defmethod project-make-dist ((this ede-proj-project))
|
||
"Build a distribution for the project based on THIS target."
|
||
(let ((pm (ede-proj-dist-makefile this))
|
||
(df (project-dist-files this)))
|
||
(if (and (file-exists-p (car df))
|
||
(not (y-or-n-p "Dist file already exists. Rebuild? ")))
|
||
(error "Try `ede-update-version' before making a distribution"))
|
||
(ede-proj-setup-buildenvironment this)
|
||
(if (ede-proj-automake-p this)
|
||
(setq pm (expand-file-name "Makefile"
|
||
(file-name-directory pm))))
|
||
(compile (concat ede-make-command " -f " pm " dist"))))
|
||
|
||
(cl-defmethod project-dist-files ((this ede-proj-project))
|
||
"Return a list of files that constitutes a distribution of THIS project."
|
||
(list
|
||
;; Note to self, keep this first for the above fn to check against.
|
||
(concat (oref this name) "-" (oref this version) ".tar.gz")
|
||
))
|
||
|
||
(cl-defmethod project-compile-project ((proj ede-proj-project) &optional _command)
|
||
"Compile the entire current project PROJ.
|
||
Argument COMMAND is the command to use when compiling."
|
||
(let ((pm (ede-proj-dist-makefile proj))
|
||
(default-directory (file-name-directory (oref proj file))))
|
||
(ede-proj-setup-buildenvironment proj)
|
||
(if (ede-proj-automake-p proj)
|
||
(setq pm (expand-file-name "Makefile"
|
||
(file-name-directory pm))))
|
||
(compile (concat ede-make-command" -f " pm " all"))))
|
||
|
||
;;; Target type specific compilations/debug
|
||
;;
|
||
(cl-defmethod project-compile-target ((_obj ede-proj-target) &optional command)
|
||
"Compile the current target OBJ.
|
||
Argument COMMAND is the command to use for compiling the target."
|
||
(project-compile-project (ede-current-project) command))
|
||
|
||
(cl-defmethod project-compile-target ((obj ede-proj-target-makefile)
|
||
&optional _command)
|
||
"Compile the current target program OBJ.
|
||
Optional argument COMMAND is the s the alternate command to use."
|
||
(ede-proj-setup-buildenvironment (ede-current-project))
|
||
(compile (concat ede-make-command " -f " (oref obj makefile) " "
|
||
(ede-proj-makefile-target-name obj))))
|
||
|
||
(cl-defmethod project-debug-target ((obj ede-proj-target))
|
||
"Run the current project target OBJ in a debugger."
|
||
(error "Debug-target not supported by %s" (eieio-object-name obj)))
|
||
|
||
(cl-defmethod project-run-target ((obj ede-proj-target))
|
||
"Run the current project target OBJ."
|
||
(error "Run-target not supported by %s" (eieio-object-name obj)))
|
||
|
||
(cl-defmethod ede-proj-makefile-target-name ((this ede-proj-target))
|
||
"Return the name of the main target for THIS target."
|
||
(ede-name this))
|
||
|
||
;;; Compiler and source code generators
|
||
;;
|
||
(cl-defmethod ede-want-file-auxiliary-p ((this ede-target) file)
|
||
"Return non-nil if THIS target wants FILE."
|
||
;; By default, all targets reference the source object, and let it decide.
|
||
(let ((src (ede-target-sourcecode this)))
|
||
(while (and src (not (ede-want-file-auxiliary-p (car src) file)))
|
||
(setq src (cdr src)))
|
||
src))
|
||
|
||
(cl-defmethod ede-proj-compilers ((obj ede-proj-target))
|
||
"List of compilers being used by OBJ.
|
||
If the `compiler' slot is empty, concoct one on a first match found
|
||
basis for any given type from the `availablecompilers' slot.
|
||
Otherwise, return the `compiler' slot.
|
||
Converts all symbols into the objects to be used."
|
||
(when (slot-exists-p obj 'compiler)
|
||
(let ((comp (oref obj compiler)))
|
||
(if comp
|
||
;; Now that we have a pre-set compilers to use, convert type symbols
|
||
;; into objects for ease of use
|
||
(setq comp (if (listp comp)
|
||
(mapcar #'symbol-value comp)
|
||
(list (symbol-value comp))))
|
||
(let* ((acomp (oref obj availablecompilers))
|
||
(avail (mapcar #'symbol-value acomp))
|
||
(st (oref obj sourcetype))
|
||
(sources (oref obj source)))
|
||
;; COMP is not specified, so generate a list from the available
|
||
;; compilers list.
|
||
(while st
|
||
(if (ede-want-any-source-files-p (symbol-value (car st)) sources)
|
||
(let ((c (ede-proj-find-compiler avail (car st))))
|
||
(if c (setq comp (cons c comp)))))
|
||
(setq st (cdr st)))
|
||
;; Provide a good error msg.
|
||
(unless comp
|
||
(error "Could not find compiler match for source code extension \"%s\".
|
||
You may need to add support for this type of file"
|
||
(if sources
|
||
(file-name-extension (car sources))
|
||
"")))
|
||
))
|
||
;; Return the discovered compilers.
|
||
comp)))
|
||
|
||
(cl-defmethod ede-proj-linkers ((obj ede-proj-target))
|
||
"List of linkers being used by OBJ.
|
||
If the `linker' slot is empty, concoct one on a first match found
|
||
basis for any given type from the `availablelinkers' slot.
|
||
Otherwise, return the `linker' slot.
|
||
Converts all symbols into the objects to be used."
|
||
(when (slot-exists-p obj 'linker)
|
||
(let ((link (oref obj linker)))
|
||
(if link
|
||
;; Now that we have a pre-set linkers to use, convert type symbols
|
||
;; into objects for ease of use
|
||
(if (symbolp link)
|
||
(setq link (list (symbol-value link)))
|
||
(error ":linker is not a symbol. Howd you do that?"))
|
||
(let* ((alink (oref obj availablelinkers))
|
||
(avail (mapcar #'symbol-value alink))
|
||
(st (oref obj sourcetype))
|
||
(sources (oref obj source)))
|
||
;; LINKER is not specified, so generate a list from the available
|
||
;; compilers list.
|
||
(while st
|
||
(if (ede-want-any-source-files-p (symbol-value (car st)) sources)
|
||
(let ((c (ede-proj-find-linker avail (car st))))
|
||
(if c (setq link (cons c link)))))
|
||
(setq st (cdr st)))
|
||
(unless link
|
||
;; No linker stands out! Loop over our linkers and pull out
|
||
;; the first that has no source type requirement.
|
||
(while (and avail (not (eieio-instance-inheritor-slot-boundp (car avail) 'sourcetype)))
|
||
(setq avail (cdr avail)))
|
||
(setq link (cdr avail)))))
|
||
;; Return the discovered linkers.
|
||
link)))
|
||
|
||
|
||
;;; Target type specific autogenerating gobbledygook.
|
||
;;
|
||
|
||
(defun ede-proj-makefile-type (&optional proj)
|
||
"Makefile type of the current project PROJ."
|
||
(oref (or proj (ede-current-project)) makefile-type))
|
||
|
||
(defun ede-proj-automake-p (&optional proj)
|
||
"Return non-nil if the current project PROJ is automake mode."
|
||
(eq (ede-proj-makefile-type proj) 'Makefile.am))
|
||
|
||
(defun ede-proj-autoconf-p (&optional proj)
|
||
"Return non-nil if the current project PROJ is automake mode."
|
||
(eq (ede-proj-makefile-type proj) 'Makefile.in))
|
||
|
||
(defun ede-proj-make-p (&optional proj)
|
||
"Return non-nil if the current project PROJ is automake mode."
|
||
(eq (ede-proj-makefile-type proj) 'Makefile))
|
||
|
||
(cl-defmethod ede-proj-dist-makefile ((this ede-proj-project))
|
||
"Return the name of the Makefile with the DIST target in it for THIS."
|
||
(cond ((eq (oref this makefile-type) 'Makefile.am)
|
||
(concat (file-name-directory (oref this file))
|
||
"Makefile.am"))
|
||
((eq (oref this makefile-type) 'Makefile.in)
|
||
(expand-file-name "Makefile.in"
|
||
(file-name-directory (oref this file))))
|
||
((object-assoc "Makefile" 'makefile (oref this targets))
|
||
(expand-file-name "Makefile"
|
||
(file-name-directory (oref this file))))
|
||
(t
|
||
(let ((targets (oref this targets)))
|
||
(while (and targets
|
||
(not (obj-of-class-p
|
||
(car targets)
|
||
'ede-proj-target-makefile)))
|
||
(setq targets (cdr targets)))
|
||
(if targets (oref (car targets) makefile)
|
||
(expand-file-name "Makefile"
|
||
(file-name-directory (oref this file))))))))
|
||
|
||
(defun ede-proj-regenerate ()
|
||
"Regenerate Makefiles for and edeproject project."
|
||
(interactive)
|
||
(ede-proj-setup-buildenvironment (ede-current-project) t))
|
||
|
||
(cl-defmethod ede-proj-makefile-create-maybe ((this ede-proj-project) mfilename)
|
||
"Create a Makefile for all Makefile targets in THIS if needed.
|
||
MFILENAME is the makefile to generate."
|
||
;; For now, pass through until dirty is implemented.
|
||
(require 'ede/pmake)
|
||
(if (or (not (file-exists-p mfilename))
|
||
(file-newer-than-file-p (oref this file) mfilename))
|
||
(ede-proj-makefile-create this mfilename)))
|
||
|
||
(cl-defmethod ede-proj-setup-buildenvironment ((this ede-proj-project)
|
||
&optional force)
|
||
"Setup the build environment for project THIS.
|
||
Handles the Makefile, or a Makefile.am configure.ac combination.
|
||
Optional argument FORCE will force items to be regenerated."
|
||
(if (not force)
|
||
(ede-proj-makefile-create-maybe this (ede-proj-dist-makefile this))
|
||
(require 'ede/pmake)
|
||
(ede-proj-makefile-create this (ede-proj-dist-makefile this)))
|
||
;; Rebuild all subprojects
|
||
(ede-map-subprojects
|
||
this (lambda (sproj) (ede-proj-setup-buildenvironment sproj force)))
|
||
;; Autoconf projects need to do other kinds of initializations.
|
||
(when (and (ede-proj-automake-p this)
|
||
(eq this (ede-toplevel this)))
|
||
(require 'ede/pconf)
|
||
;; If the user wants to force this, do it some other way?
|
||
(ede-proj-configure-synchronize this)
|
||
;; Now run automake to fill in the blanks, autoconf, and other
|
||
;; auto thingies so that we can just say "make" when done.
|
||
)
|
||
)
|
||
|
||
|
||
;;; Lower level overloads
|
||
;;
|
||
(cl-defmethod project-rescan ((this ede-proj-project))
|
||
"Rescan the EDE proj project THIS."
|
||
(let ((root (or (ede-project-root this) this))
|
||
)
|
||
;; @TODO - VERIFY THE BELOW WORKS
|
||
(ede-project-directory-remove-hash
|
||
(file-name-directory (ede-project-root-directory root)))
|
||
(ede-delete-project-from-global-list root)
|
||
;; NOTE : parent function double-checks that this dir was
|
||
;; already in memory once.
|
||
(ede-load-project-file (ede-project-root-directory root))
|
||
))
|
||
|
||
(provide 'ede/proj)
|
||
|
||
;;; ede/proj.el ends here
|