gpt4 book ai didi

c# - 在运行 Quartz 作业时补偿时区偏移

转载 作者:太空狗 更新时间:2023-10-30 00:15:06 25 4
gpt4 key购买 nike

我有一个独特的问题,我的 quartz 作业调度器实现是使用 quartz.net 代码库版本 2.0.1 构建的,最近发现在运行和执行作业时时区和 utc 偏移量被忽略了。这是这个版本的 quartz.net 中的一个继承错误,现在更新到版本 2.1.1 超出了范围,所以我写了一个使用这个算法计算偏移量的快速而肮脏的方法:

(ServerTime - ClientTime) - TargetTime = New_TargetTime_With_Offset

这里的想法是,假设在纽约市的客户在下午 5:00 开始工作,并希望它在下午 2:00 运行。服务器(此应用程序和作业服务器运行的位置)当前时间是下午 2:00,因此我们使用客户端时间和服务器时间来获取偏移量并将该偏移量应用到目标时间,这是作业应该运行的时间。

我的问题是,这感觉像是一种关于计算日期的方法,但似乎可以完成这项工作。有没有更好/更可靠的方法来计算这个日期?这在边缘情况下似乎也有问题,我错过了什么?

实现如下:

    /// <summary>
/// Takes three dates and returns the adjusted hour value.
/// All date data is ignored except for the hour.
/// </summary>
/// <param name="serverTime"></param>
/// <param name="clientTime"></param>
/// <param name="targetTime"></param>
/// <returns></returns>
private static DateTime OutputDate(DateTime serverTime, DateTime clientTime, DateTime targetTime)
{
DateTime? output = null;
TimeSpan? dateDiff;

if (serverTime < clientTime)
{
dateDiff = (clientTime - serverTime);
}
else
{
dateDiff = (serverTime - clientTime);
}

output = (targetTime - dateDiff);

return output.Value;
}

这里有两个利用它的例子:

    /// <summary>
/// -5 Offset (NYC)
/// </summary>
/// <returns></returns>
private static Int32 ZoneTest001()
{
var targetTime = DateTime.Parse("6/12/2013 5:00PM"); // NYC (est) [The time the report should be received in NYC]
var clientTime = DateTime.Parse("6/12/2013 5:00PM"); // NYC (est) [The time of the client when the report is created (now) ]
var serverTime = DateTime.Parse("6/12/2013 2:00PM"); // SEA (pst) [The time of the app server when the report is created (now) ]

//
// NYC Wants to send a report at 5:00pm EST
// The server time will be 2:00pm PST
// The client time will be 5:00pm EST

double outputHour = 0; // should end up as 2:00pm PST

//
// 1) Get offset (diff between client & server time)
// 2) Subtract offset from "targetTime"
// 3) Set the report to be sent at the new hour value.

outputHour = OutputDate(serverTime, clientTime, targetTime).Hour;

return (int)outputHour;

}

/// <summary>
/// +5 Offset (India)
/// </summary>
/// <returns></returns>
private static Int32 ZoneTest002()
{
var targetTime = DateTime.Parse("6/12/2013 5:00PM"); // IND (ist)
var clientTime = DateTime.Parse("6/12/2013 9:00AM"); // IND (ist)
var serverTime = DateTime.Parse("6/12/2013 2:00PM"); // SEA (pst)

//
// INDIA Wants to send a report at 5:00pm IST
// The server time will be 2:00pm PST
// The client time will be 9:00am PST

double outputHour = 0; // should end up as 2:00pm PST
outputHour = OutputDate(serverTime, clientTime, targetTime).Hour;

return (int)outputHour;

}

谢谢。

最佳答案

实际上你错过了很多。

  1. 时区偏移不是恒定的。许多时区切换夏令时(又名“夏令时”)的偏移量。因此,当您根据每个位置(服务器、客户端、目标)的“现在”计算偏移量时,这只会反射(reflect)当前偏移量。

  2. 在任何实行夏令时的时区中,当时钟向前滚动时会缺少一个小时,当时钟向后滚动时会出现一个重复的小时。如果您处理的是本地时间,并且预定的事件落在一个模糊的时间段内,则您无法确定运行它的实际时间。为了消除歧义,您需要被告知对应的偏移量是多少,或者你需要用UTC处理。

  3. 如果您要从一个时区转换到另一个时区,则需要处理时区,而不仅仅是时差。在 .Net 中,您可以使用内置的 Windows 时区数据库和相应的 TimeZoneInfo 类。或者,您可以使用更标准的 IANA 时区数据库,以及诸如 Noda Time 之类的库。 .

  4. 使用 DateTime 类型时,请务必注意 .Kind 属性的设置。许多函数在处理不同类型时具有不同的行为。改用 DateTimeOffset 类型会更安全、更有用。

  5. 您真的不应该依赖于运行您的代码的服务器的时区。服务器代码应该是时区中立的。您唯一应该涉及 DateTime.NowTimeZoneInfo.Local 或任何类似功能的地方是桌面移动 应用程序。服务器代码应该只依赖于 UTC。

  6. 我真的不明白为什么您的 OutputDate 方法中有可为 null 的值。没有理由这样做。此外,您实际上是在获取差异的绝对值——这会降低方向性。时区偏移确实是有方向的,因此您当前的实现可能会得到无效的结果。

  7. 我查看了 Quartz.net API,他们似乎更喜欢您使用 UTC 安排事件时间。这是一件好事,因为 UTC 不存在歧义问题。来自Quartz.Net Tutorialtrigger.StartTimeUtc 显然是一个 UTC DateTime。既然你说你不能使用最新版本,我也检查了他们较旧的 1.0 API 文档,那里仍然是 UTC。

    更新: Quartz.Net 2.5更好地处理时区。参见 #317了解详情。

让我们针对您的示例用例将所有这些放在一起。纽约市的一位客户想要在他本地时区的下午 2:00 运行作业。服务器的时区无关紧要,他创建作业的时间也无关紧要。

// June 6, 2013 2:00 PM  Kind = Unspecified
DateTime dt = new DateTime(2013, 6, 13, 14, 0, 0);

// This is the correct Windows time zone for New York
TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");

// Get the time in UTC - The kind matters here.
DateTime utc = TimeZoneInfo.ConvertTimeToUtc(dt, tz);

// Feed it to a quartz event trigger
trigger.StartTimeUtc = utc;

当我在第三步将时间转换为 UTC 时,如果时间不明确,.Net 将假定您需要标准时间而不是夏令时 .如果您想更具体一些,则必须检查是否有歧义,然后询问您的用户他们想要两个本地时间中的哪一个。然后您将不得不使用 DateTimeOffset 来区分它们。如果您认为您可能需要这个,请告诉我,我可以制作一个样本,但它有点复杂。

如果您想将 IANA 时区与 Noda Time 一起使用,只是为了更好的衡量标准,它看起来像这样:

LocalDateTime ldt = new LocalDateTime(2013, 6, 13, 14, 0);
DateTimeZone tz = DateTimeZoneProviders.Tzdb["America/New_York"];
ZonedDateTime zdt = ldt.InZoneLeniently(tz);
trigger.StartTimeUtc = zdt.ToDateTimeUtc();

InZoneLeniently 方法将提供与上述代码相同的行为。但如果需要,您还可以指定其他选项。

哦,这并不重要,但印度是 +5:30,而不是 +5

关于c# - 在运行 Quartz 作业时补偿时区偏移,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17079004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com