ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilTestResultsImportParser Class Reference

Test results import parser. More...

+ Inheritance diagram for ilTestResultsImportParser:
+ Collaboration diagram for ilTestResultsImportParser:

Public Member Functions

 __construct ($a_xml_file, &$test_object)
 Constructor. More...
 
 getQuestionIdMapping ()
 
 setQuestionIdMapping ($question_id_mapping)
 
 getSrcPoolDefIdMapping ()
 
 setSrcPoolDefIdMapping ($src_pool_def_id_mapping)
 
 setHandlers ($a_xml_parser)
 set event handler should be overwritten by inherited class private More...
 
 handlerBeginTag ($a_xml_parser, $a_name, $a_attribs)
 handler for begin of element parser More...
 
 handlerEndTag ($a_xml_parser, $a_name)
 handler for end of element More...
 
 handlerParseCharacterData ($a_xml_parser, $a_data)
 handler for character data More...
 
- Public Member Functions inherited from ilSaxParser
 __construct ($a_xml_file='', $throwException=false)
 Constructor setup ILIAS global object public. More...
 
 setXMLContent ($a_xml_content)
 
 getXMLContent ()
 
 getInputType ()
 
 startParsing ()
 stores xml data in array More...
 
 createParser ()
 create parser More...
 
 setOptions ($a_xml_parser)
 set parser options More...
 
 setHandlers ($a_xml_parser)
 set event handler should be overwritten by inherited class private More...
 
 openXMLFile ()
 open xml file More...
 
 parse ($a_xml_parser, $a_fp=null)
 parse xml file More...
 
 freeParser ($a_xml_parser)
 free xml parser handle More...
 
 setThrowException ($throwException)
 set error handling More...
 
- Public Member Functions inherited from PEAR
 __construct ($error_class=null)
 Constructor. More...
 
 _PEAR ()
 Destructor (the emulated type of...). More...
 
 registerShutdownFunc ($func, $args=array())
 Use this function to register a shutdown method for static classes. More...
 
 isError ($data, $code=null)
 Tell whether a value is a PEAR error. More...
 
 expectError ($code=' *')
 This method is used to tell which errors you expect to get. More...
 
 popExpect ()
 This method pops one element off the expected error codes stack. More...
 
 _checkDelExpect ($error_code)
 This method checks unsets an error code if available. More...
 
 delExpect ($error_code)
 This method deletes all occurences of the specified element from the expected error codes stack. More...
 
raiseError ($message=null, $code=null, $mode=null, $options=null, $userinfo=null, $error_class=null, $skipmsg=false)
 This method is a wrapper that returns an instance of the configured error class with this object's default error handling applied. More...
 
throwError ($message=null, $code=null, $userinfo=null)
 Simpler form of raiseError with fewer options. More...
 
 staticPushErrorHandling ($mode, $options=null)
 
 staticPopErrorHandling ()
 
 pushErrorHandling ($mode, $options=null)
 Push a new error handler on top of the error handler options stack. More...
 
 popErrorHandling ()
 Pop the last error handler used. More...
 
 loadExtension ($ext)
 OS independant PHP extension load. More...
 

Protected Attributes

 $src_pool_def_id_mapping
 

Private Member Functions

 fetchAttribute ($attributes, $name)
 
 fetchLastFinishedPass ($attribs)
 
 fetchLastStartedPass ($attribs)
 

Private Attributes

 $tst_obj
 
 $table
 
 $active_id_mapping
 
 $question_id_mapping
 
 $user_criteria_field
 
 $user_criteria_type
 
 $user_criteria_checked = false
 

Additional Inherited Members

- Static Public Member Functions inherited from PEAR
static & getStaticProperty ($class, $var)
 If you have a class that's mostly/entirely static, and you need static properties, you can use this method to simulate them. More...
 
static setErrorHandling ($mode=null, $options=null)
 Sets how errors generated by this object should be handled. More...
 
- Data Fields inherited from ilSaxParser
 $input_type = null
 
 $xml_content = ''
 
 $ilias
 
 $lng
 
 $xml_file
 
 $throwException = false
 
