org-taskjuggler.el 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  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. ;; TaskJuggler uses a text format to define projects, tasks and
  28. ;; resources, so it is a natural fit for org-mode. It can produce all
  29. ;; sorts of reports for tasks or resources in either HTML, CSV or PDF.
  30. ;; The current version of TaskJuggler requires KDE but the next
  31. ;; version is implemented in Ruby and should therefore run on any
  32. ;; platform.
  33. ;;
  34. ;; The exporter is a bit different from other exporters, such as the
  35. ;; HTML and LaTeX exporters for example, in that it does not export
  36. ;; all the nodes of a document or strictly follow the order of the
  37. ;; nodes in the document.
  38. ;;
  39. ;; Instead the TaskJuggler exporter looks for a tree that defines the
  40. ;; tasks and a optionally tree that defines the resources for this
  41. ;; project. It then creates a TaskJuggler file based on these trees
  42. ;; and the attributes defined in all the nodes.
  43. ;;
  44. ;; * Installation
  45. ;;
  46. ;; Put this file into your load-path and the following line into your
  47. ;; ~/.emacs:
  48. ;;
  49. ;; (require 'org-taskjuggler)
  50. ;;
  51. ;; The interactive functions are similar to those of the HTML and LaTeX
  52. ;; exporters:
  53. ;;
  54. ;; M-x `org-export-as-taskjuggler'
  55. ;; M-x `org-export-as-taskjuggler-and-open'
  56. ;;
  57. ;; * Tasks
  58. ;;
  59. ;; Let's illustrate the usage with a small example. Create your tasks
  60. ;; as you usually do with org-mode. Assign efforts to each task using
  61. ;; properties (it's easiest to do this in the column view). You should
  62. ;; end up with something similar to the example by Peter Jones in
  63. ;; http://www.contextualdevelopment.com/static/artifacts/articles/2008/project-planning/project-planning.org.
  64. ;; Now mark the top node of your tasks with a tag named
  65. ;; "taskjuggler_project" (or whatever you customized
  66. ;; `org-export-taskjuggler-project-tag' to). You are now ready to
  67. ;; export the project plan with `org-export-as-taskjuggler-and-open'
  68. ;; which will export the project plan and open a gant chart in
  69. ;; TaskJugglerUI.
  70. ;;
  71. ;; * Resources
  72. ;;
  73. ;; Next you can define resources and assign those to work on specific
  74. ;; tasks. You can group your resources hierarchically. Tag the top
  75. ;; node of the resources with "taskjuggler_resource" (or whatever you
  76. ;; customized `org-export-taskjuggler-resource-tag' to). You can
  77. ;; optionally assign an identifier (named "resource_id") to the
  78. ;; resources (using the standard org properties commands) or you can
  79. ;; let the exporter generate identifiers automatically (the exporter
  80. ;; picks the first word of the headline as the identifier as long as
  81. ;; it is unique, see the documentation of
  82. ;; `org-taskjuggler-get-unique-id'). Using that identifier you can
  83. ;; then allocate resources to tasks. This is again done with the
  84. ;; "allocate" property on the tasks. Do this in column view or when on
  85. ;; the task type
  86. ;;
  87. ;; C-c C-x p allocate RET <resource_id> RET
  88. ;;
  89. ;; Once the allocations are done you can again export to TaskJuggler
  90. ;; and check in the Resource Allocation Graph which person is working
  91. ;; on what task at what time.
  92. ;;
  93. ;; * Export of properties
  94. ;;
  95. ;; The exporter also takes TODO state information into consideration,
  96. ;; i.e. if a task is marked as done it will have the corresponding
  97. ;; attribute in TaskJuggler ("complete 100"). Also it will export any
  98. ;; property on a task resource or resource node which is known to
  99. ;; TaskJuggler, such as limits, vacation, shift, booking, efficiency,
  100. ;; journalentry, rate for resources or account, start, note, duration,
  101. ;; end, journalentry, milestone, reference, responsible, scheduling,
  102. ;; etc for tasks.
  103. ;;
  104. ;; * Dependencies
  105. ;;
  106. ;; The exporter will handle dependencies that are defined in the tasks
  107. ;; either with the ORDERED attribute (see TODO dependencies in the Org
  108. ;; mode manual) or with the BLOCKER attribute (see org-depend.el) or
  109. ;; alternatively with a depends attribute. Both the BLOCKER and the
  110. ;; depends attribute can be either "previous-sibling" or a reference
  111. ;; to an identifier (named "task_id") which is defined for another
  112. ;; task in the project. BLOCKER and the depends attribute can define
  113. ;; multiple dependencies separated by either space or comma. You can
  114. ;; also specify optional attributes on the dependency by simply
  115. ;; appending it. The following examples should illustrate this:
  116. ;;
  117. ;; * Training material
  118. ;; :PROPERTIES:
  119. ;; :task_id: training_material
  120. ;; :ORDERED: t
  121. ;; :END:
  122. ;; ** Markup Guidelines
  123. ;; :PROPERTIES:
  124. ;; :Effort: 2.0
  125. ;; :END:
  126. ;; ** Workflow Guidelines
  127. ;; :PROPERTIES:
  128. ;; :Effort: 2.0
  129. ;; :END:
  130. ;; * Presentation
  131. ;; :PROPERTIES:
  132. ;; :Effort: 2.0
  133. ;; :BLOCKER: training_material { gapduration 1d } some_other_task
  134. ;; :END:
  135. ;;
  136. ;;;; * TODO
  137. ;; - Look at org-file-properties, org-global-properties and
  138. ;; org-global-properties-fixed
  139. ;; - What about property inheritance and org-property-inherit-p?
  140. ;; - Use TYPE_TODO as an way to assign resources
  141. ;; - Make sure multiple dependency definitions (i.e. BLOCKER on
  142. ;; previous-sibling and on a specific task_id) in multiple
  143. ;; attributes are properly exported.
  144. ;; - Fix compiler warnings about reference and assignment to free
  145. ;; variable `old-level' in org-taskjuggler-close-maybe
  146. ;;
  147. ;;; Code:
  148. (eval-when-compile
  149. (require 'cl))
  150. (require 'org)
  151. (require 'org-exp)
  152. ;;; User variables:
  153. (defgroup org-export-taskjuggler nil
  154. "Options for exporting Org-mode files to TaskJuggler."
  155. :tag "Org Export TaskJuggler"
  156. :group 'org-export)
  157. (defcustom org-export-taskjuggler-extension ".tjp"
  158. "Extension of TaskJuggler files."
  159. :group 'org-export-taskjuggler
  160. :type 'string)
  161. (defcustom org-export-taskjuggler-project-tag "taskjuggler_project"
  162. "Tag, property or todo used to find the tree containing all
  163. the tasks for the project."
  164. :group 'org-export-taskjuggler
  165. :type 'string)
  166. (defcustom org-export-taskjuggler-resource-tag "taskjuggler_resource"
  167. "Tag, property or todo used to find the tree containing all the
  168. resources for the project."
  169. :group 'org-export-taskjuggler
  170. :type 'string)
  171. (defcustom org-export-taskjuggler-default-project-version "1.0"
  172. "Default version string for the project."
  173. :group 'org-export-taskjuggler
  174. :type 'string)
  175. (defcustom org-export-taskjuggler-default-project-duration 280
  176. "Default project duration if no start and end date have been defined
  177. in the root node of the task tree, i.e. the tree that has been marked
  178. with `org-export-taskjuggler-project-tag'"
  179. :group 'org-export-taskjuggler
  180. :type 'integer)
  181. (defcustom org-export-taskjuggler-default-reports
  182. '("taskreport \"Gantt Chart\" {
  183. headline \"Project Gantt Chart\"
  184. columns hierarchindex, name, start, end, effort, duration, completed, chart
  185. timeformat \"%Y-%m-%d\"
  186. hideresource 1
  187. loadunit shortauto
  188. }"
  189. "resourcereport \"Resource Graph\" {
  190. headline \"Resource Allocation Graph\"
  191. columns no, name, utilization, freeload, chart
  192. loadunit shortauto
  193. sorttasks startup
  194. hidetask ~isleaf()
  195. }")
  196. "Default reports for the project."
  197. :group 'org-export-taskjuggler
  198. :type '(repeat (string :tag "Report")))
  199. (defcustom org-export-taskjuggler-default-global-properties
  200. "shift s40 \"Part time shift\" {
  201. workinghours wed, thu, fri off
  202. }
  203. "
  204. "Default global properties for the project. Here you typically
  205. define global properties such as shifts, accounts, rates,
  206. vacation, macros and flags. Any property that is allowed within
  207. the TaskJuggler file can be inserted. You could for example
  208. include another TaskJuggler file.
  209. The global properties are inserted after the project declaration
  210. but before any resource and task declarations."
  211. :group 'org-export-taskjuggler
  212. :type '(string :tag "Preamble"))
  213. ;;; Hooks
  214. (defvar org-export-taskjuggler-final-hook nil
  215. "Hook run at the end of TaskJuggler export, in the new buffer.")
  216. ;;; Autoload functions:
  217. ;;;###autoload
  218. (defun org-export-as-taskjuggler ()
  219. "Export parts of the current buffer as a TaskJuggler file.
  220. The exporter looks for a tree with tag, property or todo that
  221. matches `org-export-taskjuggler-project-tag' and takes this as
  222. the tasks for this project. The first node of this tree defines
  223. the project properties such as project name and project period.
  224. If there is a tree with tag, property or todo that matches
  225. `org-export-taskjuggler-resource-tag' this three is taken as
  226. resources for the project. If no resources are specified, a
  227. default resource is created and allocated to the project. Also
  228. the taskjuggler project will be created with default reports as
  229. defined in `org-export-taskjuggler-default-reports'."
  230. (interactive)
  231. (message "Exporting...")
  232. (setq-default org-done-keywords org-done-keywords)
  233. (let* ((tasks
  234. (org-taskjuggler-resolve-dependencies
  235. (org-taskjuggler-assign-task-ids
  236. (org-map-entries
  237. '(org-taskjuggler-components)
  238. org-export-taskjuggler-project-tag nil 'archive 'comment))))
  239. (resources
  240. (org-taskjuggler-assign-resource-ids
  241. (org-map-entries
  242. '(org-taskjuggler-components)
  243. org-export-taskjuggler-resource-tag nil 'archive 'comment)))
  244. (filename (expand-file-name
  245. (concat
  246. (file-name-sans-extension
  247. (file-name-nondirectory buffer-file-name))
  248. org-export-taskjuggler-extension)))
  249. (buffer (find-file-noselect filename))
  250. (old-level 0)
  251. task resource)
  252. (unless tasks
  253. (error "No tasks specified"))
  254. ;; add a default resource
  255. (unless resources
  256. (setq resources
  257. `((("resource_id" . ,(user-login-name))
  258. ("headline" . ,user-full-name)
  259. ("level" . 1)))))
  260. ;; add a default allocation to the first task if none was given
  261. (unless (assoc "allocate" (car tasks))
  262. (let ((task (car tasks))
  263. (resource-id (cdr (assoc "resource_id" (car resources)))))
  264. (setcar tasks (push (cons "allocate" resource-id) task))))
  265. ;; add a default start date to the first task if none was given
  266. (unless (assoc "start" (car tasks))
  267. (let ((task (car tasks))
  268. (time-string (format-time-string "%Y-%m-%d")))
  269. (setcar tasks (push (cons "start" time-string) task))))
  270. ;; add a default version if none was given
  271. (unless (assoc "version" (car tasks))
  272. (let ((task (car tasks))
  273. (version org-export-taskjuggler-default-project-version))
  274. (setcar tasks (push (cons "version" version) task))))
  275. (with-current-buffer buffer
  276. (erase-buffer)
  277. (org-taskjuggler-open-project (car tasks))
  278. (insert org-export-taskjuggler-default-global-properties)
  279. (insert "\n")
  280. (dolist (resource resources)
  281. (let ((level (cdr (assoc "level" resource))))
  282. (org-taskjuggler-close-maybe level)
  283. (org-taskjuggler-open-resource resource)
  284. (setq old-level level)))
  285. (org-taskjuggler-close-maybe 1)
  286. (setq old-level 0)
  287. (dolist (task tasks)
  288. (let ((level (cdr (assoc "level" task))))
  289. (org-taskjuggler-close-maybe level)
  290. (org-taskjuggler-open-task task)
  291. (setq old-level level)))
  292. (org-taskjuggler-close-maybe 1)
  293. (org-taskjuggler-insert-reports)
  294. (save-buffer)
  295. (or (org-export-push-to-kill-ring "TaskJuggler")
  296. (message "Exporting... done"))
  297. (current-buffer))))
  298. ;;;###autoload
  299. (defun org-export-as-taskjuggler-and-open ()
  300. "Export the current buffer as a TaskJuggler file and open it
  301. with the TaskJuggler GUI."
  302. (interactive)
  303. (let ((file-name (buffer-file-name (org-export-as-taskjuggler)))
  304. (command "TaskJugglerUI"))
  305. (start-process-shell-command command nil command file-name)))
  306. (defun org-taskjuggler-parent-is-ordered-p ()
  307. "Return true if the parent of the current node has a property
  308. \"ORDERED\". Return nil otherwise."
  309. (save-excursion
  310. (and (org-up-heading-safe) (org-entry-get (point) "ORDERED"))))
  311. (defun org-taskjuggler-components ()
  312. "Return an alist containing all the pertinent information for
  313. the current node such as the headline, the level, todo state
  314. information, all the properties, etc."
  315. (let* ((props (org-entry-properties))
  316. (components (org-heading-components))
  317. (level (nth 1 components))
  318. (headline (nth 4 components))
  319. (parent-ordered (org-taskjuggler-parent-is-ordered-p)))
  320. (push (cons "level" level) props)
  321. (push (cons "headline" headline) props)
  322. (push (cons "parent-ordered" parent-ordered) props)))
  323. (defun org-taskjuggler-assign-task-ids (tasks)
  324. "Given a list of tasks return the same list assigning a unique id
  325. and the full path to each task. Taskjuggler takes hierarchical ids.
  326. For that reason we have to make ids locally unique and we have to keep
  327. a path to the current task."
  328. (let ((previous-level 0)
  329. unique-ids unique-id
  330. path
  331. task resolved-tasks tmp)
  332. (dolist (task tasks resolved-tasks)
  333. (let ((level (cdr (assoc "level" task))))
  334. (cond
  335. ((< previous-level level)
  336. (setq unique-id (org-taskjuggler-get-unique-id task (car unique-ids)))
  337. (dotimes (tmp (- level previous-level))
  338. (push (list unique-id) unique-ids)
  339. (push unique-id path)))
  340. ((= previous-level level)
  341. (setq unique-id (org-taskjuggler-get-unique-id task (car unique-ids)))
  342. (push unique-id (car unique-ids))
  343. (setcar path unique-id))
  344. ((> previous-level level)
  345. (dotimes (tmp (- previous-level level))
  346. (pop unique-ids)
  347. (pop path))
  348. (setq unique-id (org-taskjuggler-get-unique-id task (car unique-ids)))
  349. (push unique-id (car unique-ids))
  350. (setcar path unique-id)))
  351. (push (cons "unique-id" unique-id) task)
  352. (push (cons "path" (mapconcat 'identity (reverse path) ".")) task)
  353. (setq previous-level level)
  354. (setq resolved-tasks (append resolved-tasks (list task)))))))
  355. (defun org-taskjuggler-assign-resource-ids (resources &optional unique-ids)
  356. "Given a list of resources return the same list, assigning a
  357. unique id to each resource."
  358. (cond
  359. ((null resources) nil)
  360. (t
  361. (let* ((resource (car resources))
  362. (unique-id (org-taskjuggler-get-unique-id resource unique-ids)))
  363. (push (cons "unique-id" unique-id) resource)
  364. (cons resource
  365. (org-taskjuggler-assign-resource-ids (cdr resources)
  366. (cons unique-id unique-ids)))))))
  367. (defun org-taskjuggler-resolve-dependencies (tasks)
  368. (let ((previous-level 0)
  369. siblings
  370. task resolved-tasks)
  371. (dolist (task tasks resolved-tasks)
  372. (let* ((level (cdr (assoc "level" task)))
  373. (depends (cdr (assoc "depends" task)))
  374. (parent-ordered (cdr (assoc "parent-ordered" task)))
  375. (blocker (cdr (assoc "BLOCKER" task)))
  376. (blocked-on-previous
  377. (and blocker (string-match "previous-sibling" blocker)))
  378. (dependencies
  379. (org-taskjuggler-resolve-explicit-dependencies
  380. (append
  381. (and depends (org-taskjuggler-tokenize-dependencies depends))
  382. (and blocker (org-taskjuggler-tokenize-dependencies blocker)))
  383. tasks))
  384. previous-sibling)
  385. ; update previous sibling info
  386. (cond
  387. ((< previous-level level)
  388. (dotimes (tmp (- level previous-level))
  389. (push task siblings)))
  390. ((= previous-level level)
  391. (setq previous-sibling (car siblings))
  392. (setcar siblings task))
  393. ((> previous-level level)
  394. (dotimes (tmp (- previous-level level))
  395. (pop siblings))
  396. (setq previous-sibling (car siblings))
  397. (setcar siblings task)))
  398. ; insert a dependency on previous sibling if the parent is
  399. ; ordered or if the tasks has a BLOCKER attribute with value "previous-sibling"
  400. (when (or (and previous-sibling parent-ordered) blocked-on-previous)
  401. (push (format "!%s" (cdr (assoc "unique-id" previous-sibling))) dependencies))
  402. ; store dependency information
  403. (when dependencies
  404. (push (cons "depends" (mapconcat 'identity dependencies ", ")) task))
  405. (setq previous-level level)
  406. (setq resolved-tasks (append resolved-tasks (list task)))))))
  407. (defun org-taskjuggler-tokenize-dependencies (dependencies)
  408. "Split a dependency property value DEPENDENCIES into the
  409. individual dependencies and return them as a list while keeping
  410. the optional arguments (such as gapduration) for the
  411. dependencies. A dependency will have to match `[-a-zA-Z0-9_]+'."
  412. (cond
  413. ((string-match "^ *$" dependencies) nil)
  414. ((string-match "^[ \t]*\\([-a-zA-Z0-9_]+\\([ \t]*{[^}]+}\\)?\\)[ \t,]*" dependencies)
  415. (cons
  416. (substring dependencies (match-beginning 1) (match-end 1))
  417. (org-taskjuggler-tokenize-dependencies (substring dependencies (match-end 0)))))
  418. (t (error (format "invalid dependency id %s" dependencies)))))
  419. (defun org-taskjuggler-resolve-explicit-dependencies (dependencies tasks)
  420. "For each dependency in DEPENDENCIES try to find a
  421. corresponding task with a matching property \"task_id\" in TASKS.
  422. Return a list containing the resolved links for all DEPENDENCIES
  423. where a matching tasks was found. If the dependency is
  424. \"previous-sibling\" it is ignored (as this is dealt with in
  425. `org-taskjuggler-resolve-dependencies'). If there is no matching
  426. task the dependency is ignored and a warning is displayed ."
  427. (unless (null dependencies)
  428. (let*
  429. ;; the dependency might have optional attributes such as "{
  430. ;; gapduration 5d }", so only use the first string as id for the
  431. ;; dependency
  432. ((dependency (car dependencies))
  433. (id (car (split-string dependency)))
  434. (optional-attributes
  435. (mapconcat 'identity (cdr (split-string dependency)) " "))
  436. (path (org-taskjuggler-find-task-with-id id tasks)))
  437. (cond
  438. ;; ignore previous sibling dependencies
  439. ((equal (car dependencies) "previous-sibling")
  440. (org-taskjuggler-resolve-explicit-dependencies (cdr dependencies) tasks))
  441. ;; if the id is found in another task use its path
  442. ((not (null path))
  443. (cons (mapconcat 'identity (list path optional-attributes) " ")
  444. (org-taskjuggler-resolve-explicit-dependencies
  445. (cdr dependencies) tasks)))
  446. ;; warn about dangling dependency but otherwise ignore it
  447. (t (display-warning
  448. 'org-export-taskjuggler
  449. (format "No task with matching property \"task_id\" found for id %s" id))
  450. (org-taskjuggler-resolve-explicit-dependencies (cdr dependencies) tasks))))))
  451. (defun org-taskjuggler-find-task-with-id (id tasks)
  452. "Find ID in tasks. If found return the path of task. Otherwise
  453. return nil."
  454. (let ((task-id (cdr (assoc "task_id" (car tasks))))
  455. (path (cdr (assoc "path" (car tasks)))))
  456. (cond
  457. ((null tasks) nil)
  458. ((equal task-id id) path)
  459. (t (org-taskjuggler-find-task-with-id id (cdr tasks))))))
  460. (defun org-taskjuggler-get-unique-id (item unique-ids)
  461. "Return a unique id for an ITEM which can be a task or a resource.
  462. The id is derived from the headline and made unique against
  463. UNIQUE-IDS. If the (downcased) first token of the headline is not
  464. unique try to add more (downcased) tokens of the headline or
  465. finally add more underscore characters (\"_\")."
  466. (let* ((headline (cdr (assoc "headline" item)))
  467. (parts (split-string headline))
  468. (id (org-taskjuggler-clean-id (downcase (pop parts)))))
  469. ; try to add more parts of the headline to make it unique
  470. (while (member id unique-ids)
  471. (setq id (concat id "_" (org-taskjuggler-clean-id (downcase (pop parts))))))
  472. ; if its still not unique add "_"
  473. (while (member id unique-ids)
  474. (setq id (concat id "_")))
  475. id))
  476. (defun org-taskjuggler-clean-id (id)
  477. "Clean and return ID to make it acceptable for taskjuggler."
  478. (and id (replace-regexp-in-string "[^a-zA-Z0-9_]" "_" id)))
  479. (defun org-taskjuggler-open-project (project)
  480. "Insert the beginning of a project declaration. All valid
  481. attributes from the PROJECT alist are inserted. If no end date is
  482. specified it is calculated
  483. `org-export-taskjuggler-default-project-duration' days from now."
  484. (let* ((unique-id (cdr (assoc "unique-id" project)))
  485. (headline (cdr (assoc "headline" project)))
  486. (version (cdr (assoc "version" project)))
  487. (start (cdr (assoc "start" project)))
  488. (end (cdr (assoc "end" project))))
  489. (insert
  490. (format "project %s \"%s\" \"%s\" %s +%sd {\n }\n"
  491. unique-id headline version start
  492. org-export-taskjuggler-default-project-duration))))
  493. (defun org-taskjuggler-filter-and-join (items)
  494. "Filter all nil elements from ITEMS and join the remaining ones
  495. with separator \"\n\"."
  496. (let ((filtered-items (remq nil items)))
  497. (and filtered-items (mapconcat 'identity filtered-items "\n"))))
  498. (defun org-taskjuggler-get-attributes (item attributes)
  499. "Return all attribute as a single formated string. ITEM is an
  500. alist representing either a resource or a task. ATTRIBUTES is a
  501. list of symbols. Only entries from ITEM are considered that are
  502. listed in ATTRIBUTES."
  503. (org-taskjuggler-filter-and-join
  504. (mapcar
  505. (lambda (attribute)
  506. (org-taskjuggler-filter-and-join
  507. (org-taskjuggler-get-attribute item attribute)))
  508. attributes)))
  509. (defun org-taskjuggler-get-attribute (item attribute)
  510. "Return a list of strings containing the properly formatted
  511. taskjuggler declaration for a given ATTRIBUTE in ITEM (an alist).
  512. If the ATTRIBUTE is not in ITEM return nil."
  513. (cond
  514. ((null item) nil)
  515. ((equal (symbol-name attribute) (car (car item)))
  516. (cons (format "%s %s" (symbol-name attribute) (cdr (car item)))
  517. (org-taskjuggler-get-attribute (cdr item) attribute)))
  518. (t (org-taskjuggler-get-attribute (cdr item) attribute))))
  519. (defun org-taskjuggler-open-resource (resource)
  520. "Insert the beginning of a resource declaration. All valid
  521. attributes from the RESOURCE alist are inserted. If the RESOURCE
  522. defines a property \"resource_id\" it will be used as the id for
  523. this resource. Otherwise it will use the ID property. If neither
  524. is defined it will calculate a unique id for the resource using
  525. `org-taskjuggler-get-unique-id'."
  526. (let ((id (org-taskjuggler-clean-id
  527. (or (cdr (assoc "resource_id" resource))
  528. (cdr (assoc "ID" resource))
  529. (cdr (assoc "unique-id" resource)))))
  530. (headline (cdr (assoc "headline" resource)))
  531. (attributes '(limits vacation shift booking efficiency journalentry rate)))
  532. (insert
  533. (concat
  534. "resource " id " \"" headline "\" {\n "
  535. (org-taskjuggler-get-attributes resource attributes) "\n"))))
  536. (defun org-taskjuggler-clean-effort (effort)
  537. "Translate effort strings into a format acceptable to taskjuggler,
  538. i.e. REAL UNIT. If the effort string is something like 5:30 it
  539. will be assumed to be hours and will be translated into 5.5h.
  540. Otherwise if it contains something like 3.0 it is assumed to be
  541. days and will be translated into 3.0d. Other formats that
  542. taskjuggler supports (like weeks, months and years) are currently
  543. not supported."
  544. (cond
  545. ((null effort) effort)
  546. ((string-match "\\([0-9]+\\):\\([0-9]+\\)" effort)
  547. (let ((hours (string-to-number (match-string 1 effort)))
  548. (minutes (string-to-number (match-string 2 effort))))
  549. (format "%dh" (+ hours (/ minutes 60.0)))))
  550. ((string-match "\\([0-9]+\\).\\([0-9]+\\)" effort) (concat effort "d"))
  551. (t (error "Not a valid effort (%s)" effort))))
  552. (defun org-taskjuggler-get-priority (priority)
  553. "Return a priority between 1 and 1000 based on PRIORITY, an
  554. org-mode priority string."
  555. (max 1 (/ (* 1000 (- org-lowest-priority (string-to-char priority)))
  556. (- org-lowest-priority org-highest-priority))))
  557. (defun org-taskjuggler-open-task (task)
  558. (let* ((unique-id (cdr (assoc "unique-id" task)))
  559. (headline (cdr (assoc "headline" task)))
  560. (effort (org-taskjuggler-clean-effort (cdr (assoc org-effort-property task))))
  561. (depends (cdr (assoc "depends" task)))
  562. (allocate (cdr (assoc "allocate" task)))
  563. (priority-raw (cdr (assoc "PRIORITY" task)))
  564. (priority (and priority-raw (org-taskjuggler-get-priority priority-raw)))
  565. (state (cdr (assoc "TODO" task)))
  566. (complete (or (and (member state org-done-keywords) "100")
  567. (cdr (assoc "complete" task))))
  568. (parent-ordered (cdr (assoc "parent-ordered" task)))
  569. (previous-sibling (cdr (assoc "previous-sibling" task)))
  570. (attributes
  571. '(account start note duration endbuffer endcredit end
  572. flags journalentry length maxend maxstart milestone
  573. minend minstart period reference responsible
  574. scheduling startbuffer startcredit statusnote)))
  575. (insert
  576. (concat
  577. "task " unique-id " \"" headline "\" {\n"
  578. (if (and parent-ordered previous-sibling)
  579. (format " depends %s\n" previous-sibling)
  580. (and depends (format " depends %s\n" depends)))
  581. (and allocate (format " purge allocations\n allocate %s\n" allocate))
  582. (and complete (format " complete %s\n" complete))
  583. (and effort (format " effort %s\n" effort))
  584. (and priority (format " priority %s\n" priority))
  585. (org-taskjuggler-get-attributes task attributes)
  586. "\n"))))
  587. (defun org-taskjuggler-close-maybe (level)
  588. (while (> old-level level)
  589. (insert "}\n")
  590. (setq old-level (1- old-level)))
  591. (when (= old-level level)
  592. (insert "}\n")))
  593. (defun org-taskjuggler-insert-reports ()
  594. (let (report)
  595. (dolist (report org-export-taskjuggler-default-reports)
  596. (insert report "\n"))))
  597. (provide 'org-taskjuggler)
  598. ;;; org-taskjuggler.el ends here