Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Perf: Improve perf of SqlDateTimeToDateTime #912

Merged
merged 6 commits into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,11 @@ internal static Exception UDTUnexpectedResult(string exceptionText)
return ADP.TypeLoad(System.StringsHelper.GetString(Strings.SQLUDT_Unexpected, exceptionText));
}

internal static Exception DateTimeOverflow()
{
return new OverflowException(SqlTypes.SQLResource.DateTimeOverflowMessage);
}

//
// SQL.SqlDependency
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,11 @@ static internal SysTx.TransactionPromotionException PromotionFailed(Exception in
return e;
}

internal static Exception DateTimeOverflow()
{
return new OverflowException(SqlTypes.SQLResource.DateTimeOverflowMessage);
}

//
// SQL.SqlDependency
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
using System.Data.SqlTypes;
using System.Diagnostics;
using System.IO;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Xml;
using Microsoft.Data.SqlClient;

namespace Microsoft.Data.SqlTypes
{
Expand Down Expand Up @@ -61,22 +63,33 @@ internal static DateTime SqlDateTimeToDateTime(int daypart, int timepart)
const int SQLTicksPerMinute = SQLTicksPerSecond * 60;
const int SQLTicksPerHour = SQLTicksPerMinute * 60;
const int SQLTicksPerDay = SQLTicksPerHour * 24;
const int MinDay = -53690; // Jan 1 1753
const int MaxDay = 2958463; // Dec 31 9999 is this many days from Jan 1 1900
const int MinTime = 0; // 00:00:0:000PM
const int MaxTime = SQLTicksPerDay - 1; // = 25919999, 11:59:59:997PM

if (daypart < MinDay || daypart > MaxDay || timepart < MinTime || timepart > MaxTime)
//const int MinDay = -53690; // Jan 1 1753
const uint MinDayOffset = 53690; // postive value of MinDay used to pull negative values up to 0 so a single check can be used
const uint MaxDay = 2958463; // Dec 31 9999 is this many days from Jan 1 1900
const uint MaxTime = SQLTicksPerDay - 1; // = 25919999, 11:59:59:997PM
const long BaseDateTicks = 599266080000000000L;//new DateTime(1900, 1, 1).Ticks;
Wraith2 marked this conversation as resolved.
Show resolved Hide resolved

// casting to uint wraps negative values to large positive ones above the valid
// ranges so the lower bound doesn't need to be checked
if ((uint)(daypart + MinDayOffset) > (MaxDay + MinDayOffset) || (uint)timepart > MaxTime)
{
throw new OverflowException(SQLResource.DateTimeOverflowMessage);
ThrowOverflowException();
}

long baseDateTicks = new DateTime(1900, 1, 1).Ticks;
long dayticks = daypart * TimeSpan.TicksPerDay;
long timeticks = ((long)(timepart / SQLTicksPerMillisecond + 0.5)) * TimeSpan.TicksPerMillisecond;

return new DateTime(baseDateTicks + dayticks + timeticks);
double timePartPerMs = timepart / SQLTicksPerMillisecond;
timePartPerMs += 0.5;
long timeTicks = ((long)timePartPerMs) * TimeSpan.TicksPerMillisecond;
long totalTicks = BaseDateTicks + dayticks + timeTicks;
return new DateTime(totalTicks);
}

// this method is split out of SqlDateTimeToDateTime for performance reasons
// it is faster to make a method call than it is to incorporate the asm for this
// method in the calling method.
[MethodImpl(MethodImplOptions.NoInlining)]
private static Exception ThrowOverflowException() => throw SQL.DateTimeOverflow();

#endregion

#region Work around inability to access SqlMoney.ctor(long, int) and SqlMoney.ToSqlInternalRepresentation
Expand Down