Example #1
0
        public T ReadObject <T>(string filePath)
        {
            if (string.IsNullOrEmpty(filePath))
            {
                throw new ArgumentException(nameof(filePath), "File path cannot be null or empty.");
            }

            string extension = PathType.GetExtension(filePath);

            if (string.IsNullOrEmpty(extension))
            {
                throw new ArgumentException(nameof(filePath), "The file requires an extension.");
            }

            if (SerializationFormats.TryGetValue(extension, out var format) && format != null)
            {
                using (var stream = OpenFile(filePath, FileMode.Open, FileAccess.Read))
                {
                    try
                    {
                        return(format.Read <T>(stream));
                    }
                    catch (Exception ex)
                    {
                        throw new SerializationFailException($"Could not read the file using {format.GetType().Name}.", ex);
                    }
                }
            }
            else
            {
                throw new UnknownSerializationFormatException($"Cannot read an object from a {extension} file.");
            }
        }
Example #2
0
        public void WriteObject <T>(string filePath, T data)
        {
            if (string.IsNullOrEmpty(filePath))
            {
                throw new ArgumentException(nameof(filePath), "File path cannot be null or empty.");
            }

            string extension = PathType.GetExtension(filePath);

            if (string.IsNullOrEmpty(extension))
            {
                throw new ArgumentException(nameof(filePath), "The file requires an extension.");
            }

            if (SerializationFormats.TryGetValue(extension, out var format) && format != null)
            {
                using (var stream = OpenFile(filePath, FileMode.Create, FileAccess.Write))
                {
                    try
                    {
                        format.Write <T>(stream, data);
                    }
                    catch (Exception ex)
                    {
                        throw new SerializationFailException($"Could not write the file using {format.GetType().Name}.", ex);
                    }
                }
            }
            else
            {
                throw new UnknownSerializationFormatException($"Cannot write an object to a {extension} file.");
            }
        }