mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.git
synced 2025-11-19 21:02:53 +08:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
afbebe4222 |
2
.github/ISSUE_TEMPLATE/CHS-bug-report.yml
vendored
2
.github/ISSUE_TEMPLATE/CHS-bug-report.yml
vendored
@@ -19,7 +19,7 @@ body:
|
|||||||
- label: 我已阅读 Snap Hutao 文档中的[常见问题](https://hut.ao/advanced/FAQ.html)和[常见程序异常](https://hut.ao/advanced/exceptions.html),我的问题没有在文档中得到解答
|
- label: 我已阅读 Snap Hutao 文档中的[常见问题](https://hut.ao/advanced/FAQ.html)和[常见程序异常](https://hut.ao/advanced/exceptions.html),我的问题没有在文档中得到解答
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- label: 我知道[文档站](https://hut.ao/zh/menu.html)的导航栏中有**搜索功能**,且已经搜索过相关关键词
|
- label: 我知道文档站的导航栏中有**搜索功能**,且已经搜索过相关关键词
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- label: 我的问题不是[已完成](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aopen+is%3Aissue+label%3A%E5%B7%B2%E5%AE%8C%E6%88%90)的问题也不是一个别人已发布的**重复的**问题
|
- label: 我的问题不是[已完成](https://github.com/DGP-Studio/Snap.Hutao/issues?q=is%3Aopen+is%3Aissue+label%3A%E5%B7%B2%E5%AE%8C%E6%88%90)的问题也不是一个别人已发布的**重复的**问题
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
name: 功能请求
|
name: 功能请求
|
||||||
description: 通过这个议题来向开发团队分享你的想法
|
description: 通过这个议题来向开发团队分享你的想法
|
||||||
title: "[Feat]: 在这里填写一个合适的标题"
|
title: "[Feat]: 在这里填写一个合适的标题"
|
||||||
labels: ["feature request", "needs-triage", "priority:none"]
|
labels: ["功能", "needs-triage", "priority:none"]
|
||||||
assignees:
|
assignees:
|
||||||
- Lightczx
|
- Lightczx
|
||||||
body:
|
body:
|
||||||
@@ -24,4 +24,4 @@ body:
|
|||||||
label: 想要实现或优化的功能
|
label: 想要实现或优化的功能
|
||||||
description: 详细的描述一下你想要的功能,描述的越具体,采纳的可能性越高
|
description: 详细的描述一下你想要的功能,描述的越具体,采纳的可能性越高
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
name: Feature Request [English Form]
|
name: Feature Request [English Form]
|
||||||
description: Tell us about your thought
|
description: Tell us about your thought
|
||||||
title: "[Feat]: Place your title here"
|
title: "[Feat]: Place your title here"
|
||||||
labels: ["feature request", "needs-triage", "priority:none"]
|
labels: ["功能", "needs-triage", "priority:none"]
|
||||||
assignees:
|
assignees:
|
||||||
- Lightczx
|
- Lightczx
|
||||||
body:
|
body:
|
||||||
@@ -22,6 +22,6 @@ body:
|
|||||||
id: req
|
id: req
|
||||||
attributes:
|
attributes:
|
||||||
label: Detail of the Feature
|
label: Detail of the Feature
|
||||||
description: Descripbe the feaure in detail. The more detailed and convincing the desciprtion the more likyly feature will be accepted.
|
description: Descripbe the feaure in detail. The more detailed and convincing the desciprtion the more likyly feature will be accepted.
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
61
.github/workflows/alpha.yml
vendored
61
.github/workflows/alpha.yml
vendored
@@ -5,7 +5,6 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- develop
|
- develop
|
||||||
- 'feat/*'
|
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '.gitattributes'
|
- '.gitattributes'
|
||||||
- '.github/**'
|
- '.github/**'
|
||||||
@@ -45,8 +44,13 @@ jobs:
|
|||||||
run: dotnet tool restore && dotnet cake
|
run: dotnet tool restore && dotnet cake
|
||||||
env:
|
env:
|
||||||
VERSION_API_TOKEN: ${{ secrets.VERSION_API_TOKEN }}
|
VERSION_API_TOKEN: ${{ secrets.VERSION_API_TOKEN }}
|
||||||
CERTIFICATE: ${{ secrets.CERTIFICATE }}
|
|
||||||
PW: ${{ secrets.PW }}
|
- name: Sign Msix
|
||||||
|
if: success() && github.event_name != 'pull_request'
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
[System.Convert]::FromBase64String("${{ secrets.CERTIFICATE }}") | Set-Content -AsByteStream temp.pfx
|
||||||
|
signtool.exe sign /debug /v /a /fd SHA256 /f temp.pfx /p ${{ secrets.PW }} ${{ github.workspace }}\src\output\Snap.Hutao.Alpha-${{ steps.cake.outputs.version }}.msix
|
||||||
|
|
||||||
- name: Upload signed msix
|
- name: Upload signed msix
|
||||||
if: success() && github.event_name != 'pull_request'
|
if: success() && github.event_name != 'pull_request'
|
||||||
@@ -64,55 +68,12 @@ jobs:
|
|||||||
> 该版本是由 CI 程序自动打包生成的 `Alpha` 测试版本,**仅供开发者测试使用**
|
> 该版本是由 CI 程序自动打包生成的 `Alpha` 测试版本,**仅供开发者测试使用**
|
||||||
|
|
||||||
> [!TIP]
|
> [!TIP]
|
||||||
> 普通用户请 [点击这里](https://github.com/DGP-Studio/Snap.Hutao/releases/latest/) 下载最新的稳定版本
|
> 普通用户请[点击这里](https://github.com/DGP-Studio/Snap.Hutao/releases/latest/)下载最新的稳定版本
|
||||||
|
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> 请先安装 **[DGP_Studio_CA.crt](https://github.com/DGP-Automation/Hutao-Auto-Release/releases/download/certificate-ca/DGP_Studio_CA.crt)** 到 **受信任的根证书颁发机构** 以安装测试版安装包
|
> 请注意,从 Snap Hutao Alpha 2023.12.21.3 开始,我们将使用全新的 CI 证书,原有的 Snap.Hutao.CI.cer 将在几天后过期停止使用。
|
||||||
"
|
>
|
||||||
|
> 请安装 [DGP_Studio_CA.crt](https://github.com/DGP-Automation/Hutao-Auto-Release/releases/download/certificate-ca/DGP_Studio_CA.crt) 以安装测试版安装包
|
||||||
echo $summary >> $Env:GITHUB_STEP_SUMMARY
|
|
||||||
fallback_build:
|
|
||||||
runs-on: windows-latest
|
|
||||||
needs: build
|
|
||||||
if: failure()
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup .NET
|
|
||||||
uses: actions/setup-dotnet@v4
|
|
||||||
with:
|
|
||||||
dotnet-version: 8.0
|
|
||||||
|
|
||||||
- name: Cake
|
|
||||||
id: cake
|
|
||||||
shell: pwsh
|
|
||||||
run: dotnet tool restore && dotnet cake
|
|
||||||
env:
|
|
||||||
VERSION_API_TOKEN: ${{ secrets.VERSION_API_TOKEN }}
|
|
||||||
CERTIFICATE: ${{ secrets.CERTIFICATE }}
|
|
||||||
PW: ${{ secrets.PW }}
|
|
||||||
|
|
||||||
- name: Upload signed msix
|
|
||||||
if: success() && github.event_name != 'pull_request'
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: Snap.Hutao.Alpha-${{ steps.cake.outputs.version }}
|
|
||||||
path: ${{ github.workspace }}/src/output/Snap.Hutao.Alpha-${{ steps.cake.outputs.version }}.msix
|
|
||||||
|
|
||||||
- name: Add summary
|
|
||||||
if: success() && github.event_name != 'pull_request'
|
|
||||||
shell: pwsh
|
|
||||||
run: |
|
|
||||||
$summary = "
|
|
||||||
> [!WARNING]
|
|
||||||
> 该版本是由 CI 程序自动打包生成的 `Alpha` 测试版本,**仅供开发者测试使用**
|
|
||||||
|
|
||||||
> [!TIP]
|
|
||||||
> 普通用户请 [点击这里](https://github.com/DGP-Studio/Snap.Hutao/releases/latest/) 下载最新的稳定版本
|
|
||||||
|
|
||||||
> [!IMPORTANT]
|
|
||||||
> 请先安装 **[DGP_Studio_CA.crt](https://github.com/DGP-Automation/Hutao-Auto-Release/releases/download/certificate-ca/DGP_Studio_CA.crt)** 到 **受信任的根证书颁发机构** 以安装测试版安装包
|
|
||||||
"
|
"
|
||||||
|
|
||||||
echo $summary >> $Env:GITHUB_STEP_SUMMARY
|
echo $summary >> $Env:GITHUB_STEP_SUMMARY
|
||||||
|
|||||||
2
.github/workflows/close_stale.yml
vendored
2
.github/workflows/close_stale.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
- uses: actions/stale@v9
|
- uses: actions/stale@v9
|
||||||
with:
|
with:
|
||||||
any-of-labels: 'needs-more-info,需要更多信息'
|
any-of-labels: 'needs-more-info,需要更多信息'
|
||||||
stale-issue-message: 'This issue is stale because it has been open 7 days with no activity. Remove stale label or comment or this will be closed in 3 days.'
|
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 3 days.'
|
||||||
days-before-stale: 7
|
days-before-stale: 7
|
||||||
days-before-close: 3
|
days-before-close: 3
|
||||||
close-issue-reason: not_planned
|
close-issue-reason: not_planned
|
||||||
20
README.md
20
README.md
@@ -17,15 +17,7 @@ You can follow the instructions in the [Quick Start](https://hut.ao/en/quick-sta
|
|||||||
|
|
||||||
## 本地化翻译 / Localization
|
## 本地化翻译 / Localization
|
||||||
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao) [].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao) [].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao) [].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao) [].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao) [].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao) [].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
[].data.translationProgress&url=https%3A%2F%2Fbadges.awesome-crowdin.com%2Fstats-15670597-565845.json)](https://crowdin.com/project/snap-hutao)
|
|
||||||
|
|
||||||
Snap Hutao 使用 [Crowdin](https://translate.hut.ao/) 作为客户端文本翻译平台,在该平台上你可以为你熟悉的语言提交翻译文本。我们感谢每一个为 Snap Hutao 做出贡献的社区成员,并且欢迎更多的朋友能参与到这个项目中。
|
Snap Hutao 使用 [Crowdin](https://translate.hut.ao/) 作为客户端文本翻译平台,在该平台上你可以为你熟悉的语言提交翻译文本。我们感谢每一个为 Snap Hutao 做出贡献的社区成员,并且欢迎更多的朋友能参与到这个项目中。
|
||||||
|
|
||||||
@@ -54,13 +46,13 @@ Snap Hutao uses [Crowdin](https://translate.hut.ao/) as a client text translatio
|
|||||||
* [CommunityToolkit/dotnet](https://github.com/CommunityToolkit/dotnet)
|
* [CommunityToolkit/dotnet](https://github.com/CommunityToolkit/dotnet)
|
||||||
* [CommunityToolkit/Labs-Windows](https://github.com/CommunityToolkit/Labs-Windows)
|
* [CommunityToolkit/Labs-Windows](https://github.com/CommunityToolkit/Labs-Windows)
|
||||||
* [CommunityToolkit/Windows](https://github.com/CommunityToolkit/Windows)
|
* [CommunityToolkit/Windows](https://github.com/CommunityToolkit/Windows)
|
||||||
|
* [dahall/taskscheduler](https://github.com/dahall/taskscheduler)
|
||||||
* [dotnet/efcore](https://github.com/dotnet/efcore)
|
* [dotnet/efcore](https://github.com/dotnet/efcore)
|
||||||
* [dotnet/runtime](https://github.com/dotnet/runtime)
|
* [dotnet/runtime](https://github.com/dotnet/runtime)
|
||||||
* [DotNetAnalyzers/StyleCopAnalyzers](https://github.com/DotNetAnalyzers/StyleCopAnalyzers)
|
* [DotNetAnalyzers/StyleCopAnalyzers](https://github.com/DotNetAnalyzers/StyleCopAnalyzers)
|
||||||
* [microsoft/vs-validation](https://github.com/microsoft/vs-validation)
|
* [microsoft/vs-validation](https://github.com/microsoft/vs-validation)
|
||||||
* [microsoft/WindowsAppSDK](https://github.com/microsoft/WindowsAppSDK)
|
* [microsoft/WindowsAppSDK](https://github.com/microsoft/WindowsAppSDK)
|
||||||
* [microsoft/microsoft-ui-xaml](https://github.com/microsoft/microsoft-ui-xaml)
|
* [microsoft/microsoft-ui-xaml](https://github.com/microsoft/microsoft-ui-xaml)
|
||||||
* [quartznet/quartznet](https://github.com/quartznet/quartznet)
|
|
||||||
|
|
||||||
### 支撑项目 / Supporter Project
|
### 支撑项目 / Supporter Project
|
||||||
|
|
||||||
@@ -72,9 +64,9 @@ Snap Hutao uses [Crowdin](https://translate.hut.ao/) as a client text translatio
|
|||||||
Snap Hutao is currently using sponsored software from the following service providers.
|
Snap Hutao is currently using sponsored software from the following service providers.
|
||||||
|
|
||||||
| [](https://www.netlify.com/) | [](https://crowdin.com/) | [](https://gitlab.cn/) |
|
| [](https://www.netlify.com/) | [](https://crowdin.com/) | [](https://gitlab.cn/) |
|
||||||
|:-:|:-:|:-:|
|
|:----------------------------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------:|
|
||||||
|[](https://about.signpath.io)|[](https://1password.com/)|[](https://www.digitalocean.com)|
|
| [](https://about.signpath.io) | [](https://1password.com/) | [](https://about.signpath.io) |
|
||||||
|[](https://www.jetbrains.com/opensource/)|||
|
|
||||||
|
|
||||||
- Netlify provides document and home page hosting service for Snap Hutao
|
- Netlify provides document and home page hosting service for Snap Hutao
|
||||||
|
|
||||||
@@ -88,8 +80,6 @@ Snap Hutao is currently using sponsored software from the following service prov
|
|||||||
|
|
||||||
- DigitalOcean provides reliable cloud database for Snap Hutao database backup
|
- DigitalOcean provides reliable cloud database for Snap Hutao database backup
|
||||||
|
|
||||||
- Jetbrains provides powerful IDE for Snap Hutao infrastructure services coding
|
|
||||||
|
|
||||||
## 开发 / Development
|
## 开发 / Development
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
75
build.cake
75
build.cake
@@ -11,18 +11,6 @@ var version = "version";
|
|||||||
var repoDir = "repoDir";
|
var repoDir = "repoDir";
|
||||||
var outputPath = "outputPath";
|
var outputPath = "outputPath";
|
||||||
|
|
||||||
var pfxPath = "pfxPath";
|
|
||||||
var pw = "pw";
|
|
||||||
|
|
||||||
// Extension
|
|
||||||
|
|
||||||
static ProcessArgumentBuilder AppendIf(this ProcessArgumentBuilder builder, string text, bool condition)
|
|
||||||
{
|
|
||||||
return condition ? builder.Append(text) : builder;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Properties
|
|
||||||
|
|
||||||
string solution
|
string solution
|
||||||
{
|
{
|
||||||
get => System.IO.Path.Combine(repoDir, "src", "Snap.Hutao", "Snap.Hutao.sln");
|
get => System.IO.Path.Combine(repoDir, "src", "Snap.Hutao", "Snap.Hutao.sln");
|
||||||
@@ -65,11 +53,6 @@ if (GitHubActions.IsRunningOnGitHubActions)
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
var certificateBase64 = HasEnvironmentVariable("CERTIFICATE") ? EnvironmentVariable("CERTIFICATE") : throw new Exception("Cannot find CERTIFICATE");
|
|
||||||
pw = HasEnvironmentVariable("PW") ? EnvironmentVariable("PW") : throw new Exception("Cannot find PW");
|
|
||||||
pfxPath = System.IO.Path.Combine(repoDir, "temp.pfx");
|
|
||||||
System.IO.File.WriteAllBytes(pfxPath, System.Convert.FromBase64String(certificateBase64));
|
|
||||||
|
|
||||||
Information($"Version: {version}");
|
Information($"Version: {version}");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -96,19 +79,10 @@ else // Local
|
|||||||
Information($"Version: {version}");
|
Information($"Version: {version}");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Windows SDK
|
|
||||||
var registry = new WindowsRegistry();
|
|
||||||
var winsdkRegistry = registry.LocalMachine.OpenKey(@"SOFTWARE\Microsoft\Windows Kits\Installed Roots");
|
|
||||||
var winsdkVersion = winsdkRegistry.GetSubKeyNames().MaxBy(key => int.Parse(key.Split(".")[2]));
|
|
||||||
var winsdkPath = (string)winsdkRegistry.GetValue("KitsRoot10");
|
|
||||||
var winsdkBinPath = System.IO.Path.Combine(winsdkPath, "bin", winsdkVersion, "x64");
|
|
||||||
Information($"Windows SDK: {winsdkPath}");
|
|
||||||
|
|
||||||
Task("Build")
|
Task("Build")
|
||||||
.IsDependentOn("Build binary package")
|
.IsDependentOn("Build binary package")
|
||||||
.IsDependentOn("Copy files")
|
.IsDependentOn("Copy files")
|
||||||
.IsDependentOn("Build MSIX")
|
.IsDependentOn("Build MSIX");
|
||||||
.IsDependentOn("Sign");
|
|
||||||
|
|
||||||
Task("NuGet Restore")
|
Task("NuGet Restore")
|
||||||
.Does(() =>
|
.Does(() =>
|
||||||
@@ -183,7 +157,6 @@ Task("Build binary package")
|
|||||||
.Append("/p:AppxPackageSigningEnabled=false")
|
.Append("/p:AppxPackageSigningEnabled=false")
|
||||||
.Append("/p:AppxBundle=Never")
|
.Append("/p:AppxBundle=Never")
|
||||||
.Append("/p:AppxPackageOutput=" + outputPath)
|
.Append("/p:AppxPackageOutput=" + outputPath)
|
||||||
.AppendIf("/p:AlphaConstants=IS_ALPHA_BUILD", !AppVeyor.IsRunningOnAppVeyor)
|
|
||||||
};
|
};
|
||||||
|
|
||||||
DotNetBuild(project, settings);
|
DotNetBuild(project, settings);
|
||||||
@@ -224,11 +197,8 @@ Task("Build MSIX")
|
|||||||
{
|
{
|
||||||
arguments = "pack /d " + binPath + " /p " + System.IO.Path.Combine(outputPath, $"Snap.Hutao.Local-{version}.msix");
|
arguments = "pack /d " + binPath + " /p " + System.IO.Path.Combine(outputPath, $"Snap.Hutao.Local-{version}.msix");
|
||||||
}
|
}
|
||||||
|
|
||||||
var makeappxPath = System.IO.Path.Combine(winsdkBinPath, "makeappx.exe");
|
|
||||||
|
|
||||||
var p = StartProcess(
|
var p = StartProcess(
|
||||||
makeappxPath,
|
"makeappx.exe",
|
||||||
new ProcessSettings
|
new ProcessSettings
|
||||||
{
|
{
|
||||||
Arguments = arguments
|
Arguments = arguments
|
||||||
@@ -236,46 +206,7 @@ Task("Build MSIX")
|
|||||||
);
|
);
|
||||||
if (p != 0)
|
if (p != 0)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException("Build MSIX failed with exit code " + p);
|
throw new InvalidOperationException("Build failed with exit code " + p);
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Task("Sign")
|
|
||||||
.IsDependentOn("Build MSIX")
|
|
||||||
.Does(() =>
|
|
||||||
{
|
|
||||||
if (AppVeyor.IsRunningOnAppVeyor)
|
|
||||||
{
|
|
||||||
Information("Move to SignPath. Skip signing.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
else if (GitHubActions.IsRunningOnGitHubActions)
|
|
||||||
{
|
|
||||||
if (GitHubActions.Environment.PullRequest.IsPullRequest)
|
|
||||||
{
|
|
||||||
Information("Is Pull Request. Skip signing.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var signPath = System.IO.Path.Combine(winsdkBinPath, "signtool.exe");
|
|
||||||
var arguments = $"sign /debug /v /a /fd SHA256 /f {pfxPath} /p {pw} {System.IO.Path.Combine(outputPath, $"Snap.Hutao.Alpha-{version}.msix")}";
|
|
||||||
|
|
||||||
var p = StartProcess(
|
|
||||||
signPath,
|
|
||||||
new ProcessSettings
|
|
||||||
{
|
|
||||||
Arguments = arguments
|
|
||||||
}
|
|
||||||
);
|
|
||||||
if (p != 0)
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException("Sign failed with exit code " + p);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Information("Local configuration. Skip signing.");
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
using System.Runtime.CompilerServices;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Test.BaseClassLibrary;
|
|
||||||
|
|
||||||
[TestClass]
|
|
||||||
public class UnsafeAccessorTest
|
|
||||||
{
|
|
||||||
[TestMethod]
|
|
||||||
public void UnsafeAccessorCanGetInterfaceProperty()
|
|
||||||
{
|
|
||||||
TestClass test = new();
|
|
||||||
int value = InternalGetInterfaceProperty(test);
|
|
||||||
Assert.AreEqual(3, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
[UnsafeAccessor(UnsafeAccessorKind.Method, Name = "get_TestProperty")]
|
|
||||||
private static extern int InternalGetInterfaceProperty(ITestInterface instance);
|
|
||||||
|
|
||||||
internal interface ITestInterface
|
|
||||||
{
|
|
||||||
internal int TestProperty { get; }
|
|
||||||
}
|
|
||||||
|
|
||||||
internal sealed class TestClass : ITestInterface
|
|
||||||
{
|
|
||||||
public int TestProperty { get; } = 3;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,25 +6,14 @@ namespace Snap.Hutao.Test.IncomingFeature;
|
|||||||
public class SpiralAbyssScheduleIdTest
|
public class SpiralAbyssScheduleIdTest
|
||||||
{
|
{
|
||||||
private static readonly TimeSpan Utc8 = new(8, 0, 0);
|
private static readonly TimeSpan Utc8 = new(8, 0, 0);
|
||||||
private static readonly DateTimeOffset AcrobaticsBattleIntroducedTime = new(2024, 7, 1, 4, 0, 0, Utc8);
|
|
||||||
|
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
public void Test()
|
public void Test()
|
||||||
{
|
{
|
||||||
Console.WriteLine($"当前第 {GetForDateTimeOffset(DateTimeOffset.Now)} 期");
|
Console.WriteLine($"当前第 {GetForDateTimeOffset(DateTimeOffset.Now)} 期");
|
||||||
|
|
||||||
// 2020-07-01 04:00:00 为第 1 期
|
DateTimeOffset dateTimeOffset = new(2020, 7, 1, 4, 0, 0, Utc8);
|
||||||
// 2024-06-16 04:00:00 为第 96 期
|
Console.WriteLine($"2020-07-01 04:00:00 为第 {GetForDateTimeOffset(dateTimeOffset)} 期");
|
||||||
// 2024-07-01 04:00:00 为第 97 期
|
|
||||||
// 2024-07-16 04:00:00 为第 98 期
|
|
||||||
// 2024-08-01 04:00:00 为第 99 期
|
|
||||||
Console.WriteLine($"2020-07-01 04:00:00 为第 {GetForDateTimeOffset(new(2020, 07, 01, 4, 0, 0, Utc8))} 期");
|
|
||||||
Console.WriteLine($"2024-06-16 04:00:00 为第 {GetForDateTimeOffset(new(2024, 06, 16, 4, 0, 0, Utc8))} 期");
|
|
||||||
Console.WriteLine($"2024-07-01 04:00:00 为第 {GetForDateTimeOffset(new(2024, 07, 01, 4, 0, 0, Utc8))} 期");
|
|
||||||
Console.WriteLine($"2024-07-16 04:00:00 为第 {GetForDateTimeOffset(new(2024, 07, 16, 4, 0, 0, Utc8))} 期");
|
|
||||||
Console.WriteLine($"2024-08-01 04:00:00 为第 {GetForDateTimeOffset(new(2024, 08, 01, 4, 0, 0, Utc8))} 期");
|
|
||||||
Console.WriteLine($"2024-08-16 04:00:00 为第 {GetForDateTimeOffset(new(2024, 08, 16, 4, 0, 0, Utc8))} 期");
|
|
||||||
Console.WriteLine($"2024-09-01 04:00:00 为第 {GetForDateTimeOffset(new(2024, 09, 01, 4, 0, 0, Utc8))} 期");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int GetForDateTimeOffset(DateTimeOffset dateTimeOffset)
|
public static int GetForDateTimeOffset(DateTimeOffset dateTimeOffset)
|
||||||
@@ -49,12 +38,6 @@ public class SpiralAbyssScheduleIdTest
|
|||||||
periodNum--;
|
periodNum--;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dateTimeOffset >= AcrobaticsBattleIntroducedTime)
|
|
||||||
{
|
|
||||||
// 当超过 96 期时,每一个月一期
|
|
||||||
periodNum = (4 * 12 * 2) + ((periodNum - (4 * 12 * 2)) / 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
return periodNum;
|
return periodNum;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using System;
|
using System;
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Test.PlatformExtensions;
|
namespace Snap.Hutao.Test.PlatformExtensions;
|
||||||
|
|
||||||
@@ -12,8 +11,6 @@ public sealed class DependencyInjectionTest
|
|||||||
.AddSingleton<IService, ServiceA>()
|
.AddSingleton<IService, ServiceA>()
|
||||||
.AddSingleton<IService, ServiceB>()
|
.AddSingleton<IService, ServiceB>()
|
||||||
.AddScoped<IScopedService, ServiceA>()
|
.AddScoped<IScopedService, ServiceA>()
|
||||||
.AddKeyedTransient<IKeyedService, KeyedServiceA>("A")
|
|
||||||
.AddKeyedTransient<IKeyedService, KeyedServiceB>("B")
|
|
||||||
.AddTransient(typeof(IGenericService<>), typeof(GenericService<>))
|
.AddTransient(typeof(IGenericService<>), typeof(GenericService<>))
|
||||||
.AddLogging(builder => builder.AddConsole())
|
.AddLogging(builder => builder.AddConsole())
|
||||||
.BuildServiceProvider();
|
.BuildServiceProvider();
|
||||||
@@ -53,15 +50,6 @@ public sealed class DependencyInjectionTest
|
|||||||
Assert.IsNotNull(services.GetRequiredService<ILoggerFactory>().CreateLogger(nameof(IScopedService)));
|
Assert.IsNotNull(services.GetRequiredService<ILoggerFactory>().CreateLogger(nameof(IScopedService)));
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestMethod]
|
|
||||||
public void KeyedServicesCanBeResolvedAsEnumerable()
|
|
||||||
{
|
|
||||||
Assert.IsNotNull(services.GetRequiredKeyedService<IKeyedService>("A"));
|
|
||||||
Assert.IsNotNull(services.GetRequiredKeyedService<IKeyedService>("B"));
|
|
||||||
|
|
||||||
Assert.AreEqual(0, services.GetServices<IKeyedService>().Count());
|
|
||||||
}
|
|
||||||
|
|
||||||
private interface IService
|
private interface IService
|
||||||
{
|
{
|
||||||
Guid Id { get; }
|
Guid Id { get; }
|
||||||
@@ -107,14 +95,4 @@ public sealed class DependencyInjectionTest
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private interface IKeyedService;
|
|
||||||
|
|
||||||
private sealed class KeyedServiceA : IKeyedService
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
private sealed class KeyedServiceB : IKeyedService
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
using System.Drawing;
|
|
||||||
using System.Net.Http;
|
|
||||||
using System.Net.Http.Json;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Test.RuntimeBehavior;
|
|
||||||
|
|
||||||
[TestClass]
|
|
||||||
public sealed class HttpClientBehaviorTest
|
|
||||||
{
|
|
||||||
private const int MessageNotYetSent = 0;
|
|
||||||
|
|
||||||
[TestMethod]
|
|
||||||
public async Task RetrySendHttpRequestMessage()
|
|
||||||
{
|
|
||||||
using (HttpClient httpClient = new())
|
|
||||||
{
|
|
||||||
HttpRequestMessage requestMessage = new(HttpMethod.Post, "https://jsonplaceholder.typicode.com/posts");
|
|
||||||
JsonContent content = JsonContent.Create(new Point(12, 34));
|
|
||||||
requestMessage.Content = content;
|
|
||||||
using (requestMessage)
|
|
||||||
{
|
|
||||||
await httpClient.SendAsync(requestMessage).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
Interlocked.Exchange(ref GetPrivateSendStatus(requestMessage), MessageNotYetSent);
|
|
||||||
Volatile.Write(ref GetPrivateDisposed(content), false);
|
|
||||||
await httpClient.SendAsync(requestMessage).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// private int _sendStatus
|
|
||||||
[UnsafeAccessor(UnsafeAccessorKind.Field, Name = "_sendStatus")]
|
|
||||||
private static extern ref int GetPrivateSendStatus(HttpRequestMessage message);
|
|
||||||
|
|
||||||
// private bool _disposed
|
|
||||||
[UnsafeAccessor(UnsafeAccessorKind.Field, Name = "_disposed")]
|
|
||||||
private static extern ref bool GetPrivateDisposed(HttpRequestMessage message);
|
|
||||||
|
|
||||||
// private bool _disposed
|
|
||||||
[UnsafeAccessor(UnsafeAccessorKind.Field, Name = "_disposed")]
|
|
||||||
private static extern ref bool GetPrivateDisposed(HttpContent content);
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
@@ -47,14 +46,7 @@ public sealed class UnsafeRuntimeBehaviorTest
|
|||||||
Assert.AreEqual(1212, testStruct.Value4);
|
Assert.AreEqual(1212, testStruct.Value4);
|
||||||
}
|
}
|
||||||
|
|
||||||
[TestMethod]
|
|
||||||
public unsafe void UnsafeUtf8StringReference()
|
|
||||||
{
|
|
||||||
void* ptr = Unsafe.AsPointer(ref MemoryMarshal.GetReference("test"u8));
|
|
||||||
GC.Collect(GC.MaxGeneration);
|
|
||||||
ReadOnlySpan<byte> bytes = MemoryMarshal.CreateReadOnlySpanFromNullTerminated((byte*)ptr);
|
|
||||||
Console.WriteLine(System.Text.Encoding.UTF8.GetString(bytes));
|
|
||||||
}
|
|
||||||
|
|
||||||
private readonly struct TestStruct
|
private readonly struct TestStruct
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,9 +13,9 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
||||||
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
|
<PackageReference Include="MSTest.TestAdapter" Version="3.3.1" />
|
||||||
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
|
<PackageReference Include="MSTest.TestFramework" Version="3.3.1" />
|
||||||
<PackageReference Include="coverlet.collector" Version="6.0.2">
|
<PackageReference Include="coverlet.collector" Version="6.0.2">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
<ResourceDictionary>
|
<ResourceDictionary>
|
||||||
<ResourceDictionary.MergedDictionaries>
|
<ResourceDictionary.MergedDictionaries>
|
||||||
<XamlControlsResources/>
|
<XamlControlsResources/>
|
||||||
<ResourceDictionary Source="ms-appx:///CommunityToolkit.WinUI.Controls.SettingsControls/SettingsCard/SettingsCard.xaml"/>
|
|
||||||
<ResourceDictionary Source="ms-appx:///CommunityToolkit.WinUI.Controls.TokenizingTextBox/TokenizingTextBox.xaml"/>
|
<ResourceDictionary Source="ms-appx:///CommunityToolkit.WinUI.Controls.TokenizingTextBox/TokenizingTextBox.xaml"/>
|
||||||
<ResourceDictionary Source="ms-appx:///Control/Loading.xaml"/>
|
<ResourceDictionary Source="ms-appx:///Control/Loading.xaml"/>
|
||||||
<ResourceDictionary Source="ms-appx:///Control/Image/CachedImage.xaml"/>
|
<ResourceDictionary Source="ms-appx:///Control/Image/CachedImage.xaml"/>
|
||||||
|
|||||||
@@ -3,13 +3,12 @@
|
|||||||
|
|
||||||
using Microsoft.UI.Xaml;
|
using Microsoft.UI.Xaml;
|
||||||
using Microsoft.Windows.AppLifecycle;
|
using Microsoft.Windows.AppLifecycle;
|
||||||
using Microsoft.Windows.AppNotifications;
|
|
||||||
using Snap.Hutao.Core;
|
using Snap.Hutao.Core;
|
||||||
using Snap.Hutao.Core.ExceptionService;
|
using Snap.Hutao.Core.ExceptionService;
|
||||||
using Snap.Hutao.Core.LifeCycle;
|
using Snap.Hutao.Core.LifeCycle;
|
||||||
using Snap.Hutao.Core.LifeCycle.InterProcess;
|
using Snap.Hutao.Core.LifeCycle.InterProcess;
|
||||||
using Snap.Hutao.Core.Logging;
|
using Snap.Hutao.Core.Logging;
|
||||||
using Snap.Hutao.Core.Windowing;
|
using Snap.Hutao.Core.Shell;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
namespace Snap.Hutao;
|
namespace Snap.Hutao;
|
||||||
@@ -40,7 +39,7 @@ public sealed partial class App : Application
|
|||||||
""";
|
""";
|
||||||
|
|
||||||
private readonly IServiceProvider serviceProvider;
|
private readonly IServiceProvider serviceProvider;
|
||||||
private readonly IAppActivation activation;
|
private readonly IActivation activation;
|
||||||
private readonly ILogger<App> logger;
|
private readonly ILogger<App> logger;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -49,35 +48,26 @@ public sealed partial class App : Application
|
|||||||
/// <param name="serviceProvider">服务提供器</param>
|
/// <param name="serviceProvider">服务提供器</param>
|
||||||
public App(IServiceProvider serviceProvider)
|
public App(IServiceProvider serviceProvider)
|
||||||
{
|
{
|
||||||
|
// DispatcherShutdownMode = DispatcherShutdownMode.OnExplicitShutdown;
|
||||||
|
|
||||||
// Load app resource
|
// Load app resource
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
activation = serviceProvider.GetRequiredService<IAppActivation>();
|
activation = serviceProvider.GetRequiredService<IActivation>();
|
||||||
logger = serviceProvider.GetRequiredService<ILogger<App>>();
|
logger = serviceProvider.GetRequiredService<ILogger<App>>();
|
||||||
serviceProvider.GetRequiredService<ExceptionRecorder>().Record(this);
|
serviceProvider.GetRequiredService<ExceptionRecorder>().Record(this);
|
||||||
|
|
||||||
this.serviceProvider = serviceProvider;
|
this.serviceProvider = serviceProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
public new void Exit()
|
|
||||||
{
|
|
||||||
XamlLifetime.ApplicationExiting = true;
|
|
||||||
base.Exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
protected override void OnLaunched(LaunchActivatedEventArgs args)
|
protected override void OnLaunched(LaunchActivatedEventArgs args)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// Important: You must call AppNotificationManager::Default().Register
|
|
||||||
// before calling AppInstance.GetCurrent.GetActivatedEventArgs.
|
|
||||||
AppNotificationManager.Default.NotificationInvoked += activation.NotificationInvoked;
|
|
||||||
AppNotificationManager.Default.Register();
|
|
||||||
AppActivationArguments activatedEventArgs = AppInstance.GetCurrent().GetActivatedEventArgs();
|
AppActivationArguments activatedEventArgs = AppInstance.GetCurrent().GetActivatedEventArgs();
|
||||||
|
|
||||||
if (serviceProvider.GetRequiredService<PrivateNamedPipeClient>().TryRedirectActivationTo(activatedEventArgs))
|
if (serviceProvider.GetRequiredService<PrivateNamedPipeClient>().TryRedirectActivationTo(activatedEventArgs))
|
||||||
{
|
{
|
||||||
logger.LogDebug("Application exiting on RedirectActivationTo");
|
|
||||||
Exit();
|
Exit();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -85,13 +75,15 @@ public sealed partial class App : Application
|
|||||||
logger.LogColorizedInformation((ConsoleBanner, ConsoleColor.DarkYellow));
|
logger.LogColorizedInformation((ConsoleBanner, ConsoleColor.DarkYellow));
|
||||||
LogDiagnosticInformation();
|
LogDiagnosticInformation();
|
||||||
|
|
||||||
// Manually invoke
|
// manually invoke
|
||||||
activation.Activate(HutaoActivationArguments.FromAppActivationArguments(activatedEventArgs));
|
activation.Activate(HutaoActivationArguments.FromAppActivationArguments(activatedEventArgs));
|
||||||
activation.PostInitialization();
|
activation.Initialize();
|
||||||
|
|
||||||
|
serviceProvider.GetRequiredService<IJumpListInterop>().ConfigureAsync().SafeForget();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch
|
||||||
{
|
{
|
||||||
logger.LogError(ex, "Application failed in App.OnLaunched");
|
// AppInstance.GetCurrent() calls failed
|
||||||
Process.GetCurrentProcess().Kill();
|
Process.GetCurrentProcess().Kill();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,51 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
using CommunityToolkit.WinUI.Behaviors;
|
|
||||||
using Microsoft.UI.Xaml;
|
|
||||||
using Microsoft.UI.Xaml.Controls;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control.Behavior;
|
|
||||||
|
|
||||||
[SuppressMessage("", "CA1001")]
|
|
||||||
[DependencyProperty("MilliSecondsDelay", typeof(int))]
|
|
||||||
internal sealed partial class InfoBarDelayCloseBehavior : BehaviorBase<InfoBar>
|
|
||||||
{
|
|
||||||
private readonly CancellationTokenSource closeTokenSource = new();
|
|
||||||
|
|
||||||
protected override void OnAssociatedObjectLoaded()
|
|
||||||
{
|
|
||||||
AssociatedObject.Closed += OnInfoBarClosed;
|
|
||||||
if (MilliSecondsDelay > 0)
|
|
||||||
{
|
|
||||||
DelayCoreAsync().SafeForget();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async ValueTask DelayCoreAsync()
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
await Task.Delay(MilliSecondsDelay, closeTokenSource.Token).ConfigureAwait(true);
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (AssociatedObject is not null)
|
|
||||||
{
|
|
||||||
AssociatedObject.IsOpen = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnInfoBarClosed(InfoBar infoBar, InfoBarClosedEventArgs args)
|
|
||||||
{
|
|
||||||
if (args.Reason is InfoBarCloseReason.CloseButton)
|
|
||||||
{
|
|
||||||
closeTokenSource.Cancel();
|
|
||||||
}
|
|
||||||
|
|
||||||
AssociatedObject.Closed -= OnInfoBarClosed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -7,7 +7,7 @@ namespace Snap.Hutao.Control.Collection.AdvancedCollectionView;
|
|||||||
|
|
||||||
internal sealed class VectorChangedEventArgs : IVectorChangedEventArgs
|
internal sealed class VectorChangedEventArgs : IVectorChangedEventArgs
|
||||||
{
|
{
|
||||||
public VectorChangedEventArgs(CollectionChange cc, int index = -1, object item = default!)
|
public VectorChangedEventArgs(CollectionChange cc, int index = -1, object item = null!)
|
||||||
{
|
{
|
||||||
CollectionChange = cc;
|
CollectionChange = cc;
|
||||||
Index = (uint)index;
|
Index = (uint)index;
|
||||||
|
|||||||
@@ -0,0 +1,39 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using Microsoft.UI.Xaml.Controls;
|
||||||
|
using Windows.Foundation.Collections;
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Control.Collection.Alternating;
|
||||||
|
|
||||||
|
[Obsolete("Use SettingsCard instead")]
|
||||||
|
[DependencyProperty("ItemAlternateBackground", typeof(Microsoft.UI.Xaml.Media.Brush))]
|
||||||
|
internal sealed partial class AlternatingItemsControl : ItemsControl
|
||||||
|
{
|
||||||
|
private readonly VectorChangedEventHandler<object> itemsVectorChangedEventHandler;
|
||||||
|
|
||||||
|
public AlternatingItemsControl()
|
||||||
|
{
|
||||||
|
itemsVectorChangedEventHandler = OnItemsVectorChanged;
|
||||||
|
Items.VectorChanged += itemsVectorChangedEventHandler;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnItemsVectorChanged(IObservableVector<object> items, IVectorChangedEventArgs args)
|
||||||
|
{
|
||||||
|
if (args.CollectionChange is CollectionChange.Reset)
|
||||||
|
{
|
||||||
|
int index = (int)args.Index;
|
||||||
|
for (int i = index; i < items.Count; i++)
|
||||||
|
{
|
||||||
|
if (items[i] is IAlternatingItem item)
|
||||||
|
{
|
||||||
|
item.Background = i % 2 is 0 ? default : ItemAlternateBackground;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Control.Collection.Alternating;
|
||||||
|
|
||||||
|
[Obsolete("Use SettingsCard instead")]
|
||||||
|
internal interface IAlternatingItem
|
||||||
|
{
|
||||||
|
public Microsoft.UI.Xaml.Media.Brush? Background { get; set; }
|
||||||
|
}
|
||||||
@@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
using Microsoft.UI.Xaml;
|
using Microsoft.UI.Xaml;
|
||||||
using Microsoft.UI.Xaml.Data;
|
using Microsoft.UI.Xaml.Data;
|
||||||
using Snap.Hutao.Core.ExceptionService;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control;
|
namespace Snap.Hutao.Control;
|
||||||
|
|
||||||
@@ -41,6 +40,6 @@ internal abstract class DependencyValueConverter<TFrom, TTo> : DependencyObject,
|
|||||||
/// <returns>源</returns>
|
/// <returns>源</returns>
|
||||||
public virtual TFrom ConvertBack(TTo to)
|
public virtual TFrom ConvertBack(TTo to)
|
||||||
{
|
{
|
||||||
throw HutaoException.NotSupported();
|
throw Must.NeverHappen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -39,6 +39,7 @@ internal static class FrameworkElementExtension
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
||||||
ILogger? logger = service.GetRequiredService(typeof(ILogger<>).MakeGenericType([frameworkElement.GetType()])) as ILogger;
|
ILogger? logger = service.GetRequiredService(typeof(ILogger<>).MakeGenericType([frameworkElement.GetType()])) as ILogger;
|
||||||
logger?.LogError(ex, "Failed to initialize DataContext");
|
logger?.LogError(ex, "Failed to initialize DataContext");
|
||||||
throw;
|
throw;
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ namespace Snap.Hutao.Control.Helper;
|
|||||||
|
|
||||||
[SuppressMessage("", "SH001")]
|
[SuppressMessage("", "SH001")]
|
||||||
[DependencyProperty("SquareLength", typeof(double), 0D, nameof(OnSquareLengthChanged), IsAttached = true, AttachedType = typeof(FrameworkElement))]
|
[DependencyProperty("SquareLength", typeof(double), 0D, nameof(OnSquareLengthChanged), IsAttached = true, AttachedType = typeof(FrameworkElement))]
|
||||||
[DependencyProperty("IsActualThemeBindingEnabled", typeof(bool), false, nameof(OnIsActualThemeBindingEnabled), IsAttached = true, AttachedType = typeof(FrameworkElement))]
|
|
||||||
[DependencyProperty("ActualTheme", typeof(ElementTheme), ElementTheme.Default, IsAttached = true, AttachedType = typeof(FrameworkElement))]
|
|
||||||
public sealed partial class FrameworkElementHelper
|
public sealed partial class FrameworkElementHelper
|
||||||
{
|
{
|
||||||
private static void OnSquareLengthChanged(DependencyObject dp, DependencyPropertyChangedEventArgs e)
|
private static void OnSquareLengthChanged(DependencyObject dp, DependencyPropertyChangedEventArgs e)
|
||||||
@@ -17,22 +15,4 @@ public sealed partial class FrameworkElementHelper
|
|||||||
element.Width = (double)e.NewValue;
|
element.Width = (double)e.NewValue;
|
||||||
element.Height = (double)e.NewValue;
|
element.Height = (double)e.NewValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void OnIsActualThemeBindingEnabled(DependencyObject dp, DependencyPropertyChangedEventArgs e)
|
|
||||||
{
|
|
||||||
FrameworkElement element = (FrameworkElement)dp;
|
|
||||||
if ((bool)e.NewValue)
|
|
||||||
{
|
|
||||||
element.ActualThemeChanged += OnActualThemeChanged;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
element.ActualThemeChanged -= OnActualThemeChanged;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void OnActualThemeChanged(FrameworkElement sender, object args)
|
|
||||||
{
|
|
||||||
SetActualTheme(sender, sender.ActualTheme);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,15 +1,12 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using Microsoft.UI.Xaml.Media;
|
||||||
using Microsoft.UI.Xaml.Media.Imaging;
|
using Microsoft.UI.Xaml.Media.Imaging;
|
||||||
using Snap.Hutao.Control.Extension;
|
using Snap.Hutao.Control.Extension;
|
||||||
using Snap.Hutao.Core.Caching;
|
using Snap.Hutao.Core.Caching;
|
||||||
using Snap.Hutao.Core.ExceptionService;
|
using Snap.Hutao.Core.ExceptionService;
|
||||||
using Snap.Hutao.Core.IO.DataTransfer;
|
|
||||||
using System.IO;
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using Windows.Graphics.Imaging;
|
|
||||||
using Windows.Storage.Streams;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control.Image;
|
namespace Snap.Hutao.Control.Image;
|
||||||
|
|
||||||
@@ -17,9 +14,7 @@ namespace Snap.Hutao.Control.Image;
|
|||||||
/// 缓存图像
|
/// 缓存图像
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[HighQuality]
|
[HighQuality]
|
||||||
[DependencyProperty("SourceName", typeof(string), "Unknown")]
|
internal sealed class CachedImage : Implementation.ImageEx
|
||||||
[DependencyProperty("CachedName", typeof(string), "Unknown")]
|
|
||||||
internal sealed partial class CachedImage : Implementation.ImageEx
|
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 构造一个新的缓存图像
|
/// 构造一个新的缓存图像
|
||||||
@@ -28,21 +23,22 @@ internal sealed partial class CachedImage : Implementation.ImageEx
|
|||||||
{
|
{
|
||||||
DefaultStyleKey = typeof(CachedImage);
|
DefaultStyleKey = typeof(CachedImage);
|
||||||
DefaultStyleResourceUri = "ms-appx:///Control/Image/CachedImage.xaml".ToUri();
|
DefaultStyleResourceUri = "ms-appx:///Control/Image/CachedImage.xaml".ToUri();
|
||||||
|
|
||||||
|
IsCacheEnabled = true;
|
||||||
|
EnableLazyLoading = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
protected override async Task<Uri?> ProvideCachedResourceAsync(Uri imageUri, CancellationToken token)
|
protected override async Task<ImageSource?> ProvideCachedResourceAsync(Uri imageUri, CancellationToken token)
|
||||||
{
|
{
|
||||||
SourceName = Path.GetFileName(imageUri.ToString());
|
|
||||||
IImageCache imageCache = this.ServiceProvider().GetRequiredService<IImageCache>();
|
IImageCache imageCache = this.ServiceProvider().GetRequiredService<IImageCache>();
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
HutaoException.ThrowIf(string.IsNullOrEmpty(imageUri.Host), SH.ControlImageCachedImageInvalidResourceUri);
|
HutaoException.ThrowIf(string.IsNullOrEmpty(imageUri.Host), SH.ControlImageCachedImageInvalidResourceUri);
|
||||||
string file = await imageCache.GetFileFromCacheAsync(imageUri).ConfigureAwait(true); // BitmapImage need to be created by main thread.
|
string file = await imageCache.GetFileFromCacheAsync(imageUri).ConfigureAwait(true); // BitmapImage need to be created by main thread.
|
||||||
CachedName = Path.GetFileName(file);
|
|
||||||
token.ThrowIfCancellationRequested(); // check token state to determine whether the operation should be canceled.
|
token.ThrowIfCancellationRequested(); // check token state to determine whether the operation should be canceled.
|
||||||
return file.ToUri();
|
return new BitmapImage(file.ToUri()); // BitmapImage initialize with a uri will increase image quality and loading speed.
|
||||||
}
|
}
|
||||||
catch (COMException)
|
catch (COMException)
|
||||||
{
|
{
|
||||||
@@ -51,27 +47,4 @@ internal sealed partial class CachedImage : Implementation.ImageEx
|
|||||||
return default;
|
return default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
[Command("CopyToClipboardCommand")]
|
|
||||||
private async Task CopyToClipboard()
|
|
||||||
{
|
|
||||||
if (Image is Microsoft.UI.Xaml.Controls.Image { Source: BitmapImage bitmap })
|
|
||||||
{
|
|
||||||
using (FileStream netStream = File.OpenRead(bitmap.UriSource.LocalPath))
|
|
||||||
{
|
|
||||||
using (IRandomAccessStream fxStream = netStream.AsRandomAccessStream())
|
|
||||||
{
|
|
||||||
BitmapDecoder decoder = await BitmapDecoder.CreateAsync(fxStream);
|
|
||||||
SoftwareBitmap softwareBitmap = await decoder.GetSoftwareBitmapAsync(BitmapPixelFormat.Bgra8, BitmapAlphaMode.Premultiplied);
|
|
||||||
using (InMemoryRandomAccessStream memory = new())
|
|
||||||
{
|
|
||||||
BitmapEncoder encoder = await BitmapEncoder.CreateAsync(BitmapEncoder.BmpEncoderId, memory);
|
|
||||||
encoder.SetSoftwareBitmap(softwareBitmap);
|
|
||||||
await encoder.FlushAsync();
|
|
||||||
Ioc.Default.GetRequiredService<IClipboardProvider>().SetBitmap(memory);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<ResourceDictionary
|
<ResourceDictionary
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:shci="using:Snap.Hutao.Control.Image">
|
xmlns:shci="using:Snap.Hutao.Control.Image">
|
||||||
@@ -6,6 +6,7 @@
|
|||||||
<Setter Property="Background" Value="Transparent"/>
|
<Setter Property="Background" Value="Transparent"/>
|
||||||
<Setter Property="Foreground" Value="{ThemeResource ApplicationForegroundThemeBrush}"/>
|
<Setter Property="Foreground" Value="{ThemeResource ApplicationForegroundThemeBrush}"/>
|
||||||
<Setter Property="IsTabStop" Value="False"/>
|
<Setter Property="IsTabStop" Value="False"/>
|
||||||
|
<Setter Property="LazyLoadingThreshold" Value="256"/>
|
||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
<Setter.Value>
|
<Setter.Value>
|
||||||
<ControlTemplate TargetType="shci:CachedImage">
|
<ControlTemplate TargetType="shci:CachedImage">
|
||||||
@@ -14,13 +15,6 @@
|
|||||||
BorderBrush="{TemplateBinding BorderBrush}"
|
BorderBrush="{TemplateBinding BorderBrush}"
|
||||||
BorderThickness="{TemplateBinding BorderThickness}"
|
BorderThickness="{TemplateBinding BorderThickness}"
|
||||||
CornerRadius="{TemplateBinding CornerRadius}">
|
CornerRadius="{TemplateBinding CornerRadius}">
|
||||||
<Grid.ContextFlyout>
|
|
||||||
<MenuFlyout>
|
|
||||||
<MenuFlyoutItem IsEnabled="False" Text="{TemplateBinding SourceName}"/>
|
|
||||||
<MenuFlyoutItem IsEnabled="False" Text="{TemplateBinding CachedName}"/>
|
|
||||||
<MenuFlyoutItem Command="{Binding CopyToClipboardCommand, RelativeSource={RelativeSource TemplatedParent}}" Text="复制图像"/>
|
|
||||||
</MenuFlyout>
|
|
||||||
</Grid.ContextFlyout>
|
|
||||||
<Image
|
<Image
|
||||||
Name="PlaceholderImage"
|
Name="PlaceholderImage"
|
||||||
Margin="{TemplateBinding PlaceholderMargin}"
|
Margin="{TemplateBinding PlaceholderMargin}"
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ using Microsoft.UI.Composition;
|
|||||||
using Microsoft.UI.Xaml;
|
using Microsoft.UI.Xaml;
|
||||||
using Microsoft.UI.Xaml.Media;
|
using Microsoft.UI.Xaml.Media;
|
||||||
using Microsoft.UI.Xaml.Media.Imaging;
|
using Microsoft.UI.Xaml.Media.Imaging;
|
||||||
|
using Snap.Hutao.Win32;
|
||||||
|
using System.IO;
|
||||||
|
using Windows.Foundation;
|
||||||
|
|
||||||
namespace Snap.Hutao.Control.Image.Implementation;
|
namespace Snap.Hutao.Control.Image.Implementation;
|
||||||
|
|
||||||
@@ -18,6 +21,12 @@ namespace Snap.Hutao.Control.Image.Implementation;
|
|||||||
[TemplatePart(Name = PartImage, Type = typeof(object))]
|
[TemplatePart(Name = PartImage, Type = typeof(object))]
|
||||||
[TemplatePart(Name = PartPlaceholderImage, Type = typeof(object))]
|
[TemplatePart(Name = PartPlaceholderImage, Type = typeof(object))]
|
||||||
[DependencyProperty("Stretch", typeof(Stretch), Stretch.Uniform)]
|
[DependencyProperty("Stretch", typeof(Stretch), Stretch.Uniform)]
|
||||||
|
[DependencyProperty("DecodePixelHeight", typeof(int), 0)]
|
||||||
|
[DependencyProperty("DecodePixelWidth", typeof(int), 0)]
|
||||||
|
[DependencyProperty("DecodePixelType", typeof(DecodePixelType), DecodePixelType.Physical)]
|
||||||
|
[DependencyProperty("IsCacheEnabled", typeof(bool), false)]
|
||||||
|
[DependencyProperty("EnableLazyLoading", typeof(bool), false, nameof(EnableLazyLoadingChanged))]
|
||||||
|
[DependencyProperty("LazyLoadingThreshold", typeof(double), default(double), nameof(LazyLoadingThresholdChanged))]
|
||||||
[DependencyProperty("PlaceholderSource", typeof(object), default(object))]
|
[DependencyProperty("PlaceholderSource", typeof(object), default(object))]
|
||||||
[DependencyProperty("PlaceholderStretch", typeof(Stretch), Stretch.Uniform)]
|
[DependencyProperty("PlaceholderStretch", typeof(Stretch), Stretch.Uniform)]
|
||||||
[DependencyProperty("PlaceholderMargin", typeof(Thickness))]
|
[DependencyProperty("PlaceholderMargin", typeof(Thickness))]
|
||||||
@@ -33,6 +42,8 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
protected const string FailedState = "Failed";
|
protected const string FailedState = "Failed";
|
||||||
|
|
||||||
private CancellationTokenSource? tokenSource;
|
private CancellationTokenSource? tokenSource;
|
||||||
|
private object? lazyLoadingSource;
|
||||||
|
private bool isInViewport;
|
||||||
|
|
||||||
public bool IsInitialized { get; private set; }
|
public bool IsInitialized { get; private set; }
|
||||||
|
|
||||||
@@ -47,10 +58,10 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
|
|
||||||
public abstract CompositionBrush GetAlphaMask();
|
public abstract CompositionBrush GetAlphaMask();
|
||||||
|
|
||||||
protected virtual Task<Uri?> ProvideCachedResourceAsync(Uri imageUri, CancellationToken token)
|
protected virtual Task<ImageSource?> ProvideCachedResourceAsync(Uri imageUri, CancellationToken token)
|
||||||
{
|
{
|
||||||
// By default we just use the built-in UWP image cache provided within the Image control.
|
// By default we just use the built-in UWP image cache provided within the Image control.
|
||||||
return Task.FromResult<Uri?>(imageUri);
|
return Task.FromResult<ImageSource?>(new BitmapImage(imageUri));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual void OnImageOpened(object sender, RoutedEventArgs e)
|
protected virtual void OnImageOpened(object sender, RoutedEventArgs e)
|
||||||
@@ -69,10 +80,19 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
RemoveImageFailed(OnImageFailed);
|
RemoveImageFailed(OnImageFailed);
|
||||||
|
|
||||||
Image = GetTemplateChild(PartImage);
|
Image = GetTemplateChild(PartImage);
|
||||||
|
PlaceholderImage = GetTemplateChild(PartPlaceholderImage);
|
||||||
|
|
||||||
IsInitialized = true;
|
IsInitialized = true;
|
||||||
|
|
||||||
SetSource(Source);
|
if (Source is null || !EnableLazyLoading || isInViewport)
|
||||||
|
{
|
||||||
|
lazyLoadingSource = null;
|
||||||
|
SetSource(Source);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
lazyLoadingSource = Source;
|
||||||
|
}
|
||||||
|
|
||||||
AttachImageOpened(OnImageOpened);
|
AttachImageOpened(OnImageOpened);
|
||||||
AttachImageFailed(OnImageFailed);
|
AttachImageFailed(OnImageFailed);
|
||||||
@@ -128,6 +148,33 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void EnableLazyLoadingChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
||||||
|
{
|
||||||
|
if (d is not ImageExBase control)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool value = (bool)e.NewValue;
|
||||||
|
if (value)
|
||||||
|
{
|
||||||
|
control.LayoutUpdated += control.OnImageExBaseLayoutUpdated;
|
||||||
|
control.InvalidateLazyLoading();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
control.LayoutUpdated -= control.OnImageExBaseLayoutUpdated;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void LazyLoadingThresholdChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
||||||
|
{
|
||||||
|
if (d is ImageExBase { EnableLazyLoading: true } control)
|
||||||
|
{
|
||||||
|
control.InvalidateLazyLoading();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static void SourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
private static void SourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
||||||
{
|
{
|
||||||
if (d is not ImageExBase control)
|
if (d is not ImageExBase control)
|
||||||
@@ -140,7 +187,15 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
control.SetSource(e.NewValue);
|
if (e.NewValue is null || !control.EnableLazyLoading || control.isInViewport)
|
||||||
|
{
|
||||||
|
control.lazyLoadingSource = null;
|
||||||
|
control.SetSource(e.NewValue);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
control.lazyLoadingSource = e.NewValue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static bool IsHttpUri(Uri uri)
|
private static bool IsHttpUri(Uri uri)
|
||||||
@@ -148,8 +203,11 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
return uri.IsAbsoluteUri && (uri.Scheme == "http" || uri.Scheme == "https");
|
return uri.IsAbsoluteUri && (uri.Scheme == "http" || uri.Scheme == "https");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AttachSource(BitmapImage? source, Uri? uri)
|
private void AttachSource(ImageSource? source)
|
||||||
{
|
{
|
||||||
|
// Setting the source at this point should call ImageExOpened/VisualStateManager.GoToState
|
||||||
|
// as we register to both the ImageOpened/ImageFailed events of the underlying control.
|
||||||
|
// We only need to call those methods if we fail in other cases before we get here.
|
||||||
if (Image is Microsoft.UI.Xaml.Controls.Image image)
|
if (Image is Microsoft.UI.Xaml.Controls.Image image)
|
||||||
{
|
{
|
||||||
image.Source = source;
|
image.Source = source;
|
||||||
@@ -163,15 +221,13 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
{
|
{
|
||||||
VisualStateManager.GoToState(this, UnloadedState, true);
|
VisualStateManager.GoToState(this, UnloadedState, true);
|
||||||
}
|
}
|
||||||
else
|
else if (source is BitmapSource { PixelHeight: > 0, PixelWidth: > 0 })
|
||||||
{
|
{
|
||||||
// https://learn.microsoft.com/en-us/windows/uwp/debug-test-perf/optimize-animations-and-media#optimize-image-resources
|
|
||||||
source.UriSource = uri;
|
|
||||||
VisualStateManager.GoToState(this, LoadedState, true);
|
VisualStateManager.GoToState(this, LoadedState, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AttachPlaceholderSource(BitmapImage? source, Uri? uri)
|
private void AttachPlaceholderSource(ImageSource? source)
|
||||||
{
|
{
|
||||||
if (PlaceholderImage is Microsoft.UI.Xaml.Controls.Image image)
|
if (PlaceholderImage is Microsoft.UI.Xaml.Controls.Image image)
|
||||||
{
|
{
|
||||||
@@ -186,10 +242,8 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
{
|
{
|
||||||
VisualStateManager.GoToState(this, UnloadedState, true);
|
VisualStateManager.GoToState(this, UnloadedState, true);
|
||||||
}
|
}
|
||||||
else
|
else if (source is BitmapSource { PixelHeight: > 0, PixelWidth: > 0 })
|
||||||
{
|
{
|
||||||
// https://learn.microsoft.com/en-us/windows/uwp/debug-test-perf/optimize-animations-and-media#optimize-image-resources
|
|
||||||
source.UriSource = uri;
|
|
||||||
VisualStateManager.GoToState(this, LoadedState, true);
|
VisualStateManager.GoToState(this, LoadedState, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -202,9 +256,10 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
}
|
}
|
||||||
|
|
||||||
tokenSource?.Cancel();
|
tokenSource?.Cancel();
|
||||||
|
|
||||||
tokenSource = new CancellationTokenSource();
|
tokenSource = new CancellationTokenSource();
|
||||||
|
|
||||||
AttachSource(default, default);
|
AttachSource(null);
|
||||||
|
|
||||||
if (source is null)
|
if (source is null)
|
||||||
{
|
{
|
||||||
@@ -213,6 +268,13 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
|
|
||||||
VisualStateManager.GoToState(this, LoadingState, true);
|
VisualStateManager.GoToState(this, LoadingState, true);
|
||||||
|
|
||||||
|
if (source as ImageSource is { } imageSource)
|
||||||
|
{
|
||||||
|
AttachSource(imageSource);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (source as Uri is not { } uri)
|
if (source as Uri is not { } uri)
|
||||||
{
|
{
|
||||||
string? url = source as string ?? source.ToString();
|
string? url = source as string ?? source.ToString();
|
||||||
@@ -257,13 +319,20 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
tokenSource?.Cancel();
|
tokenSource?.Cancel();
|
||||||
tokenSource = new();
|
tokenSource = new();
|
||||||
|
|
||||||
AttachPlaceholderSource(default, default);
|
AttachPlaceholderSource(null);
|
||||||
|
|
||||||
if (source is null)
|
if (source is null)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (source as ImageSource is { } imageSource)
|
||||||
|
{
|
||||||
|
AttachPlaceholderSource(imageSource);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (source as Uri is not { } uri)
|
if (source as Uri is not { } uri)
|
||||||
{
|
{
|
||||||
string? url = source as string ?? source.ToString();
|
string? url = source as string ?? source.ToString();
|
||||||
@@ -285,13 +354,13 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Uri? actualUri = await ProvideCachedResourceAsync(uri, tokenSource.Token).ConfigureAwait(true);
|
ImageSource? img = await ProvideCachedResourceAsync(uri, tokenSource.Token).ConfigureAwait(true);
|
||||||
|
|
||||||
ArgumentNullException.ThrowIfNull(tokenSource);
|
ArgumentNullException.ThrowIfNull(tokenSource);
|
||||||
if (!tokenSource.IsCancellationRequested)
|
if (!tokenSource.IsCancellationRequested)
|
||||||
{
|
{
|
||||||
// Only attach our image if we still have a valid request.
|
// Only attach our image if we still have a valid request.
|
||||||
AttachPlaceholderSource(new BitmapImage(), actualUri);
|
AttachPlaceholderSource(img);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (OperationCanceledException)
|
catch (OperationCanceledException)
|
||||||
@@ -310,13 +379,99 @@ internal abstract partial class ImageExBase : Microsoft.UI.Xaml.Controls.Control
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Uri? actualUri = await ProvideCachedResourceAsync(imageUri, token).ConfigureAwait(true);
|
if (IsCacheEnabled)
|
||||||
|
|
||||||
ArgumentNullException.ThrowIfNull(tokenSource);
|
|
||||||
if (!tokenSource.IsCancellationRequested)
|
|
||||||
{
|
{
|
||||||
// Only attach our image if we still have a valid request.
|
ImageSource? img = await ProvideCachedResourceAsync(imageUri, token).ConfigureAwait(true);
|
||||||
AttachSource(new BitmapImage(), actualUri);
|
|
||||||
|
ArgumentNullException.ThrowIfNull(tokenSource);
|
||||||
|
if (!tokenSource.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
// Only attach our image if we still have a valid request.
|
||||||
|
AttachSource(img);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (string.Equals(imageUri.Scheme, "data", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
string source = imageUri.OriginalString;
|
||||||
|
const string base64Head = "base64,";
|
||||||
|
int index = source.IndexOf(base64Head, StringComparison.Ordinal);
|
||||||
|
if (index >= 0)
|
||||||
|
{
|
||||||
|
byte[] bytes = Convert.FromBase64String(source[(index + base64Head.Length)..]);
|
||||||
|
BitmapImage bitmap = new();
|
||||||
|
await bitmap.SetSourceAsync(new MemoryStream(bytes).AsRandomAccessStream());
|
||||||
|
|
||||||
|
ArgumentNullException.ThrowIfNull(tokenSource);
|
||||||
|
if (!tokenSource.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
AttachSource(bitmap);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
AttachSource(new BitmapImage(imageUri)
|
||||||
|
{
|
||||||
|
CreateOptions = BitmapCreateOptions.IgnoreImageCache,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnImageExBaseLayoutUpdated(object? sender, object e)
|
||||||
|
{
|
||||||
|
InvalidateLazyLoading();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void InvalidateLazyLoading()
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
{
|
||||||
|
isInViewport = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find the first ascendant ScrollViewer, if not found, use the root element.
|
||||||
|
FrameworkElement? hostElement = default;
|
||||||
|
IEnumerable<FrameworkElement> ascendants = this.FindAscendants().OfType<FrameworkElement>();
|
||||||
|
foreach (FrameworkElement ascendant in ascendants)
|
||||||
|
{
|
||||||
|
hostElement = ascendant;
|
||||||
|
if (hostElement is Microsoft.UI.Xaml.Controls.ScrollViewer)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hostElement is null)
|
||||||
|
{
|
||||||
|
isInViewport = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Rect controlRect = TransformToVisual(hostElement).TransformBounds(StructMarshal.Rect(ActualSize));
|
||||||
|
double lazyLoadingThreshold = LazyLoadingThreshold;
|
||||||
|
|
||||||
|
// Left/Top 1 Threshold, Right/Bottom 2 Threshold
|
||||||
|
Rect hostRect = new(
|
||||||
|
0 - lazyLoadingThreshold,
|
||||||
|
0 - lazyLoadingThreshold,
|
||||||
|
hostElement.ActualWidth + (2 * lazyLoadingThreshold),
|
||||||
|
hostElement.ActualHeight + (2 * lazyLoadingThreshold));
|
||||||
|
|
||||||
|
if (controlRect.IntersectsWith(hostRect))
|
||||||
|
{
|
||||||
|
isInViewport = true;
|
||||||
|
|
||||||
|
if (lazyLoadingSource is not null)
|
||||||
|
{
|
||||||
|
object source = lazyLoadingSource;
|
||||||
|
lazyLoadingSource = null;
|
||||||
|
SetSource(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
isInViewport = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -63,12 +63,12 @@ internal sealed partial class UniformStaggeredLayout : VirtualizingLayout
|
|||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
protected override Size MeasureOverride(VirtualizingLayoutContext context, Size availableSize)
|
protected override Size MeasureOverride(VirtualizingLayoutContext context, Size availableSize)
|
||||||
{
|
{
|
||||||
if (context.ItemCount is 0)
|
if (context.ItemCount == 0)
|
||||||
{
|
{
|
||||||
return new Size(availableSize.Width, 0);
|
return new Size(availableSize.Width, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((context.RealizationRect.Width is 0) && (context.RealizationRect.Height is 0))
|
if ((context.RealizationRect.Width == 0) && (context.RealizationRect.Height == 0))
|
||||||
{
|
{
|
||||||
return new Size(availableSize.Width, 0.0f);
|
return new Size(availableSize.Width, 0.0f);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,13 +13,11 @@ internal sealed class WrapItem
|
|||||||
Index = index;
|
Index = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Point EmptyPosition { get; } = new(float.NegativeInfinity, float.NegativeInfinity);
|
|
||||||
|
|
||||||
public int Index { get; }
|
public int Index { get; }
|
||||||
|
|
||||||
public Size Size { get; set; } = Size.Empty;
|
public Size? Size { get; set; }
|
||||||
|
|
||||||
public Point Position { get; set; } = EmptyPosition;
|
public Point? Position { get; set; }
|
||||||
|
|
||||||
public UIElement? Element { get; set; }
|
public UIElement? Element { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,11 +15,13 @@ internal sealed partial class WrapLayout : VirtualizingLayout
|
|||||||
protected override void InitializeForContextCore(VirtualizingLayoutContext context)
|
protected override void InitializeForContextCore(VirtualizingLayoutContext context)
|
||||||
{
|
{
|
||||||
context.LayoutState = new WrapLayoutState(context);
|
context.LayoutState = new WrapLayoutState(context);
|
||||||
|
base.InitializeForContextCore(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void UninitializeForContextCore(VirtualizingLayoutContext context)
|
protected override void UninitializeForContextCore(VirtualizingLayoutContext context)
|
||||||
{
|
{
|
||||||
context.LayoutState = default;
|
context.LayoutState = default;
|
||||||
|
base.UninitializeForContextCore(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnItemsChangedCore(VirtualizingLayoutContext context, object source, NotifyCollectionChangedEventArgs args)
|
protected override void OnItemsChangedCore(VirtualizingLayoutContext context, object source, NotifyCollectionChangedEventArgs args)
|
||||||
@@ -58,16 +60,6 @@ internal sealed partial class WrapLayout : VirtualizingLayout
|
|||||||
|
|
||||||
protected override Size MeasureOverride(VirtualizingLayoutContext context, Size availableSize)
|
protected override Size MeasureOverride(VirtualizingLayoutContext context, Size availableSize)
|
||||||
{
|
{
|
||||||
if (context.ItemCount is 0)
|
|
||||||
{
|
|
||||||
return new Size(availableSize.Width, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((context.RealizationRect.Width is 0) && (context.RealizationRect.Height is 0))
|
|
||||||
{
|
|
||||||
return new Size(availableSize.Width, 0.0f);
|
|
||||||
}
|
|
||||||
|
|
||||||
Size spacing = new(HorizontalSpacing, VerticalSpacing);
|
Size spacing = new(HorizontalSpacing, VerticalSpacing);
|
||||||
|
|
||||||
WrapLayoutState state = (WrapLayoutState)context.LayoutState;
|
WrapLayoutState state = (WrapLayoutState)context.LayoutState;
|
||||||
@@ -76,42 +68,42 @@ internal sealed partial class WrapLayout : VirtualizingLayout
|
|||||||
{
|
{
|
||||||
state.ClearPositions();
|
state.ClearPositions();
|
||||||
state.Spacing = spacing;
|
state.Spacing = spacing;
|
||||||
state.AvailableWidth = availableSize.Width;
|
state.AvailableWidth = availableSize.Height;
|
||||||
}
|
}
|
||||||
|
|
||||||
double currentHeight = 0;
|
double currentHeight = 0;
|
||||||
Point itemPosition = default;
|
Point position = default;
|
||||||
for (int i = 0; i < context.ItemCount; ++i)
|
for (int i = 0; i < context.ItemCount; ++i)
|
||||||
{
|
{
|
||||||
bool itemMeasured = false;
|
bool measured = false;
|
||||||
WrapItem item = state.GetItemAt(i);
|
WrapItem item = state.GetItemAt(i);
|
||||||
if (item.Size == Size.Empty)
|
if (item.Size is null)
|
||||||
{
|
{
|
||||||
item.Element = context.GetOrCreateElementAt(i);
|
item.Element = context.GetOrCreateElementAt(i);
|
||||||
item.Element.Measure(availableSize);
|
item.Element.Measure(availableSize);
|
||||||
item.Size = item.Element.DesiredSize;
|
item.Size = item.Element.DesiredSize;
|
||||||
itemMeasured = true;
|
measured = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Size itemSize = item.Size;
|
Size currentSize = item.Size.Value;
|
||||||
|
|
||||||
if (item.Position == WrapItem.EmptyPosition)
|
if (item.Position is null)
|
||||||
{
|
{
|
||||||
if (availableSize.Width < itemPosition.X + itemSize.Width)
|
if (availableSize.Width < position.X + currentSize.Height)
|
||||||
{
|
{
|
||||||
// New Row
|
// New Row
|
||||||
itemPosition.X = 0;
|
position.X = 0;
|
||||||
itemPosition.Y += currentHeight + spacing.Height;
|
position.Y += currentHeight + spacing.Height;
|
||||||
currentHeight = 0;
|
currentHeight = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
item.Position = itemPosition;
|
item.Position = position;
|
||||||
}
|
}
|
||||||
|
|
||||||
itemPosition = item.Position;
|
position = item.Position.Value;
|
||||||
|
|
||||||
double bottom = itemPosition.Y + itemSize.Height;
|
double vEnd = position.Y + currentSize.Width;
|
||||||
if (bottom < context.RealizationRect.Top)
|
if (vEnd < context.RealizationRect.Top)
|
||||||
{
|
{
|
||||||
// Item is "above" the bounds
|
// Item is "above" the bounds
|
||||||
if (item.Element is not null)
|
if (item.Element is not null)
|
||||||
@@ -122,7 +114,7 @@ internal sealed partial class WrapLayout : VirtualizingLayout
|
|||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (itemPosition.Y > context.RealizationRect.Bottom)
|
else if (position.Y > context.RealizationRect.Bottom)
|
||||||
{
|
{
|
||||||
// Item is "below" the bounds.
|
// Item is "below" the bounds.
|
||||||
if (item.Element is not null)
|
if (item.Element is not null)
|
||||||
@@ -134,34 +126,34 @@ internal sealed partial class WrapLayout : VirtualizingLayout
|
|||||||
// We don't need to measure anything below the bounds
|
// We don't need to measure anything below the bounds
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (!itemMeasured)
|
else if (!measured)
|
||||||
{
|
{
|
||||||
// Always measure elements that are within the bounds
|
// Always measure elements that are within the bounds
|
||||||
item.Element = context.GetOrCreateElementAt(i);
|
item.Element = context.GetOrCreateElementAt(i);
|
||||||
item.Element.Measure(availableSize);
|
item.Element.Measure(availableSize);
|
||||||
|
|
||||||
itemSize = item.Element.DesiredSize;
|
currentSize = item.Element.DesiredSize;
|
||||||
if (itemSize != item.Size)
|
if (currentSize != item.Size)
|
||||||
{
|
{
|
||||||
// this item changed size; we need to recalculate layout for everything after this
|
// this item changed size; we need to recalculate layout for everything after this
|
||||||
state.RemoveFromIndex(i + 1);
|
state.RemoveFromIndex(i + 1);
|
||||||
item.Size = itemSize;
|
item.Size = currentSize;
|
||||||
|
|
||||||
// did the change make it go into the new row?
|
// did the change make it go into the new row?
|
||||||
if (availableSize.Width < itemPosition.X + itemSize.Width)
|
if (availableSize.Width < position.X + currentSize.Width)
|
||||||
{
|
{
|
||||||
// New Row
|
// New Row
|
||||||
itemPosition.X = 0;
|
position.X = 0;
|
||||||
itemPosition.Y += currentHeight + spacing.Height;
|
position.Y += currentHeight + spacing.Height;
|
||||||
currentHeight = 0;
|
currentHeight = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
item.Position = itemPosition;
|
item.Position = position;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
itemPosition.X += itemSize.Width + spacing.Width;
|
position.X += currentSize.Width + spacing.Width;
|
||||||
currentHeight = Math.Max(itemSize.Height, currentHeight);
|
currentHeight = Math.Max(currentSize.Height, currentHeight);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Size(double.IsInfinity(availableSize.Width) ? 0 : Math.Ceiling(availableSize.Width), state.GetHeight());
|
return new Size(double.IsInfinity(availableSize.Width) ? 0 : Math.Ceiling(availableSize.Width), state.GetHeight());
|
||||||
@@ -173,9 +165,34 @@ internal sealed partial class WrapLayout : VirtualizingLayout
|
|||||||
{
|
{
|
||||||
WrapLayoutState state = (WrapLayoutState)context.LayoutState;
|
WrapLayoutState state = (WrapLayoutState)context.LayoutState;
|
||||||
|
|
||||||
|
bool ArrangeItem(WrapItem item)
|
||||||
|
{
|
||||||
|
if (item is { Size: null } or { Position: null })
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Size desiredSize = item.Size.Value;
|
||||||
|
|
||||||
|
Point position = item.Position.Value;
|
||||||
|
|
||||||
|
if (context.RealizationRect.Top <= position.Y + desiredSize.Height && position.Y <= context.RealizationRect.Bottom)
|
||||||
|
{
|
||||||
|
// place the item
|
||||||
|
UIElement child = context.GetOrCreateElementAt(item.Index);
|
||||||
|
child.Arrange(new Rect(position, desiredSize));
|
||||||
|
}
|
||||||
|
else if (position.Y > context.RealizationRect.Bottom)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 0; i < context.ItemCount; ++i)
|
for (int i = 0; i < context.ItemCount; ++i)
|
||||||
{
|
{
|
||||||
if (!ArrangeItem(context, state.GetItemAt(i)))
|
if (!ArrangeItem(state.GetItemAt(i)))
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -183,38 +200,14 @@ internal sealed partial class WrapLayout : VirtualizingLayout
|
|||||||
}
|
}
|
||||||
|
|
||||||
return finalSize;
|
return finalSize;
|
||||||
|
|
||||||
static bool ArrangeItem(VirtualizingLayoutContext context, WrapItem item)
|
|
||||||
{
|
|
||||||
if (item.Size == Size.Empty || item.Position == WrapItem.EmptyPosition)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
Size size = item.Size;
|
|
||||||
Point position = item.Position;
|
|
||||||
|
|
||||||
if (context.RealizationRect.Top <= position.Y + size.Height && position.Y <= context.RealizationRect.Bottom)
|
|
||||||
{
|
|
||||||
// place the item
|
|
||||||
UIElement child = context.GetOrCreateElementAt(item.Index);
|
|
||||||
child.Arrange(new Rect(position, size));
|
|
||||||
}
|
|
||||||
else if (position.Y > context.RealizationRect.Bottom)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void LayoutPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
private static void LayoutPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
||||||
{
|
{
|
||||||
if (d is WrapLayout layout)
|
if (d is WrapLayout wp)
|
||||||
{
|
{
|
||||||
layout.InvalidateMeasure();
|
wp.InvalidateMeasure();
|
||||||
layout.InvalidateArrange();
|
wp.InvalidateArrange();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using Microsoft.UI.Xaml;
|
||||||
using Microsoft.UI.Xaml.Controls;
|
using Microsoft.UI.Xaml.Controls;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using Windows.Foundation;
|
using Windows.Foundation;
|
||||||
@@ -65,7 +66,7 @@ internal sealed class WrapLayoutState
|
|||||||
{
|
{
|
||||||
foreach (ref readonly WrapItem item in CollectionsMarshal.AsSpan(items))
|
foreach (ref readonly WrapItem item in CollectionsMarshal.AsSpan(items))
|
||||||
{
|
{
|
||||||
item.Position = WrapItem.EmptyPosition;
|
item.Position = default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,24 +80,23 @@ internal sealed class WrapLayoutState
|
|||||||
Point? lastPosition = default;
|
Point? lastPosition = default;
|
||||||
double maxHeight = 0;
|
double maxHeight = 0;
|
||||||
|
|
||||||
Span<WrapItem> itemSpan = CollectionsMarshal.AsSpan(items);
|
|
||||||
for (int i = items.Count - 1; i >= 0; --i)
|
for (int i = items.Count - 1; i >= 0; --i)
|
||||||
{
|
{
|
||||||
ref readonly WrapItem item = ref itemSpan[i];
|
WrapItem item = items[i];
|
||||||
|
|
||||||
if (item.Position == WrapItem.EmptyPosition || item.Size == Size.Empty)
|
if (item.Position is null || item.Size is null)
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lastPosition is not null && lastPosition.Value.Y > item.Position.Y)
|
if (lastPosition is not null && lastPosition.Value.Y > item.Position.Value.Y)
|
||||||
{
|
{
|
||||||
// This is a row above the last item.
|
// This is a row above the last item.
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
lastPosition = item.Position;
|
lastPosition = item.Position;
|
||||||
maxHeight = Math.Max(maxHeight, item.Size.Height);
|
maxHeight = Math.Max(maxHeight, item.Size.Value.Height);
|
||||||
}
|
}
|
||||||
|
|
||||||
return lastPosition?.Y + maxHeight ?? 0;
|
return lastPosition?.Y + maxHeight ?? 0;
|
||||||
@@ -104,6 +104,7 @@ internal sealed class WrapLayoutState
|
|||||||
|
|
||||||
public void RecycleElementAt(int index)
|
public void RecycleElementAt(int index)
|
||||||
{
|
{
|
||||||
context.RecycleElement(context.GetOrCreateElementAt(index));
|
UIElement element = context.GetOrCreateElementAt(index);
|
||||||
|
context.RecycleElement(element);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Microsoft.UI.Xaml;
|
using Microsoft.UI.Xaml;
|
||||||
using Microsoft.UI.Xaml.Markup;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control;
|
namespace Snap.Hutao.Control;
|
||||||
|
|
||||||
@@ -37,18 +36,9 @@ internal class Loading : Microsoft.UI.Xaml.Controls.ContentControl
|
|||||||
private static void IsLoadingPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
private static void IsLoadingPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
||||||
{
|
{
|
||||||
Loading control = (Loading)d;
|
Loading control = (Loading)d;
|
||||||
|
control.presenter ??= control.GetTemplateChild("ContentGrid") as FrameworkElement;
|
||||||
|
|
||||||
if ((bool)e.NewValue)
|
control?.Update();
|
||||||
{
|
|
||||||
control.presenter ??= control.GetTemplateChild("ContentGrid") as FrameworkElement;
|
|
||||||
}
|
|
||||||
else if (control.presenter is not null)
|
|
||||||
{
|
|
||||||
XamlMarkupHelper.UnloadObject(control.presenter);
|
|
||||||
control.presenter = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
control.Update();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Update()
|
private void Update()
|
||||||
|
|||||||
@@ -23,8 +23,7 @@
|
|||||||
<ContentPresenter
|
<ContentPresenter
|
||||||
x:Name="ContentGrid"
|
x:Name="ContentGrid"
|
||||||
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
||||||
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}">
|
||||||
x:Load="True">
|
|
||||||
<ContentPresenter.RenderTransform>
|
<ContentPresenter.RenderTransform>
|
||||||
<CompositeTransform/>
|
<CompositeTransform/>
|
||||||
</ContentPresenter.RenderTransform>
|
</ContentPresenter.RenderTransform>
|
||||||
@@ -85,4 +84,4 @@
|
|||||||
</Setter>
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
|||||||
@@ -8,19 +8,45 @@ using Windows.UI;
|
|||||||
|
|
||||||
namespace Snap.Hutao.Control.Media;
|
namespace Snap.Hutao.Control.Media;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// RGBA 颜色
|
||||||
|
/// </summary>
|
||||||
[HighQuality]
|
[HighQuality]
|
||||||
internal struct Rgba32
|
internal struct Rgba32
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// R
|
||||||
|
/// </summary>
|
||||||
public byte R;
|
public byte R;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// G
|
||||||
|
/// </summary>
|
||||||
public byte G;
|
public byte G;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// B
|
||||||
|
/// </summary>
|
||||||
public byte B;
|
public byte B;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A
|
||||||
|
/// </summary>
|
||||||
public byte A;
|
public byte A;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 构造一个新的 RGBA8 颜色
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="hex">色值字符串</param>
|
||||||
public Rgba32(string hex)
|
public Rgba32(string hex)
|
||||||
: this(hex.Length == 6 ? Convert.ToUInt32($"{hex}FF", 16) : Convert.ToUInt32(hex, 16))
|
: this(hex.Length == 6 ? Convert.ToUInt32($"{hex}FF", 16) : Convert.ToUInt32(hex, 16))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 使用 RGBA 代码初始化新的结构
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="xrgbaCode">RGBA 代码</param>
|
||||||
public unsafe Rgba32(uint xrgbaCode)
|
public unsafe Rgba32(uint xrgbaCode)
|
||||||
{
|
{
|
||||||
// uint layout: 0xRRGGBBAA is AABBGGRR
|
// uint layout: 0xRRGGBBAA is AABBGGRR
|
||||||
@@ -54,6 +80,11 @@ internal struct Rgba32
|
|||||||
return *(Color*)&rgba;
|
return *(Color*)&rgba;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 从 HSL 颜色转换
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="hsl">HSL 颜色</param>
|
||||||
|
/// <returns>RGBA8颜色</returns>
|
||||||
public static Rgba32 FromHsl(Hsla32 hsl)
|
public static Rgba32 FromHsl(Hsla32 hsl)
|
||||||
{
|
{
|
||||||
double chroma = (1 - Math.Abs((2 * hsl.L) - 1)) * hsl.S;
|
double chroma = (1 - Math.Abs((2 * hsl.L) - 1)) * hsl.S;
|
||||||
@@ -107,6 +138,10 @@ internal struct Rgba32
|
|||||||
return new(r, g, b, a);
|
return new(r, g, b, a);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 转换到 HSL 颜色
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>HSL 颜色</returns>
|
||||||
public readonly Hsla32 ToHsl()
|
public readonly Hsla32 ToHsl()
|
||||||
{
|
{
|
||||||
const double toDouble = 1.0 / 255;
|
const double toDouble = 1.0 / 255;
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
// Some part of this file came from:
|
|
||||||
// https://github.com/xunkong/desktop/tree/main/src/Desktop/Desktop/Pages/CharacterInfoPage.xaml.cs
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control.Media;
|
|
||||||
|
|
||||||
internal struct Rgba64
|
|
||||||
{
|
|
||||||
public Half R;
|
|
||||||
public Half G;
|
|
||||||
public Half B;
|
|
||||||
public Half A;
|
|
||||||
}
|
|
||||||
@@ -3,10 +3,8 @@
|
|||||||
|
|
||||||
using Microsoft.UI.Xaml;
|
using Microsoft.UI.Xaml;
|
||||||
using Microsoft.UI.Xaml.Controls;
|
using Microsoft.UI.Xaml.Controls;
|
||||||
using Microsoft.UI.Xaml.Markup;
|
|
||||||
using Microsoft.UI.Xaml.Navigation;
|
using Microsoft.UI.Xaml.Navigation;
|
||||||
using Snap.Hutao.Service.Navigation;
|
using Snap.Hutao.Service.Navigation;
|
||||||
using Snap.Hutao.View.Helper;
|
|
||||||
using Snap.Hutao.ViewModel.Abstraction;
|
using Snap.Hutao.ViewModel.Abstraction;
|
||||||
|
|
||||||
namespace Snap.Hutao.Control;
|
namespace Snap.Hutao.Control;
|
||||||
@@ -38,11 +36,6 @@ internal class ScopedPage : Page
|
|||||||
extra.NotifyNavigationCompleted();
|
extra.NotifyNavigationCompleted();
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual void UnloadObjectOverride(DependencyObject unloadableObject)
|
|
||||||
{
|
|
||||||
XamlMarkupHelper.UnloadObject(unloadableObject);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 初始化
|
/// 初始化
|
||||||
/// 应当在 InitializeComponent() 前调用
|
/// 应当在 InitializeComponent() 前调用
|
||||||
@@ -53,14 +46,8 @@ internal class ScopedPage : Page
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
TViewModel viewModel = pageScope.ServiceProvider.GetRequiredService<TViewModel>();
|
IViewModel viewModel = pageScope.ServiceProvider.GetRequiredService<TViewModel>();
|
||||||
using (viewModel.DisposeLock.Enter())
|
viewModel.CancellationToken = viewCancellationTokenSource.Token;
|
||||||
{
|
|
||||||
viewModel.IsViewDisposed = false;
|
|
||||||
viewModel.CancellationToken = viewCancellationTokenSource.Token;
|
|
||||||
viewModel.DeferContentLoader = new DeferContentLoader(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
DataContext = viewModel;
|
DataContext = viewModel;
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@@ -109,9 +96,10 @@ internal class ScopedPage : Page
|
|||||||
viewCancellationTokenSource.Cancel();
|
viewCancellationTokenSource.Cancel();
|
||||||
IViewModel viewModel = (IViewModel)DataContext;
|
IViewModel viewModel = (IViewModel)DataContext;
|
||||||
|
|
||||||
using (viewModel.DisposeLock.Enter())
|
using (SemaphoreSlim locker = viewModel.DisposeLock)
|
||||||
{
|
{
|
||||||
// Wait to ensure viewmodel operation is completed
|
// Wait to ensure viewmodel operation is completed
|
||||||
|
locker.Wait();
|
||||||
viewModel.IsViewDisposed = true;
|
viewModel.IsViewDisposed = true;
|
||||||
|
|
||||||
// Dispose the scope
|
// Dispose the scope
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
using Microsoft.UI.Xaml;
|
|
||||||
using Microsoft.UI.Xaml.Controls;
|
|
||||||
using Snap.Hutao.Service.Notification;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control.Selector;
|
|
||||||
|
|
||||||
internal sealed class InfoBarTemplateSelector : DataTemplateSelector
|
|
||||||
{
|
|
||||||
public DataTemplate ActionButtonEnabled { get; set; } = default!;
|
|
||||||
|
|
||||||
public DataTemplate ActionButtonDisabled { get; set; } = default!;
|
|
||||||
|
|
||||||
protected override DataTemplate SelectTemplateCore(object item, DependencyObject container)
|
|
||||||
{
|
|
||||||
if (item is InfoBarOptions { ActionButtonContent: { }, ActionButtonCommand: { } })
|
|
||||||
{
|
|
||||||
return ActionButtonEnabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ActionButtonDisabled;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -21,8 +21,8 @@ internal sealed partial class SizeRestrictedContentControl : ContentControl
|
|||||||
element.Measure(availableSize);
|
element.Measure(availableSize);
|
||||||
Size contentDesiredSize = element.DesiredSize;
|
Size contentDesiredSize = element.DesiredSize;
|
||||||
Size contentActualOrDesiredSize = new(
|
Size contentActualOrDesiredSize = new(
|
||||||
Math.Min(Math.Max(element.ActualWidth, contentDesiredSize.Width), availableSize.Width),
|
Math.Max(element.ActualWidth, contentDesiredSize.Width),
|
||||||
Math.Min(Math.Max(element.ActualHeight, contentDesiredSize.Height), availableSize.Height));
|
Math.Max(element.ActualHeight, contentDesiredSize.Height));
|
||||||
|
|
||||||
if (IsWidthRestricted)
|
if (IsWidthRestricted)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Snap.Hutao.Core.ExceptionService;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control.Text.Syntax.MiHoYo;
|
namespace Snap.Hutao.Control.Text.Syntax.MiHoYo;
|
||||||
|
|
||||||
internal sealed class MiHoYoColorTextSyntax : MiHoYoXmlElementSyntax
|
internal sealed class MiHoYoColorTextSyntax : MiHoYoXmlElementSyntax
|
||||||
@@ -29,7 +27,7 @@ internal sealed class MiHoYoColorTextSyntax : MiHoYoXmlElementSyntax
|
|||||||
{
|
{
|
||||||
MiHoYoColorKind.Rgba => new(Position.Start + 17, Position.End - 8),
|
MiHoYoColorKind.Rgba => new(Position.Start + 17, Position.End - 8),
|
||||||
MiHoYoColorKind.Rgb => new(Position.Start + 15, Position.End - 8),
|
MiHoYoColorKind.Rgb => new(Position.Start + 15, Position.End - 8),
|
||||||
_ => throw HutaoException.NotSupported(),
|
_ => throw Must.NeverHappen(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -42,7 +40,7 @@ internal sealed class MiHoYoColorTextSyntax : MiHoYoXmlElementSyntax
|
|||||||
{
|
{
|
||||||
MiHoYoColorKind.Rgba => new(Position.Start + 8, Position.Start + 16),
|
MiHoYoColorKind.Rgba => new(Position.Start + 8, Position.Start + 16),
|
||||||
MiHoYoColorKind.Rgb => new(Position.Start + 8, Position.Start + 14),
|
MiHoYoColorKind.Rgb => new(Position.Start + 8, Position.Start + 14),
|
||||||
_ => throw HutaoException.NotSupported(),
|
_ => throw Must.NeverHappen(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Snap.Hutao.Core.ExceptionService;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control.Text.Syntax.MiHoYo;
|
namespace Snap.Hutao.Control.Text.Syntax.MiHoYo;
|
||||||
|
|
||||||
// TODO: Pooling syntax nodes to reduce memory allocation
|
|
||||||
internal sealed class MiHoYoSyntaxTree
|
internal sealed class MiHoYoSyntaxTree
|
||||||
{
|
{
|
||||||
public MiHoYoSyntaxNode Root { get; set; } = default!;
|
public MiHoYoSyntaxNode Root { get; set; } = default!;
|
||||||
@@ -78,7 +75,7 @@ internal sealed class MiHoYoSyntaxTree
|
|||||||
{
|
{
|
||||||
17 => MiHoYoColorKind.Rgba,
|
17 => MiHoYoColorKind.Rgba,
|
||||||
15 => MiHoYoColorKind.Rgb,
|
15 => MiHoYoColorKind.Rgb,
|
||||||
_ => throw HutaoException.NotSupported(),
|
_ => throw Must.NeverHappen(),
|
||||||
};
|
};
|
||||||
|
|
||||||
TextPosition position = new(0, endOfXmlColorRightClosingAtUnprocessedContent);
|
TextPosition position = new(0, endOfXmlColorRightClosingAtUnprocessedContent);
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
<shmmc:AchievementIconConverter x:Key="AchievementIconConverter"/>
|
<shmmc:AchievementIconConverter x:Key="AchievementIconConverter"/>
|
||||||
<shmmc:AvatarCardConverter x:Key="AvatarCardConverter"/>
|
<shmmc:AvatarCardConverter x:Key="AvatarCardConverter"/>
|
||||||
<shmmc:AvatarIconConverter x:Key="AvatarIconConverter"/>
|
<shmmc:AvatarIconConverter x:Key="AvatarIconConverter"/>
|
||||||
<shmmc:AvatarIconCircleConverter x:Key="AvatarIconCircleConverter"/>
|
|
||||||
<shmmc:AvatarNameCardPicConverter x:Key="AvatarNameCardPicConverter"/>
|
<shmmc:AvatarNameCardPicConverter x:Key="AvatarNameCardPicConverter"/>
|
||||||
<shmmc:AvatarSideIconConverter x:Key="AvatarSideIconConverter"/>
|
<shmmc:AvatarSideIconConverter x:Key="AvatarSideIconConverter"/>
|
||||||
<shmmc:DescriptionsParametersDescriptor x:Key="DescParamDescriptor"/>
|
<shmmc:DescriptionsParametersDescriptor x:Key="DescParamDescriptor"/>
|
||||||
|
|||||||
@@ -2,5 +2,4 @@
|
|||||||
<CornerRadius x:Key="ControlCornerRadiusTop">4,4,0,0</CornerRadius>
|
<CornerRadius x:Key="ControlCornerRadiusTop">4,4,0,0</CornerRadius>
|
||||||
<CornerRadius x:Key="ControlCornerRadiusBottom">0,0,4,4</CornerRadius>
|
<CornerRadius x:Key="ControlCornerRadiusBottom">0,0,4,4</CornerRadius>
|
||||||
<CornerRadius x:Key="ControlCornerRadiusTopRightAndBottomLeft">0,4,0,4</CornerRadius>
|
<CornerRadius x:Key="ControlCornerRadiusTopRightAndBottomLeft">0,4,0,4</CornerRadius>
|
||||||
<CornerRadius x:Key="CornerRadiusAll16">16</CornerRadius>
|
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
|||||||
@@ -52,12 +52,6 @@
|
|||||||
<Thickness x:Key="InfoBarIconMargin">19,16,19,16</Thickness>
|
<Thickness x:Key="InfoBarIconMargin">19,16,19,16</Thickness>
|
||||||
<Thickness x:Key="InfoBarContentRootPadding">0,0,0,0</Thickness>
|
<Thickness x:Key="InfoBarContentRootPadding">0,0,0,0</Thickness>
|
||||||
<x:Double x:Key="InfoBarIconFontSize">20</x:Double>
|
<x:Double x:Key="InfoBarIconFontSize">20</x:Double>
|
||||||
|
|
||||||
<Thickness x:Key="InfoBarTitleHorizontalOrientationMargin">0,0,0,0</Thickness>
|
|
||||||
<Thickness x:Key="InfoBarMessageHorizontalOrientationMargin">12,0,0,0</Thickness>
|
|
||||||
<Thickness x:Key="InfoBarTitleVerticalOrientationMargin">0,16,0,0</Thickness>
|
|
||||||
<Thickness x:Key="InfoBarMessageVerticalOrientationMargin">0,6,0,0</Thickness>
|
|
||||||
|
|
||||||
<!-- TODO: When will DefaultInfoBarStyle added -->
|
<!-- TODO: When will DefaultInfoBarStyle added -->
|
||||||
<Style TargetType="InfoBar">
|
<Style TargetType="InfoBar">
|
||||||
<Setter Property="shch:InfoBarHelper.IsTextSelectionEnabled" Value="False"/>
|
<Setter Property="shch:InfoBarHelper.IsTextSelectionEnabled" Value="False"/>
|
||||||
@@ -134,7 +128,6 @@
|
|||||||
<InfoBarPanel
|
<InfoBarPanel
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Margin="{StaticResource InfoBarPanelMargin}"
|
Margin="{StaticResource InfoBarPanelMargin}"
|
||||||
VerticalAlignment="Center"
|
|
||||||
HorizontalOrientationPadding="{StaticResource InfoBarPanelHorizontalOrientationPadding}"
|
HorizontalOrientationPadding="{StaticResource InfoBarPanelHorizontalOrientationPadding}"
|
||||||
VerticalOrientationPadding="{StaticResource InfoBarPanelVerticalOrientationPadding}">
|
VerticalOrientationPadding="{StaticResource InfoBarPanelVerticalOrientationPadding}">
|
||||||
<TextBlock
|
<TextBlock
|
||||||
@@ -180,7 +173,6 @@
|
|||||||
<Button
|
<Button
|
||||||
Name="CloseButton"
|
Name="CloseButton"
|
||||||
Grid.Column="2"
|
Grid.Column="2"
|
||||||
VerticalAlignment="Top"
|
|
||||||
Command="{TemplateBinding CloseButtonCommand}"
|
Command="{TemplateBinding CloseButtonCommand}"
|
||||||
CommandParameter="{TemplateBinding CloseButtonCommandParameter}"
|
CommandParameter="{TemplateBinding CloseButtonCommandParameter}"
|
||||||
Style="{TemplateBinding CloseButtonStyle}">
|
Style="{TemplateBinding CloseButtonStyle}">
|
||||||
@@ -244,14 +236,7 @@
|
|||||||
|
|
||||||
<VisualStateManager.VisualStateGroups>
|
<VisualStateManager.VisualStateGroups>
|
||||||
<VisualStateGroup x:Name="SeverityLevels">
|
<VisualStateGroup x:Name="SeverityLevels">
|
||||||
<VisualState x:Name="Informational">
|
<VisualState x:Name="Informational"/>
|
||||||
<VisualState.Setters>
|
|
||||||
<Setter Target="ContentRoot.Background" Value="{ThemeResource InfoBarInformationalSeverityBackgroundBrush}"/>
|
|
||||||
<Setter Target="IconBackground.Foreground" Value="{ThemeResource InfoBarInformationalSeverityIconBackground}"/>
|
|
||||||
<Setter Target="StandardIcon.Text" Value="{StaticResource InfoBarInformationalIconGlyph}"/>
|
|
||||||
<Setter Target="StandardIcon.Foreground" Value="{ThemeResource InfoBarInformationalSeverityIconForeground}"/>
|
|
||||||
</VisualState.Setters>
|
|
||||||
</VisualState>
|
|
||||||
<VisualState x:Name="Error">
|
<VisualState x:Name="Error">
|
||||||
<VisualState.Setters>
|
<VisualState.Setters>
|
||||||
<Setter Target="ContentRoot.Background" Value="{ThemeResource InfoBarErrorSeverityBackgroundBrush}"/>
|
<Setter Target="ContentRoot.Background" Value="{ThemeResource InfoBarErrorSeverityBackgroundBrush}"/>
|
||||||
|
|||||||
@@ -23,9 +23,6 @@
|
|||||||
<ItemsPanelTemplate x:Key="HorizontalStackPanelSpacing4Template">
|
<ItemsPanelTemplate x:Key="HorizontalStackPanelSpacing4Template">
|
||||||
<StackPanel Orientation="Horizontal" Spacing="4"/>
|
<StackPanel Orientation="Horizontal" Spacing="4"/>
|
||||||
</ItemsPanelTemplate>
|
</ItemsPanelTemplate>
|
||||||
<ItemsPanelTemplate x:Key="HorizontalStackPanelSpacing6Template">
|
|
||||||
<StackPanel Orientation="Horizontal" Spacing="6"/>
|
|
||||||
</ItemsPanelTemplate>
|
|
||||||
<ItemsPanelTemplate x:Key="StackPanelSpacing4Template">
|
<ItemsPanelTemplate x:Key="StackPanelSpacing4Template">
|
||||||
<StackPanel Spacing="4"/>
|
<StackPanel Spacing="4"/>
|
||||||
</ItemsPanelTemplate>
|
</ItemsPanelTemplate>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
<TransitionCollection x:Key="ContentThemeTransitions">
|
<TransitionCollection x:Key="ContentThemeTransitions">
|
||||||
<ContentThemeTransition/>
|
<ContentThemeTransition/>
|
||||||
</TransitionCollection>
|
</TransitionCollection>
|
||||||
@@ -20,4 +20,4 @@
|
|||||||
<TransitionCollection x:Key="NavigationThemeTransitions">
|
<TransitionCollection x:Key="NavigationThemeTransitions">
|
||||||
<NavigationThemeTransition/>
|
<NavigationThemeTransition/>
|
||||||
</TransitionCollection>
|
</TransitionCollection>
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Microsoft.UI.Xaml.Data;
|
using Microsoft.UI.Xaml.Data;
|
||||||
using Snap.Hutao.Core.ExceptionService;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Control;
|
namespace Snap.Hutao.Control;
|
||||||
|
|
||||||
@@ -40,6 +39,6 @@ internal abstract class ValueConverter<TFrom, TTo> : IValueConverter
|
|||||||
/// <returns>源</returns>
|
/// <returns>源</returns>
|
||||||
public virtual TFrom ConvertBack(TTo to)
|
public virtual TFrom ConvertBack(TTo to)
|
||||||
{
|
{
|
||||||
throw HutaoException.NotSupported();
|
throw Must.NeverHappen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -5,5 +5,5 @@ namespace Snap.Hutao.Core.Abstraction;
|
|||||||
|
|
||||||
internal interface IPinnable<TData>
|
internal interface IPinnable<TData>
|
||||||
{
|
{
|
||||||
ref TData GetPinnableReference();
|
ref readonly TData GetPinnableReference();
|
||||||
}
|
}
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.Abstraction;
|
|
||||||
|
|
||||||
internal interface IResurrectable
|
|
||||||
{
|
|
||||||
void Resurrect();
|
|
||||||
}
|
|
||||||
@@ -11,13 +11,16 @@ using Snap.Hutao.Web.Request.Builder;
|
|||||||
using Snap.Hutao.Web.Request.Builder.Abstraction;
|
using Snap.Hutao.Web.Request.Builder.Abstraction;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Frozen;
|
using System.Collections.Frozen;
|
||||||
using System.Diagnostics;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.Caching;
|
namespace Snap.Hutao.Core.Caching;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Provides methods and tools to cache files in a folder
|
||||||
|
/// The class's name will become the cache folder's name
|
||||||
|
/// </summary>
|
||||||
[HighQuality]
|
[HighQuality]
|
||||||
[ConstructorGenerated]
|
[ConstructorGenerated]
|
||||||
[Injection(InjectAs.Singleton, typeof(IImageCache))]
|
[Injection(InjectAs.Singleton, typeof(IImageCache))]
|
||||||
@@ -25,9 +28,10 @@ namespace Snap.Hutao.Core.Caching;
|
|||||||
[PrimaryHttpMessageHandler(MaxConnectionsPerServer = 8)]
|
[PrimaryHttpMessageHandler(MaxConnectionsPerServer = 8)]
|
||||||
internal sealed partial class ImageCache : IImageCache, IImageCacheFilePathOperation
|
internal sealed partial class ImageCache : IImageCache, IImageCacheFilePathOperation
|
||||||
{
|
{
|
||||||
|
private const string CacheFolderName = nameof(ImageCache);
|
||||||
private const string CacheFailedDownloadTasksName = $"{nameof(ImageCache)}.FailedDownloadTasks";
|
private const string CacheFailedDownloadTasksName = $"{nameof(ImageCache)}.FailedDownloadTasks";
|
||||||
|
|
||||||
private static readonly FrozenDictionary<int, TimeSpan> DelayFromRetryCount = FrozenDictionary.ToFrozenDictionary(
|
private readonly FrozenDictionary<int, TimeSpan> retryCountToDelay = FrozenDictionary.ToFrozenDictionary(
|
||||||
[
|
[
|
||||||
KeyValuePair.Create(0, TimeSpan.FromSeconds(4)),
|
KeyValuePair.Create(0, TimeSpan.FromSeconds(4)),
|
||||||
KeyValuePair.Create(1, TimeSpan.FromSeconds(16)),
|
KeyValuePair.Create(1, TimeSpan.FromSeconds(16)),
|
||||||
@@ -42,13 +46,16 @@ internal sealed partial class ImageCache : IImageCache, IImageCacheFilePathOpera
|
|||||||
private readonly ILogger<ImageCache> logger;
|
private readonly ILogger<ImageCache> logger;
|
||||||
private readonly IMemoryCache memoryCache;
|
private readonly IMemoryCache memoryCache;
|
||||||
|
|
||||||
|
private string? baseFolder;
|
||||||
private string? cacheFolder;
|
private string? cacheFolder;
|
||||||
|
|
||||||
private string CacheFolder
|
private string CacheFolder
|
||||||
{
|
{
|
||||||
get => LazyInitializer.EnsureInitialized(ref cacheFolder, () =>
|
get => LazyInitializer.EnsureInitialized(ref cacheFolder, () =>
|
||||||
{
|
{
|
||||||
return serviceProvider.GetRequiredService<RuntimeOptions>().GetLocalCacheImageCacheFolder();
|
baseFolder ??= serviceProvider.GetRequiredService<RuntimeOptions>().LocalCache;
|
||||||
|
DirectoryInfo info = Directory.CreateDirectory(Path.Combine(baseFolder, CacheFolderName));
|
||||||
|
return info.FullName;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -142,7 +149,8 @@ internal sealed partial class ImageCache : IImageCache, IImageCacheFilePathOpera
|
|||||||
return treatNullFileAsInvalid;
|
return treatNullFileAsInvalid;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new FileInfo(file).Length == 0;
|
FileInfo fileInfo = new(file);
|
||||||
|
return fileInfo.Length == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RemoveCore(IEnumerable<string> filePaths)
|
private void RemoveCore(IEnumerable<string> filePaths)
|
||||||
@@ -164,76 +172,80 @@ internal sealed partial class ImageCache : IImageCache, IImageCacheFilePathOpera
|
|||||||
[SuppressMessage("", "SH003")]
|
[SuppressMessage("", "SH003")]
|
||||||
private async Task DownloadFileAsync(Uri uri, string baseFile)
|
private async Task DownloadFileAsync(Uri uri, string baseFile)
|
||||||
{
|
{
|
||||||
using (HttpClient httpClient = httpClientFactory.CreateClient(nameof(ImageCache)))
|
int retryCount = 0;
|
||||||
|
HttpClient httpClient = httpClientFactory.CreateClient(nameof(ImageCache));
|
||||||
|
while (retryCount < 3)
|
||||||
{
|
{
|
||||||
int retryCount = 0;
|
|
||||||
|
|
||||||
HttpRequestMessageBuilder requestMessageBuilder = httpRequestMessageBuilderFactory
|
HttpRequestMessageBuilder requestMessageBuilder = httpRequestMessageBuilderFactory
|
||||||
.Create()
|
.Create()
|
||||||
.SetRequestUri(uri)
|
.SetRequestUri(uri)
|
||||||
.SetStaticResourceControlHeadersIf(uri.Host.Contains("api.snapgenshin.com", StringComparison.OrdinalIgnoreCase)) // These headers are only available for our own api
|
|
||||||
|
// These headers are only available for our own api
|
||||||
|
.SetStaticResourceControlHeadersIf(uri.Host.Contains("api.snapgenshin.com", StringComparison.OrdinalIgnoreCase))
|
||||||
.Get();
|
.Get();
|
||||||
|
|
||||||
while (retryCount < 3)
|
using (HttpRequestMessage requestMessage = requestMessageBuilder.HttpRequestMessage)
|
||||||
{
|
{
|
||||||
requestMessageBuilder.Resurrect();
|
using (HttpResponseMessage responseMessage = await httpClient.SendAsync(requestMessage, HttpCompletionOption.ResponseHeadersRead).ConfigureAwait(false))
|
||||||
|
|
||||||
using (HttpRequestMessage requestMessage = requestMessageBuilder.HttpRequestMessage)
|
|
||||||
{
|
{
|
||||||
using (HttpResponseMessage responseMessage = await httpClient.SendAsync(requestMessage, HttpCompletionOption.ResponseHeadersRead).ConfigureAwait(false))
|
if (responseMessage.RequestMessage is { RequestUri: { } target } && target != uri)
|
||||||
{
|
{
|
||||||
// Redirect detection
|
logger.LogDebug("The Request '{Source}' has been redirected to '{Target}'", uri, target);
|
||||||
if (responseMessage.RequestMessage is { RequestUri: { } target } && target != uri)
|
}
|
||||||
|
|
||||||
|
if (responseMessage.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
if (responseMessage.Content.Headers.ContentType?.MediaType is "application/json")
|
||||||
{
|
{
|
||||||
logger.LogDebug("The Request '{Source}' has been redirected to '{Target}'", uri, target);
|
#if DEBUG
|
||||||
|
DebugTrack(uri);
|
||||||
|
#endif
|
||||||
|
string raw = await responseMessage.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
|
logger.LogColorizedCritical("Failed to download '{Uri}' with unexpected body '{Raw}'", (uri, ConsoleColor.Red), (raw, ConsoleColor.DarkYellow));
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (responseMessage.IsSuccessStatusCode)
|
using (Stream httpStream = await responseMessage.Content.ReadAsStreamAsync().ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
if (responseMessage.Content.Headers.ContentType?.MediaType is "application/json")
|
using (FileStream fileStream = File.Create(baseFile))
|
||||||
{
|
{
|
||||||
DebugTrackFailedUri(uri);
|
await httpStream.CopyToAsync(fileStream).ConfigureAwait(false);
|
||||||
string raw = await responseMessage.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
logger.LogColorizedCritical("Failed to download '{Uri}' with unexpected body '{Raw}'", (uri, ConsoleColor.Red), (raw, ConsoleColor.DarkYellow));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
using (Stream httpStream = await responseMessage.Content.ReadAsStreamAsync().ConfigureAwait(false))
|
switch (responseMessage.StatusCode)
|
||||||
|
{
|
||||||
|
case HttpStatusCode.TooManyRequests:
|
||||||
{
|
{
|
||||||
using (FileStream fileStream = File.Create(baseFile))
|
retryCount++;
|
||||||
{
|
TimeSpan delay = responseMessage.Headers.RetryAfter?.Delta ?? retryCountToDelay[retryCount];
|
||||||
await httpStream.CopyToAsync(fileStream).ConfigureAwait(false);
|
logger.LogInformation("Retry download '{Uri}' after {Delay}.", uri, delay);
|
||||||
return;
|
await Task.Delay(delay).ConfigureAwait(false);
|
||||||
}
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
switch (responseMessage.StatusCode)
|
default:
|
||||||
{
|
#if DEBUG
|
||||||
case HttpStatusCode.TooManyRequests:
|
DebugTrack(uri);
|
||||||
{
|
#endif
|
||||||
retryCount++;
|
logger.LogColorizedCritical("Failed to download '{Uri}' with status code '{StatusCode}'", (uri, ConsoleColor.Red), (responseMessage.StatusCode, ConsoleColor.DarkYellow));
|
||||||
TimeSpan delay = responseMessage.Headers.RetryAfter?.Delta ?? DelayFromRetryCount[retryCount];
|
return;
|
||||||
logger.LogInformation("Retry download '{Uri}' after {Delay}.", uri, delay);
|
|
||||||
await Task.Delay(delay).ConfigureAwait(false);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
DebugTrackFailedUri(uri);
|
|
||||||
logger.LogColorizedCritical("Failed to download '{Uri}' with status code '{StatusCode}'", (uri, ConsoleColor.Red), (responseMessage.StatusCode, ConsoleColor.DarkYellow));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[Conditional("DEBUG")]
|
#if DEBUG
|
||||||
private void DebugTrackFailedUri(Uri uri)
|
internal partial class ImageCache
|
||||||
|
{
|
||||||
|
private void DebugTrack(Uri uri)
|
||||||
{
|
{
|
||||||
HashSet<string>? set = memoryCache.GetOrCreate(CacheFailedDownloadTasksName, entry => new HashSet<string>());
|
HashSet<string>? set = memoryCache.GetOrCreate(CacheFailedDownloadTasksName, entry => entry.Value ??= new HashSet<string>()) as HashSet<string>;
|
||||||
set?.Add(uri.ToString());
|
set?.Add(uri.ToString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
@@ -70,7 +70,7 @@ internal sealed class ObservableReorderableDbCollection<TEntity> : ObservableCol
|
|||||||
|
|
||||||
[SuppressMessage("", "SA1402")]
|
[SuppressMessage("", "SA1402")]
|
||||||
internal sealed class ObservableReorderableDbCollection<TEntityOnly, TEntity> : ObservableCollection<TEntityOnly>
|
internal sealed class ObservableReorderableDbCollection<TEntityOnly, TEntity> : ObservableCollection<TEntityOnly>
|
||||||
where TEntityOnly : class, IEntityAccess<TEntity>
|
where TEntityOnly : class, IEntityOnly<TEntity>
|
||||||
where TEntity : class, IReorderable
|
where TEntity : class, IReorderable
|
||||||
{
|
{
|
||||||
private readonly IServiceProvider serviceProvider;
|
private readonly IServiceProvider serviceProvider;
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ internal sealed partial class ScopedDbCurrent<TEntity, TMessage>
|
|||||||
|
|
||||||
[ConstructorGenerated]
|
[ConstructorGenerated]
|
||||||
internal sealed partial class ScopedDbCurrent<TEntityOnly, TEntity, TMessage>
|
internal sealed partial class ScopedDbCurrent<TEntityOnly, TEntity, TMessage>
|
||||||
where TEntityOnly : class, IEntityAccess<TEntity>
|
where TEntityOnly : class, IEntityOnly<TEntity>
|
||||||
where TEntity : class, ISelectable
|
where TEntity : class, ISelectable
|
||||||
where TMessage : Message.ValueChangedMessage<TEntityOnly>, new()
|
where TMessage : Message.ValueChangedMessage<TEntityOnly>, new()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using Snap.Hutao.Core.DependencyInjection.Abstraction;
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.DependencyInjection;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 对象扩展
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
|
internal static class CastServiceExtension
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// <see langword="as"/> 的链式调用扩展
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">目标转换类型</typeparam>
|
||||||
|
/// <param name="service">对象</param>
|
||||||
|
/// <returns>转换类型后的对象</returns>
|
||||||
|
[Obsolete("Not useful anymore")]
|
||||||
|
public static T? As<T>(this ICastService service)
|
||||||
|
where T : class
|
||||||
|
{
|
||||||
|
return service as T;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using CommunityToolkit.Mvvm.Messaging;
|
using CommunityToolkit.Mvvm.Messaging;
|
||||||
using Quartz;
|
|
||||||
using Snap.Hutao.Core.Logging;
|
using Snap.Hutao.Core.Logging;
|
||||||
using Snap.Hutao.Service;
|
using Snap.Hutao.Service;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
@@ -34,14 +33,11 @@ internal static class DependencyInjection
|
|||||||
})
|
})
|
||||||
.AddMemoryCache()
|
.AddMemoryCache()
|
||||||
|
|
||||||
// Quartz
|
|
||||||
.AddQuartz()
|
|
||||||
|
|
||||||
// Hutao extensions
|
// Hutao extensions
|
||||||
.AddJsonOptions()
|
.AddJsonOptions()
|
||||||
.AddDatabase()
|
.AddDatabase()
|
||||||
.AddInjections()
|
.AddInjections()
|
||||||
.AddConfiguredHttpClients()
|
.AddAllHttpClients()
|
||||||
|
|
||||||
// Discrete services
|
// Discrete services
|
||||||
.AddSingleton<IMessenger, WeakReferenceMessenger>()
|
.AddSingleton<IMessenger, WeakReferenceMessenger>()
|
||||||
|
|||||||
@@ -34,27 +34,27 @@ internal static class IocConfiguration
|
|||||||
.AddTransient(typeof(Database.ScopedDbCurrent<,>))
|
.AddTransient(typeof(Database.ScopedDbCurrent<,>))
|
||||||
.AddTransient(typeof(Database.ScopedDbCurrent<,,>))
|
.AddTransient(typeof(Database.ScopedDbCurrent<,,>))
|
||||||
.AddDbContextPool<AppDbContext>(AddDbContextCore);
|
.AddDbContextPool<AppDbContext>(AddDbContextCore);
|
||||||
|
}
|
||||||
|
|
||||||
static void AddDbContextCore(IServiceProvider serviceProvider, DbContextOptionsBuilder builder)
|
private static void AddDbContextCore(IServiceProvider serviceProvider, DbContextOptionsBuilder builder)
|
||||||
|
{
|
||||||
|
RuntimeOptions runtimeOptions = serviceProvider.GetRequiredService<RuntimeOptions>();
|
||||||
|
string dbFile = System.IO.Path.Combine(runtimeOptions.DataFolder, "Userdata.db");
|
||||||
|
string sqlConnectionString = $"Data Source={dbFile}";
|
||||||
|
|
||||||
|
// Temporarily create a context
|
||||||
|
using (AppDbContext context = AppDbContext.Create(serviceProvider, sqlConnectionString))
|
||||||
{
|
{
|
||||||
RuntimeOptions runtimeOptions = serviceProvider.GetRequiredService<RuntimeOptions>();
|
if (context.Database.GetPendingMigrations().Any())
|
||||||
string dbFile = System.IO.Path.Combine(runtimeOptions.DataFolder, "Userdata.db");
|
|
||||||
string sqlConnectionString = $"Data Source={dbFile}";
|
|
||||||
|
|
||||||
// Temporarily create a context
|
|
||||||
using (AppDbContext context = AppDbContext.Create(serviceProvider, sqlConnectionString))
|
|
||||||
{
|
{
|
||||||
if (context.Database.GetPendingMigrations().Any())
|
System.Diagnostics.Debug.WriteLine("[Database] Performing AppDbContext Migrations");
|
||||||
{
|
context.Database.Migrate();
|
||||||
System.Diagnostics.Debug.WriteLine("[Database] Performing AppDbContext Migrations");
|
|
||||||
context.Database.Migrate();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
builder
|
|
||||||
.EnableSensitiveDataLogging()
|
|
||||||
.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking)
|
|
||||||
.UseSqlite(sqlConnectionString);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
builder
|
||||||
|
.EnableSensitiveDataLogging()
|
||||||
|
.UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking)
|
||||||
|
.UseSqlite(sqlConnectionString);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -15,7 +15,7 @@ internal static partial class IocHttpClientConfiguration
|
|||||||
{
|
{
|
||||||
private const string ApplicationJson = "application/json";
|
private const string ApplicationJson = "application/json";
|
||||||
|
|
||||||
public static IServiceCollection AddConfiguredHttpClients(this IServiceCollection services)
|
public static IServiceCollection AddAllHttpClients(this IServiceCollection services)
|
||||||
{
|
{
|
||||||
services
|
services
|
||||||
.ConfigureHttpClientDefaults(clientBuilder =>
|
.ConfigureHttpClientDefaults(clientBuilder =>
|
||||||
@@ -27,7 +27,7 @@ internal static partial class IocHttpClientConfiguration
|
|||||||
HttpClientHandler clientHandler = (HttpClientHandler)handler;
|
HttpClientHandler clientHandler = (HttpClientHandler)handler;
|
||||||
clientHandler.AllowAutoRedirect = true;
|
clientHandler.AllowAutoRedirect = true;
|
||||||
clientHandler.UseProxy = true;
|
clientHandler.UseProxy = true;
|
||||||
clientHandler.Proxy = provider.GetRequiredService<HttpProxyUsingSystemProxy>();
|
clientHandler.Proxy = provider.GetRequiredService<DynamicHttpProxy>();
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.AddHttpClients();
|
.AddHttpClients();
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.ExceptionService;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 数据库损坏异常
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
|
[Obsolete("Use HutaoException instead")]
|
||||||
|
internal sealed class DatabaseCorruptedException : Exception
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 构造一个新的用户数据损坏异常
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="message">消息</param>
|
||||||
|
/// <param name="innerException">内部错误</param>
|
||||||
|
public DatabaseCorruptedException(string message, Exception? innerException)
|
||||||
|
: base(SH.FormatCoreExceptionServiceDatabaseCorruptedMessage($"{message}\n{innerException?.Message}"), innerException)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.ExceptionService;
|
namespace Snap.Hutao.Core.ExceptionService;
|
||||||
|
|
||||||
internal sealed class HutaoException : Exception
|
internal sealed class HutaoException : Exception
|
||||||
@@ -13,13 +11,11 @@ internal sealed class HutaoException : Exception
|
|||||||
}
|
}
|
||||||
|
|
||||||
[DoesNotReturn]
|
[DoesNotReturn]
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static HutaoException Throw(string message, Exception? innerException = default)
|
public static HutaoException Throw(string message, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
throw new HutaoException(message, innerException);
|
throw new HutaoException(message, innerException);
|
||||||
}
|
}
|
||||||
|
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static void ThrowIf([DoesNotReturnIf(true)] bool condition, string message, Exception? innerException = default)
|
public static void ThrowIf([DoesNotReturnIf(true)] bool condition, string message, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
if (condition)
|
if (condition)
|
||||||
@@ -28,7 +24,6 @@ internal sealed class HutaoException : Exception
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static void ThrowIfNot([DoesNotReturnIf(false)] bool condition, string message, Exception? innerException = default)
|
public static void ThrowIfNot([DoesNotReturnIf(false)] bool condition, string message, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
if (!condition)
|
if (!condition)
|
||||||
@@ -38,28 +33,18 @@ internal sealed class HutaoException : Exception
|
|||||||
}
|
}
|
||||||
|
|
||||||
[DoesNotReturn]
|
[DoesNotReturn]
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static ArgumentException Argument(string message, string? paramName)
|
|
||||||
{
|
|
||||||
throw new ArgumentException(message, paramName);
|
|
||||||
}
|
|
||||||
|
|
||||||
[DoesNotReturn]
|
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static HutaoException GachaStatisticsInvalidItemId(uint id, Exception? innerException = default)
|
public static HutaoException GachaStatisticsInvalidItemId(uint id, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
throw new HutaoException(SH.FormatServiceGachaStatisticsFactoryItemIdInvalid(id), innerException);
|
throw new HutaoException(SH.FormatServiceGachaStatisticsFactoryItemIdInvalid(id), innerException);
|
||||||
}
|
}
|
||||||
|
|
||||||
[DoesNotReturn]
|
[DoesNotReturn]
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static HutaoException UserdataCorrupted(string message, Exception? innerException = default)
|
public static HutaoException UserdataCorrupted(string message, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
throw new HutaoException(message, innerException);
|
throw new HutaoException(message, innerException);
|
||||||
}
|
}
|
||||||
|
|
||||||
[DoesNotReturn]
|
[DoesNotReturn]
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static InvalidCastException InvalidCast<TFrom, TTo>(string name, Exception? innerException = default)
|
public static InvalidCastException InvalidCast<TFrom, TTo>(string name, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
string message = $"This instance of '{typeof(TFrom).FullName}' '{name}' doesn't implement '{typeof(TTo).FullName}'";
|
string message = $"This instance of '{typeof(TFrom).FullName}' '{name}' doesn't implement '{typeof(TTo).FullName}'";
|
||||||
@@ -67,21 +52,18 @@ internal sealed class HutaoException : Exception
|
|||||||
}
|
}
|
||||||
|
|
||||||
[DoesNotReturn]
|
[DoesNotReturn]
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static InvalidOperationException InvalidOperation(string message, Exception? innerException = default)
|
public static InvalidOperationException InvalidOperation(string message, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException(message, innerException);
|
throw new InvalidOperationException(message, innerException);
|
||||||
}
|
}
|
||||||
|
|
||||||
[DoesNotReturn]
|
[DoesNotReturn]
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static NotSupportedException NotSupported(string? message = default, Exception? innerException = default)
|
public static NotSupportedException NotSupported(string? message = default, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
throw new NotSupportedException(message, innerException);
|
throw new NotSupportedException(message, innerException);
|
||||||
}
|
}
|
||||||
|
|
||||||
[DoesNotReturn]
|
[DoesNotReturn]
|
||||||
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
||||||
public static OperationCanceledException OperationCanceled(string message, Exception? innerException = default)
|
public static OperationCanceledException OperationCanceled(string message, Exception? innerException = default)
|
||||||
{
|
{
|
||||||
throw new OperationCanceledException(message, innerException);
|
throw new OperationCanceledException(message, innerException);
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.ExceptionService;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 运行环境异常
|
||||||
|
/// 用户的计算机中的某些设置不符合要求
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
|
[Obsolete("Use HutaoException instead")]
|
||||||
|
internal sealed class RuntimeEnvironmentException : Exception
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 构造一个新的运行环境异常
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="message">消息</param>
|
||||||
|
/// <param name="innerException">内部错误</param>
|
||||||
|
public RuntimeEnvironmentException(string message, Exception? innerException)
|
||||||
|
: base($"{message}\n{innerException?.Message}", innerException)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
113
src/Snap.Hutao/Snap.Hutao/Core/ExceptionService/ThrowHelper.cs
Normal file
113
src/Snap.Hutao/Snap.Hutao/Core/ExceptionService/ThrowHelper.cs
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using Snap.Hutao.Service.Game;
|
||||||
|
using Snap.Hutao.Service.Game.Package;
|
||||||
|
using System.IO;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.ExceptionService;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 帮助更好的抛出异常
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
|
[System.Diagnostics.StackTraceHidden]
|
||||||
|
[Obsolete("Use HutaoException instead")]
|
||||||
|
internal static class ThrowHelper
|
||||||
|
{
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static ArgumentException Argument(string message, string? paramName)
|
||||||
|
{
|
||||||
|
throw new ArgumentException(message, paramName);
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static DatabaseCorruptedException DatabaseCorrupted(string message, Exception? inner)
|
||||||
|
{
|
||||||
|
throw new DatabaseCorruptedException(message, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static GameFileOperationException GameFileOperation(string message, Exception? inner)
|
||||||
|
{
|
||||||
|
throw new GameFileOperationException(message, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static InvalidDataException InvalidData(string message, Exception? inner = default)
|
||||||
|
{
|
||||||
|
throw new InvalidDataException(message, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static void InvalidDataIf([DoesNotReturnIf(true)] bool condition, string message, Exception? inner = default)
|
||||||
|
{
|
||||||
|
if (condition)
|
||||||
|
{
|
||||||
|
throw new InvalidDataException(message, inner);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static InvalidOperationException InvalidOperation(string message, Exception? inner = default)
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(message, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static NotSupportedException NotSupported()
|
||||||
|
{
|
||||||
|
throw new NotSupportedException();
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static NotSupportedException NotSupported(string message)
|
||||||
|
{
|
||||||
|
throw new NotSupportedException(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static void NotSupportedIf(bool condition, string message)
|
||||||
|
{
|
||||||
|
if (condition)
|
||||||
|
{
|
||||||
|
throw new NotSupportedException(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static OperationCanceledException OperationCanceled(string message, Exception? inner = default)
|
||||||
|
{
|
||||||
|
throw new OperationCanceledException(message, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static PackageConvertException PackageConvert(string message, Exception? inner = default)
|
||||||
|
{
|
||||||
|
throw new PackageConvertException(message, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static RuntimeEnvironmentException RuntimeEnvironment(string message, Exception? inner)
|
||||||
|
{
|
||||||
|
throw new RuntimeEnvironmentException(message, inner);
|
||||||
|
}
|
||||||
|
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static UserdataCorruptedException UserdataCorrupted(string message, Exception? inner)
|
||||||
|
{
|
||||||
|
throw new UserdataCorruptedException(message, inner);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.ExceptionService;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 用户数据损坏异常
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
|
[Obsolete("Use HutaoException instead")]
|
||||||
|
internal sealed class UserdataCorruptedException : Exception
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 构造一个新的用户数据损坏异常
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="message">消息</param>
|
||||||
|
/// <param name="innerException">内部错误</param>
|
||||||
|
public UserdataCorruptedException(string message, Exception? innerException)
|
||||||
|
: base(SH.FormatCoreExceptionServiceUserdataCorruptedMessage($"{message}\n{innerException?.Message}"), innerException)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,12 +2,7 @@
|
|||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Microsoft.VisualBasic.FileIO;
|
using Microsoft.VisualBasic.FileIO;
|
||||||
using Snap.Hutao.Win32.System.Com;
|
|
||||||
using Snap.Hutao.Win32.UI.Shell;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using static Snap.Hutao.Win32.Macros;
|
|
||||||
using static Snap.Hutao.Win32.Ole32;
|
|
||||||
using static Snap.Hutao.Win32.Shell32;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.IO;
|
namespace Snap.Hutao.Core.IO;
|
||||||
|
|
||||||
@@ -23,29 +18,4 @@ internal static class DirectoryOperation
|
|||||||
FileSystem.MoveDirectory(sourceDirName, destDirName, true);
|
FileSystem.MoveDirectory(sourceDirName, destDirName, true);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static unsafe bool UnsafeRename(string path, string name, FILEOPERATION_FLAGS flags = FILEOPERATION_FLAGS.FOF_ALLOWUNDO | FILEOPERATION_FLAGS.FOF_NOCONFIRMMKDIR)
|
|
||||||
{
|
|
||||||
bool result = false;
|
|
||||||
|
|
||||||
if (SUCCEEDED(CoCreateInstance(in Win32.UI.Shell.FileOperation.CLSID, default, CLSCTX.CLSCTX_INPROC_SERVER, in IFileOperation.IID, out IFileOperation* pFileOperation)))
|
|
||||||
{
|
|
||||||
if (SUCCEEDED(SHCreateItemFromParsingName(path, default, in IShellItem.IID, out IShellItem* pShellItem)))
|
|
||||||
{
|
|
||||||
pFileOperation->SetOperationFlags(flags);
|
|
||||||
pFileOperation->RenameItem(pShellItem, name, default);
|
|
||||||
|
|
||||||
if (SUCCEEDED(pFileOperation->PerformOperations()))
|
|
||||||
{
|
|
||||||
result = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
IUnknownMarshal.Release(pShellItem);
|
|
||||||
}
|
|
||||||
|
|
||||||
IUnknownMarshal.Release(pFileOperation);
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,30 +45,6 @@ internal static class FileOperation
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static unsafe bool UnsafeDelete(string path)
|
|
||||||
{
|
|
||||||
bool result = false;
|
|
||||||
|
|
||||||
if (SUCCEEDED(CoCreateInstance(in Win32.UI.Shell.FileOperation.CLSID, default, CLSCTX.CLSCTX_INPROC_SERVER, in IFileOperation.IID, out IFileOperation* pFileOperation)))
|
|
||||||
{
|
|
||||||
if (SUCCEEDED(SHCreateItemFromParsingName(path, default, in IShellItem.IID, out IShellItem* pShellItem)))
|
|
||||||
{
|
|
||||||
pFileOperation->DeleteItem(pShellItem, default);
|
|
||||||
|
|
||||||
if (SUCCEEDED(pFileOperation->PerformOperations()))
|
|
||||||
{
|
|
||||||
result = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
IUnknownMarshal.Release(pShellItem);
|
|
||||||
}
|
|
||||||
|
|
||||||
IUnknownMarshal.Release(pFileOperation);
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static unsafe bool UnsafeMove(string sourceFileName, string destFileName)
|
public static unsafe bool UnsafeMove(string sourceFileName, string destFileName)
|
||||||
{
|
{
|
||||||
bool result = false;
|
bool result = false;
|
||||||
@@ -97,4 +73,28 @@ internal static class FileOperation
|
|||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static unsafe bool UnsafeDelete(string path)
|
||||||
|
{
|
||||||
|
bool result = false;
|
||||||
|
|
||||||
|
if (SUCCEEDED(CoCreateInstance(in Win32.UI.Shell.FileOperation.CLSID, default, CLSCTX.CLSCTX_INPROC_SERVER, in IFileOperation.IID, out IFileOperation* pFileOperation)))
|
||||||
|
{
|
||||||
|
if (SUCCEEDED(SHCreateItemFromParsingName(path, default, in IShellItem.IID, out IShellItem* pShellItem)))
|
||||||
|
{
|
||||||
|
pFileOperation->DeleteItem(pShellItem, default);
|
||||||
|
|
||||||
|
if (SUCCEEDED(pFileOperation->PerformOperations()))
|
||||||
|
{
|
||||||
|
result = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
IUnknownMarshal.Release(pShellItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
IUnknownMarshal.Release(pFileOperation);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -6,9 +6,6 @@ using System.Text;
|
|||||||
|
|
||||||
namespace Snap.Hutao.Core.IO.Hashing;
|
namespace Snap.Hutao.Core.IO.Hashing;
|
||||||
|
|
||||||
#if NET9_0_OR_GREATER
|
|
||||||
[Obsolete]
|
|
||||||
#endif
|
|
||||||
internal static class Hash
|
internal static class Hash
|
||||||
{
|
{
|
||||||
public static unsafe string SHA1HexString(string input)
|
public static unsafe string SHA1HexString(string input)
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ using Snap.Hutao.Win32.NetworkManagement.WindowsFirewall;
|
|||||||
using Snap.Hutao.Win32.Security;
|
using Snap.Hutao.Win32.Security;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using static Snap.Hutao.Win32.AdvApi32;
|
using static Snap.Hutao.Win32.AdvApi32;
|
||||||
using static Snap.Hutao.Win32.FirewallApi;
|
using static Snap.Hutao.Win32.ApiMsWinNetIsolation;
|
||||||
using static Snap.Hutao.Win32.Macros;
|
using static Snap.Hutao.Win32.Macros;
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.IO.Http.Loopback;
|
namespace Snap.Hutao.Core.IO.Http.Loopback;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ using System.Reflection;
|
|||||||
namespace Snap.Hutao.Core.IO.Http.Proxy;
|
namespace Snap.Hutao.Core.IO.Http.Proxy;
|
||||||
|
|
||||||
[Injection(InjectAs.Singleton)]
|
[Injection(InjectAs.Singleton)]
|
||||||
internal sealed partial class HttpProxyUsingSystemProxy : ObservableObject, IWebProxy, IDisposable
|
internal sealed partial class DynamicHttpProxy : ObservableObject, IWebProxy, IDisposable
|
||||||
{
|
{
|
||||||
private const string ProxySettingPath = @"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections";
|
private const string ProxySettingPath = @"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections";
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ internal sealed partial class HttpProxyUsingSystemProxy : ObservableObject, IWeb
|
|||||||
|
|
||||||
private IWebProxy innerProxy = default!;
|
private IWebProxy innerProxy = default!;
|
||||||
|
|
||||||
public HttpProxyUsingSystemProxy(IServiceProvider serviceProvider)
|
public DynamicHttpProxy(IServiceProvider serviceProvider)
|
||||||
{
|
{
|
||||||
this.serviceProvider = serviceProvider;
|
this.serviceProvider = serviceProvider;
|
||||||
UpdateInnerProxy();
|
UpdateInnerProxy();
|
||||||
@@ -78,7 +78,7 @@ internal sealed class HttpShardCopyWorker<TStatus> : IDisposable
|
|||||||
using (HttpResponseMessage response = await httpClient.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, token).ConfigureAwait(false))
|
using (HttpResponseMessage response = await httpClient.SendAsync(request, HttpCompletionOption.ResponseHeadersRead, token).ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
response.EnsureSuccessStatusCode();
|
response.EnsureSuccessStatusCode();
|
||||||
using (IMemoryOwner<byte> memoryOwner = MemoryPool<byte>.Shared.Rent(bufferSize))
|
using (IMemoryOwner<byte> memoryOwner = MemoryPool<byte>.Shared.Rent())
|
||||||
{
|
{
|
||||||
Memory<byte> buffer = memoryOwner.Memory;
|
Memory<byte> buffer = memoryOwner.Memory;
|
||||||
using (Stream stream = await response.Content.ReadAsStreamAsync(token).ConfigureAwait(false))
|
using (Stream stream = await response.Content.ReadAsStreamAsync(token).ConfigureAwait(false))
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ internal sealed class StreamReaderWriter : IDisposable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc cref="StreamWriter.WriteAsync(string?)"/>
|
/// <inheritdoc cref="StreamWriter.WriteAsync(string?)"/>
|
||||||
[SuppressMessage("", "SH003")]
|
|
||||||
public Task WriteAsync(string value)
|
public Task WriteAsync(string value)
|
||||||
{
|
{
|
||||||
return writer.WriteAsync(value);
|
return writer.WriteAsync(value);
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ internal sealed class SeparatorCommaInt32EnumerableConverter : JsonConverter<IEn
|
|||||||
return EnumerateNumbers(source);
|
return EnumerateNumbers(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [];
|
return Enumerable.Empty<int>();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
|
|||||||
277
src/Snap.Hutao/Snap.Hutao/Core/LifeCycle/Activation.cs
Normal file
277
src/Snap.Hutao/Snap.Hutao/Core/LifeCycle/Activation.cs
Normal file
@@ -0,0 +1,277 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using CommunityToolkit.WinUI.Notifications;
|
||||||
|
using Microsoft.Extensions.Caching.Memory;
|
||||||
|
using Snap.Hutao.Core.LifeCycle.InterProcess;
|
||||||
|
using Snap.Hutao.Core.Setting;
|
||||||
|
using Snap.Hutao.Service.DailyNote;
|
||||||
|
using Snap.Hutao.Service.Discord;
|
||||||
|
using Snap.Hutao.Service.Hutao;
|
||||||
|
using Snap.Hutao.Service.Metadata;
|
||||||
|
using Snap.Hutao.Service.Navigation;
|
||||||
|
using Snap.Hutao.ViewModel.Guide;
|
||||||
|
using System.Diagnostics;
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.LifeCycle;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 激活
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
|
[ConstructorGenerated]
|
||||||
|
[Injection(InjectAs.Singleton, typeof(IActivation))]
|
||||||
|
[SuppressMessage("", "CA1001")]
|
||||||
|
internal sealed partial class Activation : IActivation
|
||||||
|
{
|
||||||
|
public const string Action = nameof(Action);
|
||||||
|
public const string Uid = nameof(Uid);
|
||||||
|
public const string LaunchGame = nameof(LaunchGame);
|
||||||
|
public const string ImportUIAFFromClipboard = nameof(ImportUIAFFromClipboard);
|
||||||
|
|
||||||
|
private const string CategoryAchievement = "ACHIEVEMENT";
|
||||||
|
private const string CategoryDailyNote = "DAILYNOTE";
|
||||||
|
private const string UrlActionImport = "/IMPORT";
|
||||||
|
private const string UrlActionRefresh = "/REFRESH";
|
||||||
|
|
||||||
|
private readonly IServiceProvider serviceProvider;
|
||||||
|
private readonly ICurrentWindowReference currentWindowReference;
|
||||||
|
private readonly ITaskContext taskContext;
|
||||||
|
private readonly SemaphoreSlim activateSemaphore = new(1);
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public void Activate(HutaoActivationArguments args)
|
||||||
|
{
|
||||||
|
if (ToastNotificationManagerCompat.WasCurrentProcessToastActivated())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
HandleActivationAsync(args).SafeForget();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public void Initialize()
|
||||||
|
{
|
||||||
|
serviceProvider.GetRequiredService<PrivateNamedPipeServer>().RunAsync().SafeForget();
|
||||||
|
ToastNotificationManagerCompat.OnActivated += NotificationActivate;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void NotificationActivate(ToastNotificationActivatedEventArgsCompat args)
|
||||||
|
{
|
||||||
|
ToastArguments toastArgs = ToastArguments.Parse(args.Argument);
|
||||||
|
|
||||||
|
if (toastArgs.TryGetValue(Action, out string? action))
|
||||||
|
{
|
||||||
|
if (action == LaunchGame)
|
||||||
|
{
|
||||||
|
_ = toastArgs.TryGetValue(Uid, out string? uid);
|
||||||
|
HandleLaunchGameActionAsync(uid).SafeForget();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask HandleActivationAsync(HutaoActivationArguments args)
|
||||||
|
{
|
||||||
|
if (activateSemaphore.CurrentCount > 0)
|
||||||
|
{
|
||||||
|
using (await activateSemaphore.EnterAsync().ConfigureAwait(false))
|
||||||
|
{
|
||||||
|
await HandleActivationCoreAsync(args).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask HandleActivationCoreAsync(HutaoActivationArguments args)
|
||||||
|
{
|
||||||
|
if (args.Kind is HutaoActivationKind.Protocol)
|
||||||
|
{
|
||||||
|
ArgumentNullException.ThrowIfNull(args.ProtocolActivatedUri);
|
||||||
|
await HandleUrlActivationAsync(args.ProtocolActivatedUri, args.IsRedirectTo).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
else if (args.Kind is HutaoActivationKind.Launch)
|
||||||
|
{
|
||||||
|
ArgumentNullException.ThrowIfNull(args.LaunchActivatedArguments);
|
||||||
|
switch (args.LaunchActivatedArguments)
|
||||||
|
{
|
||||||
|
case LaunchGame:
|
||||||
|
{
|
||||||
|
await HandleLaunchGameActionAsync().ConfigureAwait(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
await HandleNormalLaunchActionAsync().ConfigureAwait(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask HandleNormalLaunchActionAsync()
|
||||||
|
{
|
||||||
|
// Increase launch times
|
||||||
|
LocalSetting.Update(SettingKeys.LaunchTimes, 0, x => x + 1);
|
||||||
|
|
||||||
|
// If it's the first time launch, we show the guide window anyway.
|
||||||
|
// Otherwise, we check if there's any unfulfilled resource category present.
|
||||||
|
if (UnsafeLocalSetting.Get(SettingKeys.Major1Minor10Revision0GuideState, GuideState.Language) >= GuideState.StaticResourceBegin)
|
||||||
|
{
|
||||||
|
if (StaticResource.IsAnyUnfulfilledCategoryPresent())
|
||||||
|
{
|
||||||
|
UnsafeLocalSetting.Set(SettingKeys.Major1Minor10Revision0GuideState, GuideState.StaticResourceBegin);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (UnsafeLocalSetting.Get(SettingKeys.Major1Minor10Revision0GuideState, GuideState.Language) < GuideState.Completed)
|
||||||
|
{
|
||||||
|
await taskContext.SwitchToMainThreadAsync();
|
||||||
|
serviceProvider.GetRequiredService<GuideWindow>();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await WaitMainWindowAsync().ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask WaitMainWindowAsync()
|
||||||
|
{
|
||||||
|
if (currentWindowReference.Window is not null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await taskContext.SwitchToMainThreadAsync();
|
||||||
|
|
||||||
|
serviceProvider.GetRequiredService<MainWindow>();
|
||||||
|
|
||||||
|
await taskContext.SwitchToBackgroundAsync();
|
||||||
|
|
||||||
|
if (serviceProvider.GetRequiredService<IMetadataService>() is IMetadataServiceInitialization metadataServiceInitialization)
|
||||||
|
{
|
||||||
|
metadataServiceInitialization.InitializeInternalAsync().SafeForget();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (serviceProvider.GetRequiredService<IHutaoUserService>() is IHutaoUserServiceInitialization hutaoUserServiceInitialization)
|
||||||
|
{
|
||||||
|
hutaoUserServiceInitialization.InitializeInternalAsync().SafeForget();
|
||||||
|
}
|
||||||
|
|
||||||
|
serviceProvider
|
||||||
|
.GetRequiredService<IDiscordService>()
|
||||||
|
.SetNormalActivityAsync()
|
||||||
|
.SafeForget();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask HandleUrlActivationAsync(Uri uri, bool isRedirectTo)
|
||||||
|
{
|
||||||
|
UriBuilder builder = new(uri);
|
||||||
|
|
||||||
|
string category = builder.Host.ToUpperInvariant();
|
||||||
|
string action = builder.Path.ToUpperInvariant();
|
||||||
|
string parameter = builder.Query.ToUpperInvariant();
|
||||||
|
|
||||||
|
switch (category)
|
||||||
|
{
|
||||||
|
case CategoryAchievement:
|
||||||
|
{
|
||||||
|
await WaitMainWindowAsync().ConfigureAwait(false);
|
||||||
|
await HandleAchievementActionAsync(action, parameter, isRedirectTo).ConfigureAwait(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case CategoryDailyNote:
|
||||||
|
{
|
||||||
|
await HandleDailyNoteActionAsync(action, parameter, isRedirectTo).ConfigureAwait(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
await HandleNormalLaunchActionAsync().ConfigureAwait(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask HandleAchievementActionAsync(string action, string parameter, bool isRedirectTo)
|
||||||
|
{
|
||||||
|
_ = parameter;
|
||||||
|
_ = isRedirectTo;
|
||||||
|
switch (action)
|
||||||
|
{
|
||||||
|
case UrlActionImport:
|
||||||
|
{
|
||||||
|
await taskContext.SwitchToMainThreadAsync();
|
||||||
|
|
||||||
|
INavigationAwaiter navigationAwaiter = new NavigationExtra(ImportUIAFFromClipboard);
|
||||||
|
await serviceProvider
|
||||||
|
.GetRequiredService<INavigationService>()
|
||||||
|
.NavigateAsync<View.Page.AchievementPage>(navigationAwaiter, true)
|
||||||
|
.ConfigureAwait(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask HandleDailyNoteActionAsync(string action, string parameter, bool isRedirectTo)
|
||||||
|
{
|
||||||
|
_ = parameter;
|
||||||
|
switch (action)
|
||||||
|
{
|
||||||
|
case UrlActionRefresh:
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await serviceProvider
|
||||||
|
.GetRequiredService<IDailyNoteService>()
|
||||||
|
.RefreshDailyNotesAsync()
|
||||||
|
.ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if it's redirected.
|
||||||
|
if (!isRedirectTo)
|
||||||
|
{
|
||||||
|
// It's a direct open process, should exit immediately.
|
||||||
|
Process.GetCurrentProcess().Kill();
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async ValueTask HandleLaunchGameActionAsync(string? uid = null)
|
||||||
|
{
|
||||||
|
serviceProvider
|
||||||
|
.GetRequiredService<IMemoryCache>()
|
||||||
|
.Set(ViewModel.Game.LaunchGameViewModel.DesiredUid, uid);
|
||||||
|
|
||||||
|
await taskContext.SwitchToMainThreadAsync();
|
||||||
|
|
||||||
|
if (currentWindowReference.Window is null)
|
||||||
|
{
|
||||||
|
serviceProvider.GetRequiredService<LaunchGameWindow>();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentWindowReference.Window is MainWindow)
|
||||||
|
{
|
||||||
|
await serviceProvider
|
||||||
|
.GetRequiredService<INavigationService>()
|
||||||
|
.NavigateAsync<View.Page.LaunchGamePage>(INavigationAwaiter.Default, true)
|
||||||
|
.ConfigureAwait(false);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// We have a non-Main Window, just exit current process anyway
|
||||||
|
Process.GetCurrentProcess().Kill();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,297 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
using Microsoft.Extensions.Caching.Memory;
|
|
||||||
using Microsoft.UI.Xaml;
|
|
||||||
using Microsoft.Windows.AppNotifications;
|
|
||||||
using Snap.Hutao.Core.LifeCycle.InterProcess;
|
|
||||||
using Snap.Hutao.Core.Setting;
|
|
||||||
using Snap.Hutao.Core.Shell;
|
|
||||||
using Snap.Hutao.Core.Windowing;
|
|
||||||
using Snap.Hutao.Core.Windowing.HotKey;
|
|
||||||
using Snap.Hutao.Core.Windowing.NotifyIcon;
|
|
||||||
using Snap.Hutao.Service;
|
|
||||||
using Snap.Hutao.Service.Discord;
|
|
||||||
using Snap.Hutao.Service.Hutao;
|
|
||||||
using Snap.Hutao.Service.Job;
|
|
||||||
using Snap.Hutao.Service.Metadata;
|
|
||||||
using Snap.Hutao.Service.Navigation;
|
|
||||||
using Snap.Hutao.ViewModel.Guide;
|
|
||||||
using System.Diagnostics;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 激活
|
|
||||||
/// </summary>
|
|
||||||
[HighQuality]
|
|
||||||
[ConstructorGenerated]
|
|
||||||
[Injection(InjectAs.Singleton, typeof(IAppActivation))]
|
|
||||||
[SuppressMessage("", "CA1001")]
|
|
||||||
internal sealed partial class AppActivation : IAppActivation, IAppActivationActionHandlersAccess, IDisposable
|
|
||||||
{
|
|
||||||
public const string Action = nameof(Action);
|
|
||||||
public const string Uid = nameof(Uid);
|
|
||||||
public const string LaunchGame = nameof(LaunchGame);
|
|
||||||
public const string ImportUIAFFromClipboard = nameof(ImportUIAFFromClipboard);
|
|
||||||
|
|
||||||
private const string CategoryAchievement = "ACHIEVEMENT";
|
|
||||||
private const string UrlActionImport = "/IMPORT";
|
|
||||||
|
|
||||||
private readonly ICurrentXamlWindowReference currentWindowReference;
|
|
||||||
private readonly IServiceProvider serviceProvider;
|
|
||||||
private readonly ITaskContext taskContext;
|
|
||||||
|
|
||||||
private readonly SemaphoreSlim activateSemaphore = new(1);
|
|
||||||
|
|
||||||
/// <inheritdoc/>
|
|
||||||
public void Activate(HutaoActivationArguments args)
|
|
||||||
{
|
|
||||||
HandleActivationExclusiveAsync(args).SafeForget();
|
|
||||||
|
|
||||||
async ValueTask HandleActivationExclusiveAsync(HutaoActivationArguments args)
|
|
||||||
{
|
|
||||||
await taskContext.SwitchToBackgroundAsync();
|
|
||||||
|
|
||||||
if (activateSemaphore.CurrentCount > 0)
|
|
||||||
{
|
|
||||||
using (await activateSemaphore.EnterAsync().ConfigureAwait(false))
|
|
||||||
{
|
|
||||||
switch (args.Kind)
|
|
||||||
{
|
|
||||||
case HutaoActivationKind.Protocol:
|
|
||||||
{
|
|
||||||
ArgumentNullException.ThrowIfNull(args.ProtocolActivatedUri);
|
|
||||||
await HandleProtocolActivationAsync(args.ProtocolActivatedUri, args.IsRedirectTo).ConfigureAwait(false);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
case HutaoActivationKind.Launch:
|
|
||||||
{
|
|
||||||
ArgumentNullException.ThrowIfNull(args.LaunchActivatedArguments);
|
|
||||||
await HandleLaunchActivationAsync(args.IsRedirectTo).ConfigureAwait(false);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
case HutaoActivationKind.AppNotification:
|
|
||||||
{
|
|
||||||
ArgumentNullException.ThrowIfNull(args.AppNotificationActivatedArguments);
|
|
||||||
await HandleAppNotificationActivationAsync(args.AppNotificationActivatedArguments, args.IsRedirectTo).ConfigureAwait(false);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void NotificationInvoked(AppNotificationManager manager, AppNotificationActivatedEventArgs args)
|
|
||||||
{
|
|
||||||
HandleAppNotificationActivationAsync(args.Arguments, false).SafeForget();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc/>
|
|
||||||
public void PostInitialization()
|
|
||||||
{
|
|
||||||
RunPostInitializationAsync().SafeForget();
|
|
||||||
|
|
||||||
async ValueTask RunPostInitializationAsync()
|
|
||||||
{
|
|
||||||
await taskContext.SwitchToBackgroundAsync();
|
|
||||||
|
|
||||||
using (await activateSemaphore.EnterAsync().ConfigureAwait(false))
|
|
||||||
{
|
|
||||||
// TODO: Introduced in 1.10.2, remove in later version
|
|
||||||
{
|
|
||||||
serviceProvider.GetRequiredService<IJumpListInterop>().ClearAsync().SafeForget();
|
|
||||||
serviceProvider.GetRequiredService<IScheduleTaskInterop>().UnregisterAllTasks();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (UnsafeLocalSetting.Get(SettingKeys.Major1Minor10Revision0GuideState, GuideState.Language) < GuideState.Completed)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
serviceProvider.GetRequiredService<PrivateNamedPipeServer>().RunAsync().SafeForget();
|
|
||||||
|
|
||||||
// RegisterHotKey should be called from main thread
|
|
||||||
await taskContext.SwitchToMainThreadAsync();
|
|
||||||
serviceProvider.GetRequiredService<HotKeyOptions>().RegisterAll();
|
|
||||||
|
|
||||||
if (serviceProvider.GetRequiredService<AppOptions>().IsNotifyIconEnabled)
|
|
||||||
{
|
|
||||||
XamlLifetime.ApplicationLaunchedWithNotifyIcon = true;
|
|
||||||
|
|
||||||
await taskContext.SwitchToMainThreadAsync();
|
|
||||||
serviceProvider.GetRequiredService<App>().DispatcherShutdownMode = DispatcherShutdownMode.OnExplicitShutdown;
|
|
||||||
_ = serviceProvider.GetRequiredService<NotifyIconController>();
|
|
||||||
}
|
|
||||||
|
|
||||||
serviceProvider.GetRequiredService<IDiscordService>().SetNormalActivityAsync().SafeForget();
|
|
||||||
serviceProvider.GetRequiredService<IQuartzService>().StartAsync().SafeForget();
|
|
||||||
|
|
||||||
if (serviceProvider.GetRequiredService<IMetadataService>() is IMetadataServiceInitialization metadataServiceInitialization)
|
|
||||||
{
|
|
||||||
metadataServiceInitialization.InitializeInternalAsync().SafeForget();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (serviceProvider.GetRequiredService<IHutaoUserService>() is IHutaoUserServiceInitialization hutaoUserServiceInitialization)
|
|
||||||
{
|
|
||||||
hutaoUserServiceInitialization.InitializeInternalAsync().SafeForget();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
activateSemaphore.Dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async ValueTask HandleLaunchGameActionAsync(string? uid = null)
|
|
||||||
{
|
|
||||||
serviceProvider
|
|
||||||
.GetRequiredService<IMemoryCache>()
|
|
||||||
.Set(ViewModel.Game.LaunchGameViewModel.DesiredUid, uid);
|
|
||||||
|
|
||||||
await taskContext.SwitchToMainThreadAsync();
|
|
||||||
|
|
||||||
switch (currentWindowReference.Window)
|
|
||||||
{
|
|
||||||
case null:
|
|
||||||
LaunchGameWindow launchGameWindow = serviceProvider.GetRequiredService<LaunchGameWindow>();
|
|
||||||
currentWindowReference.Window = launchGameWindow;
|
|
||||||
|
|
||||||
launchGameWindow.SwitchTo();
|
|
||||||
launchGameWindow.BringToForeground();
|
|
||||||
return;
|
|
||||||
|
|
||||||
case MainWindow:
|
|
||||||
await serviceProvider
|
|
||||||
.GetRequiredService<INavigationService>()
|
|
||||||
.NavigateAsync<View.Page.LaunchGamePage>(INavigationAwaiter.Default, true)
|
|
||||||
.ConfigureAwait(false);
|
|
||||||
return;
|
|
||||||
|
|
||||||
case LaunchGameWindow currentLaunchGameWindow:
|
|
||||||
currentLaunchGameWindow.SwitchTo();
|
|
||||||
currentLaunchGameWindow.BringToForeground();
|
|
||||||
return;
|
|
||||||
|
|
||||||
default:
|
|
||||||
Process.GetCurrentProcess().Kill();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async ValueTask HandleProtocolActivationAsync(Uri uri, bool isRedirectTo)
|
|
||||||
{
|
|
||||||
UriBuilder builder = new(uri);
|
|
||||||
|
|
||||||
string category = builder.Host.ToUpperInvariant();
|
|
||||||
string action = builder.Path.ToUpperInvariant();
|
|
||||||
|
|
||||||
// string parameter = builder.Query.ToUpperInvariant();
|
|
||||||
switch (category)
|
|
||||||
{
|
|
||||||
case CategoryAchievement:
|
|
||||||
{
|
|
||||||
await WaitMainWindowOrCurrentAsync().ConfigureAwait(false);
|
|
||||||
if (currentWindowReference.Window is not MainWindow)
|
|
||||||
{
|
|
||||||
// TODO: Send notification to hint?
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (action)
|
|
||||||
{
|
|
||||||
case UrlActionImport:
|
|
||||||
{
|
|
||||||
await taskContext.SwitchToMainThreadAsync();
|
|
||||||
|
|
||||||
INavigationAwaiter navigationAwaiter = new NavigationExtra(ImportUIAFFromClipboard);
|
|
||||||
await serviceProvider
|
|
||||||
.GetRequiredService<INavigationService>()
|
|
||||||
.NavigateAsync<View.Page.AchievementPage>(navigationAwaiter, true)
|
|
||||||
.ConfigureAwait(false);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
{
|
|
||||||
await HandleLaunchActivationAsync(isRedirectTo).ConfigureAwait(false);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async ValueTask HandleLaunchActivationAsync(bool isRedirectTo)
|
|
||||||
{
|
|
||||||
if (!isRedirectTo)
|
|
||||||
{
|
|
||||||
// Increase launch times
|
|
||||||
LocalSetting.Update(SettingKeys.LaunchTimes, 0, x => unchecked(x + 1));
|
|
||||||
|
|
||||||
// If the guide is completed, we check if there's any unfulfilled resource category present.
|
|
||||||
if (UnsafeLocalSetting.Get(SettingKeys.Major1Minor10Revision0GuideState, GuideState.Language) >= GuideState.StaticResourceBegin)
|
|
||||||
{
|
|
||||||
if (StaticResource.IsAnyUnfulfilledCategoryPresent())
|
|
||||||
{
|
|
||||||
UnsafeLocalSetting.Set(SettingKeys.Major1Minor10Revision0GuideState, GuideState.StaticResourceBegin);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (UnsafeLocalSetting.Get(SettingKeys.Major1Minor10Revision0GuideState, GuideState.Language) < GuideState.Completed)
|
|
||||||
{
|
|
||||||
await taskContext.SwitchToMainThreadAsync();
|
|
||||||
|
|
||||||
GuideWindow guideWindow = serviceProvider.GetRequiredService<GuideWindow>();
|
|
||||||
currentWindowReference.Window = guideWindow;
|
|
||||||
|
|
||||||
guideWindow.SwitchTo();
|
|
||||||
guideWindow.BringToForeground();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await WaitMainWindowOrCurrentAsync().ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
private async ValueTask HandleAppNotificationActivationAsync(IDictionary<string, string> arguments, bool isRedirectTo)
|
|
||||||
{
|
|
||||||
if (arguments.TryGetValue(Action, out string? action))
|
|
||||||
{
|
|
||||||
if (action == LaunchGame)
|
|
||||||
{
|
|
||||||
_ = arguments.TryGetValue(Uid, out string? uid);
|
|
||||||
await HandleLaunchGameActionAsync(uid).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
await HandleLaunchActivationAsync(isRedirectTo).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async ValueTask WaitMainWindowOrCurrentAsync()
|
|
||||||
{
|
|
||||||
if (currentWindowReference.Window is { } window)
|
|
||||||
{
|
|
||||||
window.SwitchTo();
|
|
||||||
window.BringToForeground();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await taskContext.SwitchToMainThreadAsync();
|
|
||||||
|
|
||||||
MainWindow mainWindow = serviceProvider.GetRequiredService<MainWindow>();
|
|
||||||
currentWindowReference.Window = mainWindow;
|
|
||||||
|
|
||||||
mainWindow.SwitchTo();
|
|
||||||
mainWindow.BringToForeground();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Microsoft.Windows.AppLifecycle;
|
using Microsoft.Windows.AppLifecycle;
|
||||||
using Microsoft.Windows.AppNotifications;
|
|
||||||
using Windows.ApplicationModel.Activation;
|
using Windows.ApplicationModel.Activation;
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle;
|
namespace Snap.Hutao.Core.LifeCycle;
|
||||||
@@ -13,6 +12,12 @@ namespace Snap.Hutao.Core.LifeCycle;
|
|||||||
[HighQuality]
|
[HighQuality]
|
||||||
internal static class AppActivationArgumentsExtensions
|
internal static class AppActivationArgumentsExtensions
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 尝试获取协议启动的Uri
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="activatedEventArgs">应用程序激活参数</param>
|
||||||
|
/// <param name="uri">协议Uri</param>
|
||||||
|
/// <returns>是否存在协议Uri</returns>
|
||||||
public static bool TryGetProtocolActivatedUri(this AppActivationArguments activatedEventArgs, [NotNullWhen(true)] out Uri? uri)
|
public static bool TryGetProtocolActivatedUri(this AppActivationArguments activatedEventArgs, [NotNullWhen(true)] out Uri? uri)
|
||||||
{
|
{
|
||||||
uri = null;
|
uri = null;
|
||||||
@@ -25,10 +30,15 @@ internal static class AppActivationArgumentsExtensions
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 尝试获取启动的参数
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="activatedEventArgs">应用程序激活参数</param>
|
||||||
|
/// <param name="arguments">参数</param>
|
||||||
|
/// <returns>是否存在参数</returns>
|
||||||
public static bool TryGetLaunchActivatedArguments(this AppActivationArguments activatedEventArgs, [NotNullWhen(true)] out string? arguments)
|
public static bool TryGetLaunchActivatedArguments(this AppActivationArguments activatedEventArgs, [NotNullWhen(true)] out string? arguments)
|
||||||
{
|
{
|
||||||
arguments = null;
|
arguments = null;
|
||||||
|
|
||||||
if (activatedEventArgs.Data is not ILaunchActivatedEventArgs launchArgs)
|
if (activatedEventArgs.Data is not ILaunchActivatedEventArgs launchArgs)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
@@ -37,21 +47,4 @@ internal static class AppActivationArgumentsExtensions
|
|||||||
arguments = launchArgs.Arguments.Trim();
|
arguments = launchArgs.Arguments.Trim();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool TryGetAppNotificationActivatedArguments(this AppActivationArguments activatedEventArgs, out string? argument, [NotNullWhen(true)] out IDictionary<string, string>? arguments, [NotNullWhen(true)] out IDictionary<string, string>? userInput)
|
|
||||||
{
|
|
||||||
argument = null;
|
|
||||||
arguments = null;
|
|
||||||
userInput = null;
|
|
||||||
|
|
||||||
if (activatedEventArgs.Data is not AppNotificationActivatedEventArgs appNotificationArgs)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
argument = appNotificationArgs.Argument;
|
|
||||||
arguments = appNotificationArgs.Arguments;
|
|
||||||
userInput = appNotificationArgs.UserInput;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -5,19 +5,19 @@ using Microsoft.UI.Xaml;
|
|||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle;
|
namespace Snap.Hutao.Core.LifeCycle;
|
||||||
|
|
||||||
[Injection(InjectAs.Singleton, typeof(ICurrentXamlWindowReference))]
|
[Injection(InjectAs.Singleton, typeof(ICurrentWindowReference))]
|
||||||
internal sealed class CurrentXamlWindowReference : ICurrentXamlWindowReference
|
internal sealed class CurrentWindowReference : ICurrentWindowReference
|
||||||
{
|
{
|
||||||
private readonly WeakReference<Window> reference = new(default!);
|
private readonly WeakReference<Window> reference = new(default!);
|
||||||
|
|
||||||
[SuppressMessage("", "SH007")]
|
[SuppressMessage("", "SH007")]
|
||||||
public Window? Window
|
public Window Window
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
reference.TryGetTarget(out Window? window);
|
reference.TryGetTarget(out Window? window);
|
||||||
return window!;
|
return window!;
|
||||||
}
|
}
|
||||||
set => reference.SetTarget(value!);
|
set => reference.SetTarget(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using Microsoft.UI.Xaml;
|
||||||
|
using Snap.Hutao.Core.Windowing;
|
||||||
|
using Snap.Hutao.Win32.Foundation;
|
||||||
|
using WinRT.Interop;
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.LifeCycle;
|
||||||
|
|
||||||
|
internal static class CurrentWindowReferenceExtension
|
||||||
|
{
|
||||||
|
public static XamlRoot GetXamlRoot(this ICurrentWindowReference reference)
|
||||||
|
{
|
||||||
|
return reference.Window.Content.XamlRoot;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static HWND GetWindowHandle(this ICurrentWindowReference reference)
|
||||||
|
{
|
||||||
|
return reference.Window is IWindowOptionsSource optionsSource
|
||||||
|
? optionsSource.WindowOptions.Hwnd
|
||||||
|
: WindowNative.GetWindowHandle(reference.Window);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
using Microsoft.UI.Xaml;
|
|
||||||
using Snap.Hutao.Core.Windowing;
|
|
||||||
using Snap.Hutao.Win32.Foundation;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle;
|
|
||||||
|
|
||||||
internal static class CurrentXamlWindowReferenceExtension
|
|
||||||
{
|
|
||||||
public static XamlRoot GetXamlRoot(this ICurrentXamlWindowReference reference)
|
|
||||||
{
|
|
||||||
ArgumentNullException.ThrowIfNull(reference.Window);
|
|
||||||
return reference.Window.Content.XamlRoot;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static HWND GetWindowHandle(this ICurrentXamlWindowReference reference)
|
|
||||||
{
|
|
||||||
return WindowExtension.GetWindowHandle(reference.Window);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -15,10 +15,6 @@ internal sealed class HutaoActivationArguments
|
|||||||
|
|
||||||
public string? LaunchActivatedArguments { get; set; }
|
public string? LaunchActivatedArguments { get; set; }
|
||||||
|
|
||||||
public IDictionary<string, string>? AppNotificationActivatedArguments { get; set; }
|
|
||||||
|
|
||||||
public IDictionary<string, string>? AppNotificationActivatedUserInput { get; set; }
|
|
||||||
|
|
||||||
public static HutaoActivationArguments FromAppActivationArguments(AppActivationArguments args, bool isRedirected = false)
|
public static HutaoActivationArguments FromAppActivationArguments(AppActivationArguments args, bool isRedirected = false)
|
||||||
{
|
{
|
||||||
HutaoActivationArguments result = new()
|
HutaoActivationArguments result = new()
|
||||||
@@ -47,19 +43,6 @@ internal sealed class HutaoActivationArguments
|
|||||||
result.ProtocolActivatedUri = uri;
|
result.ProtocolActivatedUri = uri;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
case ExtendedActivationKind.AppNotification:
|
|
||||||
{
|
|
||||||
result.Kind = HutaoActivationKind.AppNotification;
|
|
||||||
if (args.TryGetAppNotificationActivatedArguments(out string? argument, out IDictionary<string, string>? arguments, out IDictionary<string, string>? userInput))
|
|
||||||
{
|
|
||||||
result.LaunchActivatedArguments = argument;
|
|
||||||
result.AppNotificationActivatedArguments = arguments;
|
|
||||||
result.AppNotificationActivatedUserInput = userInput;
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,5 @@ internal enum HutaoActivationKind
|
|||||||
{
|
{
|
||||||
None,
|
None,
|
||||||
Launch,
|
Launch,
|
||||||
AppNotification,
|
|
||||||
Protocol,
|
Protocol,
|
||||||
}
|
}
|
||||||
14
src/Snap.Hutao/Snap.Hutao/Core/LifeCycle/IActivation.cs
Normal file
14
src/Snap.Hutao/Snap.Hutao/Core/LifeCycle/IActivation.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.LifeCycle;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 激活
|
||||||
|
/// </summary>
|
||||||
|
internal interface IActivation
|
||||||
|
{
|
||||||
|
void Activate(HutaoActivationArguments args);
|
||||||
|
|
||||||
|
void Initialize();
|
||||||
|
}
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
using Microsoft.Windows.AppNotifications;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle;
|
|
||||||
|
|
||||||
internal interface IAppActivation
|
|
||||||
{
|
|
||||||
void Activate(HutaoActivationArguments args);
|
|
||||||
|
|
||||||
void NotificationInvoked(AppNotificationManager manager, AppNotificationActivatedEventArgs args);
|
|
||||||
|
|
||||||
void PostInitialization();
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle;
|
|
||||||
|
|
||||||
internal interface IAppActivationActionHandlersAccess
|
|
||||||
{
|
|
||||||
ValueTask HandleLaunchGameActionAsync(string? uid = null);
|
|
||||||
}
|
|
||||||
@@ -5,10 +5,10 @@ using Microsoft.UI.Xaml;
|
|||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle;
|
namespace Snap.Hutao.Core.LifeCycle;
|
||||||
|
|
||||||
internal interface ICurrentXamlWindowReference
|
internal interface ICurrentWindowReference
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Only set in WindowController
|
/// Only set in WindowController
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Window? Window { get; set; }
|
public Window Window { get; set; }
|
||||||
}
|
}
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle.InterProcess.Model;
|
|
||||||
|
|
||||||
internal sealed class ElevationStatusResponse
|
|
||||||
{
|
|
||||||
public ElevationStatusResponse(bool isElevated)
|
|
||||||
{
|
|
||||||
IsElevated = isElevated;
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool IsElevated { get; set; }
|
|
||||||
}
|
|
||||||
@@ -6,9 +6,6 @@ namespace Snap.Hutao.Core.LifeCycle.InterProcess;
|
|||||||
internal enum PipePacketCommand : byte
|
internal enum PipePacketCommand : byte
|
||||||
{
|
{
|
||||||
None = 0,
|
None = 0,
|
||||||
Exit = 1,
|
|
||||||
|
|
||||||
RedirectActivation = 10,
|
RedirectActivation = 10,
|
||||||
RequestElevationStatus = 11,
|
|
||||||
ResponseElevationStatus = 12,
|
|
||||||
}
|
}
|
||||||
@@ -8,5 +8,5 @@ internal enum PipePacketType : byte
|
|||||||
None = 0,
|
None = 0,
|
||||||
Request = 1,
|
Request = 1,
|
||||||
Response = 2,
|
Response = 2,
|
||||||
SessionTermination = 3,
|
Termination = 3,
|
||||||
}
|
}
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
using Snap.Hutao.Core.ExceptionService;
|
|
||||||
using System.Buffers;
|
|
||||||
using System.IO.Hashing;
|
|
||||||
using System.IO.Pipes;
|
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle.InterProcess;
|
|
||||||
|
|
||||||
internal static class PipeStreamExtension
|
|
||||||
{
|
|
||||||
public static TData? ReadJsonContent<TData>(this PipeStream stream, ref readonly PipePacketHeader header)
|
|
||||||
{
|
|
||||||
using (IMemoryOwner<byte> memoryOwner = MemoryPool<byte>.Shared.Rent(header.ContentLength))
|
|
||||||
{
|
|
||||||
Span<byte> content = memoryOwner.Memory.Span[..header.ContentLength];
|
|
||||||
stream.ReadExactly(content);
|
|
||||||
|
|
||||||
HutaoException.ThrowIf(XxHash64.HashToUInt64(content) != header.Checksum, "PipePacket Content Hash incorrect");
|
|
||||||
return JsonSerializer.Deserialize<TData>(content);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static unsafe void ReadPacket<TData>(this PipeStream stream, out PipePacketHeader header, out TData? data)
|
|
||||||
where TData : class
|
|
||||||
{
|
|
||||||
data = default;
|
|
||||||
|
|
||||||
stream.ReadPacket(out header);
|
|
||||||
if (header.ContentType is PipePacketContentType.Json)
|
|
||||||
{
|
|
||||||
data = stream.ReadJsonContent<TData>(in header);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[SkipLocalsInit]
|
|
||||||
public static unsafe void ReadPacket(this PipeStream stream, out PipePacketHeader header)
|
|
||||||
{
|
|
||||||
fixed (PipePacketHeader* pHeader = &header)
|
|
||||||
{
|
|
||||||
stream.ReadExactly(new(pHeader, sizeof(PipePacketHeader)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static unsafe void WritePacketWithJsonContent<TData>(this PipeStream stream, byte version, PipePacketType type, PipePacketCommand command, TData data)
|
|
||||||
{
|
|
||||||
PipePacketHeader header = default;
|
|
||||||
header.Version = version;
|
|
||||||
header.Type = type;
|
|
||||||
header.Command = command;
|
|
||||||
header.ContentType = PipePacketContentType.Json;
|
|
||||||
|
|
||||||
stream.WritePacket(ref header, JsonSerializer.SerializeToUtf8Bytes(data));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static unsafe void WritePacket(this PipeStream stream, ref PipePacketHeader header, byte[] content)
|
|
||||||
{
|
|
||||||
header.ContentLength = content.Length;
|
|
||||||
header.Checksum = XxHash64.HashToUInt64(content);
|
|
||||||
|
|
||||||
stream.WritePacket(in header);
|
|
||||||
stream.Write(content);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static unsafe void WritePacket(this PipeStream stream, byte version, PipePacketType type, PipePacketCommand command)
|
|
||||||
{
|
|
||||||
PipePacketHeader header = default;
|
|
||||||
header.Version = version;
|
|
||||||
header.Type = type;
|
|
||||||
header.Command = command;
|
|
||||||
|
|
||||||
stream.WritePacket(in header);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static unsafe void WritePacket(this PipeStream stream, ref readonly PipePacketHeader header)
|
|
||||||
{
|
|
||||||
fixed (PipePacketHeader* pHeader = &header)
|
|
||||||
{
|
|
||||||
stream.Write(new(pHeader, sizeof(PipePacketHeader)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
|
||||||
// Licensed under the MIT license.
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle.InterProcess;
|
|
||||||
|
|
||||||
internal static class PrivateNamedPipe
|
|
||||||
{
|
|
||||||
public const int Version = 1;
|
|
||||||
public const string Name = "Snap.Hutao.PrivateNamedPipe";
|
|
||||||
}
|
|
||||||
@@ -2,39 +2,45 @@
|
|||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Microsoft.Windows.AppLifecycle;
|
using Microsoft.Windows.AppLifecycle;
|
||||||
using Snap.Hutao.Core.LifeCycle.InterProcess.Model;
|
using System.IO.Hashing;
|
||||||
using System.IO.Pipes;
|
using System.IO.Pipes;
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle.InterProcess;
|
namespace Snap.Hutao.Core.LifeCycle.InterProcess;
|
||||||
|
|
||||||
[Injection(InjectAs.Singleton)]
|
[Injection(InjectAs.Singleton)]
|
||||||
[ConstructorGenerated]
|
internal sealed class PrivateNamedPipeClient : IDisposable
|
||||||
internal sealed partial class PrivateNamedPipeClient : IDisposable
|
|
||||||
{
|
{
|
||||||
private readonly NamedPipeClientStream clientStream = new(".", PrivateNamedPipe.Name, PipeDirection.InOut, PipeOptions.Asynchronous | PipeOptions.WriteThrough);
|
private readonly NamedPipeClientStream clientStream = new(".", "Snap.Hutao.PrivateNamedPipe", PipeDirection.InOut, PipeOptions.Asynchronous | PipeOptions.WriteThrough);
|
||||||
private readonly RuntimeOptions runtimeOptions;
|
|
||||||
|
|
||||||
public unsafe bool TryRedirectActivationTo(AppActivationArguments args)
|
public unsafe bool TryRedirectActivationTo(AppActivationArguments args)
|
||||||
{
|
{
|
||||||
if (clientStream.TryConnectOnce())
|
if (clientStream.TryConnectOnce())
|
||||||
{
|
{
|
||||||
clientStream.WritePacket(PrivateNamedPipe.Version, PipePacketType.Request, PipePacketCommand.RequestElevationStatus);
|
|
||||||
clientStream.ReadPacket(out PipePacketHeader header, out ElevationStatusResponse? response);
|
|
||||||
ArgumentNullException.ThrowIfNull(response);
|
|
||||||
|
|
||||||
// Prefer elevated instance
|
|
||||||
if (runtimeOptions.IsElevated && !response.IsElevated)
|
|
||||||
{
|
{
|
||||||
// Notify previous instance to exit
|
PipePacketHeader redirectActivationPacket = default;
|
||||||
clientStream.WritePacket(PrivateNamedPipe.Version, PipePacketType.SessionTermination, PipePacketCommand.Exit);
|
redirectActivationPacket.Version = 1;
|
||||||
clientStream.Flush();
|
redirectActivationPacket.Type = PipePacketType.Request;
|
||||||
return false;
|
redirectActivationPacket.Command = PipePacketCommand.RedirectActivation;
|
||||||
|
redirectActivationPacket.ContentType = PipePacketContentType.Json;
|
||||||
|
|
||||||
|
HutaoActivationArguments hutaoArgs = HutaoActivationArguments.FromAppActivationArguments(args, isRedirected: true);
|
||||||
|
byte[] jsonBytes = JsonSerializer.SerializeToUtf8Bytes(hutaoArgs);
|
||||||
|
|
||||||
|
redirectActivationPacket.ContentLength = jsonBytes.Length;
|
||||||
|
redirectActivationPacket.Checksum = XxHash64.HashToUInt64(jsonBytes);
|
||||||
|
|
||||||
|
clientStream.Write(new(&redirectActivationPacket, sizeof(PipePacketHeader)));
|
||||||
|
clientStream.Write(jsonBytes);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
PipePacketHeader terminationPacket = default;
|
||||||
|
terminationPacket.Version = 1;
|
||||||
|
terminationPacket.Type = PipePacketType.Termination;
|
||||||
|
|
||||||
|
clientStream.Write(new(&terminationPacket, sizeof(PipePacketHeader)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Redirect to previous instance
|
|
||||||
HutaoActivationArguments hutaoArgs = HutaoActivationArguments.FromAppActivationArguments(args, isRedirected: true);
|
|
||||||
clientStream.WritePacketWithJsonContent(PrivateNamedPipe.Version, PipePacketType.Request, PipePacketCommand.RedirectActivation, hutaoArgs);
|
|
||||||
clientStream.WritePacket(PrivateNamedPipe.Version, PipePacketType.SessionTermination, PipePacketCommand.None);
|
|
||||||
clientStream.Flush();
|
clientStream.Flush();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,13 +16,6 @@ internal sealed partial class PrivateNamedPipeMessageDispatcher
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
serviceProvider.GetRequiredService<IAppActivation>().Activate(args);
|
serviceProvider.GetRequiredService<IActivation>().Activate(args);
|
||||||
}
|
|
||||||
|
|
||||||
public void ExitApplication()
|
|
||||||
{
|
|
||||||
ITaskContext taskContext = serviceProvider.GetRequiredService<ITaskContext>();
|
|
||||||
App app = serviceProvider.GetRequiredService<App>();
|
|
||||||
taskContext.BeginInvokeOnMainThread(app.Exit);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,52 +1,22 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Snap.Hutao.Core.LifeCycle.InterProcess.Model;
|
using Snap.Hutao.Core.ExceptionService;
|
||||||
|
using System.IO.Hashing;
|
||||||
using System.IO.Pipes;
|
using System.IO.Pipes;
|
||||||
using System.Security.AccessControl;
|
|
||||||
using System.Security.Principal;
|
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.LifeCycle.InterProcess;
|
namespace Snap.Hutao.Core.LifeCycle.InterProcess;
|
||||||
|
|
||||||
[Injection(InjectAs.Singleton)]
|
[Injection(InjectAs.Singleton)]
|
||||||
|
[ConstructorGenerated]
|
||||||
internal sealed partial class PrivateNamedPipeServer : IDisposable
|
internal sealed partial class PrivateNamedPipeServer : IDisposable
|
||||||
{
|
{
|
||||||
private readonly PrivateNamedPipeMessageDispatcher messageDispatcher;
|
private readonly PrivateNamedPipeMessageDispatcher messageDispatcher;
|
||||||
private readonly RuntimeOptions runtimeOptions;
|
|
||||||
private readonly ILogger<PrivateNamedPipeServer> logger;
|
|
||||||
|
|
||||||
|
private readonly NamedPipeServerStream serverStream = new("Snap.Hutao.PrivateNamedPipe", PipeDirection.InOut, NamedPipeServerStream.MaxAllowedServerInstances, PipeTransmissionMode.Byte, PipeOptions.Asynchronous | PipeOptions.WriteThrough);
|
||||||
private readonly CancellationTokenSource serverTokenSource = new();
|
private readonly CancellationTokenSource serverTokenSource = new();
|
||||||
private readonly SemaphoreSlim serverSemaphore = new(1);
|
private readonly SemaphoreSlim serverSemaphore = new(1);
|
||||||
|
|
||||||
private readonly NamedPipeServerStream serverStream;
|
|
||||||
|
|
||||||
public PrivateNamedPipeServer(IServiceProvider serviceProvider)
|
|
||||||
{
|
|
||||||
messageDispatcher = serviceProvider.GetRequiredService<PrivateNamedPipeMessageDispatcher>();
|
|
||||||
runtimeOptions = serviceProvider.GetRequiredService<RuntimeOptions>();
|
|
||||||
logger = serviceProvider.GetRequiredService<ILogger<PrivateNamedPipeServer>>();
|
|
||||||
|
|
||||||
PipeSecurity? pipeSecurity = default;
|
|
||||||
|
|
||||||
if (runtimeOptions.IsElevated)
|
|
||||||
{
|
|
||||||
SecurityIdentifier everyOne = new(WellKnownSidType.WorldSid, null);
|
|
||||||
|
|
||||||
pipeSecurity = new();
|
|
||||||
pipeSecurity.AddAccessRule(new PipeAccessRule(everyOne, PipeAccessRights.FullControl, AccessControlType.Allow));
|
|
||||||
}
|
|
||||||
|
|
||||||
serverStream = NamedPipeServerStreamAcl.Create(
|
|
||||||
PrivateNamedPipe.Name,
|
|
||||||
PipeDirection.InOut,
|
|
||||||
NamedPipeServerStream.MaxAllowedServerInstances,
|
|
||||||
PipeTransmissionMode.Byte,
|
|
||||||
PipeOptions.Asynchronous | PipeOptions.WriteThrough,
|
|
||||||
0,
|
|
||||||
0,
|
|
||||||
pipeSecurity);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
serverTokenSource.Cancel();
|
serverTokenSource.Cancel();
|
||||||
@@ -66,7 +36,6 @@ internal sealed partial class PrivateNamedPipeServer : IDisposable
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
await serverStream.WaitForConnectionAsync(serverTokenSource.Token).ConfigureAwait(false);
|
await serverStream.WaitForConnectionAsync(serverTokenSource.Token).ConfigureAwait(false);
|
||||||
logger.LogInformation("Pipe session created");
|
|
||||||
RunPacketSession(serverStream, serverTokenSource.Token);
|
RunPacketSession(serverStream, serverTokenSource.Token);
|
||||||
}
|
}
|
||||||
catch (OperationCanceledException)
|
catch (OperationCanceledException)
|
||||||
@@ -76,36 +45,36 @@ internal sealed partial class PrivateNamedPipeServer : IDisposable
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static unsafe byte[] GetValidatedContent(NamedPipeServerStream serverStream, PipePacketHeader* header)
|
||||||
|
{
|
||||||
|
byte[] content = new byte[header->ContentLength];
|
||||||
|
serverStream.ReadAtLeast(content, header->ContentLength, false);
|
||||||
|
HutaoException.ThrowIf(XxHash64.HashToUInt64(content) != header->Checksum, "PipePacket Content Hash incorrect");
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
private unsafe void RunPacketSession(NamedPipeServerStream serverStream, CancellationToken token)
|
private unsafe void RunPacketSession(NamedPipeServerStream serverStream, CancellationToken token)
|
||||||
{
|
{
|
||||||
while (serverStream.IsConnected && !token.IsCancellationRequested)
|
Span<byte> headerSpan = stackalloc byte[sizeof(PipePacketHeader)];
|
||||||
|
bool sessionTerminated = false;
|
||||||
|
while (serverStream.IsConnected && !sessionTerminated && !token.IsCancellationRequested)
|
||||||
{
|
{
|
||||||
serverStream.ReadPacket(out PipePacketHeader header);
|
serverStream.ReadExactly(headerSpan);
|
||||||
logger.LogInformation("Pipe packet: [Type:{Type}] [Command:{Command}]", header.Type, header.Command);
|
fixed (byte* pHeader = headerSpan)
|
||||||
switch ((header.Type, header.Command))
|
|
||||||
{
|
{
|
||||||
case (PipePacketType.Request, PipePacketCommand.RequestElevationStatus):
|
PipePacketHeader* header = (PipePacketHeader*)pHeader;
|
||||||
ElevationStatusResponse resp = new(runtimeOptions.IsElevated);
|
|
||||||
serverStream.WritePacketWithJsonContent(PrivateNamedPipe.Version, PipePacketType.Response, PipePacketCommand.ResponseElevationStatus, resp);
|
|
||||||
serverStream.Flush();
|
|
||||||
break;
|
|
||||||
case (PipePacketType.Request, PipePacketCommand.RedirectActivation):
|
|
||||||
HutaoActivationArguments? hutaoArgs = serverStream.ReadJsonContent<HutaoActivationArguments>(in header);
|
|
||||||
if (hutaoArgs is not null)
|
|
||||||
{
|
|
||||||
logger.LogInformation("Redirect activation: [Kind:{Kind}] [Arguments:{Arguments}]", hutaoArgs.Kind, hutaoArgs.LaunchActivatedArguments);
|
|
||||||
}
|
|
||||||
|
|
||||||
messageDispatcher.RedirectActivation(hutaoArgs);
|
switch ((header->Type, header->Command, header->ContentType))
|
||||||
break;
|
{
|
||||||
case (PipePacketType.SessionTermination, _):
|
case (PipePacketType.Request, PipePacketCommand.RedirectActivation, PipePacketContentType.Json):
|
||||||
serverStream.Disconnect();
|
ReadOnlySpan<byte> content = GetValidatedContent(serverStream, header);
|
||||||
if (header.Command is PipePacketCommand.Exit)
|
messageDispatcher.RedirectActivation(JsonSerializer.Deserialize<HutaoActivationArguments>(content));
|
||||||
{
|
break;
|
||||||
messageDispatcher.ExitApplication();
|
case (PipePacketType.Termination, _, _):
|
||||||
}
|
serverStream.Disconnect();
|
||||||
|
sessionTerminated = true;
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,18 +10,11 @@ namespace Snap.Hutao.Core.Logging;
|
|||||||
|
|
||||||
internal sealed class ConsoleWindowLifeTime : IDisposable
|
internal sealed class ConsoleWindowLifeTime : IDisposable
|
||||||
{
|
{
|
||||||
public const bool DebugModeEnabled =
|
|
||||||
#if IS_ALPHA_BUILD
|
|
||||||
true;
|
|
||||||
#else
|
|
||||||
false;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
private readonly bool consoleWindowAllocated;
|
private readonly bool consoleWindowAllocated;
|
||||||
|
|
||||||
public ConsoleWindowLifeTime()
|
public ConsoleWindowLifeTime()
|
||||||
{
|
{
|
||||||
if (LocalSetting.Get(SettingKeys.IsAllocConsoleDebugModeEnabled, DebugModeEnabled))
|
if (LocalSetting.Get(SettingKeys.IsAllocConsoleDebugModeEnabled, false))
|
||||||
{
|
{
|
||||||
consoleWindowAllocated = AllocConsole();
|
consoleWindowAllocated = AllocConsole();
|
||||||
if (consoleWindowAllocated)
|
if (consoleWindowAllocated)
|
||||||
|
|||||||
@@ -83,10 +83,9 @@ internal static class LoggerExtension
|
|||||||
logger.LogColorized(logLevel, 0, exception, message, args);
|
logger.LogColorized(logLevel, 0, exception, message, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
[SuppressMessage("", "CA2254")]
|
|
||||||
public static void LogColorized(this ILogger logger, LogLevel logLevel, EventId eventId, Exception? exception, LogMessage message, params LogArgument[] args)
|
public static void LogColorized(this ILogger logger, LogLevel logLevel, EventId eventId, Exception? exception, LogMessage message, params LogArgument[] args)
|
||||||
{
|
{
|
||||||
string? colorizedMessage = Colorize(message, args, out object?[] outArgs);
|
string colorizedMessage = Colorize(message, args, out object?[] outArgs)!;
|
||||||
logger.Log(logLevel, eventId, exception, colorizedMessage, outArgs);
|
logger.Log(logLevel, eventId, exception, colorizedMessage, outArgs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -27,11 +27,4 @@ internal static class RuntimeOptionsExtension
|
|||||||
Directory.CreateDirectory(directory);
|
Directory.CreateDirectory(directory);
|
||||||
return directory;
|
return directory;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string GetLocalCacheImageCacheFolder(this RuntimeOptions options)
|
|
||||||
{
|
|
||||||
string directory = Path.Combine(options.LocalCache, "ImageCache");
|
|
||||||
Directory.CreateDirectory(directory);
|
|
||||||
return directory;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -12,13 +12,8 @@ internal static class SettingKeys
|
|||||||
{
|
{
|
||||||
#region MainWindow
|
#region MainWindow
|
||||||
public const string WindowRect = "WindowRect";
|
public const string WindowRect = "WindowRect";
|
||||||
public const string GuideWindowRect = "GuideWindowRect";
|
|
||||||
public const string IsNavPaneOpen = "IsNavPaneOpen";
|
public const string IsNavPaneOpen = "IsNavPaneOpen";
|
||||||
public const string IsInfoBarToggleChecked = "IsInfoBarToggleChecked";
|
public const string IsInfoBarToggleChecked = "IsInfoBarToggleChecked";
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region Infrastructure
|
|
||||||
public const string ExcludedAnnouncementIds = "ExcludedAnnouncementIds";
|
public const string ExcludedAnnouncementIds = "ExcludedAnnouncementIds";
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,14 @@
|
|||||||
|
|
||||||
namespace Snap.Hutao.Core.Shell;
|
namespace Snap.Hutao.Core.Shell;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 跳转列表交互
|
||||||
|
/// </summary>
|
||||||
internal interface IJumpListInterop
|
internal interface IJumpListInterop
|
||||||
{
|
{
|
||||||
ValueTask ClearAsync();
|
/// <summary>
|
||||||
|
/// 异步配置跳转列表
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>任务</returns>
|
||||||
|
ValueTask ConfigureAsync();
|
||||||
}
|
}
|
||||||
@@ -8,9 +8,20 @@ namespace Snap.Hutao.Core.Shell;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
internal interface IScheduleTaskInterop
|
internal interface IScheduleTaskInterop
|
||||||
{
|
{
|
||||||
|
bool IsDailyNoteRefreshEnabled();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 注册实时便笺刷新任务
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="interval">间隔(秒)</param>
|
||||||
|
/// <returns>是否注册或修改成功</returns>
|
||||||
|
bool RegisterForDailyNoteRefresh(int interval);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 卸载全部注册的任务
|
/// 卸载全部注册的任务
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>是否卸载成功</returns>
|
/// <returns>是否卸载成功</returns>
|
||||||
bool UnregisterAllTasks();
|
bool UnregisterAllTasks();
|
||||||
|
|
||||||
|
bool UnregisterForDailyNoteRefresh();
|
||||||
}
|
}
|
||||||
@@ -1,14 +1,23 @@
|
|||||||
// Copyright (c) DGP Studio. All rights reserved.
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using Snap.Hutao.Core.LifeCycle;
|
||||||
using Windows.UI.StartScreen;
|
using Windows.UI.StartScreen;
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.Shell;
|
namespace Snap.Hutao.Core.Shell;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 跳转列表交互
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
[Injection(InjectAs.Transient, typeof(IJumpListInterop))]
|
[Injection(InjectAs.Transient, typeof(IJumpListInterop))]
|
||||||
internal sealed class JumpListInterop : IJumpListInterop
|
internal sealed class JumpListInterop : IJumpListInterop
|
||||||
{
|
{
|
||||||
public async ValueTask ClearAsync()
|
/// <summary>
|
||||||
|
/// 异步配置跳转列表
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>任务</returns>
|
||||||
|
public async ValueTask ConfigureAsync()
|
||||||
{
|
{
|
||||||
if (JumpList.IsSupported())
|
if (JumpList.IsSupported())
|
||||||
{
|
{
|
||||||
@@ -16,6 +25,11 @@ internal sealed class JumpListInterop : IJumpListInterop
|
|||||||
|
|
||||||
list.Items.Clear();
|
list.Items.Clear();
|
||||||
|
|
||||||
|
JumpListItem launchGameItem = JumpListItem.CreateWithArguments(Activation.LaunchGame, SH.CoreJumpListHelperLaunchGameItemDisplayName);
|
||||||
|
launchGameItem.Logo = "ms-appx:///Resource/Navigation/LaunchGame.png".ToUri();
|
||||||
|
|
||||||
|
list.Items.Add(launchGameItem);
|
||||||
|
|
||||||
await list.SaveAsync();
|
await list.SaveAsync();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
// Licensed under the MIT license.
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
using Microsoft.Win32.TaskScheduler;
|
using Microsoft.Win32.TaskScheduler;
|
||||||
|
using System.IO;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
using Windows.Storage;
|
||||||
|
|
||||||
namespace Snap.Hutao.Core.Shell;
|
namespace Snap.Hutao.Core.Shell;
|
||||||
|
|
||||||
@@ -14,6 +16,60 @@ namespace Snap.Hutao.Core.Shell;
|
|||||||
internal sealed class ScheduleTaskInterop : IScheduleTaskInterop
|
internal sealed class ScheduleTaskInterop : IScheduleTaskInterop
|
||||||
{
|
{
|
||||||
private const string DailyNoteRefreshTaskName = "SnapHutaoDailyNoteRefreshTask";
|
private const string DailyNoteRefreshTaskName = "SnapHutaoDailyNoteRefreshTask";
|
||||||
|
private const string DailyNoteRefreshScriptName = "DailyNoteRefresh";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 注册实时便笺刷新任务
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="interval">间隔(秒)</param>
|
||||||
|
/// <returns>是否注册或修改成功</returns>
|
||||||
|
public bool RegisterForDailyNoteRefresh(int interval)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
TaskDefinition task = TaskService.Instance.NewTask();
|
||||||
|
task.RegistrationInfo.Description = SH.CoreScheduleTaskHelperDailyNoteRefreshTaskDescription;
|
||||||
|
task.Triggers.Add(new TimeTrigger() { Repetition = new(TimeSpan.FromSeconds(interval), TimeSpan.Zero), });
|
||||||
|
|
||||||
|
string scriptPath = EnsureWScriptCreated(DailyNoteRefreshScriptName, "hutao://DailyNote/Refresh");
|
||||||
|
task.Actions.Add("wscript", $@"/b ""{scriptPath}""");
|
||||||
|
|
||||||
|
TaskService.Instance.RootFolder.RegisterTaskDefinition(DailyNoteRefreshTaskName, task);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
if (WScriptExists(DailyNoteRefreshScriptName, out string fullPath))
|
||||||
|
{
|
||||||
|
File.Delete(fullPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool UnregisterForDailyNoteRefresh()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
TaskService.Instance.RootFolder.DeleteTask(DailyNoteRefreshTaskName, false);
|
||||||
|
if (WScriptExists(DailyNoteRefreshScriptName, out string fullPath))
|
||||||
|
{
|
||||||
|
File.Delete(fullPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool IsDailyNoteRefreshEnabled()
|
||||||
|
{
|
||||||
|
return TaskService.Instance.RootFolder.Tasks.Any(task => task.Name is DailyNoteRefreshTaskName);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 卸载全部注册的任务
|
/// 卸载全部注册的任务
|
||||||
@@ -35,4 +91,25 @@ internal sealed class ScheduleTaskInterop : IScheduleTaskInterop
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static string EnsureWScriptCreated(string name, string url, bool forceCreate = false)
|
||||||
|
{
|
||||||
|
if (WScriptExists(name, out string fullName) && !forceCreate)
|
||||||
|
{
|
||||||
|
return fullName;
|
||||||
|
}
|
||||||
|
|
||||||
|
string script = $"""CreateObject("WScript.Shell").Run "cmd /c start {url}", 0, False""";
|
||||||
|
File.WriteAllText(fullName, script);
|
||||||
|
|
||||||
|
return fullName;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool WScriptExists(string name, out string fullName)
|
||||||
|
{
|
||||||
|
string tempFolder = ApplicationData.Current.TemporaryFolder.Path;
|
||||||
|
fullName = Path.Combine(tempFolder, "Script", $"{name}.vbs");
|
||||||
|
Directory.CreateDirectory(Path.Combine(tempFolder, "Script"));
|
||||||
|
return File.Exists(fullName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -67,7 +67,7 @@ internal sealed partial class ShellLinkInterop : IShellLinkInterop
|
|||||||
IUnknownMarshal.Release(pPersistFile);
|
IUnknownMarshal.Release(pPersistFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
IUnknownMarshal.Release(pShellLink);
|
uint value = IUnknownMarshal.Release(pShellLink);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ internal class AsyncBarrier
|
|||||||
/// <param name="participants">The number of participants.</param>
|
/// <param name="participants">The number of participants.</param>
|
||||||
public AsyncBarrier(int participants)
|
public AsyncBarrier(int participants)
|
||||||
{
|
{
|
||||||
ArgumentOutOfRangeException.ThrowIfLessThan(participants, 1, "Participants of AsyncBarrier can not be less than 1");
|
Must.Range(participants >= 1, "Participants of AsyncBarrier can not be less than 1");
|
||||||
participantCount = participants;
|
participantCount = participants;
|
||||||
|
|
||||||
// Allocate the stack so no resizing is necessary.
|
// Allocate the stack so no resizing is necessary.
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ internal static class SemaphoreSlimExtension
|
|||||||
}
|
}
|
||||||
catch (ObjectDisposedException ex)
|
catch (ObjectDisposedException ex)
|
||||||
{
|
{
|
||||||
HutaoException.OperationCanceled(SH.CoreThreadingSemaphoreSlimDisposed, ex);
|
ThrowHelper.OperationCanceled(SH.CoreThreadingSemaphoreSlimDisposed, ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new SemaphoreSlimToken(semaphoreSlim);
|
return new SemaphoreSlimToken(semaphoreSlim);
|
||||||
@@ -29,7 +29,7 @@ internal static class SemaphoreSlimExtension
|
|||||||
}
|
}
|
||||||
catch (ObjectDisposedException ex)
|
catch (ObjectDisposedException ex)
|
||||||
{
|
{
|
||||||
HutaoException.OperationCanceled(SH.CoreThreadingSemaphoreSlimDisposed, ex);
|
ThrowHelper.OperationCanceled(SH.CoreThreadingSemaphoreSlimDisposed, ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new SemaphoreSlimToken(semaphoreSlim);
|
return new SemaphoreSlimToken(semaphoreSlim);
|
||||||
|
|||||||
@@ -5,24 +5,26 @@ using System.Diagnostics;
|
|||||||
|
|
||||||
namespace Snap.Hutao.Core.Threading;
|
namespace Snap.Hutao.Core.Threading;
|
||||||
|
|
||||||
|
internal delegate bool SpinWaitPredicate<T>(ref readonly T state);
|
||||||
|
|
||||||
internal static class SpinWaitPolyfill
|
internal static class SpinWaitPolyfill
|
||||||
{
|
{
|
||||||
public static unsafe void SpinUntil<T>(ref readonly T state, delegate*<ref readonly T, bool> condition)
|
public static unsafe void SpinUntil<T>(ref T state, delegate*<ref readonly T, bool> condition)
|
||||||
{
|
{
|
||||||
SpinWait spinner = default;
|
SpinWait spinner = default;
|
||||||
while (!condition(in state))
|
while (!condition(ref state))
|
||||||
{
|
{
|
||||||
spinner.SpinOnce();
|
spinner.SpinOnce();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[SuppressMessage("", "SH002")]
|
[SuppressMessage("", "SH002")]
|
||||||
public static unsafe bool SpinUntil<T>(ref readonly T state, delegate*<ref readonly T, bool> condition, TimeSpan timeout)
|
public static unsafe bool SpinUntil<T>(ref T state, delegate*<ref readonly T, bool> condition, TimeSpan timeout)
|
||||||
{
|
{
|
||||||
long startTime = Stopwatch.GetTimestamp();
|
long startTime = Stopwatch.GetTimestamp();
|
||||||
|
|
||||||
SpinWait spinner = default;
|
SpinWait spinner = default;
|
||||||
while (!condition(in state))
|
while (!condition(ref state))
|
||||||
{
|
{
|
||||||
spinner.SpinOnce();
|
spinner.SpinOnce();
|
||||||
|
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ internal static class TypeNameHelper
|
|||||||
|
|
||||||
if (builder is null)
|
if (builder is null)
|
||||||
{
|
{
|
||||||
if (options.NestedTypeDelimiter is not DefaultNestedTypeDelimiter)
|
if (options.NestedTypeDelimiter != DefaultNestedTypeDelimiter)
|
||||||
{
|
{
|
||||||
return name.Replace(DefaultNestedTypeDelimiter, options.NestedTypeDelimiter);
|
return name.Replace(DefaultNestedTypeDelimiter, options.NestedTypeDelimiter);
|
||||||
}
|
}
|
||||||
@@ -112,7 +112,7 @@ internal static class TypeNameHelper
|
|||||||
}
|
}
|
||||||
|
|
||||||
builder.Append(name);
|
builder.Append(name);
|
||||||
if (options.NestedTypeDelimiter is not DefaultNestedTypeDelimiter)
|
if (options.NestedTypeDelimiter != DefaultNestedTypeDelimiter)
|
||||||
{
|
{
|
||||||
builder.Replace(DefaultNestedTypeDelimiter, options.NestedTypeDelimiter, builder.Length - name.Length, name.Length);
|
builder.Replace(DefaultNestedTypeDelimiter, options.NestedTypeDelimiter, builder.Length - name.Length, name.Length);
|
||||||
}
|
}
|
||||||
|
|||||||
56
src/Snap.Hutao/Snap.Hutao/Core/Validation/Must.cs
Normal file
56
src/Snap.Hutao/Snap.Hutao/Core/Validation/Must.cs
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
// Copyright (c) DGP Studio. All rights reserved.
|
||||||
|
// Licensed under the MIT license.
|
||||||
|
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
|
namespace Snap.Hutao.Core.Validation;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 封装验证方法,简化微软验证
|
||||||
|
/// </summary>
|
||||||
|
[HighQuality]
|
||||||
|
[Obsolete("Use HutaoException instead")]
|
||||||
|
internal static class Must
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Throws an <see cref="ArgumentException"/> if a condition does not evaluate to true.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="condition">The condition to check.</param>
|
||||||
|
/// <param name="message">message</param>
|
||||||
|
/// <param name="parameterName">The name of the parameter to blame in the exception, if thrown.</param>
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static void Argument([DoesNotReturnIf(false)] bool condition, string? message, [CallerArgumentExpression(nameof(condition))] string? parameterName = null)
|
||||||
|
{
|
||||||
|
if (!condition)
|
||||||
|
{
|
||||||
|
throw new ArgumentException(message, parameterName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Throws an <see cref="ArgumentOutOfRangeException"/> if a condition does not evaluate to true.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="condition">The condition to check.</param>
|
||||||
|
/// <param name="message">message</param>
|
||||||
|
/// <param name="parameterName">The name of the parameter to blame in the exception, if thrown.</param>
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static void Range([DoesNotReturnIf(false)] bool condition, string? message, [CallerArgumentExpression(nameof(condition))] string? parameterName = null)
|
||||||
|
{
|
||||||
|
if (!condition)
|
||||||
|
{
|
||||||
|
throw new ArgumentOutOfRangeException(parameterName, message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unconditionally throws an <see cref="NotSupportedException"/>.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context">上下文</param>
|
||||||
|
/// <returns>Nothing. This method always throws.</returns>
|
||||||
|
[DoesNotReturn]
|
||||||
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
||||||
|
public static Exception NeverHappen(string? context = null)
|
||||||
|
{
|
||||||
|
throw new NotSupportedException(context);
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user