RequestMgr.php
7.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?php
/**
* @class RequestMgr
* @version $Id: RequestMgr.php 2914 2015-05-19 10:31:38Z elena $
*
*
*/
class RequestMgr extends AmdaObjectMgr {
public $obj;
public $impex_prefix = array('impex___', 'spase__', 'CLWEB_');
protected $searchChain;
protected $jobXml, $jobXmlName;
protected $parser, $paramBuilder;
protected $derivedParamMgr;
protected $request, $nObjects;
protected $currentInt, $totalInt, $ttName;
protected $paramsWithoutCode = false;
protected $spectraParams = false;
protected $dataBases;
protected $types = array('request', 'condition');
protected $argumentsByParam = array();
protected $defaults = 'select...';
protected $scatterOffset, $scatterOffsetX, $firstOffset;
protected $timeFormat = array('YYYY-MM-DDThh:mm:ss' => 0, 'YYYY MM DD hh mm ss' => 1, 'DD MM YYYY hh mm ss' => 2, 'YYYY DDD hh mm ss' => 3);
protected $fileMgr;
function __construct($type) {
parent::__construct('Request.xml');
$this->type = $type;
$this->contentRootId = $type.'-treeRootNode';
$this->contentRootTag = $type.'List';
$this->objTagName = $type; //'request';
$this->jobXmlName = USERDIR.'jobs.xml';
$this->jobXml = new DomDocument("1.0");
if (file_exists($this->jobXmlName)) {
$this->jobXml->load($this->jobXmlName);
}
if ($type == 'request') {
$this->id_prefix = 'req_';
$this->attributes = array('name' => '');
$this->optionalAttributes = array();
}
else {
$this->id_prefix = 'cond_';
$this->attributes = array('name' => '');
//, 'timestep' => '', 'datagap' => '', 'buildchain' => '',
// 'StartTime' => '', 'TimeInt' => '');
$this->optionalAttributes = array();
}
if (!file_exists($this->xmlName)) {
$this->createDom();
$this->xp = new domxpath($this->contentDom);
}
//external bases
if (file_exists(RemoteData.'Bases.xml')) {
$dataBasesDoc = new DomDocument("1.0");
$dataBasesDoc->load(RemoteData.'Bases.xml');
$this->dataBases = $dataBasesDoc->getElementsByTagName('dataCenter');
}
putenv("USER_DATA_PATH=".USERDATADIR);
putenv("USER_WS_PATH=".USERWSDIR);
putenv("PHP_CLASSES_PATH=".CLASSPATH);
}
/*********************************************************************
* BEGIN : generic functions
**********************************************************************/
protected function setObject($obj)
{
$this->obj = $obj;
}
/*********************************************************************
* END : generic functions
**********************************************************************/
public function generateVOTableFromDownloadResult($id,$newName,$inputCompressed = true,$canBeAlreadyVOTable = false)
{
//ToDo - use the new kernel
$res = array('success' => false, 'message' => 'NOT IMPLEMENTED => To implement with the new Kernel');
}
/*****************************************************************
* PUBLIC FUNCTIONS
*****************************************************************/
/* Stop Time from StartTime and Interval*/
public function convertTime($obj)
{
$time = strtotime($obj->startDate);
$interval = $obj->durationDay*86400 +
$obj->durationHour*3600 +
$obj->durationMin*60 + $obj->durationSec;
$stopTime = gmdate("Y-m-d\TH:i:s", $time+$interval);
$obj->stopDate = $stopTime;
return $obj;
}
//TODO
public function markAsUndefined($paramId)
{
$n_requests = 0;
return $n_requests;
}
/*
* Get Object JSON!!! (request or condition) into Edit
*/
public function getObject($id)
{
if (!file_exists(USERREQDIR.$id)) return array('error' => NO_OBJECT_FILE);
if (!($objToGet = $this->contentDom->getElementById($id))) return array('error' => NO_SUCH_ID);
$obj = json_decode(file_get_contents(USERREQDIR.$id));
//if alias exists, replace parameter name by alias name
if (file_exists(USERWSDIR.'Alias.xml')) {
if ($this->type == 'condition') {
$obj->expression = $this->setAlias($obj->expression);
}
else if ($this->type == 'request') {
for ($i=0; $i < count($obj->children); $i++) {
for ($j=0; $j < count($obj->children[$i]->children); $j++) {
$obj->children[$i]->children[$j]->name = $this->setAlias($obj->children[$i]->children[$j]->name);
}
}
//TODO Ajout des SCATTER
// if $obj->children[$i]->plotType == "SCATTER"
//$obj->children[$i]->scatterParam->data->name pour 1 panel (bug si 2 panels devient $obj->children[$i]->scatterParam->data->data->name)
}
}
//if Start Time - Stop Time
if (!$obj->timeTables) $obj = $this->convertTime($obj);
return $obj;
}
/*
* Change NAME in JSON resource
*/
protected function renameInResource($name, $id) {
$obj = json_decode(file_get_contents(USERREQDIR.$id));
$obj->name = $name;
$file = fopen(USERREQDIR.$id, 'w');
fwrite($file, json_encode($obj));
fclose($file);
}
/*
* Make new request/condition resource file (JSON!!) and add it to content file
* ATTENTION : it is not DD parameter!!!
*/
protected function createParameter($p)
{
if ($this -> objectExistsByName($p->name)) {
$p->id = $this->getObjectIdByName($p->name);
$this -> deleteObject($p);
}
$this->id = $this->setId();
if (!$this->id) return array('error' => ID_CREATION_ERROR);
//if alias exists, replace alias name by parameter name
if (file_exists(USERWSDIR.'Alias.xml')) {
if ($this->type == 'condition') {
$p->expression = $this->resetAlias($p->expression);
$info = $p->expression;
}
else if ($this->type == 'request') {
$info = '';
for ($i=0; $i < count($p->children); $i++) {
for ($j=0; $j < count($p->children[$i]->children); $j++) {
$p->children[$i]->children[$j]->name = $this->resetAlias($p->children[$i]->children[$j]->name);
$info = $info.' '.$p->children[$i]->children[$j]->name;
}
}
}
}
$this->descFileName = USERREQDIR.$this->id;
$p->id = $this->id;
// save request as json
$file = fopen($this->descFileName, 'w');
fwrite($file, json_encode($p));
fclose($file);
$this -> addToContent($p, $folder);
return array('id' => $this->id, 'info' => $info);
}
/*
* Delete request/condition JSON file
*/
protected function deleteParameter($id){
if (file_exists(USERREQDIR.$id))
unlink(USERREQDIR.$id);
}
/*
* TODO Check file JSON objects differ in names only
*/
protected function renameOnly($p) {
return false;
}
}
?>