Project

General

Profile

1
 /*
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
/*
28
 * Generate a workflow query string.  this assumes that search fields meet the
29
 * following criteria in the web page:
30
 * -- search input fields have an ID that starts with sf- 
31
 * -- if there is a search mode dropdown for an input field in the form, it's ID 
32
 *    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
 */
35
function setWorkflowQueryFormField(formId) {
36
	var queryString = ""; 
37
	queryString += "<pathquery version='1.2'>";
38
	/*queryString += "<returndoctype>entity</returndoctype>";
39
	queryString += "<returndoctype>-//UC Berkeley//DTD MoML 1//EN</returndoctype>";
40
	queryString += "<returnfield>/entity/@name</returnfield>";
41
	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
	queryString += "<returnfield>/entity/property[@name=\'karLSID\']/@value</returnfield>";				
46
	queryString += "<returnfield>/entity/property[@name=\'entityId\']/@value</returnfield>";*/
47
	/*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
	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
/*
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
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
		/*pathExpr += "<pathexpr>entity/@name</pathexpr>";*/
99
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/@name</pathexpr>";
100
		pathExpr += "</queryterm>"; 		
101
	} else if (sfElement.name == 'keyword') {
102
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
103
		pathExpr += "<value>" + sfElement.value + "</value>";
104
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@value</pathexpr>";
105
		pathExpr += "</queryterm>"; 		
106
	} else if (sfElement.name == 'creator') {
107
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
108
		pathExpr += "<value>" + sfElement.value + "</value>";
109
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
110
		pathExpr += "</queryterm>"; 		
111
	} else if (sfElement.name == 'description') {
112
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
113
		pathExpr += "<value>" + sfElement.value + "</value>";
114
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
115
		pathExpr += "</queryterm>"; 		
116
	} else if (sfElement.name == 'date-created') {
117
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
118
		pathExpr += "<value>" + sfElement.value + "</value>";
119
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
120
		pathExpr += "</queryterm>"; 		
121
	} /*else if (sfElement.name == 'date-executed') {
122
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
123
		pathExpr += "<value>" + sfElement.value + "</value>";
124
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
125
		pathExpr += "</queryterm>";		
126
	} */ else if (sfElement.name == 'workflow-lsid') {
127
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
128
		pathExpr += "<value>entityId</value>";
129
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@name</pathexpr>";
130
		pathExpr += "</queryterm>"; 
131
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
132
		pathExpr += "<value>" + sfElement.value + "</value>";
133
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/@value</pathexpr>";
134
		pathExpr += "</queryterm>";		
135
	}/* else if (sfElement.name == 'workflow-run-id') {
136
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
137
		pathExpr += "<value>" + sfElement.value + "</value>";
138
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
139
		pathExpr += "</queryterm>"; 		
140
	} else if (sfElement.name == 'status') {
141
		pathExpr += "<queryterm casesensitive='false' searchmode='" + searchMode + "'>";
142
		pathExpr += "<value>" + sfElement.value + "</value>";
143
		pathExpr += "<pathexpr>karEntry/karEntryXML/entity/property/property/configure</pathexpr>";
144
		pathExpr += "</queryterm>"; 		
145
	}*/
146
	
147
	//alert("returning path expression: " + pathExpr);
148
	return pathExpr;
149
}
150

    
151
	
(24-24/29)