ox-taskjuggler: Use task_id property when specified
[org-mode.git] / contrib / lisp / ox-taskjuggler.el
blobd82940324e8d791312603da6001092861c4c2cdd
1 ;;; ox-taskjuggler.el --- TaskJuggler Back-End for Org Export Engine
2 ;;
3 ;; Copyright (C) 2007-2013 Free Software Foundation, Inc.
4 ;;
5 ;; Emacs Lisp Archive Entry
6 ;; Filename: ox-taskjuggler.el
7 ;; Author: Christian Egli
8 ;; Nicolas Goaziou <n dot goaziou at gmail dot com>
9 ;; Maintainer: Christian Egli
10 ;; Keywords: org, taskjuggler, project planning
11 ;; Description: Converts an Org mode buffer into a TaskJuggler project plan
13 ;; This file is not part of GNU Emacs.
15 ;; This program is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; This program is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
28 ;;; Commentary:
30 ;; This library implements a TaskJuggler exporter for Org mode.
31 ;; TaskJuggler uses a text format to define projects, tasks and
32 ;; resources, so it is a natural fit for Org mode. It can produce all
33 ;; sorts of reports for tasks or resources in either HTML, CSV or PDF.
34 ;; The current version of TaskJuggler requires KDE but the next
35 ;; version is implemented in Ruby and should therefore run on any
36 ;; platform.
38 ;; The exporter does not export all the nodes of a document or
39 ;; strictly follow the order of the nodes in the document.
41 ;; Instead the TaskJuggler exporter looks for a tree that defines the
42 ;; tasks and a optionally tree that defines the resources for this
43 ;; project. It then creates a TaskJuggler file based on these trees
44 ;; and the attributes defined in all the nodes.
46 ;; * Installation
48 ;; Put this file into your load-path and the following line into your
49 ;; ~/.emacs:
51 ;; (add-to-list 'org-export-backends 'taskjuggler)
53 ;; or customize `org-export-backends' variable.
55 ;; The interactive functions are the following:
57 ;; M-x `org-taskjuggler-export'
58 ;; M-x `org-taskjuggler-export-and-open'
60 ;; * Tasks
62 ;; Let's illustrate the usage with a small example. Create your tasks
63 ;; as you usually do with org-mode. Assign efforts to each task using
64 ;; properties (it's easiest to do this in the column view). You
65 ;; should end up with something similar to the example by Peter Jones
66 ;; in:
68 ;; http://www.contextualdevelopment.com/static/artifacts/articles/2008/project-planning/project-planning.org.
70 ;; Now mark the top node of your tasks with a tag named
71 ;; "taskjuggler_project" (or whatever you customized
72 ;; `org-taskjuggler-project-tag' to). You are now ready to export the
73 ;; project plan with `org-taskjuggler-export-and-open' which will
74 ;; export the project plan and open a Gantt chart in TaskJugglerUI.
76 ;; * Resources
78 ;; Next you can define resources and assign those to work on specific
79 ;; tasks. You can group your resources hierarchically. Tag the top
80 ;; node of the resources with "taskjuggler_resource" (or whatever you
81 ;; customized `org-taskjuggler-resource-tag' to). You can optionally
82 ;; assign an identifier (named "resource_id") to the resources (using
83 ;; the standard org properties commands) or you can let the exporter
84 ;; generate identifiers automatically (the exporter picks the first
85 ;; word of the headline as the identifier as long as it is unique, see
86 ;; the documentation of `org-taskjuggler--build-unique-id'). Using that
87 ;; identifier you can then allocate resources to tasks. This is again
88 ;; done with the "allocate" property on the tasks. Do this in column
89 ;; view or when on the task type
91 ;; C-c C-x p allocate RET <resource_id> RET
93 ;; Once the allocations are done you can again export to TaskJuggler
94 ;; and check in the Resource Allocation Graph which person is working
95 ;; on what task at what time.
97 ;; * Export of properties
99 ;; The exporter also takes TODO state information into consideration,
100 ;; i.e. if a task is marked as done it will have the corresponding
101 ;; attribute in TaskJuggler ("complete 100"). Also it will export any
102 ;; property on a task resource or resource node which is known to
103 ;; TaskJuggler, such as limits, vacation, shift, booking, efficiency,
104 ;; journalentry, rate for resources or account, start, note, duration,
105 ;; end, journalentry, milestone, reference, responsible, scheduling,
106 ;; etc for tasks.
108 ;; * Dependencies
110 ;; The exporter will handle dependencies that are defined in the tasks
111 ;; either with the ORDERED attribute (see TODO dependencies in the Org
112 ;; mode manual) or with the BLOCKER attribute (see org-depend.el) or
113 ;; alternatively with a depends attribute. Both the BLOCKER and the
114 ;; depends attribute can be either "previous-sibling" or a reference
115 ;; to an identifier (named "task_id") which is defined for another
116 ;; task in the project. BLOCKER and the depends attribute can define
117 ;; multiple dependencies separated by either space or comma. You can
118 ;; also specify optional attributes on the dependency by simply
119 ;; appending it. The following examples should illustrate this:
121 ;; * Training material
122 ;; :PROPERTIES:
123 ;; :task_id: training_material
124 ;; :ORDERED: t
125 ;; :END:
126 ;; ** Markup Guidelines
127 ;; :PROPERTIES:
128 ;; :Effort: 2d
129 ;; :END:
130 ;; ** Workflow Guidelines
131 ;; :PROPERTIES:
132 ;; :Effort: 2d
133 ;; :END:
134 ;; * Presentation
135 ;; :PROPERTIES:
136 ;; :Effort: 2d
137 ;; :BLOCKER: training_material { gapduration 1d } some_other_task
138 ;; :END:
140 ;;;; * TODO
141 ;; - Look at org-file-properties, org-global-properties and
142 ;; org-global-properties-fixed
143 ;; - What about property inheritance and org-property-inherit-p?
144 ;; - Use TYPE_TODO as an way to assign resources
146 ;;; Code:
148 (eval-when-compile (require 'cl))
150 (require 'ox)
154 ;;; User Variables
156 (defgroup org-export-taskjuggler nil
157 "Options specific for TaskJuggler export back-end."
158 :tag "Org Export TaskJuggler"
159 :group 'org-export)
161 (defcustom org-taskjuggler-extension ".tjp"
162 "Extension of TaskJuggler files."
163 :group 'org-export-taskjuggler
164 :type 'string)
166 (defcustom org-taskjuggler-project-tag "taskjuggler_project"
167 "Tag marking project's tasks.
168 This tag is used to find the tree containing all the tasks for
169 the project."
170 :group 'org-export-taskjuggler
171 :type 'string)
173 (defcustom org-taskjuggler-resource-tag "taskjuggler_resource"
174 "Tag marking project's resources.
175 This tag is used to find the tree containing all the resources
176 for the project."
177 :group 'org-export-taskjuggler
178 :type 'string)
180 (defcustom org-taskjuggler-report-tag "taskjuggler_report"
181 "Tag marking project's reports.
182 This tag is used to find the tree containing all the reports for
183 the project."
184 :group 'org-export-taskjuggler
185 :type 'string)
187 (defcustom org-taskjuggler-target-version 3.0
188 "Which version of TaskJuggler the exporter is targeting."
189 :group 'org-export-taskjuggler
190 :type 'number)
192 (defcustom org-taskjuggler-default-project-version "1.0"
193 "Default version string for the project.
194 This value can also be set with the \":VERSION:\" property
195 associated to the headline defining the project."
196 :group 'org-export-taskjuggler
197 :type 'string)
199 (defcustom org-taskjuggler-default-project-duration 280
200 "Default project duration.
201 The value will be used if no start and end date have been defined
202 in the root node of the task tree, i.e. the tree that has been
203 marked with `org-taskjuggler-project-tag'"
204 :group 'org-export-taskjuggler
205 :type 'integer)
207 (defcustom org-taskjuggler-default-reports
208 '("taskreport \"Gantt Chart\" {
209 headline \"Project Gantt Chart\"
210 columns hierarchindex, name, start, end, effort, duration, completed, chart
211 timeformat \"%Y-%m-%d\"
212 hideresource 1
213 loadunit shortauto
215 "resourcereport \"Resource Graph\" {
216 headline \"Resource Allocation Graph\"
217 columns no, name, utilization, freeload, chart
218 loadunit shortauto
219 sorttasks startup
220 hidetask ~isleaf()
222 "Default reports for the project."
223 :group 'org-export-taskjuggler
224 :type '(repeat (string :tag "Report")))
226 (defcustom org-taskjuggler-default-global-header ""
227 "Default global header for the project.
228 This goes before project declaration, and might be useful for
229 early macros."
230 :group 'org-export-taskjuggler
231 :type '(string :tag "Preamble"))
233 (defcustom org-taskjuggler-default-global-properties
234 "shift s40 \"Part time shift\" {
235 workinghours wed, thu, fri off
238 "Default global properties for the project.
240 Here you typically define global properties such as shifts,
241 accounts, rates, vacation, macros and flags. Any property that
242 is allowed within the TaskJuggler file can be inserted. You
243 could for example include another TaskJuggler file.
245 The global properties are inserted after the project declaration
246 but before any resource and task declarations."
247 :group 'org-export-taskjuggler
248 :type '(string :tag "Preamble"))
250 (defcustom org-taskjuggler-valid-task-attributes
251 '(account start note duration endbuffer endcredit end
252 flags journalentry length limits maxend maxstart minend
253 minstart period reference responsible scheduling
254 startbuffer startcredit statusnote chargeset charge)
255 "Valid attributes for Taskjuggler tasks.
256 If one of these appears as a property for a headline, it will be
257 exported with the corresponding task."
258 :group 'org-export-taskjuggler)
260 (defcustom org-taskjuggler-valid-resource-attributes
261 '(limits vacation shift booking efficiency journalentry rate
262 workinghours flags)
263 "Valid attributes for Taskjuggler resources.
264 If one of these appears as a property for a headline, it will be
265 exported with the corresponding resource."
266 :group 'org-export-taskjuggler)
268 (defcustom org-taskjuggler-valid-report-attributes
269 '(headline columns definitions timeformat hideresource hidetask
270 loadunit sorttasks formats period)
271 "Valid attributes for Taskjuggler reports.
272 If one of these appears as a property for a headline, it will be
273 exported with the corresponding report."
274 :group 'org-export-taskjuggler)
276 (defcustom org-taskjuggler-keep-project-as-task t
277 "Non-nil keeps the project headline as an umbrella task for all tasks.
278 Setting this to nil will allow maintaining completely separated
279 task buckets, while still sharing the same resources pool."
280 :group 'org-export-taskjuggler
281 :type 'boolean)
285 ;;; Hooks
287 (defvar org-taskjuggler-final-hook nil
288 "Hook run after a TaskJuggler files has been saved.
289 This hook is run with the name of the file as argument.")
293 ;;; Back-End Definition
295 (org-export-define-backend 'taskjuggler
296 '((template . org-taskjuggler-project-plan))
297 :menu-entry
298 '(?J "Export to TaskJuggler"
299 ((?j "As TJP file" (lambda (a s v b) (org-taskjuggler-export a s v)))
300 (?o "As TJP file and open"
301 (lambda (a s v b)
302 (if a (org-taskjuggler-export a s v)
303 (org-taskjuggler-export-and-open s v))))))
304 ;; This property will be used to store unique ids in communication
305 ;; channel. Ids will be retrieved with `org-taskjuggler-get-id'.
306 :options-alist '((:taskjuggler-unique-ids nil nil nil)))
310 ;;; Unique IDs
312 (defun org-taskjuggler-assign-task-ids (tasks info)
313 "Assign a unique ID to each task in TASKS.
314 TASKS is a list of headlines. Return value is an alist between
315 headlines and their associated ID. IDs are hierarchical, which
316 means they only need to be unique among the task siblings."
317 (let* (alist
318 (build-id
319 (lambda (tasks local-ids)
320 (org-element-map tasks 'headline
321 (lambda (task)
322 (let ((id (org-taskjuggler--build-unique-id task local-ids)))
323 (push id local-ids)
324 (push (cons task id) alist)
325 (funcall build-id (org-element-contents task) nil)))
326 info nil 'headline))))
327 (funcall build-id tasks nil)
328 alist))
330 (defun org-taskjuggler-assign-resource-ids (resources info)
331 "Assign a unique ID to each resource within RESOURCES.
332 RESOURCES is a list of headlines. Return value is an alist
333 between headlines and their associated ID."
334 (let (ids)
335 (org-element-map resources 'headline
336 (lambda (resource)
337 (let ((id (org-taskjuggler--build-unique-id resource ids)))
338 (push id ids)
339 (cons resource id)))
340 info)))
344 ;;; Accessors
346 (defun org-taskjuggler-get-project (info)
347 "Return project in parse tree.
348 INFO is a plist used as a communication channel. First headline
349 in buffer with `org-taskjuggler-project-tag' defines the project.
350 If no such task is defined, pick the first headline in buffer.
351 If there is no headline at all, return nil."
352 (or (org-element-map (plist-get info :parse-tree) 'headline
353 (lambda (hl)
354 (and (member org-taskjuggler-project-tag
355 (org-export-get-tags hl info))
356 hl))
357 info t)
358 (org-element-map tree 'headline 'identity info t)))
360 (defun org-taskjuggler-get-id (item info)
361 "Return id for task or resource ITEM.
362 ITEM is a headline. Return value is a string."
363 (cdr (assq item (plist-get info :taskjuggler-unique-ids))))
365 (defun org-taskjuggler-get-name (item)
366 "Return name for task or resource ITEM.
367 ITEM is a headline. Return value is a string."
368 ;; Quote double quotes in name.
369 (replace-regexp-in-string
370 "\"" "\\\"" (org-element-property :raw-value item) t t))
372 (defun org-taskjuggler-get-start (item)
373 "Return start date for task or resource ITEM.
374 ITEM is a headline. Return value is a string or nil if ITEM
375 doesn't have any start date defined.."
376 (let ((scheduled (org-element-property :scheduled item)))
377 (and scheduled (org-timestamp-format scheduled "%Y-%02m-%02d"))))
379 (defun org-taskjuggler-get-end (item)
380 "Return end date for task or resource ITEM.
381 ITEM is a headline. Return value is a string or nil if ITEM
382 doesn't have any end date defined.."
383 (let ((deadline (org-element-property :deadline item)))
384 (and deadline (org-timestamp-format deadline "%Y-%02m-%02d"))))
388 ;;; Internal Functions
390 (defun org-taskjuggler--indent-string (s)
391 "Indent string S by 2 spaces.
392 Return new string. If S is the empty string, return it."
393 (if (equal "" s) s (replace-regexp-in-string "^ *\\S-" " \\&" s)))
395 (defun org-taskjuggler--build-attributes (item attributes)
396 "Return attributes string for task, resource or report ITEM.
397 ITEM is a headline. ATTRIBUTES is a list of symbols
398 representing valid attributes for ITEM."
399 (mapconcat
400 (lambda (attribute)
401 (let ((value (org-element-property
402 (intern (upcase (format ":%s" attribute)))
403 item)))
404 (and value (format "%s %s\n" attribute value))))
405 (remq nil attributes) ""))
407 (defun org-taskjuggler--build-unique-id (item unique-ids)
408 "Return a unique id for a given task or a resource.
409 ITEM is an `headline' type element representing the task or
410 resource. Its id is derived from its name and made unique
411 against UNIQUE-IDS. If the (downcased) first token of the
412 headline is not unique try to add more (downcased) tokens of the
413 headline or finally add more underscore characters (\"_\")."
414 (let ((id (org-string-nw-p (org-element-property :TASK_ID item))))
415 ;; If an id is specified, use it, as long as it's unique.
416 (if (and id (not (member id unique-ids))) id
417 (let* ((parts (org-split-string (org-element-property :raw-value item)))
418 (id (org-taskjuggler--clean-id (downcase (pop parts)))))
419 ;; Try to add more parts of the headline to make it unique.
420 (while (and (car parts) (member id unique-ids))
421 (setq id (concat id "_"
422 (org-taskjuggler--clean-id (downcase (pop parts))))))
423 ;; If it's still not unique, add "_".
424 (while (member id unique-ids)
425 (setq id (concat id "_")))
426 id))))
428 (defun org-taskjuggler--clean-id (id)
429 "Clean and return ID to make it acceptable for TaskJuggler.
430 ID is a string."
431 ;; Replace non-ascii by "_".
432 (replace-regexp-in-string
433 "[^a-zA-Z0-9_]" "_"
434 ;; Make sure id doesn't start with a number.
435 (replace-regexp-in-string "^\\([0-9]\\)" "_\\1" id)))
439 ;;; Dependencies
441 (defun org-taskjuggler-resolve-dependencies (task info)
442 "Return a list of all tasks TASK depends on.
443 TASK is a headline. INFO is a plist used as a communication
444 channel."
445 (let ((deps-ids
446 ;; Get all dependencies specified in BLOCKER and DEPENDS task
447 ;; properties. Clean options from them.
448 (let ((deps (concat (org-element-property :BLOCKER task)
449 (org-element-property :DEPENDS task))))
450 (and deps
451 (org-split-string (replace-regexp-in-string "{.*?}" "" deps)
452 "[ ,]* +"))))
453 depends)
454 (when deps-ids
455 ;; Find tasks with :task_id: property matching id in DEPS-IDS.
456 ;; Add them to DEPENDS.
457 (let* ((project (org-taskjuggler-get-project info))
458 (tasks (if org-taskjuggler-keep-project-as-task project
459 (org-element-contents project))))
460 (setq depends
461 (org-element-map tasks 'headline
462 (lambda (task)
463 (let ((task-id (org-element-property :TASK_ID task)))
464 (and task-id (member task-id deps-ids) task)))
465 info)))
466 ;; Check BLOCKER and DEPENDS properties. If "previous-sibling"
467 ;; belongs to DEPS-ID, add it to DEPENDS.
468 (when (and (member-ignore-case "previous-sibling" deps-ids)
469 (not (org-export-first-sibling-p task info)))
470 (let ((prev (org-export-get-previous-element task info)))
471 (and (not (memq prev depends)) (push prev depends)))))
472 ;; Check ORDERED status of parent.
473 (let ((parent (org-export-get-parent task)))
474 (when (and parent
475 (org-element-property :ORDERED parent)
476 (not (org-export-first-sibling-p task info)))
477 (push (org-export-get-previous-element task info) depends)))
478 ;; Return dependencies.
479 depends))
481 (defun org-taskjuggler-format-dependencies (dependencies task info)
482 "Format DEPENDENCIES to match TaskJuggler syntax.
483 DEPENDENCIES is list of dependencies for TASK, as returned by
484 `org-taskjuggler-resolve-depedencies'. TASK is a headline.
485 INFO is a plist used as a communication channel. Return value
486 doesn't include leading \"depends\"."
487 (let ((dep-str (concat (org-element-property :BLOCKER task)
489 (org-element-property :DEPENDS task)))
490 (get-path
491 (lambda (dep)
492 ;; Return path to DEP relatively to TASK.
493 (let ((parent (org-export-get-parent dep))
494 (exclamations 1)
495 (option
496 (let ((id (org-element-property :TASK_ID dep)))
497 (and id
498 (string-match (concat id " +\\({.*?}\\)") dep-str)
499 (org-match-string-no-properties 1))))
500 path)
501 ;; Compute number of exclamation marks.
502 (while (not (org-element-map parent 'headline
503 (lambda (task) (eq task dep))))
504 (incf exclamations)
505 (setq parent (org-export-get-parent parent)))
506 ;; Build path from DEP to PARENT.
507 (while (not (eq parent dep))
508 (push (org-taskjuggler-get-id dep info) path)
509 (setq dep (org-export-get-parent dep)))
510 ;; Return full path. Add dependency options, if any.
511 (concat (make-string exclamations ?!)
512 (mapconcat 'identity path ".")
513 (and option (concat " " option)))))))
514 ;; Return dependencies string, without the leading "depends".
515 (mapconcat (lambda (dep) (funcall get-path dep)) dependencies ", ")))
519 ;;; Translator Functions
521 (defun org-taskjuggler-project-plan (contents info)
522 "Build TaskJuggler project plan.
523 CONTENTS is ignored. INFO is a plist holding export options.
524 Return complete project plan as a string in TaskJuggler syntax."
525 (let* ((tree (plist-get info :parse-tree))
526 (project (or (org-taskjuggler-get-project info)
527 (error "No project specified"))))
528 (concat
529 ;; 1. Insert header.
530 (org-element-normalize-string org-taskjuggler-default-global-header)
531 ;; 2. Insert project.
532 (org-taskjuggler--build-project project info)
533 ;; 3. Insert global properties.
534 (org-element-normalize-string org-taskjuggler-default-global-properties)
535 ;; 4. Insert resources. Provide a default one if none is
536 ;; specified.
537 (let ((main-resources
538 ;; Collect contents from various trees marked with
539 ;; `org-taskjuggler-resource-tag'. Only gather top level
540 ;; resources.
541 (apply 'append
542 (org-element-map tree 'headline
543 (lambda (hl)
544 (and (member org-taskjuggler-resource-tag
545 (org-export-get-tags hl info))
546 (org-element-map (org-element-contents hl) 'headline
547 'identity info nil 'headline)))
548 info nil 'headline))))
549 ;; Assign a unique ID to each resource. Store it under
550 ;; `:taskjuggler-unique-ids' property in INFO.
551 (setq info
552 (plist-put info :taskjuggler-unique-ids
553 (org-taskjuggler-assign-resource-ids
554 main-resources info)))
555 (concat
556 (if main-resources
557 (mapconcat
558 (lambda (resource) (org-taskjuggler--build-resource resource info))
559 main-resources "")
560 (format "resource %s \"%s\" {\n}\n" (user-login-name) user-full-name))
561 ;; 5. Insert tasks.
562 (let ((main-tasks
563 ;; If `org-taskjuggler-keep-project-as-task' is
564 ;; non-nil, there is only one task. Otherwise, every
565 ;; direct children of PROJECT is a top level task.
566 (if org-taskjuggler-keep-project-as-task (list project)
567 (or (org-element-map (org-element-contents project) 'headline
568 'identity info nil 'headline)
569 (error "No task specified")))))
570 ;; Assign a unique ID to each task. Add it to
571 ;; `:taskjuggler-unique-ids' property in INFO.
572 (setq info
573 (plist-put info :taskjuggler-unique-ids
574 (append
575 (org-taskjuggler-assign-task-ids main-tasks info)
576 (plist-get info :taskjuggler-unique-ids))))
577 ;; If no resource is allocated among tasks, allocate one to
578 ;; the first task.
579 (unless (org-element-map main-tasks 'headline
580 (lambda (task) (org-element-property :ALLOCATE task))
581 info t)
582 (org-element-put-property
583 (car main-tasks) :ALLOCATE
584 (or (org-taskjuggler-get-id (car main-resources) info)
585 (user-login-name))))
586 (mapconcat
587 (lambda (task) (org-taskjuggler--build-task task info))
588 main-tasks ""))
589 ;; 6. Insert reports. If no report is defined, insert default
590 ;; reports.
591 (let ((main-reports
592 ;; Collect contents from various trees marked with
593 ;; `org-taskjuggler-report-tag'. Only gather top level
594 ;; reports.
595 (apply 'append
596 (org-element-map tree 'headline
597 (lambda (hl)
598 (and (member org-taskjuggler-report-tag
599 (org-export-get-tags hl info))
600 (org-element-map (org-element-contents hl)
601 'headline 'identity info nil 'headline)))
602 info nil 'headline))))
603 (if main-reports
604 (mapconcat
605 (lambda (report) (org-taskjuggler--build-report report info))
606 main-reports "")
607 (mapconcat 'org-element-normalize-string
608 org-taskjuggler-default-reports ""))))))))
610 (defun org-taskjuggler--build-project (project info)
611 "Return a project declaration.
612 PROJECT is a headline. INFO is a plist used as a communication
613 channel. If no start date is specified, start today. If no end
614 date is specified, end `org-taskjuggler-default-project-duration'
615 days from now."
616 (format "project %s \"%s\" \"%s\" %s %s {\n}\n"
617 (org-taskjuggler-get-id project info)
618 (org-taskjuggler-get-name project)
619 ;; Version is obtained through :TASKJUGGLER_VERSION:
620 ;; property or `org-taskjuggler-default-project-version'.
621 (or (org-element-property :VERSION project)
622 org-taskjuggler-default-project-version)
623 (or (org-taskjuggler-get-start project)
624 (format-time-string "%Y-%m-%d"))
625 (let ((end (org-taskjuggler-get-end project)))
626 (or (and end (format "- %s" end))
627 (format "+%sd" org-taskjuggler-default-project-duration)))))
629 (defun org-taskjuggler--build-resource (resource info)
630 "Return a resource declaration.
632 RESOURCE is a headline. INFO is a plist used as a communication
633 channel.
635 All valid attributes from RESOURCE are inserted. If RESOURCE
636 defines a property \"resource_id\" it will be used as the id for
637 this resource. Otherwise it will use the ID property. If
638 neither is defined a unique id will be associated to it."
639 (concat
640 ;; Opening resource.
641 (format "resource %s \"%s\" {\n"
642 (org-taskjuggler--clean-id
643 (or (org-element-property :RESOURCE_ID resource)
644 (org-element-property :ID resource)
645 (org-taskjuggler-get-id resource info)))
646 (org-taskjuggler-get-name resource))
647 ;; Add attributes.
648 (org-taskjuggler--indent-string
649 (org-taskjuggler--build-attributes
650 resource org-taskjuggler-valid-resource-attributes))
651 ;; Add inner resources.
652 (org-taskjuggler--indent-string
653 (mapconcat
654 'identity
655 (org-element-map (org-element-contents resource) 'headline
656 (lambda (hl) (org-taskjuggler--build-resource hl info))
657 info nil 'headline)
658 ""))
659 ;; Closing resource.
660 "}\n"))
662 (defun org-taskjuggler--build-report (report)
663 "Return a report declaration.
664 REPORT is a headline. INFO is a plist used as a communication
665 channel."
666 (concat
667 ;; Opening report.
668 (format "%s \"%s\" {\n"
669 (or (org-element-property :REPORT_KIND report) "taskreport")
670 (org-taskjuggler-get-name report))
671 ;; Add attributes.
672 (org-taskjuggler--indent-string
673 (org-taskjuggler--build-attributes
674 report org-taskjuggler-valid-report-attributes))
675 ;; Add inner reports.
676 (org-taskjuggler--indent-string
677 (mapconcat
678 'identity
679 (org-element-map (org-element-contents report) 'headline
680 (lambda (hl) (org-taskjuggler--build-report hl info))
681 info nil 'headline)
682 ""))
683 ;; Closing report.
684 "}\n"))
686 (defun org-taskjuggler--build-task (task info)
687 "Return a task declaration.
689 TASK is a headline. INFO is a plist used as a communication
690 channel.
692 All valid attributes from TASK are inserted. If TASK defines
693 a property \"task_id\" it will be used as the id for this task.
694 Otherwise it will use the ID property. If neither is defined
695 a unique id will be associated to it."
696 (let* ((allocate (org-element-property :ALLOCATE task))
697 (complete
698 (if (eq (org-element-property :todo-type task) 'done) "100"
699 (org-element-property :COMPLETE task)))
700 (depends (org-taskjuggler-resolve-dependencies task info))
701 (effort (org-element-property :EFFORT task))
702 (milestone
703 (or (org-element-property :MILESTONE task)
704 (not (or (org-element-map (org-element-contents task) 'headline
705 'identity info t) ; Has task any child?
706 effort
707 (org-element-property :LENGTH task)
708 (org-element-property :DURATION task)
709 (and (org-taskjuggler-get-start task)
710 (org-taskjuggler-get-end task))
711 (org-element-property :PERIOD task)))))
712 (priority
713 (let ((pri (org-element-property :priority task)))
714 (and pri
715 (max 1 (/ (* 1000 (- org-lowest-priority pri))
716 (- org-lowest-priority org-highest-priority)))))))
717 (concat
718 ;; Opening task.
719 (format "task %s \"%s\" {\n"
720 (org-taskjuggler-get-id task info)
721 (org-taskjuggler-get-name task))
722 ;; Add default attributes.
723 (and depends
724 (format " depends %s\n"
725 (org-taskjuggler-format-dependencies depends task info)))
726 (and allocate
727 (format " purge %s\n allocate %s\n"
728 ;; Compatibility for previous TaskJuggler versions.
729 (if (>= org-taskjuggler-target-version 3.0) "allocate"
730 "allocations")
731 allocate))
732 (and complete (format " complete %s\n" comptete))
733 (and effort
734 (format " effort %s\n"
735 (let* ((minutes (org-duration-string-to-minutes effort))
736 (hours (/ minutes 60.0)))
737 (format "%.1fh" hours))))
738 (and priority (format " priority %s\n" complete))
739 (and milestone " milestone\n")
740 ;; Add other valid attributes.
741 (org-taskjuggler--indent-string
742 (org-taskjuggler--build-attributes
743 task org-taskjuggler-valid-task-attributes))
744 ;; Add inner tasks.
745 (org-taskjuggler--indent-string
746 (mapconcat 'identity
747 (org-element-map (org-element-contents task) 'headline
748 (lambda (hl) (org-taskjuggler--build-task hl info))
749 info nil 'headline)
750 ""))
751 ;; Closing task.
752 "}\n")))
756 ;;; Interactive Functions
758 ;;;###autoload
759 (defun org-taskjuggler-export (&optional async subtreep visible-only)
760 "Export current buffer to a TaskJuggler file.
762 The exporter looks for a tree with tag that matches
763 `org-taskjuggler-project-tag' and takes this as the tasks for
764 this project. The first node of this tree defines the project
765 properties such as project name and project period.
767 If there is a tree with tag that matches
768 `org-taskjuggler-resource-tag' this tree is taken as resources
769 for the project. If no resources are specified, a default
770 resource is created and allocated to the project.
772 Also the TaskJuggler project will be created with default reports
773 as defined in `org-taskjuggler-default-reports'.
775 If narrowing is active in the current buffer, only export its
776 narrowed part.
778 If a region is active, export that region.
780 A non-nil optional argument ASYNC means the process should happen
781 asynchronously. The resulting file should be accessible through
782 the `org-export-stack' interface.
784 When optional argument SUBTREEP is non-nil, export the sub-tree
785 at point, extracting information from the headline properties
786 first.
788 When optional argument VISIBLE-ONLY is non-nil, don't export
789 contents of hidden elements.
791 Return output file's name."
792 (interactive)
793 (let ((outfile
794 (org-export-output-file-name org-taskjuggler-extension subtreep)))
795 (if async
796 (org-export-async-start
797 (lambda (f)
798 (org-export-add-to-stack f 'taskjuggler)
799 (run-hook-with-args 'org-taskjuggler-final-hook f))
800 `(expand-file-name
801 (org-export-to-file 'taskjuggler ,outfile ,subtreep ,visible-only)))
802 (org-export-to-file 'taskjuggler outfile subtreep visible-only)
803 (run-hook-with-args 'org-taskjuggler-final-hook outfile)
804 outfile)))
806 ;;;###autoload
807 (defun org-taskjuggler-export-and-open (&optional subtreep visible-only)
808 "Export current buffer to a TaskJuggler file and open it.
810 The exporter looks for a tree with tag that matches
811 `org-taskjuggler-project-tag' and takes this as the tasks for
812 this project. The first node of this tree defines the project
813 properties such as project name and project period.
815 If there is a tree with tag that matches
816 `org-taskjuggler-resource-tag' this tree is taken as resources
817 for the project. If no resources are specified, a default
818 resource is created and allocated to the project.
820 Also the TaskJuggler project will be created with default reports
821 as defined in `org-taskjuggler-default-reports'.
823 If narrowing is active in the current buffer, only export its
824 narrowed part.
826 If a region is active, export that region.
828 When optional argument SUBTREEP is non-nil, export the sub-tree
829 at point, extracting information from the headline properties
830 first.
832 When optional argument VISIBLE-ONLY is non-nil, don't export
833 contents of hidden elements.
835 Open file with the TaskJuggler GUI."
836 (interactive)
837 (let* ((file (org-taskjuggler-export nil subtreep visible-only))
838 (process-name "TaskJugglerUI")
839 (command (concat process-name " " file)))
840 (start-process-shell-command process-name nil command)))
843 (provide 'ox-taskjuggler)
845 ;; Local variables:
846 ;; sentence-end-double-space: t
847 ;; End:
849 ;;; ox-taskjuggler.el ends here