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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
#region Copyright (c) Microsoft Corporation
/// <copyright company='Microsoft Corporation'>
/// Copyright (c) Microsoft Corporation. All Rights Reserved.
/// Information Contained Herein is Proprietary and Confidential.
/// </copyright>
#endregion
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
#if WEB_EXTENSIONS_CODE
using System.Web.Resources;
#else
using Microsoft.VSDesigner.WCF.Resources;
#endif
#if WEB_EXTENSIONS_CODE
namespace System.Web.Compilation.WCFModel
#else
namespace Microsoft.VSDesigner.WCFModel
#endif
{
/// <summary>
/// Map file loader
/// </summary>
/// <remarks>
/// MapFileLoader instance and MapFile instance should be 1:1 mapping.
/// </remarks>
#if WEB_EXTENSIONS_CODE
internal abstract class MapFileLoader
#else
[CLSCompliant(true)]
public abstract class MapFileLoader
#endif
{
/// <summary>
/// Save the given map file.
/// </summary>
/// <param name="mapFile">The map file to be saved</param>
public void SaveMapFile(MapFile mapFile)
{
Debug.Assert(mapFile != null, "mapFile is null!");
SaveExternalFiles(mapFile);
using (var mapFileWriter = GetMapFileWriter())
{
GetMapFileSerializer().Serialize(mapFileWriter, Unwrap(mapFile));
}
}
/// <summary>
/// Load the map file.
/// </summary>
/// <returns>Concrete map file instance.</returns>
public MapFile LoadMapFile()
{
MapFile mapFile = null;
using (var mapFileReader = GetMapFileReader())
{
var proxyGenerationErrors = new List<ProxyGenerationError>();
ValidationEventHandler handler =
(sender, e) =>
{
bool isError = (e.Severity == XmlSeverityType.Error);
proxyGenerationErrors.Add(
new ProxyGenerationError(ProxyGenerationError.GeneratorState.LoadMetadata,
MapFileName,
e.Exception,
!isError));
if (isError)
{
throw e.Exception;
}
};
var readerSettings = new XmlReaderSettings()
{
Schemas = GetMapFileSchemaSet(),
ValidationType = ValidationType.Schema,
ValidationFlags = XmlSchemaValidationFlags.ReportValidationWarnings,
};
using (XmlReader reader = XmlReader.Create(mapFileReader, readerSettings, string.Empty))
{
try
{
readerSettings.ValidationEventHandler += handler;
mapFile = ReadMapFile(reader);
SetMapFileLoadErrors(mapFile, proxyGenerationErrors);
}
finally
{
readerSettings.ValidationEventHandler -= handler;
}
}
}
if (mapFile != null)
{
LoadExternalFiles(mapFile);
}
return mapFile;
}
/// <summary>
/// Load metadata file from file system
/// </summary>
public void LoadMetadataFile(MetadataFile metadataFile)
{
try
{
metadataFile.CleanUpContent();
metadataFile.LoadContent(ReadMetadataFile(metadataFile.FileName));
}
catch (Exception ex)
{
metadataFile.ErrorInLoading = ex;
}
}
/// <summary>
/// Load extension file
/// </summary>
public void LoadExtensionFile(ExtensionFile extensionFile)
{
try
{
extensionFile.CleanUpContent();
extensionFile.ContentBuffer = ReadExtensionFile(extensionFile.FileName);
}
catch (Exception ex)
{
extensionFile.ErrorInLoading = ex;
}
}
#region protected abstract methods
/// <summary>
/// The name of the file where the MapFile instance is loaded.
/// </summary>
protected abstract string MapFileName { get; }
/// <summary>
/// Wrap the map file impl.
/// </summary>
protected abstract MapFile Wrap(object mapFileImpl);
/// <summary>
/// Unwrap the map file.
/// </summary>
protected abstract object Unwrap(MapFile mapFile);
/// <summary>
/// Get the map file schema set
/// </summary>
/// <return>Xml schema set of the map file</return>
protected abstract XmlSchemaSet GetMapFileSchemaSet();
/// <summary>
/// Get the map file serializer
/// </summary>
/// <returns>Xml serializer of the map file</returns>
protected abstract XmlSerializer GetMapFileSerializer();
/// <summary>
/// Get access to a text reader that gets access to the map file byte stream
/// </summary>
/// <returns>Text reader of the map file</returns>
protected virtual TextReader GetMapFileReader()
{
throw new NotImplementedException();
}
/// <summary>
/// Get access to a text writer that writes the map file byte stream.
/// </summary>
/// <returns>Text writer of the map file</returns>
protected virtual TextWriter GetMapFileWriter()
{
throw new NotImplementedException();
}
/// <summary>
/// Get access to a byte array that contain the contents of the given metadata
/// file
/// </summary>
/// <param name="name">
/// Name of the metadata file. Could be a path relative to the svcmap file location
/// or the name of an item in a metadata storage.
/// </param>
/// <returns>Content of the metadata file</returns>
protected virtual byte[] ReadMetadataFile(string name)
{
throw new NotImplementedException();
}
/// <summary>
/// Write the metadata file.
/// </summary>
/// <param name="file">The metadata file to be written</param>
protected virtual void WriteMetadataFile(MetadataFile file)
{
throw new NotImplementedException();
}
/// <summary>
/// Get access to a byte array that contain the contents of the given extension
/// file
/// </summary>
/// <param name="name">
/// Name of the extension file. Could be a path relative to the svcmap file location
/// or the name of an item in a metadata storage.
/// </param>
/// <returns>Content of the extension file</returns>
protected virtual byte[] ReadExtensionFile(string name)
{
throw new NotImplementedException();
}
/// <summary>
/// Write the extension file.
/// </summary>
/// <param name="file">The extension file to be written</param>
protected virtual void WriteExtensionFile(ExtensionFile file)
{
throw new NotImplementedException();
}
#endregion protected abstract methods
#region private methods
private MapFile ReadMapFile(XmlReader reader)
{
try
{
return Wrap(GetMapFileSerializer().Deserialize(reader));
}
catch (InvalidOperationException ex)
{
XmlException xmlException = ex.InnerException as XmlException;
if (xmlException != null)
{
// the innerException contains detail error message
throw xmlException;
}
XmlSchemaException schemaException = ex.InnerException as XmlSchemaException;
if (schemaException != null)
{
if (schemaException.LineNumber > 0)
{
// append line/position to the message
throw new XmlSchemaException(String.Format(CultureInfo.CurrentCulture,
WCFModelStrings.ReferenceGroup_AppendLinePosition,
schemaException.Message,
schemaException.LineNumber,
schemaException.LinePosition),
schemaException,
schemaException.LineNumber,
schemaException.LinePosition);
}
else
{
throw schemaException;
}
}
// It's something we can't handle, throw it.
throw;
}
}
private void SaveExternalFiles(MapFile mapFile)
{
// KEEP the order! The name of metadata files could be adjusted when we save them.
foreach (MetadataFile metadataFile in mapFile.MetadataList)
{
if (metadataFile.ErrorInLoading == null)
{
WriteMetadataFile(metadataFile);
}
}
foreach (ExtensionFile extensionFile in mapFile.Extensions)
{
if (extensionFile.ErrorInLoading == null)
{
WriteExtensionFile(extensionFile);
}
}
}
private void LoadExternalFiles(MapFile mapFile)
{
// Do basic check for metadata files and extension files.
ValidateMapFile(mapFile);
foreach (MetadataFile metadataFile in mapFile.MetadataList)
{
metadataFile.IsExistingFile = true;
LoadMetadataFile(metadataFile);
}
foreach (ExtensionFile extensionFile in mapFile.Extensions)
{
extensionFile.IsExistingFile = true;
LoadExtensionFile(extensionFile);
}
}
private void ValidateMapFile(MapFile mapFile)
{
var metadataFileNames = mapFile.MetadataList.Select(p => p.FileName).Where(p => !string.IsNullOrEmpty(p));
var extensionFileNames = mapFile.Extensions.Select(p => p.FileName).Where(p => !string.IsNullOrEmpty(p));
var fileNameSet = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
foreach (string fileName in metadataFileNames.Concat(extensionFileNames))
{
if (!fileNameSet.Contains(fileName))
{
fileNameSet.Add(fileName);
}
else
{
throw new FormatException(String.Format(CultureInfo.CurrentCulture,
WCFModelStrings.ReferenceGroup_TwoExternalFilesWithSameName,
fileName));
}
}
}
private void SetMapFileLoadErrors(MapFile mapFile, IEnumerable<ProxyGenerationError> proxyGenerationErrors)
{
mapFile.LoadErrors = proxyGenerationErrors;
}
#endregion private methods
}
}
|