org-taskjuggler.el 22 KB

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