Project

General

Profile

1 4971 daigle
 /*
2
  *   '$RCSfile$'
3
  *     Purpose: Basic funtions to support searching workflows
4
  *   Copyright: 2009 Regents of the University of California and the
5
  *               National Center for Ecological Analysis and Synthesis
6
  *     Authors: Michael Daigle
7
  *
8
  *    '$Author: leinfelder $'
9
  *      '$Date: 2008-06-17 13:16:32 -0700 (Tue, 17 Jun 2008) $'
10
  *  '$Revision: 4006 $'
11
  *
12
  * This program is free software; you can redistribute it and/or modify
13
  * it under the terms of the GNU General Public License as published by
14
  * the Free Software Foundation; either version 2 of the License, or
15
  * (at your option) any later version.
16
  *
17
  * This program is distributed in the hope that it will be useful,
18
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
  * GNU General Public License for more details.
21
  *
22
  * You should have received a copy of the GNU General Public License
23
  * along with this program; if not, write to the Free Software
24
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
  */
26
27 4948 daigle
/*
28
 * Generate a workflow query string.  this assumes that search fields meet the
29
 * following criteria in the web page:
30 4971 daigle
 * -- search input fields have an ID that starts with sf-
31 4948 daigle
 * -- if there is a search mode dropdown for an input field in the form, it's ID
32 4971 daigle
 *    should use the same convention as the input field, but start with sm-
33
 *    (i.e. the search mode input for the sf-firstname input would be sm-firstname)
34 4948 daigle
 */
35
function setWorkflowQueryFormField(formId) {
36
	var queryString = "";
37
	queryString += "<pathquery version='1.2'>";
38 5311 daigle
	/*queryString += "<returndoctype>entity</returndoctype>";
39 4948 daigle
	queryString += "<returndoctype>-//UC Berkeley//DTD MoML 1//EN</returndoctype>";
40 4966 daigle
	queryString += "<returnfield>/entity/@name</returnfield>";
41 4976 daigle
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'author\']/configure</returnfield>";
42
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'description\']/configure</returnfield>";
43
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'createDate\']/configure</returnfield>";
44
	queryString += "<returnfield>/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'workflowId\']/configure</returnfield>";
45 4966 daigle
	queryString += "<returnfield>/entity/property[@name=\'karLSID\']/@value</returnfield>";
46 5311 daigle
	queryString += "<returnfield>/entity/property[@name=\'entityId\']/@value</returnfield>";*/
47 5354 tao
	/*queryString += "<returndoctype>kar</returndoctype>";*/
48
	queryString += "<returndoctype>http://www.kepler-project.org/kar-2.0.0</returndoctype>";
49
  queryString += "<returnfield>karEntry/karEntryXML/entity/@name</returnfield>";
50
  queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'author\']/configure</returnfield>";
51
  queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'description\']/configure</returnfield>";
52
  queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'createDate\']/configure</returnfield>";
53
  queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'KeplerDocumentation\']/property[@name=\'workflowId\']/configure</returnfield>";
54
  queryString += "<returnfield>mainAttributes/lsid</returnfield>";
55
  queryString += "<returnfield>karEntry/karEntryXML/entity/property[@name=\'entityId\']/@value</returnfield>";
56
	queryString += "<returnfield>karEntry/karEntryXML/property[@name=\'WorkflowRun\']/@class</returnfield>";
57 4948 daigle
	queryString += "<querygroup operator='INTERSECT'>";
58
59
	var elementList = document.getElementById(formId).elements;
60
	for(var i = 0; i < elementList.length; i++) {
61
	//alert("form element: " + elementList[i].id);
62
		if((elementList[i].id.indexOf("sf-") == 0) && (elementList[i].value != '')) {
63
			queryString += getQueryTerm(elementList[i]);
64
		}
65
	}
66
67
	queryString += "</querygroup>";
68
	queryString += "</pathquery>";
69
70
	//alert(queryString);
71
72
	var queryField = document.getElementById("query");
73
74
	queryField.value = queryString;
75
}
76
77 4971 daigle
/*
78
 * Generate individual query terms for all the search input fields in a search
79
 * form.  There must be a case for each search field handle explicitly below.
80
 * This assumes:
81
 * -- search input fields have an ID that starts with sf-
82
 * -- if there is a search mode dropdown for an input field in the form, it's ID
83
 *    should use the same convention as the input field, but start with sm-
84
 *    (i.e. the search mode input for the sf-firstname input would be sm-firstname)
85
 */
86 4948 daigle
function getQueryTerm(sfElement) {
87
	var baseId = sfElement.id.substring(3, sfElement.id.length);
88
	var searchMode = "contains";
89
	var selector = document.getElementById("sm-" + baseId);
90
	if (selector != null) {
91
		searchMode = selector.value;
92
	}
93
94
	var pathExpr = '';
95
	if (sfElement.name == 'name') {
96
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
97
		pathExpr += "<value>" + sfElement.value + "</value>";
98 5311 daigle
		/*pathExpr += "<pathexpr>entity/@name</pathexpr>";*/
99 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/@name</pathexpr>";
100 4948 daigle
		pathExpr += "</queryterm>";
101
	} else if (sfElement.name == 'keyword') {
102
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
103
		pathExpr += "<value>" + sfElement.value + "</value>";
104 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@value</pathexpr>";
105 4948 daigle
		pathExpr += "</queryterm>";
106
	} else if (sfElement.name == 'creator') {
107
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
108
		pathExpr += "<value>" + sfElement.value + "</value>";
109 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
110 4948 daigle
		pathExpr += "</queryterm>";
111
	} else if (sfElement.name == 'description') {
112
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
113
		pathExpr += "<value>" + sfElement.value + "</value>";
114 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
115 4948 daigle
		pathExpr += "</queryterm>";
116
	} else if (sfElement.name == 'date-created') {
117
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
118
		pathExpr += "<value>" + sfElement.value + "</value>";
119 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
120 4948 daigle
		pathExpr += "</queryterm>";
121 5311 daigle
	} /*else if (sfElement.name == 'date-executed') {
122 4948 daigle
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
123
		pathExpr += "<value>" + sfElement.value + "</value>";
124 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
125 4984 daigle
		pathExpr += "</queryterm>";
126 5311 daigle
	} */ else if (sfElement.name == 'workflow-lsid') {
127 4948 daigle
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
128 4984 daigle
		pathExpr += "<value>entityId</value>";
129 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@name</pathexpr>";
130 4966 daigle
		pathExpr += "</queryterm>";
131
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
132
		pathExpr += "<value>" + sfElement.value + "</value>";
133 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@value</pathexpr>";
134 4966 daigle
		pathExpr += "</queryterm>";
135 5311 daigle
	}/* else if (sfElement.name == 'workflow-run-id') {
136 4948 daigle
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
137
		pathExpr += "<value>" + sfElement.value + "</value>";
138 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
139 4948 daigle
		pathExpr += "</queryterm>";
140
	} else if (sfElement.name == 'status') {
141
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
142
		pathExpr += "<value>" + sfElement.value + "</value>";
143 5354 tao
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
144 4948 daigle
		pathExpr += "</queryterm>";
145 5311 daigle
	}*/
146 4948 daigle
147
	//alert("returning path expression: " + pathExpr);
148
	return pathExpr;
149
}
150