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

Manifest parser for ILIAS standard export files. More...

+ Inheritance diagram for ilDataSetImportParser:
+ Collaboration diagram for ilDataSetImportParser:

Public Member Functions

 __construct ($a_top_entity, $a_schema_version, $a_xml, $a_ds, $a_mapping)
 Constructor. More...
 
 getCurrentInstallationId ()
 Get current installation id. More...
 
 setHandlers ($a_xml_parser)
 Set event handlers. More...
 
 startParsing ()
 Start parser. More...
 
 handleBeginTag ($a_xml_parser, $a_name, $a_attribs)
 Begin Tag. More...
 
 handleEndTag ($a_xml_parser, $a_name)
 End Tag. More...
 
 handleCharacterData ($a_xml_parser, $a_data)
 End Tag. 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

 $import = null
 
 $entities = array()
 
 $current_entity = ""
 
 $current_version = ""
 
 $current_ftypes = array()
 
 $entities_sent = false
 
 $in_record = false
 
 $current_field = ""
 
 $current_field_values = array()
 
 $current_installation_id = ""
 

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

Manifest parser for ILIAS standard export files.

Author
Aleex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

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

Constructor & Destructor Documentation

◆ __construct()

ilDataSetImportParser::__construct (   $a_top_entity,
  $a_schema_version,
  $a_xml,
  $a_ds,
  $a_mapping 
)

Constructor.

Parameters

Definition at line 33 of file class.ilDataSetImportParser.php.

References ilSaxParser\setXMLContent(), and startParsing().

34  {
35  $this->ds = $a_ds;
36  $this->mapping = $a_mapping;
37  $this->top_entity = $a_top_entity;
38  $this->schema_version = $a_schema_version;
39  $this->dspref = ($this->ds->getDSPrefix() != "")
40  ? $this->ds->getDSPrefix() . ":"
41  : "";
42 
43  parent::__construct();
44  $this->setXMLContent($a_xml);
45  $this->startParsing();
46  }
setXMLContent($a_xml_content)
+ Here is the call graph for this function:

Member Function Documentation

◆ getCurrentInstallationId()

ilDataSetImportParser::getCurrentInstallationId ( )

Get current installation id.

Parameters

Definition at line 54 of file class.ilDataSetImportParser.php.

References $current_installation_id.

◆ handleBeginTag()

ilDataSetImportParser::handleBeginTag (   $a_xml_parser,
  $a_name,
  $a_attribs 
)

Begin Tag.

Definition at line 85 of file class.ilDataSetImportParser.php.

References array.

86  {
87  switch ($a_name) {
88  case $this->dspref . "DataSet":
89 // $this->import->initDataset($this->ds_component, $a_attribs["top_entity"]);
90  $this->current_installation_id = $a_attribs["InstallationId"];
91  $this->ds->setCurrentInstallationId($a_attribs["InstallationId"]);
92  break;
93 
94  case $this->dspref . "Types":
95  $this->current_entity = $a_attribs["Entity"];
96  $this->current_version = $a_attribs["Version"];
97  break;
98 
99  case $this->dspref . "FieldType":
100  $this->current_ftypes[$a_attribs["Name"]] =
101  $a_attribs["Type"];
102  break;
103 
104  case $this->dspref . "Rec":
105  $this->current_entity = $a_attribs["Entity"];
106  $this->in_record = true;
107  $this->current_field_values = array();
108  break;
109 
110  default:
111  if ($this->in_record) {
112  $field = explode(":", $a_name); // remove namespace
113  $field = $field[count($field) - 1];
114  $this->current_field = $field;
115  }
116  }
117  }
Create styles array
The data for the language used.

◆ handleCharacterData()

ilDataSetImportParser::handleCharacterData (   $a_xml_parser,
  $a_data 
)

End Tag.

Definition at line 164 of file class.ilDataSetImportParser.php.

165  {
166  //$a_data = str_replace("<","&lt;",$a_data);
167  //$a_data = str_replace(">","&gt;",$a_data);
168  // DELETE WHITESPACES AND NEWLINES OF CHARACTER DATA
169  //$a_data = preg_replace("/\n/","",$a_data);
170  //$a_data = preg_replace("/\t+/","",$a_data);
171 
172  $this->chr_data .= $a_data;
173  }

◆ handleEndTag()

ilDataSetImportParser::handleEndTag (   $a_xml_parser,
  $a_name 
)

End Tag.

Definition at line 122 of file class.ilDataSetImportParser.php.

References $current_entity, $current_field, and array.

123  {
124  switch ($a_name) {
125  case $this->dspref . "Types":
126  $this->entities[$this->current_entity] =
127  array(
128  "version" => $this->current_version,
129  "types" => $this->current_ftypes
130  );
131  $this->current_ftypes = array();
132  $this->current_entity = "";
133  $this->current_version = "";
134  break;
135 
136  case $this->dspref . "Rec":
137  $this->ds->importRecord(
138  $this->current_entity,
139  $this->entities[$this->current_entity]["types"],
140  $this->current_field_values,
141  $this->mapping,
142  $this->schema_version
143  );
144  $this->in_record = false;
145  $this->current_entity = "";
146  $this->current_field_values = array();
147  break;
148 
149  default:
150  if ($this->in_record && $this->current_field != "") {
151  $this->current_field_values[$this->current_field] =
152  $this->chr_data;
153  }
154  $this->current_field = "";
155  break;
156  }
157 
158  $this->chr_data = "";
159  }
Create styles array
The data for the language used.

◆ setHandlers()

ilDataSetImportParser::setHandlers (   $a_xml_parser)

Set event handlers.

Parameters
resourcereference to the xml parser private

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

67  {
68  xml_set_object($a_xml_parser, $this);
69  xml_set_element_handler($a_xml_parser, 'handleBeginTag', 'handleEndTag');
70  xml_set_character_data_handler($a_xml_parser, 'handleCharacterData');
71  }

◆ startParsing()

ilDataSetImportParser::startParsing ( )

Start parser.

Definition at line 77 of file class.ilDataSetImportParser.php.

Referenced by __construct().

78  {
79  parent::startParsing();
80  }
+ Here is the caller graph for this function:

Field Documentation

◆ $current_entity

ilDataSetImportParser::$current_entity = ""
protected

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

Referenced by handleEndTag().

◆ $current_field

ilDataSetImportParser::$current_field = ""
protected

Definition at line 22 of file class.ilDataSetImportParser.php.

Referenced by handleEndTag().

◆ $current_field_values

ilDataSetImportParser::$current_field_values = array()
protected

Definition at line 23 of file class.ilDataSetImportParser.php.

◆ $current_ftypes

ilDataSetImportParser::$current_ftypes = array()
protected

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

◆ $current_installation_id

ilDataSetImportParser::$current_installation_id = ""
protected

Definition at line 24 of file class.ilDataSetImportParser.php.

Referenced by getCurrentInstallationId().

◆ $current_version

ilDataSetImportParser::$current_version = ""
protected

Definition at line 18 of file class.ilDataSetImportParser.php.

◆ $entities

ilDataSetImportParser::$entities = array()
protected

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

◆ $entities_sent

ilDataSetImportParser::$entities_sent = false
protected

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

◆ $import

ilDataSetImportParser::$import = null
protected

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

◆ $in_record

ilDataSetImportParser::$in_record = false
protected

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


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