- Data Fields inherited from PEAR
 $_debug = false
 
 $_default_error_mode = null
 
 $_default_error_options = null
 
 $_default_error_handler = ''
 
 $_error_class = 'PEAR_Error'
 
 $_expected_errors = array()
 
- Protected Member Functions inherited from ilSaxParser
 handleError ($message, $code)
 use given error handler to handle error message or internal ilias error message handle More...
 

Detailed Description

Test results import parser.

Author
Helmut Schottmüller ilias.nosp@m.@aur.nosp@m.ealis.nosp@m..de
Version
$Id$

Definition at line 13 of file class.ilTestResultsImportParser.php.

Constructor & Destructor Documentation

◆ __construct()

ilTestResultsImportParser::__construct (   $a_xml_file,
$test_object 
)

Constructor.

Definition at line 28 of file class.ilTestResultsImportParser.php.

References array.

29  {
30  parent::__construct($a_xml_file, true);
31  $this->tst_obj = &$test_object;
32  $this->table = '';
33  $this->active_id_mapping = array();
34  $this->question_id_mapping = array();
35  $this->user_criteria_checked = false;
36  $this->src_pool_def_id_mapping = array();
37  }
Create styles array
The data for the language used.

Member Function Documentation

◆ fetchAttribute()

ilTestResultsImportParser::fetchAttribute (   $attributes,
  $name 
)
private

Definition at line 282 of file class.ilTestResultsImportParser.php.

References $attributes, and $name.

Referenced by handlerBeginTag().

283  {
284  if (isset($attributes[$name])) {
285  return $attributes[$name];
286  }
287 
288  return null;
289  }
$attributes
if($format !==null) $name
Definition: metadata.php:146
+ Here is the caller graph for this function:

◆ fetchLastFinishedPass()

ilTestResultsImportParser::fetchLastFinishedPass (   $attribs)
private

Definition at line 291 of file class.ilTestResultsImportParser.php.

Referenced by handlerBeginTag().

292  {
293  if (isset($attribs['last_finished_pass'])) {
294  return $attribs['last_finished_pass'];
295  }
296 
297  if ($attribs['tries'] > 0) {
298  return $attribs['tries'] - 1;
299  }
300 
301  return null;
302  }
+ Here is the caller graph for this function:

◆ fetchLastStartedPass()

ilTestResultsImportParser::fetchLastStartedPass (   $attribs)
private

Definition at line 304 of file class.ilTestResultsImportParser.php.

Referenced by handlerBeginTag().

305  {
306  if (isset($attribs['last_started_pass'])) {
307  return $attribs['last_started_pass'];
308  }
309 
310  if ($attribs['tries'] > 0) {
311  return $attribs['tries'] - 1;
312  }
313 
314  return null;
315  }
+ Here is the caller graph for this function:

◆ getQuestionIdMapping()

ilTestResultsImportParser::getQuestionIdMapping ( )
Returns
array

Definition at line 42 of file class.ilTestResultsImportParser.php.

References $question_id_mapping.

◆ getSrcPoolDefIdMapping()

ilTestResultsImportParser::getSrcPoolDefIdMapping ( )
Returns
array

Definition at line 58 of file class.ilTestResultsImportParser.php.

References $src_pool_def_id_mapping.

◆ handlerBeginTag()

ilTestResultsImportParser::handlerBeginTag (   $a_xml_parser,
  $a_name,
  $a_attribs 
)

handler for begin of element parser

Definition at line 86 of file class.ilTestResultsImportParser.php.

References $ilDB, $info, $result, $row, array, fetchAttribute(), fetchLastFinishedPass(), and fetchLastStartedPass().

