ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
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...
 
 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
 ilSaxParser ($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
 PEAR ($error_class=null)
 Constructor. More...
 
 _PEAR ()
 Destructor (the emulated type of...). More...
 
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...
 
 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...
 
 setErrorHandling ($mode=null, $options=null)
 Sets how errors generated by this object should be handled. 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()
 

Additional Inherited Members

- 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 32 of file class.ilDataSetImportParser.php.

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

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

Member Function Documentation

◆ handleBeginTag()

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

Begin Tag.

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

75  {
76  switch ($a_name)
77  {
78  case $this->dspref."Dataset":
79 // $this->import->initDataset($this->ds_component, $a_attribs["top_entity"]);
80  break;
81 
82  case $this->dspref."Types":
83  $this->current_entity = $a_attribs["Entity"];
84  $this->current_version = $a_attribs["Version"];
85  break;
86 
87  case $this->dspref."FieldType":
88  $this->current_ftypes[$a_attribs["Name"]] =
89  $a_attribs["Type"];
90  break;
91 
92  case $this->dspref."Rec":
93  $this->current_entity = $a_attribs["Entity"];
94  $this->in_record = true;
95  $this->current_field_values = array();
96  break;
97 
98  default:
99  if ($this->in_record)
100  {
101  $field = explode(":", $a_name); // remove namespace
102  $field = $field[count($field) - 1];
103  $this->current_field = $field;
104  }
105  }
106  }

◆ handleCharacterData()

ilDataSetImportParser::handleCharacterData (   $a_xml_parser,
  $a_data 
)

End Tag.

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

154  {
155  //$a_data = str_replace("<","&lt;",$a_data);
156  //$a_data = str_replace(">","&gt;",$a_data);
157  // DELETE WHITESPACES AND NEWLINES OF CHARACTER DATA
158  //$a_data = preg_replace("/\n/","",$a_data);
159  //$a_data = preg_replace("/\t+/","",$a_data);
160 
161  $this->chr_data .= $a_data;
162  }

◆ handleEndTag()

ilDataSetImportParser::handleEndTag (   $a_xml_parser,
  $a_name 
)

End Tag.

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

References $current_entity, and $current_field.

112  {
113  switch ($a_name)
114  {
115  case $this->dspref."Types":
116  $this->entities[$this->current_entity] =
117  array(
118  "version" => $this->current_version,
119  "types" => $this->current_ftypes
120  );
121  $this->current_ftypes = array();
122  $this->current_entity = "";
123  $this->current_version = "";
124  break;
125 
126  case $this->dspref."Rec":
127  $this->ds->importRecord($this->current_entity,
128  $this->entities[$this->current_entity]["types"],
129  $this->current_field_values,
130  $this->mapping,
131  $this->schema_version);
132  $this->in_record = false;
133  $this->current_entity = "";
134  $this->current_field_values = array();
135  break;
136 
137  default:
138  if ($this->in_record && $this->current_field != "")
139  {
140  $this->current_field_values[$this->current_field] =
141  $this->chr_data;
142  }
143  $this->current_field = "";
144  break;
145  }
146 
147  $this->chr_data = "";
148  }

◆ setHandlers()

ilDataSetImportParser::setHandlers (   $a_xml_parser)

Set event handlers.

Parameters
resourcereference to the xml parser private

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

56  {
57  xml_set_object($a_xml_parser,$this);
58  xml_set_element_handler($a_xml_parser, 'handleBeginTag', 'handleEndTag');
59  xml_set_character_data_handler($a_xml_parser, 'handleCharacterData');
60  }

◆ startParsing()

ilDataSetImportParser::startParsing ( )

Start parser.

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

Referenced by __construct().

67  {
68  parent::startParsing();
69  }
+ 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_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: