From 70dd86766b12a075d40410fe83bb509143f71563 Mon Sep 17 00:00:00 2001 From: MattMo Date: Mon, 30 Jan 2023 21:28:34 -0800 Subject: [PATCH] Moved the DateTime To Unix converter an official converter apart of the library. Bumped package version to 1.0.2 --- MySqlPlus.Example/Program.cs | 38 +----------------- MySqlPlus/DateTimeToUnixConverter.cs | 59 ++++++++++++++++++++++++++++ MySqlPlus/MySqlPlus.csproj | 2 +- 3 files changed, 61 insertions(+), 38 deletions(-) create mode 100644 MySqlPlus/DateTimeToUnixConverter.cs diff --git a/MySqlPlus.Example/Program.cs b/MySqlPlus.Example/Program.cs index 4f59874..229f343 100644 --- a/MySqlPlus.Example/Program.cs +++ b/MySqlPlus.Example/Program.cs @@ -20,46 +20,10 @@ namespace MontoyaTech.MySqlPlus.Example [MySqlColumn("year")] public uint Year = 0; - [MySqlColumn("dateCreated", typeof(DateTime2UnixConverter))] + [MySqlColumn("dateCreated", typeof(DateTimeToUnixConverter))] public DateTime DateCreated = DateTime.UtcNow; } - public class DateTime2UnixConverter : MySqlColumnConverter - { - public object ConvertFrom(object input) - { - if (input is ulong unix) - { - if (unix == 0) - return DateTime.MinValue; - - return new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc).AddSeconds(unix).ToUniversalTime(); - } - else - { - throw new NotSupportedException("Unsupported input object to convert from unix."); - } - } - - public object ConvertTo(object input) - { - if (input is DateTime dateTime) - { - if (dateTime == DateTime.MinValue) - return 0; - - if (dateTime == DateTime.MaxValue) - return ulong.MaxValue; - - return (ulong)(dateTime.ToUniversalTime().Subtract(new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc))).TotalSeconds; - } - else - { - throw new NotSupportedException("Unsupported input object to convert to unix."); - } - } - } - public static void Main(string[] args) { var session = new MySqlSession(""); diff --git a/MySqlPlus/DateTimeToUnixConverter.cs b/MySqlPlus/DateTimeToUnixConverter.cs new file mode 100644 index 0000000..94c303f --- /dev/null +++ b/MySqlPlus/DateTimeToUnixConverter.cs @@ -0,0 +1,59 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MontoyaTech.MySqlPlus +{ + /// + /// The outline of a MySqlColumn converter that converts a DateTime to Unix and back. + /// + public class DateTimeToUnixConverter : MySqlColumnConverter + { + /// + /// Converts from a Unix Time to a DateTime. + /// + /// + /// + /// + public object ConvertFrom(object input) + { + if (input is ulong unix) + { + if (unix == 0) + return DateTime.MinValue; + + return new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc).AddSeconds(unix).ToUniversalTime(); + } + else + { + throw new NotSupportedException("Unsupported input object to convert from unix."); + } + } + + /// + /// Converts to a Unix Time from a DateTime. + /// + /// + /// + /// + public object ConvertTo(object input) + { + if (input is DateTime dateTime) + { + if (dateTime == DateTime.MinValue) + return 0; + + if (dateTime == DateTime.MaxValue) + return ulong.MaxValue; + + return (ulong)(dateTime.ToUniversalTime().Subtract(new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc))).TotalSeconds; + } + else + { + throw new NotSupportedException("Unsupported input object to convert to unix."); + } + } + } +} diff --git a/MySqlPlus/MySqlPlus.csproj b/MySqlPlus/MySqlPlus.csproj index 2f4633e..9d95840 100644 --- a/MySqlPlus/MySqlPlus.csproj +++ b/MySqlPlus/MySqlPlus.csproj @@ -7,7 +7,7 @@ MontoyaTech.MySqlPlus MontoyaTech.MySqlPlus MontoyaTech.MySqlPlus - 1.0.1 + 1.0.2 MontoyaTech A simple C# library to help work with MySql. MontoyaTech 2023