87  {
88  global $ilDB;
89 
90  $this->sametag = false;
91  $this->characterbuffer = "";
92  $this->depth[$a_xml_parser]++;
93  $this->path[$this->depth[$a_xml_parser]] = strtolower($a_name);
94  $this->qti_element = $a_name;
95 
96  switch (strtolower($a_name)) {
97  case "results":
98  break;
99  case "row":
100  switch ($this->table) {
101  case 'tst_active':
102  if (!$this->user_criteria_checked) {
103  $this->user_criteria_checked = true;
104  if ($ilDB->tableColumnExists('usr_data', $a_attribs['user_criteria'])) {
105  include_once './Services/Database/classes/class.ilDBAnalyzer.php';
106  $analyzer = new ilDBAnalyzer();
107  $info = $analyzer->getFieldInformation('usr_data');
108  $this->user_criteria_field = $a_attribs['user_criteria'];
109  $this->user_criteria_type = $info[$a_attribs['user_criteria']]['type'];
110  }
111  }
112  $usr_id = ANONYMOUS_USER_ID;
113  if (strlen($this->user_criteria_field)) {
114  $result = $ilDB->queryF(
115  "SELECT usr_id FROM usr_data WHERE " . $this->user_criteria_field . " = %s",
116  array($this->user_criteria_type),
117  array($a_attribs[$this->user_criteria_field])
118  );
119  if ($result->numRows()) {
120  $row = $ilDB->fetchAssoc($result);
121  $usr_id = $row['usr_id'];
122  }
123  }
124  $next_id = $ilDB->nextId('tst_active');
125 
126  $ilDB->insert('tst_active', array(
127  'active_id' => array('integer', $next_id),
128  'user_fi' => array('integer', $usr_id),
129  'anonymous_id' => array('text', strlen($a_attribs['anonymous_id']) ? $a_attribs['anonymous_id'] : null),
130  'test_fi' => array('integer', $this->tst_obj->getTestId()),
131  'lastindex' => array('integer', $a_attribs['lastindex']),
132  'tries' => array('integer', $a_attribs['tries']),
133  'submitted' => array('integer', $a_attribs['submitted']),
134  'submittimestamp' => array('timestamp', strlen($a_attribs['submittimestamp']) ? $a_attribs['submittimestamp'] : null),
135  'tstamp' => array('integer', $a_attribs['tstamp']),
136  'importname' => array('text', $a_attribs['fullname']),
137  'last_finished_pass' => array('integer', $this->fetchLastFinishedPass($a_attribs)),
138  'last_started_pass' => array('integer', $this->fetchLastStartedPass($a_attribs)),
139  'answerstatusfilter' => array('integer', $this->fetchAttribute($a_attribs, 'answer_status_filter')),
140  'objective_container' => array('integer', $this->fetchAttribute($a_attribs, 'objective_container'))
141  ));
142  $this->active_id_mapping[$a_attribs['active_id']] = $next_id;
143  break;
144  case 'tst_test_rnd_qst':
145  $nextId = $ilDB->nextId('tst_test_rnd_qst');
146  $newActiveId = $this->active_id_mapping[$a_attribs['active_fi']];
147  $newQuestionId = $this->question_id_mapping[$a_attribs['question_fi']];
148  $newSrcPoolDefId = $this->src_pool_def_id_mapping[$a_attribs['src_pool_def_fi']];
149  $ilDB->insert('tst_test_rnd_qst', array(
150  'test_random_question_id' => array('integer', $nextId),
151  'active_fi' => array('integer', $newActiveId),
152  'question_fi' => array('integer', $newQuestionId),
153  'sequence' => array('integer', $a_attribs['sequence']),
154  'pass' => array('integer', $a_attribs['pass']),
155  'tstamp' => array('integer', $a_attribs['tstamp']),
156  'src_pool_def_fi' => array('integer', $newSrcPoolDefId)
157  ));
158  break;
159  case 'tst_pass_result':
160  $affectedRows = $ilDB->manipulateF(
161  "INSERT INTO tst_pass_result (active_fi, pass, points, maxpoints, questioncount, answeredquestions, workingtime, tstamp) VALUES (%s,%s,%s,%s,%s,%s,%s,%s)",
162  array(
163  'integer',
164  'integer',
165  'float',
166  'float',
167  'integer',
168  'integer',
169  'integer',
170  'integer'
171  ),
172  array(
173  $this->active_id_mapping[$a_attribs['active_fi']],
174  strlen($a_attribs['pass']) ? $a_attribs['pass'] : 0,
175  ($a_attribs["points"]) ? $a_attribs["points"] : 0,
176  ($a_attribs["maxpoints"]) ? $a_attribs["maxpoints"] : 0,
177  $a_attribs["questioncount"],
178  $a_attribs["answeredquestions"],
179  ($a_attribs["workingtime"]) ? $a_attribs["workingtime"] : 0,
180  $a_attribs["tstamp"]
181  )
182  );
183  break;
184  case 'tst_result_cache':
185  $affectedRows = $ilDB->manipulateF(
186  "INSERT INTO tst_result_cache (active_fi, pass, max_points, reached_points, mark_short, mark_official, passed, failed, tstamp) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s)",
187  array(
188  'integer',
189  'integer',
190  'float',
191  'float',
192  'text',
193  'text',
194  'integer',
195  'integer',
196  'integer'
197  ),
198  array(
199  $this->active_id_mapping[$a_attribs['active_fi']],
200  strlen($a_attribs['pass']) ? $a_attribs['pass'] : 0,
201  ($a_attribs["max_points"]) ? $a_attribs["max_points"] : 0,
202  ($a_attribs["reached_points"]) ? $a_attribs["reached_points"] : 0,
203  strlen($a_attribs["mark_short"]) ? $a_attribs["mark_short"] : " ",
204  strlen($a_attribs["mark_official"]) ? $a_attribs["mark_official"] : " ",
205  ($a_attribs["passed"]) ? 1 : 0,
206  ($a_attribs["failed"]) ? 1 : 0,
207  $a_attribs["tstamp"]
208  )
209  );
210  break;
211  case 'tst_sequence':
212  $affectedRows = $ilDB->insert("tst_sequence", array(
213  "active_fi" => array("integer", $this->active_id_mapping[$a_attribs['active_fi']]),
214  "pass" => array("integer", $a_attribs['pass']),
215  "sequence" => array("clob", $a_attribs['sequence']),
216  "postponed" => array("text", (strlen($a_attribs['postponed'])) ? $a_attribs['postponed'] : null),
217  "hidden" => array("text", (strlen($a_attribs['hidden'])) ? $a_attribs['hidden'] : null),
218  "tstamp" => array("integer", $a_attribs['tstamp'])
219  ));
220  break;
221  case 'tst_solutions':
222  $next_id = $ilDB->nextId('tst_solutions');
223  $affectedRows = $ilDB->insert("tst_solutions", array(
224  "solution_id" => array("integer", $next_id),
225  "active_fi" => array("integer", $this->active_id_mapping[$a_attribs['active_fi']]),
226  "question_fi" => array("integer", $this->question_id_mapping[$a_attribs['question_fi']]),
227  "value1" => array("clob", (strlen($a_attribs['value1'])) ? $a_attribs['value1'] : null),
228  "value2" => array("clob", (strlen($a_attribs['value2'])) ? $a_attribs['value2'] : null),
229  "pass" => array("integer", $a_attribs['pass']),
230  "tstamp" => array("integer", $a_attribs['tstamp'])
231  ));
232  break;
233  case 'tst_test_result':
234  $next_id = $ilDB->nextId('tst_test_result');
235  $affectedRows = $ilDB->manipulateF(
236  "INSERT INTO tst_test_result (test_result_id, active_fi, question_fi, points, pass, manual, tstamp) VALUES (%s, %s, %s, %s, %s, %s, %s)",
237  array('integer', 'integer','integer', 'float', 'integer', 'integer','integer'),
238  array($next_id, $this->active_id_mapping[$a_attribs['active_fi']], $this->question_id_mapping[$a_attribs['question_fi']], $a_attribs['points'], $a_attribs['pass'], (strlen($a_attribs['manual'])) ? $a_attribs['manual'] : 0, $a_attribs['tstamp'])
239  );
240  break;
241  case 'tst_times':
242  $next_id = $ilDB->nextId('tst_times');
243  $affectedRows = $ilDB->manipulateF(
244  "INSERT INTO tst_times (times_id, active_fi, started, finished, pass, tstamp) VALUES (%s, %s, %s, %s, %s, %s)",
245  array('integer', 'integer', 'timestamp', 'timestamp', 'integer', 'integer'),
246  array($next_id, $this->active_id_mapping[$a_attribs['active_fi']], $a_attribs['started'], $a_attribs['finished'], $a_attribs['pass'], $a_attribs['tstamp'])
247  );
248  break;
249  }
250  break;
251  default:
252  $this->table = $a_name;
253  break;
254  }
255  }
$result
Create styles array
The data for the language used.
global $ilDB
This class gives all kind of DB information using the MDB2 manager and reverse module.
$info
Definition: index.php:5
+ Here is the call graph for this function:

