Fix problems with overlong directory names: phase #1
[mono.git] / mcs / class / System.XML / System.Xml.Serialization / XmlSerializer.cs
1 //
2 // XmlSerializer.cs: 
3 //
4 // Author:
5 //   Lluis Sanchez Gual (lluis@ximian.com)
6 //
7 // (C) 2002, 2003 Ximian, Inc.  http://www.ximian.com
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Threading;
33 using System.Collections;
34 using System.Globalization;
35 using System.IO;
36 using System.Reflection;
37 using System.Xml;
38 using System.Xml.Schema;
39 using System.Text;
40 #if !TARGET_JVM
41 using System.CodeDom;
42 using System.CodeDom.Compiler;
43 using Microsoft.CSharp;
44 #endif
45 using System.Configuration;
46 using System.Security.Policy;
47
48 namespace System.Xml.Serialization
49 {
50
51         public class XmlSerializer
52         {
53                 internal const string WsdlNamespace = "http://schemas.xmlsoap.org/wsdl/";
54                 internal const string EncodingNamespace = "http://schemas.xmlsoap.org/soap/encoding/";
55                 internal const string WsdlTypesNamespace = "http://microsoft.com/wsdl/types/";
56                 static int generationThreshold;
57                 static bool backgroundGeneration = true;
58                 static bool deleteTempFiles = true;
59                 static bool generatorFallback = true;
60
61                 bool customSerializer;
62                 XmlMapping typeMapping;
63                 
64                 SerializerData serializerData;
65                 
66                 static Hashtable serializerTypes = new Hashtable ();
67                 
68                 internal class SerializerData
69                 {
70                         public int UsageCount;
71                         public Type ReaderType;
72                         public MethodInfo ReaderMethod;
73                         public Type WriterType;
74                         public MethodInfo WriterMethod;
75                         public GenerationBatch Batch;
76                         public XmlSerializerImplementation Implementation = null;
77                         
78                         public XmlSerializationReader CreateReader () {
79                                 if (ReaderType != null)
80                                         return (XmlSerializationReader) Activator.CreateInstance (ReaderType);
81                                 else if (Implementation != null)
82                                         return Implementation.Reader;
83                                 else
84                                         return null;
85                         }
86                         
87                         public XmlSerializationWriter CreateWriter () {
88                                 if (WriterType != null)
89                                         return (XmlSerializationWriter) Activator.CreateInstance (WriterType);
90                                 else if (Implementation != null)
91                                         return Implementation.Writer;
92                                 else
93                                         return null;
94                         }
95                 }
96                 
97                 internal class GenerationBatch
98                 {
99                         public bool Done;
100                         public XmlMapping[] Maps;
101                         public SerializerData[] Datas;
102                 }
103                 
104                 static XmlSerializer ()
105                 {
106                         // The following options are available:
107                         // MONO_XMLSERIALIZER_DEBUG: when set to something != "no", it will
108                         //       it will print the name of the generated file, and it won't
109                         //       be deleted.
110                         // MONO_XMLSERIALIZER_THS: The code generator threshold. It can be:
111                         //       no: does not use the generator, always the interpreter.
112                         //       0: always use the generator, wait until the generation is done.
113                         //       any number: use the interpreted serializer until the specified
114                         //       number of serializations is reached. At this point the generation
115                         //       of the serializer will start in the background. The interpreter
116                         //       will be used while the serializer is being generated.
117                         //
118                         //       XmlSerializer will fall back to the interpreted serializer if
119                         //       the code generation somehow fails. This can be avoided for
120                         //       debugging pourposes by adding the "nofallback" option.
121                         //       For example: MONO_XMLSERIALIZER_THS=0,nofallback
122                         
123 #if TARGET_JVM
124                         string db = null;
125                         string th = null;
126                         generationThreshold = -1;
127                         backgroundGeneration = false;
128 #else
129                         string db = Environment.GetEnvironmentVariable ("MONO_XMLSERIALIZER_DEBUG");
130                         string th = Environment.GetEnvironmentVariable ("MONO_XMLSERIALIZER_THS");
131                         
132                         if (th == null) {
133                                 generationThreshold = 50;
134                                 backgroundGeneration = true;
135                         } else {
136                                 int i = th.IndexOf (',');
137                                 if (i != -1) {
138                                         if (th.Substring (i+1) == "nofallback")
139                                                 generatorFallback = false;
140                                         th = th.Substring (0, i);
141                                 }
142                                 
143                                 if (th.ToLower(CultureInfo.InvariantCulture) == "no") 
144                                         generationThreshold = -1;
145                                 else {
146                                         generationThreshold = int.Parse (th, CultureInfo.InvariantCulture);
147                                         backgroundGeneration = (generationThreshold != 0);
148                                         if (generationThreshold < 1) generationThreshold = 1;
149                                 }
150                         }
151 #endif
152                         deleteTempFiles = (db == null || db == "no");
153                         
154                         IDictionary table = (IDictionary) ConfigurationSettings.GetConfig("system.diagnostics");
155                         if (table != null) 
156                         {
157                                 table = (IDictionary) table["switches"];
158                                 if (table != null) 
159                                 {
160                                         string val = (string) table ["XmlSerialization.Compilation"];
161                                         if (val == "1") deleteTempFiles = false;
162                                 }
163                         }
164                 }
165
166 #region Constructors
167
168                 protected XmlSerializer ()
169                 {
170                         customSerializer = true;
171                 }
172
173                 public XmlSerializer (Type type)
174                         : this (type, null, null, null, null)
175                 {
176                 }
177
178                 public XmlSerializer (XmlTypeMapping xmlTypeMapping)
179                 {
180                         typeMapping = xmlTypeMapping;
181                 }
182
183                 internal XmlSerializer (XmlMapping mapping, SerializerData data)
184                 {
185                         typeMapping = mapping;
186                         serializerData = data;
187                 }
188
189                 public XmlSerializer (Type type, string defaultNamespace)
190                         : this (type, null, null, null, defaultNamespace)
191                 {
192                 }
193
194                 public XmlSerializer (Type type, Type[] extraTypes)
195                         : this (type, null, extraTypes, null, null)
196                 {
197                 }
198
199                 public XmlSerializer (Type type, XmlAttributeOverrides overrides)
200                         : this (type, overrides, null, null, null)
201                 {
202                 }
203
204                 public XmlSerializer (Type type, XmlRootAttribute root)
205                         : this (type, null, null, root, null)
206                 {
207                 }
208
209                 public XmlSerializer (Type type,
210                         XmlAttributeOverrides overrides,
211                         Type [] extraTypes,
212                         XmlRootAttribute root,
213                         string defaultNamespace)
214                 {
215                         if (type == null)
216                                 throw new ArgumentNullException ("type");
217
218                         XmlReflectionImporter importer = new XmlReflectionImporter (overrides, defaultNamespace);
219
220                         if (extraTypes != null) 
221                         {
222                                 foreach (Type intype in extraTypes)
223                                         importer.IncludeType (intype);
224                         }
225
226                         typeMapping = importer.ImportTypeMapping (type, root, defaultNamespace);
227                 }
228                 
229                 internal XmlMapping Mapping
230                 {
231                         get { return typeMapping; }
232                 }
233
234 #if NET_2_0
235
236                 [MonoTODO]
237                 public XmlSerializer (Type type,
238                         XmlAttributeOverrides overrides,
239                         Type [] extraTypes,
240                         XmlRootAttribute root,
241                         string defaultNamespace,
242                         string location,
243                         Evidence evidence)
244                 {
245                 }
246 #endif
247
248 #endregion // Constructors
249
250 #region Events
251
252                 private XmlAttributeEventHandler onUnknownAttribute;
253                 private XmlElementEventHandler onUnknownElement;
254                 private XmlNodeEventHandler onUnknownNode;
255                 private UnreferencedObjectEventHandler onUnreferencedObject;
256
257                 public event XmlAttributeEventHandler UnknownAttribute 
258                 {
259                         add { onUnknownAttribute += value; } remove { onUnknownAttribute -= value; }
260                 }
261
262                 public event XmlElementEventHandler UnknownElement 
263                 {
264                         add { onUnknownElement += value; } remove { onUnknownElement -= value; }
265                 }
266
267                 public event XmlNodeEventHandler UnknownNode 
268                 {
269                         add { onUnknownNode += value; } remove { onUnknownNode -= value; }
270                 }
271
272                 public event UnreferencedObjectEventHandler UnreferencedObject 
273                 {
274                         add { onUnreferencedObject += value; } remove { onUnreferencedObject -= value; }
275                 }
276
277
278                 internal virtual void OnUnknownAttribute (XmlAttributeEventArgs e) 
279                 {
280                         if (onUnknownAttribute != null) onUnknownAttribute(this, e);
281                 }
282
283                 internal virtual void OnUnknownElement (XmlElementEventArgs e) 
284                 {
285                         if (onUnknownElement != null) onUnknownElement(this, e);
286                 }
287
288                 internal virtual void OnUnknownNode (XmlNodeEventArgs e) 
289                 {
290                         if (onUnknownNode != null) onUnknownNode(this, e);
291                 }
292
293                 internal virtual void OnUnreferencedObject (UnreferencedObjectEventArgs e) 
294                 {
295                         if (onUnreferencedObject != null) onUnreferencedObject(this, e);
296                 }
297
298
299 #endregion // Events
300
301 #region Methods
302
303                 public virtual bool CanDeserialize (XmlReader xmlReader)
304                 {
305                         xmlReader.MoveToContent ();
306                         if (typeMapping is XmlMembersMapping) 
307                                 return true;
308                         else
309                                 return ((XmlTypeMapping)typeMapping).ElementName == xmlReader.LocalName;
310                 }
311
312                 protected virtual XmlSerializationReader CreateReader ()
313                 {
314                         // Must be implemented in derived class
315                         throw new NotImplementedException ();
316                 }
317
318                 protected virtual XmlSerializationWriter CreateWriter ()
319                 {
320                         // Must be implemented in derived class
321                         throw new NotImplementedException ();
322                 }
323
324                 public object Deserialize (Stream stream)
325                 {
326                         XmlTextReader xmlReader = new XmlTextReader(stream);
327                         xmlReader.Normalization = true;
328                         return Deserialize(xmlReader);
329                 }
330
331                 public object Deserialize (TextReader textReader)
332                 {
333                         XmlTextReader xmlReader = new XmlTextReader(textReader);
334                         xmlReader.Normalization = true;
335                         return Deserialize(xmlReader);
336                 }
337
338                 public object Deserialize (XmlReader xmlReader)
339                 {
340                         XmlSerializationReader xsReader;
341                         if (customSerializer)
342                                 xsReader = CreateReader ();
343                         else
344                                 xsReader = CreateReader (typeMapping);
345                                 
346                         xsReader.Initialize (xmlReader, this);
347                         return Deserialize (xsReader);
348                 }
349
350                 protected virtual object Deserialize (XmlSerializationReader reader)
351                 {
352                         if (customSerializer)
353                                 // Must be implemented in derived class
354                                 throw new NotImplementedException ();
355                         
356                         try {
357                                 if (reader is XmlSerializationReaderInterpreter)
358                                         return ((XmlSerializationReaderInterpreter) reader).ReadRoot ();
359                                 else
360                                         return serializerData.ReaderMethod.Invoke (reader, null);
361                         } catch (Exception ex) {
362                                 if (ex is InvalidOperationException || ex is InvalidCastException)
363                                         throw new InvalidOperationException ("There is an error in"
364                                                 + " XML document.", ex);
365                                 throw;
366                         }
367                 }
368
369                 public static XmlSerializer [] FromMappings (XmlMapping [] mappings)
370                 {
371                         XmlSerializer[] sers = new XmlSerializer [mappings.Length];
372                         SerializerData[] datas = new SerializerData [mappings.Length];
373                         GenerationBatch batch = new GenerationBatch ();
374                         batch.Maps = mappings;
375                         batch.Datas = datas;
376                         
377                         for (int n=0; n<mappings.Length; n++)
378                         {
379                                 if (mappings[n] != null)
380                                 {
381                                         SerializerData data = new SerializerData ();
382                                         data.Batch = batch;
383                                         sers[n] = new XmlSerializer (mappings[n], data);
384                                         datas[n] = data;
385                                 }
386                         }
387                         
388                         return sers;
389                 }
390
391                 public static XmlSerializer [] FromTypes (Type [] mappings)
392                 {
393                         XmlSerializer [] sers = new XmlSerializer [mappings.Length];
394                         for (int n=0; n<mappings.Length; n++)
395                                 sers[n] = new XmlSerializer (mappings[n]);
396                         return sers;
397                 }
398
399                 protected virtual void Serialize (object o, XmlSerializationWriter writer)
400                 {
401                         if (customSerializer)
402                                 // Must be implemented in derived class
403                                 throw new NotImplementedException ();
404                                 
405                         if (writer is XmlSerializationWriterInterpreter)
406                                 ((XmlSerializationWriterInterpreter)writer).WriteRoot (o);
407                         else
408                                 serializerData.WriterMethod.Invoke (writer, new object[] {o});
409                 }
410
411                 public void Serialize (Stream stream, object o)
412                 {
413                         XmlTextWriter xmlWriter = new XmlTextWriter (stream, System.Text.Encoding.Default);
414                         xmlWriter.Formatting = Formatting.Indented;
415                         Serialize (xmlWriter, o, null);
416                 }
417
418                 public void Serialize (TextWriter textWriter, object o)
419                 {
420                         XmlTextWriter xmlWriter = new XmlTextWriter (textWriter);
421                         xmlWriter.Formatting = Formatting.Indented;
422                         Serialize (xmlWriter, o, null);
423                 }
424
425                 public void Serialize (XmlWriter xmlWriter, object o)
426                 {
427                         Serialize (xmlWriter, o, null);
428                 }
429
430                 public void Serialize (Stream stream, object o, XmlSerializerNamespaces namespaces)
431                 {
432                         XmlTextWriter xmlWriter = new XmlTextWriter (stream, System.Text.Encoding.Default);
433                         xmlWriter.Formatting = Formatting.Indented;
434                         Serialize (xmlWriter, o, namespaces);
435                 }
436
437                 public void Serialize (TextWriter textWriter, object o, XmlSerializerNamespaces namespaces)
438                 {
439                         XmlTextWriter xmlWriter = new XmlTextWriter (textWriter);
440                         xmlWriter.Formatting = Formatting.Indented;
441                         Serialize (xmlWriter, o, namespaces);
442                         xmlWriter.Flush();
443                 }
444
445                 public void Serialize (XmlWriter writer, object o, XmlSerializerNamespaces namespaces)
446                 {
447                         XmlSerializationWriter xsWriter;
448
449                         try {
450                                 if (customSerializer)
451                                         xsWriter = CreateWriter ();
452                                 else
453                                         xsWriter = CreateWriter (typeMapping);
454
455                                 if (namespaces == null || namespaces.Count == 0) {
456                                         namespaces = new XmlSerializerNamespaces ();
457 #if NET_2_0
458                                         namespaces.Add ("xsi", XmlSchema.InstanceNamespace);
459                                         namespaces.Add ("xsd", XmlSchema.Namespace);
460 #else
461                                         namespaces.Add ("xsd", XmlSchema.Namespace);
462                                         namespaces.Add ("xsi", XmlSchema.InstanceNamespace);
463 #endif
464                                 }
465
466                                 xsWriter.Initialize (writer, namespaces);
467                                 Serialize (o, xsWriter);
468                                 writer.Flush ();
469                         } catch (Exception ex) {
470                                 if (ex is TargetInvocationException)
471                                         ex = ex.InnerException;
472
473                                 if (ex is InvalidOperationException || ex is InvalidCastException)
474                                         throw new InvalidOperationException ("There was an error generating" +
475                                                 " the XML document.", ex);
476
477                                 throw;
478                         }
479                 }
480                 
481 #if NET_2_0
482                 
483                 [MonoTODO]
484                 public object Deserialize (XmlReader xmlReader, string encodingStyle, XmlDeserializationEvents events)
485                 {
486                         throw new NotImplementedException ();
487                 }
488
489                 [MonoTODO]
490                 public object Deserialize (XmlReader xmlReader, string encodingStyle)
491                 {
492                         throw new NotImplementedException ();
493                 }
494
495                 [MonoTODO]
496                 public object Deserialize (XmlReader xmlReader, XmlDeserializationEvents events)
497                 {
498                         throw new NotImplementedException ();
499                 }
500                 
501                 [MonoTODO]
502                 public static XmlSerializer[] FromMappings (XmlMapping[] mappings, Evidence evidence)
503                 {
504                         throw new NotImplementedException ();
505                 }
506
507                 [MonoTODO]
508                 public static XmlSerializer[] FromMappings (XmlMapping[] mappings, Type type)
509                 {
510                         throw new NotImplementedException ();
511                 }
512
513 #if !TARGET_JVM
514                 public static Assembly GenerateSerializer (Type[] types, XmlMapping[] mappings)
515                 {
516                         return GenerateSerializer (types, mappings, null);
517                 }
518                 
519                 [MonoTODO]
520                 public static Assembly GenerateSerializer (Type[] types, XmlMapping[] mappings, CompilerParameters parameters)
521                 {
522                         GenerationBatch batch = new GenerationBatch ();
523                         batch.Maps = mappings;
524                         batch.Datas = new SerializerData [mappings.Length];
525                         
526                         for (int n=0; n<mappings.Length; n++) {
527                                 SerializerData data = new SerializerData ();
528                                 data.Batch = batch;
529                                 batch.Datas [n] = data;
530                         }
531                         
532                         return GenerateSerializers (batch, parameters);
533                 }
534 #endif
535
536                 public static string GetXmlSerializerAssemblyName (Type type)
537                 {
538                         return type.Assembly.GetName().Name + ".XmlSerializers";
539                 }
540
541                 public static string GetXmlSerializerAssemblyName (Type type, string defaultNamespace)
542                 {
543                         return GetXmlSerializerAssemblyName (type) + "." + defaultNamespace.GetHashCode ();
544                 }
545                 
546                 [MonoTODO]
547                 public void Serialize (XmlWriter xmlWriter, object o, XmlSerializerNamespaces namespaces, string encodingStyle)
548                 {
549                         throw new NotImplementedException ();
550                 }
551
552 #endif
553                 
554                 XmlSerializationWriter CreateWriter (XmlMapping typeMapping)
555                 {
556                         XmlSerializationWriter writer;
557                         
558                         lock (this) {
559                                 if (serializerData != null) {
560                                         lock (serializerData) {
561                                                 writer = serializerData.CreateWriter ();
562                                         }
563                                         if (writer != null) return writer;
564                                 }
565                         }
566                         
567                         if (!typeMapping.Source.CanBeGenerated || generationThreshold == -1)
568                                 return new XmlSerializationWriterInterpreter (typeMapping);
569
570                         CheckGeneratedTypes (typeMapping);
571                         
572                         lock (this) {
573                                 lock (serializerData) {
574                                         writer = serializerData.CreateWriter ();
575                                 }
576                                 if (writer != null) return writer;
577                                 if (!generatorFallback)
578                                         throw new InvalidOperationException ("Error while generating serializer");
579                         }
580                         
581                         return new XmlSerializationWriterInterpreter (typeMapping);
582                 }
583                 
584                 XmlSerializationReader CreateReader (XmlMapping typeMapping)
585                 {
586                         XmlSerializationReader reader;
587                         
588                         lock (this) {
589                                 if (serializerData != null) {
590                                         lock (serializerData) {
591                                                 reader = serializerData.CreateReader ();
592                                         }
593                                         if (reader != null) return reader;
594                                 }
595                         }
596                         
597                         if (!typeMapping.Source.CanBeGenerated || generationThreshold == -1)
598                                 return new XmlSerializationReaderInterpreter (typeMapping);
599
600                         CheckGeneratedTypes (typeMapping);
601                         
602                         lock (this) {
603                                 lock (serializerData) {
604                                         reader = serializerData.CreateReader ();
605                                 }
606                                 if (reader != null) return reader;
607                                 if (!generatorFallback)
608                                         throw new InvalidOperationException ("Error while generating serializer");
609                         }
610                         
611                         return new XmlSerializationReaderInterpreter (typeMapping);
612                 }
613                 
614 #if TARGET_JVM
615                 void CheckGeneratedTypes (XmlMapping typeMapping)
616                 {
617                         throw new NotImplementedException();
618                 }
619                 void GenerateSerializersAsync (GenerationBatch batch)
620                 {
621                         throw new NotImplementedException();
622                 }
623                 void RunSerializerGeneration (object obj)
624                 {
625                         throw new NotImplementedException();
626                 }
627 #else
628                 void CheckGeneratedTypes (XmlMapping typeMapping)
629                 {
630                         lock (this)
631                         {
632                                 if (serializerData == null) 
633                                 {
634                                         lock (serializerTypes)
635                                         {
636                                                 serializerData = (SerializerData) serializerTypes [typeMapping.Source];
637                                                 if (serializerData == null) {
638                                                         serializerData = new SerializerData();
639                                                         serializerTypes [typeMapping.Source] = serializerData;
640                                                 }
641                                         }
642                                 }
643                         }
644                         
645                         bool generate = false;
646                         lock (serializerData)
647                         {
648                                 generate = (++serializerData.UsageCount == generationThreshold);
649                         }
650                         
651                         if (generate)
652                         {
653                                 if (serializerData.Batch != null)
654                                         GenerateSerializersAsync (serializerData.Batch);
655                                 else
656                                 {
657                                         GenerationBatch batch = new GenerationBatch ();
658                                         batch.Maps = new XmlMapping[] {typeMapping};
659                                         batch.Datas = new SerializerData[] {serializerData};
660                                         GenerateSerializersAsync (batch);
661                                 }
662                         }
663                 }
664                 
665                 void GenerateSerializersAsync (GenerationBatch batch)
666                 {
667                         if (batch.Maps.Length != batch.Datas.Length)
668                                 throw new ArgumentException ("batch");
669
670                         lock (batch)
671                         {
672                                 if (batch.Done) return;
673                                 batch.Done = true;
674                         }
675                         
676                         if (backgroundGeneration)
677                                 ThreadPool.QueueUserWorkItem (new WaitCallback (RunSerializerGeneration), batch);
678                         else
679                                 RunSerializerGeneration (batch);
680                 }
681                 
682                 void RunSerializerGeneration (object obj)
683                 {
684                         try
685                         {
686                                 GenerationBatch batch = (GenerationBatch) obj;
687                                 batch = LoadFromSatelliteAssembly (batch);
688                                 
689                                 if (batch != null)
690                                         GenerateSerializers (batch, null);
691                         }
692                         catch (Exception ex)
693                         {
694                                 Console.WriteLine (ex);
695                         }
696                 }
697                 
698                 static Assembly GenerateSerializers (GenerationBatch batch, CompilerParameters cp)
699                 {
700                         DateTime tim = DateTime.Now;
701                         
702                         XmlMapping[] maps = batch.Maps;
703                         
704                         if (cp == null) {
705                                 cp = new CompilerParameters();
706                                 cp.IncludeDebugInformation = false;
707                                 cp.GenerateInMemory = true;
708                                 cp.TempFiles.KeepFiles = !deleteTempFiles;
709                         }
710                         
711                         string file = cp.TempFiles.AddExtension ("cs");
712                         StreamWriter sw = new StreamWriter (file);
713                         
714                         if (!deleteTempFiles)
715                                 Console.WriteLine ("Generating " + file);
716                         
717                         SerializationCodeGenerator gen = new SerializationCodeGenerator (maps);
718                         
719                         try
720                         {
721                                 gen.GenerateSerializers (sw);
722                         }
723                         catch (Exception ex)
724                         {
725                                 Console.WriteLine ("Serializer could not be generated");
726                                 Console.WriteLine (ex);
727                                 cp.TempFiles.Delete ();
728                                 return null;
729                         }
730                         sw.Close ();
731                         
732                         CSharpCodeProvider provider = new CSharpCodeProvider();
733                         ICodeCompiler comp = provider.CreateCompiler ();
734                         
735                         cp.GenerateExecutable = false;
736                         
737                         foreach (Type rtype in gen.ReferencedTypes)
738                         {
739                                 if (!cp.ReferencedAssemblies.Contains (rtype.Assembly.Location))
740                                         cp.ReferencedAssemblies.Add (rtype.Assembly.Location);
741                         }
742                                 
743                         if (!cp.ReferencedAssemblies.Contains ("System.dll"))
744                                 cp.ReferencedAssemblies.Add ("System.dll");
745                         if (!cp.ReferencedAssemblies.Contains ("System.Xml"))
746                                 cp.ReferencedAssemblies.Add ("System.Xml");
747                         if (!cp.ReferencedAssemblies.Contains ("System.Data"))
748                                 cp.ReferencedAssemblies.Add ("System.Data");
749                         
750                         CompilerResults res = comp.CompileAssemblyFromFile (cp, file);
751                         if (res.Errors.HasErrors || res.CompiledAssembly == null) {
752                                 Console.WriteLine ("Error while compiling generated serializer");
753                                 foreach (CompilerError error in res.Errors)
754                                         Console.WriteLine (error);
755                                         
756                                 cp.TempFiles.Delete ();
757                                 return null;
758                         }
759                         
760                         GenerationResult[] results = gen.GenerationResults;
761                         for (int n=0; n<results.Length; n++)
762                         {
763                                 GenerationResult gres = results[n];
764                                 SerializerData sd = batch.Datas [n];
765                                 lock (sd)
766                                 {
767                                         sd.WriterType = res.CompiledAssembly.GetType (gres.Namespace + "." + gres.WriterClassName);
768                                         sd.ReaderType = res.CompiledAssembly.GetType (gres.Namespace + "." + gres.ReaderClassName);
769                                         sd.WriterMethod = sd.WriterType.GetMethod (gres.WriteMethodName);
770                                         sd.ReaderMethod = sd.ReaderType.GetMethod (gres.ReadMethodName);
771                                         sd.Batch = null;
772                                 }
773                         }
774                         
775                         cp.TempFiles.Delete ();
776
777                         if (!deleteTempFiles)
778                                 Console.WriteLine ("Generation finished - " + (DateTime.Now - tim).TotalMilliseconds + " ms");
779                                 
780                         return res.CompiledAssembly;
781                 }
782 #endif
783                 
784 #if NET_2_0
785                 GenerationBatch LoadFromSatelliteAssembly (GenerationBatch batch)
786                 {
787                         return batch;
788                 }
789 #else
790                 GenerationBatch LoadFromSatelliteAssembly (GenerationBatch batch)
791                 {
792                         return batch;
793                 }
794 #endif
795                 
796 #endregion // Methods
797         }
798 }