org-taskjuggler.el 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. ;;; org-taskjuggler.el --- TaskJuggler exporter for org-mode
  2. ;;
  3. ;; Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
  4. ;;
  5. ;; Emacs Lisp Archive Entry
  6. ;; Filename: org-taskjuggler.el
  7. ;; Version: 6.34trans
  8. ;; Author: Christian Egli
  9. ;; Maintainer: Christian Egli
  10. ;; Keywords: org, taskjuggler, project planning
  11. ;; Description: Converts an org-mode buffer into a taskjuggler project plan
  12. ;; URL:
  13. ;; This file is part of GNU Emacs.
  14. ;; GNU Emacs is free software: you can redistribute it and/or modify
  15. ;; it under the terms of the GNU General Public License as published by
  16. ;; the Free Software Foundation, either version 3 of the License, or
  17. ;; (at your option) any later version.
  18. ;; GNU Emacs is distributed in the hope that it will be useful,
  19. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. ;; GNU General Public License for more details.
  22. ;; You should have received a copy of the GNU General Public License
  23. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  24. ;; Commentary:
  25. ;;
  26. ;; This library implements a TaskJuggler exporter for org-mode.
  27. ;;
  28. ;; The interactive functions are similar to those of the HTML and LaTeX
  29. ;; exporters:
  30. ;;
  31. ;; M-x `org-export-as-taskjuggler'
  32. ;; M-x `org-export-as-taskjuggler-and-open'
  33. ;;
  34. ;;; TODO:
  35. ;; * Code cleanup
  36. ;; * Add documentation
  37. ;;
  38. ;;; Code:
  39. (eval-when-compile
  40. (require 'cl))
  41. (require 'org)
  42. (require 'org-exp)
  43. ;;; User variables:
  44. (defgroup org-export-taskjuggler nil
  45. "Options for exporting Org-mode files to TaskJuggler."
  46. :tag "Org Export TaskJuggler"
  47. :group 'org-export)
  48. (defcustom org-export-taskjuggler-extension ".tjp"
  49. "Extension of TaskJuggler files."
  50. :group 'org-export-taskjuggler
  51. :type 'string)
  52. (defcustom org-export-taskjuggler-project-tag "taskjuggler_project"
  53. "Tag, property or todo used to find the tree containing all
  54. the tasks for the project."
  55. :group 'org-export-taskjuggler
  56. :type 'string)
  57. (defcustom org-export-taskjuggler-resource-tag "taskjuggler_resource"
  58. "Tag, property or todo used to find the tree containing all the
  59. resources for the project."
  60. :group 'org-export-taskjuggler
  61. :type 'string)
  62. (defcustom org-export-taskjuggler-default-project-version "1.0"
  63. "Default version string for the project."
  64. :group 'org-export-taskjuggler
  65. :type 'string)
  66. (defcustom org-export-taskjuggler-default-project-duration 180
  67. "Default project duration if no start and end date have been defined
  68. in the root node of the task tree, i.e. the tree that has been marked
  69. with `org-export-taskjuggler-project-tag'"
  70. :group 'org-export-taskjuggler
  71. :type 'integer)
  72. (defcustom org-export-taskjuggler-default-reports
  73. '("taskreport \"Gantt Chart\" {
  74. headline \"Project Gantt Chart\"
  75. columns hierarchindex, name, start, end, effort, duration, completed, chart
  76. timeformat \"%Y-%m-%d\"
  77. hideresource 1
  78. loadunit days
  79. }"
  80. "resourcereport \"Resource Graph\" {
  81. headline \"Resource Allocation Graph\"
  82. columns no, name, utilization, freeload, chart
  83. loadunit days
  84. sorttasks startup
  85. hidetask ~isleaf()
  86. }")
  87. "Default reports for the project."
  88. :group 'org-export-taskjuggler
  89. :type '(repeat (string :tag "Report")))
  90. (defcustom org-export-taskjuggler-default-global-properties
  91. "shift s40 \"Part time shift\" {
  92. workinghours wed, thu, fri off
  93. }
  94. "
  95. "Default global properties for the project. Here you typically
  96. define global properties such as shifts, accounts, rates,
  97. vacation, macros and flags. Any property that is allowed within
  98. the TaskJuggler file can be inserted. You could for example
  99. include another TaskJuggler file.
  100. The global properties are inserted after the project declaration
  101. but before any resource and task declarations."
  102. :group 'org-export-taskjuggler
  103. :type '(string :tag "Preamble"))
  104. ;;; Hooks
  105. (defvar org-export-taskjuggler-final-hook nil
  106. "Hook run at the end of TaskJuggler export, in the new buffer.")
  107. ;;; Autoload functions:
  108. ;;;###autoload
  109. (defun org-export-as-taskjuggler ()
  110. "Export parts of the current buffer as a TaskJuggler file.
  111. The exporter looks for a tree with tag, property or todo that
  112. matches `org-export-taskjuggler-project-tag' and takes this as
  113. the tasks for this project. The first node of this tree defines
  114. the project properties such as project name and project period.
  115. If there is a tree with tag, property or todo that matches
  116. `org-export-taskjuggler-resource-tag' this three is taken as
  117. resources for the project. If no resources are specified, a
  118. default resource is created and allocated to the project. Also
  119. the taskjuggler project will be created with default reports as
  120. defined in `org-export-taskjuggler-default-reports'."
  121. (interactive)
  122. (message "Exporting...")
  123. (setq-default org-done-keywords org-done-keywords)
  124. (let* ((tasks
  125. (org-taskjuggler-resolve-dependencies
  126. (org-taskjuggler-assign-task-ids
  127. (org-map-entries '(org-taskjuggler-components)
  128. org-export-taskjuggler-project-tag nil 'archive 'comment))))
  129. (resources
  130. (org-taskjuggler-assign-resource-ids
  131. (org-map-entries '(org-taskjuggler-components)
  132. org-export-taskjuggler-resource-tag nil 'archive 'comment)))
  133. (filename (expand-file-name
  134. (concat
  135. (file-name-sans-extension
  136. (file-name-nondirectory buffer-file-name))
  137. org-export-taskjuggler-extension)))
  138. (buffer (find-file-noselect filename))
  139. (old-level 0)
  140. task resource)
  141. ;; add a default resource
  142. (unless resources
  143. (setq resources
  144. `((("ID" . ,(user-login-name))
  145. ("headline" . ,user-full-name)
  146. ("level" . 1)))))
  147. ;; add a default allocation to the first task if none was given
  148. (unless (assoc "allocate" (car tasks))
  149. (let ((task (car tasks))
  150. (resource-id (cdr (assoc "ID" (car resources)))))
  151. (setcar tasks (push (cons "allocate" resource-id) task))))
  152. ;; add a default start date to the first task if none was given
  153. (unless (assoc "start" (car tasks))
  154. (let ((task (car tasks))
  155. (time-string (format-time-string "%Y-%m-%d")))
  156. (setcar tasks (push (cons "start" time-string) task))))
  157. ;; add a default version if none was given
  158. (unless (assoc "version" (car tasks))
  159. (let ((task (car tasks))
  160. (version org-export-taskjuggler-default-project-version))
  161. (setcar tasks (push (cons "version" version) task))))
  162. (with-current-buffer buffer
  163. (erase-buffer)
  164. (org-taskjuggler-open-project (car tasks))
  165. (insert org-export-taskjuggler-default-global-properties)
  166. (insert "\n")
  167. (dolist (resource resources)
  168. (let ((level (cdr (assoc "level" resource))))
  169. (org-taskjuggler-close-maybe level)
  170. (org-taskjuggler-open-resource resource)
  171. (setq old-level level)))
  172. (org-taskjuggler-close-maybe 1)
  173. (setq old-level 0)
  174. (dolist (task tasks)
  175. (let ((level (cdr (assoc "level" task))))
  176. (org-taskjuggler-close-maybe level)
  177. (org-taskjuggler-open-task task)
  178. (setq old-level level)))
  179. (org-taskjuggler-close-maybe 1)
  180. (org-taskjuggler-insert-reports)
  181. (save-buffer)
  182. (or (org-export-push-to-kill-ring "TaskJuggler")
  183. (message "Exporting... done"))
  184. (current-buffer))))
  185. ;;;###autoload
  186. (defun org-export-as-taskjuggler-and-open ()
  187. "Export the current buffer as a TaskJuggler file and open it with the TaskJuggler GUI."
  188. (interactive)
  189. (let ((file-name (buffer-file-name (org-export-as-taskjuggler)))
  190. (command "TaskJugglerUI"))
  191. (start-process-shell-command command nil command file-name)))
  192. (defun org-taskjuggler-parent-is-ordered-p ()
  193. "Return true if the parent of the current node has a property
  194. \"ORDERED\". Return nil otherwise."
  195. (save-excursion
  196. (and (org-up-heading-safe) (org-entry-get (point) "ORDERED"))))
  197. (defun org-taskjuggler-components ()
  198. "Return an alist containing all the pertinent information for
  199. the current node such as the headline, the level, todo state
  200. information, all the properties, etc."
  201. (let* ((props (org-entry-properties))
  202. (components (org-heading-components))
  203. (level (car components))
  204. (headline (nth 4 components))
  205. (parent-ordered (org-taskjuggler-parent-is-ordered-p)))
  206. (push (cons "level" level) props)
  207. (push (cons "headline" headline) props)
  208. (push (cons "parent-ordered" parent-ordered) props)))
  209. (defun org-taskjuggler-assign-task-ids (tasks)
  210. "Given a list of tasks return the same list assigning a unique id
  211. and the full path to each task. Taskjuggler takes hierarchical ids.
  212. For that reason we have to make ids locally unique and we have to keep
  213. a path to the current task."
  214. (let ((previous-level 0)
  215. unique-ids unique-id
  216. path
  217. task resolved-tasks tmp)
  218. (dolist (task tasks resolved-tasks)
  219. (let ((level (cdr (assoc "level" task))))
  220. (cond
  221. ((< previous-level level)
  222. (setq unique-id (org-taskjuggler-get-unique-id task (car unique-ids)))
  223. (dotimes (tmp (- level previous-level))
  224. (push (list unique-id) unique-ids)
  225. (push unique-id path)))
  226. ((= previous-level level)
  227. (setq unique-id (org-taskjuggler-get-unique-id task (car unique-ids)))
  228. (push unique-id (car unique-ids))
  229. (setcar path unique-id))
  230. ((> previous-level level)
  231. (dotimes (tmp (- previous-level level))
  232. (pop unique-ids)
  233. (pop path))
  234. (setq unique-id (org-taskjuggler-get-unique-id task (car unique-ids)))
  235. (push unique-id (car unique-ids))
  236. (setcar path unique-id)))
  237. (push (cons "unique-id" unique-id) task)
  238. (push (cons "path" (mapconcat 'identity (reverse path) ".")) task)
  239. (setq previous-level level)
  240. (setq resolved-tasks (append resolved-tasks (list task)))))))
  241. (defun org-taskjuggler-assign-resource-ids (resources &optional unique-ids)
  242. "Given a list of resources return the same list, assigning a
  243. unique id to each resource."
  244. (cond
  245. ((null resources) nil)
  246. (t
  247. (let* ((resource (car resources))
  248. (unique-id (org-taskjuggler-get-unique-id resource unique-ids)))
  249. (push (cons "unique-id" unique-id) resource)
  250. (cons resource (org-taskjuggler-assign-resource-ids (cdr resources)
  251. (cons unique-id unique-ids)))))))
  252. (defun org-taskjuggler-resolve-dependencies (tasks)
  253. (let ((previous-level 0)
  254. siblings
  255. task resolved-tasks)
  256. (dolist (task tasks resolved-tasks)
  257. (let* ((level (cdr (assoc "level" task)))
  258. (depends (cdr (assoc "depends" task)))
  259. (parent-ordered (cdr (assoc "parent-ordered" task)))
  260. (blocker (cdr (assoc "BLOCKER" task)))
  261. (blocked-on-previous (and blocker (string-match "previous-sibling" blocker)))
  262. (dependencies
  263. (org-taskjuggler-resolve-explicit-dependencies
  264. (append
  265. (and depends (split-string depends "[, \f\t\n\r\v]+" t))
  266. (and blocker (split-string blocker "[, \f\t\n\r\v]+" t))) tasks))
  267. previous-sibling)
  268. ; update previous sibling info
  269. (cond
  270. ((< previous-level level)
  271. (dotimes (tmp (- level previous-level))
  272. (push task siblings)))
  273. ((= previous-level level)
  274. (setq previous-sibling (car siblings))
  275. (setcar siblings task))
  276. ((> previous-level level)
  277. (dotimes (tmp (- previous-level level))
  278. (pop siblings))
  279. (setq previous-sibling (car siblings))
  280. (setcar siblings task)))
  281. ; insert a dependency on previous sibling if the parent is
  282. ; ordered or if the tasks has a BLOCKER attribute with value "previous-sibling"
  283. (when (or (and previous-sibling parent-ordered) blocked-on-previous)
  284. (push (format "!%s" (cdr (assoc "unique-id" previous-sibling))) dependencies))
  285. ; store dependency information
  286. (when dependencies
  287. (push (cons "depends" (mapconcat 'identity dependencies ", ")) task))
  288. (setq previous-level level)
  289. (setq resolved-tasks (append resolved-tasks (list task)))))))
  290. (defun org-taskjuggler-resolve-explicit-dependencies (dependencies tasks)
  291. (let (path)
  292. (cond
  293. ((null dependencies) nil)
  294. ; ignore previous sibling dependencies
  295. ((equal (car dependencies) "previous-sibling")
  296. (org-taskjuggler-resolve-explicit-dependencies (cdr dependencies) tasks))
  297. ; if the id is found in another task use its path
  298. ((setq path (org-taskjuggler-find-task-with-id (car dependencies) tasks))
  299. (cons path (org-taskjuggler-resolve-explicit-dependencies (cdr dependencies) tasks)))
  300. ; silently ignore all other dependencies
  301. (t (org-taskjuggler-resolve-explicit-dependencies (cdr dependencies) tasks)))))
  302. (defun org-taskjuggler-find-task-with-id (id tasks)
  303. "Find ID in tasks. If found return the path of task. Otherwise return nil."
  304. (let ((task-id (cdr (assoc "ID" (car tasks))))
  305. (path (cdr (assoc "path" (car tasks)))))
  306. (cond
  307. ((null tasks) nil)
  308. ((equal task-id id) path)
  309. (t (org-taskjuggler-find-task-with-id id (cdr tasks))))))
  310. (defun org-taskjuggler-get-unique-id (item unique-ids)
  311. "Return a unique id for an ITEM which can be a task or a resource.
  312. The id is derived from the headline and made unique against
  313. UNIQUE-IDS. If the first part of the headline is not unique try to add
  314. more parts of the headline or finally add more underscore characters (\"_\")."
  315. (let* ((headline (cdr (assoc "headline" item)))
  316. (parts (split-string headline))
  317. (id (org-taskjuggler-clean-id (downcase (pop parts)))))
  318. ; try to add more parts of the headline to make it unique
  319. (while (member id unique-ids)
  320. (setq id (concat id "_" (org-taskjuggler-clean-id (downcase (pop parts))))))
  321. ; if its still not unique add "_"
  322. (while (member id unique-ids)
  323. (setq id (concat id "_")))
  324. id))
  325. (defun org-taskjuggler-clean-id (id)
  326. "Clean and return ID to make it acceptable for taskjuggler."
  327. (and id (replace-regexp-in-string "[^a-zA-Z0-9_]" "_" id)))
  328. (defun org-taskjuggler-open-project (project)
  329. "Insert a the beginning of project declaration. All valid
  330. attributes from the PROJECT alist are inserted. If no end date is
  331. specified it is calculated
  332. `org-export-taskjuggler-default-project-duration' days from now."
  333. (let* ((unique-id (cdr (assoc "unique-id" project)))
  334. (headline (cdr (assoc "headline" project)))
  335. (version (cdr (assoc "version" project)))
  336. (start (cdr (assoc "start" project)))
  337. (end (cdr (assoc "end" project))))
  338. (insert
  339. (format "project %s \"%s\" \"%s\" %s +%sd {\n }\n"
  340. unique-id headline version start
  341. org-export-taskjuggler-default-project-duration))))
  342. (defun org-taskjuggler-filter-and-join (items)
  343. "Filter all nil elements from ITEMS and join the remaining ones
  344. with separator \"\n\"."
  345. (let ((filtered-items (remq nil items)))
  346. (and filtered-items (mapconcat 'identity filtered-items "\n"))))
  347. (defun org-taskjuggler-get-attributes (item attributes)
  348. "Return all attribute as a single formated string. ITEM is an alist
  349. representing either a resource or a task. ATTRIBUTES is a list of
  350. symbols. Only entries from ITEM are considered that are listed in
  351. ATTRIBUTES."
  352. (org-taskjuggler-filter-and-join
  353. (mapcar
  354. (lambda (attribute)
  355. (org-taskjuggler-filter-and-join
  356. (org-taskjuggler-get-attribute item attribute)))
  357. attributes)))
  358. (defun org-taskjuggler-get-attribute (item attribute)
  359. "Return a list of strings containing the properly formatted
  360. taskjuggler declaration for a given ATTRIBUTE in ITEM (an alist).
  361. If the ATTRIBUTE is not in ITEM return nil."
  362. (cond
  363. ((null item) nil)
  364. ((equal (symbol-name attribute) (car (car item)))
  365. (cons (or
  366. (and (equal attribute 'limits)
  367. (format "%s { %s }" (symbol-name attribute) (cdr (car item))))
  368. (format "%s %s" (symbol-name attribute) (cdr (car item))))
  369. (org-taskjuggler-get-attribute (cdr item) attribute)))
  370. (t (org-taskjuggler-get-attribute (cdr item) attribute))))
  371. (defun org-taskjuggler-open-resource (resource)
  372. (let ((id (org-taskjuggler-clean-id (cdr (assoc "ID" resource))))
  373. (unique-id (org-taskjuggler-clean-id (cdr (assoc "unique-id" resource))))
  374. (headline (cdr (assoc "headline" resource)))
  375. (attributes '(limits vacation shift booking efficiency journalentry rate)))
  376. (insert
  377. (concat
  378. "resource " (or id unique-id) " \"" headline "\" {\n "
  379. (org-taskjuggler-get-attributes resource attributes) "\n"))))
  380. (defun org-taskjuggler-clean-effort (effort)
  381. "Translate effort strings into a format acceptable to taskjuggler,
  382. i.e. REAL UNIT. If the effort string is something like 5:00 it
  383. will be assumed to be hours and will be translated into 5.0h.
  384. Otherwise if it contains something like 3.0 it is assumed to be
  385. days and will be translated into 3.0d. Other formats that taskjuggler
  386. supports (like weeks, months and years) are currently not supported."
  387. (cond
  388. ((null effort) effort)
  389. ((string-match "\\([0-9]+\\):\\([0-9]+\\)" effort)
  390. ; FIXME: translate the minutes to a decimal
  391. (concat (match-string 1 effort) "." (match-string 2 effort) "h"))
  392. ((string-match "\\([0-9]+\\).\\([0-9]+\\)" effort) (concat effort "d"))
  393. (t (error "Not a valid effort (%s)" effort))))
  394. (defun org-taskjuggler-get-priority (priority)
  395. "Return a priority between 1 and 1000 based on PRIORITY, an
  396. org-mode priority string."
  397. (max 1 (/ (* 1000 (- org-lowest-priority (string-to-char priority)))
  398. (- org-lowest-priority org-highest-priority))))
  399. (defun org-taskjuggler-open-task (task)
  400. (let* ((unique-id (cdr (assoc "unique-id" task)))
  401. (headline (cdr (assoc "headline" task)))
  402. (effort (org-taskjuggler-clean-effort (cdr (assoc org-effort-property task))))
  403. (depends (cdr (assoc "depends" task)))
  404. (allocate (cdr (assoc "allocate" task)))
  405. (priority-raw (cdr (assoc "PRIORITY" task)))
  406. (priority (and priority-raw (org-taskjuggler-get-priority priority-raw)))
  407. (state (cdr (assoc "TODO" task)))
  408. (complete (or (and (member state org-done-keywords) "100")
  409. (cdr (assoc "complete" task))))
  410. (parent-ordered (cdr (assoc "parent-ordered" task)))
  411. (previous-sibling (cdr (assoc "previous-sibling" task)))
  412. (attributes
  413. '(account start note duration endbuffer endcredit end
  414. flags journalentry, length maxend maxstart milestone
  415. minend minstart period reference responsible
  416. scheduling startbuffer startcredit statusnote)))
  417. (insert
  418. (concat
  419. "task " unique-id " \"" headline "\" {\n"
  420. (if (and parent-ordered previous-sibling)
  421. (format " depends %s\n" previous-sibling)
  422. (and depends (format " depends %s\n" depends)))
  423. (and allocate (format " purge allocations\n allocate %s\n" allocate))
  424. (and complete (format " complete %s\n" complete))
  425. (and effort (format " effort %s\n" effort))
  426. (and priority (format " priority %s\n" priority))
  427. (org-taskjuggler-get-attributes task attributes)
  428. "\n"))))
  429. (defun org-taskjuggler-close-maybe (level)
  430. (while (> old-level level)
  431. (insert "}\n")
  432. (setq old-level (1- old-level)))
  433. (when (= old-level level)
  434. (insert "}\n")))
  435. (defun org-taskjuggler-insert-reports ()
  436. (let (report)
  437. (dolist (report org-export-taskjuggler-default-reports)
  438. (insert report "\n"))))
  439. (provide 'org-taskjuggler)
  440. ;;; org-taskjuggler.el ends here