◆ handlerEndTag()

ilTestResultsImportParser::handlerEndTag (   $a_xml_parser,
  $a_name 
)

handler for end of element

Definition at line 260 of file class.ilTestResultsImportParser.php.

References $ilLog.

261  {
262  switch (strtolower($a_name)) {
263  case "tst_active":
264  global $ilLog;
265  $ilLog->write("active id mapping: " . print_r($this->active_id_mapping, true));
266  break;
267  case "tst_test_question":
268  global $ilLog;
269  $ilLog->write("question id mapping: " . print_r($this->question_id_mapping, true));
270  break;
271  }
272  }

◆ handlerParseCharacterData()

ilTestResultsImportParser::handlerParseCharacterData (   $a_xml_parser,
  $a_data 
)

handler for character data

Definition at line 277 of file class.ilTestResultsImportParser.php.

278  {
279  // do nothing
280  }

◆ setHandlers()

ilTestResultsImportParser::setHandlers (   $a_xml_parser)

set event handler should be overwritten by inherited class private

Definition at line 76 of file class.ilTestResultsImportParser.php.

77  {
78  xml_set_object($a_xml_parser, $this);
79  xml_set_element_handler($a_xml_parser, 'handlerBeginTag', 'handlerEndTag');
80  xml_set_character_data_handler($a_xml_parser, 'handlerParseCharacterData');
81  }

◆ setQuestionIdMapping()

ilTestResultsImportParser::setQuestionIdMapping (   $question_id_mapping)
Parameters
array$question_id_mapping

Definition at line 50 of file class.ilTestResultsImportParser.php.

References $question_id_mapping.

51  {
52  $this->question_id_mapping = $question_id_mapping;
53  }

◆ setSrcPoolDefIdMapping()

ilTestResultsImportParser::setSrcPoolDefIdMapping (   $src_pool_def_id_mapping)
Parameters
array$src_pool_def_id_mapping

Definition at line 66 of file class.ilTestResultsImportParser.php.

References $src_pool_def_id_mapping.

67  {
68  $this->src_pool_def_id_mapping = $src_pool_def_id_mapping;
69  }

Field Documentation

◆ $active_id_mapping

ilTestResultsImportParser::$active_id_mapping
private

Definition at line 17 of file class.ilTestResultsImportParser.php.

◆ $question_id_mapping

ilTestResultsImportParser::$question_id_mapping
private

◆ $src_pool_def_id_mapping

ilTestResultsImportParser::$src_pool_def_id_mapping
protected

◆ $table

ilTestResultsImportParser::$table
private

Definition at line 16 of file class.ilTestResultsImportParser.php.

◆ $tst_obj

ilTestResultsImportParser::$tst_obj
private

Definition at line 15 of file class.ilTestResultsImportParser.php.

◆ $user_criteria_checked

ilTestResultsImportParser::$user_criteria_checked = false
private

Definition at line 21 of file class.ilTestResultsImportParser.php.

◆ $user_criteria_field

ilTestResultsImportParser::$user_criteria_field
private

Definition at line 19 of file class.ilTestResultsImportParser.php.

◆ $user_criteria_type

ilTestResultsImportParser::$user_criteria_type
private

Definition at line 20 of file class.ilTestResultsImportParser.php.


The documentation for this class was generated from the following file: