mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-21 19:14:30 +08:00
Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
10eecac19b | ||
![]() |
59241b8faa | ||
![]() |
52b3097f04 | ||
![]() |
d922296b70 | ||
![]() |
aec91da28b | ||
![]() |
013ff394be | ||
![]() |
081e07473d | ||
![]() |
d33d900592 | ||
![]() |
29365c4ef9 | ||
![]() |
17a6189089 |
@@ -0,0 +1,6 @@
|
||||
## Release 1.0
|
||||
|
||||
### New Rules
|
||||
Rule ID | Category | Severity | Notes
|
||||
--------|----------|----------|--------------------
|
||||
TG0001 | Conflict | Error | SetParametersAsyncGenerator
|
@@ -0,0 +1,32 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Import Project="$(SolutionDir)PackNuget.props" />
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
|
||||
<Version>$(SourceGeneratorVersion)</Version>
|
||||
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
|
||||
<NoPackageAnalysis>true</NoPackageAnalysis>
|
||||
<SignAssembly>false</SignAssembly>
|
||||
|
||||
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
||||
<IncludeBuildOutput>false</IncludeBuildOutput>
|
||||
<!-- 避免 DLL 被打包到 lib/ -->
|
||||
<EnableSourceGenerator>true</EnableSourceGenerator>
|
||||
<!-- 可选 -->
|
||||
|
||||
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="$(OutputPath)\$(TargetFileName)" Pack="true"
|
||||
PackagePath="analyzers/dotnet/cs" Visible="false" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<AdditionalFiles Include="AnalyzerReleases.Shipped.md" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" PrivateAssets="all" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@@ -0,0 +1,9 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||||
// 使用文档:https://thingsgateway.cn/
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
@@ -0,0 +1,534 @@
|
||||
using Microsoft.CodeAnalysis;
|
||||
using Microsoft.CodeAnalysis.CSharp;
|
||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
||||
|
||||
namespace BlazorSetParametersAsyncGenerator;
|
||||
|
||||
[Generator]
|
||||
public partial class SetParametersAsyncGenerator : ISourceGenerator
|
||||
{
|
||||
|
||||
private string m_DoNotGenerateSetParametersAsyncAttribute = """
|
||||
|
||||
using System;
|
||||
namespace BlazorSetParametersAsyncGenerator
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
|
||||
internal sealed class DoNotGenerateSetParametersAsyncAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
"""
|
||||
;
|
||||
private string m_GenerateSetParametersAsyncAttribute = """
|
||||
|
||||
using System;
|
||||
namespace BlazorSetParametersAsyncGenerator
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
|
||||
internal sealed class GenerateSetParametersAsyncAttribute : Attribute
|
||||
{
|
||||
public bool RequireExactMatch { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
"""
|
||||
;
|
||||
private string m_GlobalGenerateSetParametersAsyncAttribute = """
|
||||
|
||||
using System;
|
||||
namespace BlazorSetParametersAsyncGenerator
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)]
|
||||
internal sealed class GlobalGenerateSetParametersAsyncAttribute : Attribute
|
||||
{
|
||||
public bool Enable { get; }
|
||||
|
||||
public GlobalGenerateSetParametersAsyncAttribute(bool enable = true)
|
||||
{
|
||||
Enable = enable;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
"""
|
||||
;
|
||||
|
||||
private static readonly DiagnosticDescriptor ParameterNameConflict = new DiagnosticDescriptor(
|
||||
id: "TG0001",
|
||||
title: "Parameter name conflict",
|
||||
messageFormat: "Parameter names are case insensitive. {0} conflicts with {1}.",
|
||||
category: "Conflict",
|
||||
defaultSeverity: DiagnosticSeverity.Error,
|
||||
isEnabledByDefault: true,
|
||||
description: "Parameter names must be case insensitive to be usable in routes. Rename the parameter to not be in conflict with other parameters.");
|
||||
|
||||
public void Initialize(GeneratorInitializationContext context)
|
||||
{
|
||||
context.RegisterForPostInitialization(a =>
|
||||
{
|
||||
a.AddSource(nameof(m_DoNotGenerateSetParametersAsyncAttribute), m_DoNotGenerateSetParametersAsyncAttribute);
|
||||
a.AddSource(nameof(m_GenerateSetParametersAsyncAttribute), m_GenerateSetParametersAsyncAttribute);
|
||||
a.AddSource(nameof(m_GlobalGenerateSetParametersAsyncAttribute), m_GlobalGenerateSetParametersAsyncAttribute);
|
||||
});
|
||||
|
||||
// Register a syntax receiver that will be created for each generation pass
|
||||
context.RegisterForSyntaxNotifications(() => new SyntaxReceiver());
|
||||
}
|
||||
|
||||
public void Execute(GeneratorExecutionContext context)
|
||||
{
|
||||
// https://github.com/dotnet/AspNetCore.Docs/blob/1e199f340780f407a685695e6c4d953f173fa891/aspnetcore/blazor/webassembly-performance-best-practices.md#implement-setparametersasync-manually
|
||||
if (context.SyntaxReceiver is not SyntaxReceiver receiver)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var candidate_classes = GetCandidateClasses(receiver, context);
|
||||
|
||||
foreach (var class_symbol in candidate_classes.Distinct(SymbolEqualityComparer.Default).Cast<INamedTypeSymbol>())
|
||||
{
|
||||
GenerateSetParametersAsyncMethod(context, class_symbol);
|
||||
}
|
||||
}
|
||||
|
||||
private static void GenerateSetParametersAsyncMethod(GeneratorExecutionContext context, INamedTypeSymbol class_symbol)
|
||||
{
|
||||
var force_exact_match = class_symbol.GetAttributes().Any(a => a.NamedArguments.Any(na => na.Key == "RequireExactMatch" && na.Value.Value is bool v && v));
|
||||
var namespaceName = class_symbol.ContainingNamespace.ToDisplayString();
|
||||
var type_kind = class_symbol.TypeKind switch { TypeKind.Class => "class", TypeKind.Interface => "interface", _ => "struct" };
|
||||
var type_parameters = string.Join(", ", class_symbol.TypeArguments.Select(t => t.Name));
|
||||
type_parameters = string.IsNullOrEmpty(type_parameters) ? type_parameters : "<" + type_parameters + ">";
|
||||
context.AddCode(class_symbol.ToDisplayString() + "_override.cs", $@"
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
#pragma warning disable CA2007
|
||||
#pragma warning disable CS0162
|
||||
#pragma warning disable CS8632
|
||||
namespace {namespaceName}
|
||||
{{
|
||||
public partial class {class_symbol.Name}{type_parameters}
|
||||
{{
|
||||
private bool _initialized;
|
||||
|
||||
/// <summary>
|
||||
/// <inheritdoc/>
|
||||
/// </summary>
|
||||
public override Task SetParametersAsync(ParameterView parameters)
|
||||
{{
|
||||
Dictionary<string,object?> parameterValues = new();
|
||||
foreach (var parameter in parameters)
|
||||
{{
|
||||
if(BlazorImplementation__WriteSingleParameter(parameter.Name, parameter.Value)==false)
|
||||
{{
|
||||
// 如果没有处理参数,则添加到参数列表中
|
||||
parameterValues.Add(parameter.Name, parameter.Value);
|
||||
}}
|
||||
}}
|
||||
|
||||
if(parameterValues.Count > 0)
|
||||
{{
|
||||
parameters.SetParameterProperties(this);
|
||||
}}
|
||||
if (!_initialized)
|
||||
{{
|
||||
_initialized = true;
|
||||
|
||||
return RunInitAndSetParametersAsync();
|
||||
}}
|
||||
else
|
||||
{{
|
||||
return CallOnParametersSetAsync();
|
||||
}}
|
||||
}}
|
||||
|
||||
// We do not want the debugger to consider NavigationExceptions caught by this method as user-unhandled.
|
||||
#if NET9_0_OR_GREATER
|
||||
[System.Diagnostics.DebuggerDisableUserUnhandledExceptions]
|
||||
#endif
|
||||
private async Task RunInitAndSetParametersAsync()
|
||||
{{
|
||||
Task task;
|
||||
|
||||
try
|
||||
{{
|
||||
OnInitialized();
|
||||
task = OnInitializedAsync();
|
||||
}}
|
||||
catch (Exception ex) when (ex is not NavigationException)
|
||||
{{
|
||||
throw;
|
||||
}}
|
||||
|
||||
if (task.Status != TaskStatus.RanToCompletion && task.Status != TaskStatus.Canceled)
|
||||
{{
|
||||
// Call state has changed here so that we render after the sync part of OnInitAsync has run
|
||||
// and wait for it to finish before we continue. If no async work has been done yet, we want
|
||||
// to defer calling StateHasChanged up until the first bit of async code happens or until
|
||||
// the end. Additionally, we want to avoid calling StateHasChanged if no
|
||||
// async work is to be performed.
|
||||
StateHasChanged();
|
||||
|
||||
try
|
||||
{{
|
||||
await task;
|
||||
}}
|
||||
catch // avoiding exception filters for AOT runtime support
|
||||
{{
|
||||
// Ignore exceptions from task cancellations.
|
||||
// Awaiting a canceled task may produce either an OperationCanceledException (if produced as a consequence of
|
||||
// CancellationToken.ThrowIfCancellationRequested()) or a TaskCanceledException (produced as a consequence of awaiting Task.FromCanceled).
|
||||
// It's much easier to check the state of the Task (i.e. Task.IsCanceled) rather than catch two distinct exceptions.
|
||||
if (!task.IsCanceled)
|
||||
{{
|
||||
throw;
|
||||
}}
|
||||
}}
|
||||
|
||||
// Don't call StateHasChanged here. CallOnParametersSetAsync should handle that for us.
|
||||
}}
|
||||
|
||||
await CallOnParametersSetAsync();
|
||||
}}
|
||||
|
||||
// We do not want the debugger to consider NavigationExceptions caught by this method as user-unhandled.
|
||||
#if NET9_0_OR_GREATER
|
||||
[System.Diagnostics.DebuggerDisableUserUnhandledExceptions]
|
||||
#endif
|
||||
private Task CallOnParametersSetAsync()
|
||||
{{
|
||||
Task task;
|
||||
|
||||
try
|
||||
{{
|
||||
OnParametersSet();
|
||||
task = OnParametersSetAsync();
|
||||
}}
|
||||
catch (Exception ex) when (ex is not NavigationException)
|
||||
{{
|
||||
#if NET9_0_OR_GREATER
|
||||
System.Diagnostics.Debugger.BreakForUserUnhandledException(ex);
|
||||
#endif
|
||||
throw;
|
||||
}}
|
||||
|
||||
// If no async work is to be performed, i.e. the task has already ran to completion
|
||||
// or was canceled by the time we got to inspect it, avoid going async and re-invoking
|
||||
// StateHasChanged at the culmination of the async work.
|
||||
var shouldAwaitTask = task.Status != TaskStatus.RanToCompletion &&
|
||||
task.Status != TaskStatus.Canceled;
|
||||
|
||||
// We always call StateHasChanged here as we want to trigger a rerender after OnParametersSet and
|
||||
// the synchronous part of OnParametersSetAsync has run.
|
||||
StateHasChanged();
|
||||
|
||||
return shouldAwaitTask ?
|
||||
CallStateHasChangedOnAsyncCompletion(task) :
|
||||
Task.CompletedTask;
|
||||
}}
|
||||
|
||||
// We do not want the debugger to stop more than once per user-unhandled exception.
|
||||
#if NET9_0_OR_GREATER
|
||||
[System.Diagnostics.DebuggerDisableUserUnhandledExceptions]
|
||||
#endif
|
||||
private async Task CallStateHasChangedOnAsyncCompletion(Task task)
|
||||
{{
|
||||
try
|
||||
{{
|
||||
await task;
|
||||
}}
|
||||
catch // avoiding exception filters for AOT runtime support
|
||||
{{
|
||||
// Ignore exceptions from task cancellations, but don't bother issuing a state change.
|
||||
if (task.IsCanceled)
|
||||
{{
|
||||
return;
|
||||
}}
|
||||
|
||||
throw;
|
||||
}}
|
||||
|
||||
StateHasChanged();
|
||||
}}
|
||||
|
||||
}}
|
||||
}}
|
||||
#pragma warning restore CS8632
|
||||
#pragma warning restore CS0162
|
||||
#pragma warning restore CA2007
|
||||
");
|
||||
var bases = class_symbol.GetTypeHierarchy().Where(t => !SymbolEqualityComparer.Default.Equals(t, class_symbol));
|
||||
var members = class_symbol.GetMembers() // members of the type itself
|
||||
.Concat(bases.SelectMany(t => t.GetMembers().Where(m => m.DeclaredAccessibility != Accessibility.Private))) // plus accessible members of any base
|
||||
.Distinct(SymbolEqualityComparer.Default);
|
||||
var property_symbols = members.OfType<IPropertySymbol>();
|
||||
var writable_property_symbols = property_symbols.Where(ps =>
|
||||
!ps.IsReadOnly || ps.GetAttributes().Any(a =>
|
||||
a.AttributeClass?.Name is "CascadingParameter" or "CascadingParameterAttribute")
|
||||
);
|
||||
|
||||
var parameter_symbols = writable_property_symbols
|
||||
.Where(ps => ps.GetAttributes().Any(a => false
|
||||
|| a.AttributeClass.Name == "Parameter"
|
||||
|| a.AttributeClass.Name == "ParameterAttribute"
|
||||
|| a.AttributeClass.Name == "CascadingParameter"
|
||||
|| a.AttributeClass.Name == "CascadingParameterAttribute"
|
||||
|
||||
));
|
||||
var name_conflicts = parameter_symbols.GroupBy(ps => ps.Name.ToLowerInvariant()).Where(g => g.Count() > 1);
|
||||
foreach (var conflict in name_conflicts)
|
||||
{
|
||||
var key = conflict.Key;
|
||||
var conflicting_parameters = conflict.ToList();
|
||||
foreach (var parameter in conflicting_parameters)
|
||||
{
|
||||
var this_name = parameter.Name;
|
||||
var conflicting_name = conflicting_parameters.Select(p => p.Name).FirstOrDefault(n => n != this_name);
|
||||
foreach (var location in parameter.Locations)
|
||||
{
|
||||
context.ReportDiagnostic(Diagnostic.Create(ParameterNameConflict, location, this_name, conflicting_name));
|
||||
}
|
||||
}
|
||||
}
|
||||
var all = parameter_symbols.ToList();
|
||||
var catch_all_parameter = parameter_symbols.FirstOrDefault(p =>
|
||||
{
|
||||
var parameter_attr = p.GetAttributes().FirstOrDefault(a => a.AttributeClass!.Name.StartsWith("Parameter"));
|
||||
return parameter_attr?.NamedArguments.Any(n => n.Key == "CaptureUnmatchedValues" && n.Value.Value is bool v && v) == true;
|
||||
});
|
||||
var lower_case_match_cases = parameter_symbols.Except(new[] { catch_all_parameter }).Select(p => $"case \"{p.Name.ToLowerInvariant()}\": this.{p.Name} = ({p.Type.ToDisplayString()}) value; break;");
|
||||
var lower_case_match_default = catch_all_parameter == null ? @"default: {return false;}" : $@"
|
||||
default:
|
||||
{{
|
||||
this.{catch_all_parameter.Name} ??= new System.Collections.Generic.Dictionary<string, object>();
|
||||
var writable_dict = this.{catch_all_parameter.Name};
|
||||
if (!writable_dict.TryAdd(name, value))
|
||||
{{
|
||||
writable_dict[name] = value;
|
||||
}}
|
||||
break;
|
||||
}}";
|
||||
|
||||
var exact_match_cases = parameter_symbols.Except(new[] { catch_all_parameter }).Select(p => $"case \"{p!.Name}\": this.{p.Name} = ({p.Type.ToDisplayString()}) value; break;");
|
||||
string exact_match_default;
|
||||
if (force_exact_match)
|
||||
{
|
||||
if (catch_all_parameter == null) // exact matches are forced, and we do not have a catch-all parameter, therefore we need to throw on unmatched parameter
|
||||
{
|
||||
exact_match_default = @"default: { return false;";
|
||||
}
|
||||
else // exact matches are forced, and we DO have a catch-all parameter, therefore we simply add that unmatched parameter to the dictionary
|
||||
{
|
||||
exact_match_default = $@"
|
||||
default:
|
||||
{{
|
||||
this.{catch_all_parameter.Name} ??= new System.Collections.Generic.Dictionary<string, object>();
|
||||
var writable_dict = this.{catch_all_parameter.Name};
|
||||
if (!writable_dict.TryAdd(name, value))
|
||||
{{
|
||||
writable_dict[name] = value;
|
||||
}}
|
||||
break;
|
||||
}}";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// exact matches are not forced, so if there is no exact match, we fall back to compare it in lower case
|
||||
exact_match_default = $@"
|
||||
default:
|
||||
{{
|
||||
switch (name.ToLowerInvariant())
|
||||
{{
|
||||
{string.Join("\n", lower_case_match_cases)}
|
||||
{lower_case_match_default}
|
||||
}}
|
||||
break;
|
||||
}}
|
||||
";
|
||||
}
|
||||
context.AddCode(class_symbol.ToDisplayString() + "_implementation.cs", $@"
|
||||
using System;
|
||||
|
||||
#pragma warning disable CS0162
|
||||
#pragma warning disable CS0618
|
||||
#pragma warning disable CS8632
|
||||
namespace {namespaceName}
|
||||
{{
|
||||
public partial class {class_symbol.Name}{type_parameters}
|
||||
{{
|
||||
|
||||
private bool BlazorImplementation__WriteSingleParameter(string name, object value)
|
||||
{{
|
||||
if(name != ""Body"")
|
||||
{{
|
||||
|
||||
switch (name)
|
||||
{{
|
||||
{string.Join("\n", exact_match_cases)}
|
||||
{exact_match_default}
|
||||
}}
|
||||
return true;
|
||||
}}
|
||||
return false;
|
||||
}}
|
||||
}}
|
||||
}}
|
||||
#pragma warning restore CS8632
|
||||
#pragma warning restore CS0618
|
||||
#pragma warning restore CS0162");
|
||||
}
|
||||
|
||||
private static bool HasUserDefinedSetParametersAsync(INamedTypeSymbol classSymbol)
|
||||
{
|
||||
return classSymbol
|
||||
.GetMembers("SetParametersAsync")
|
||||
.OfType<IMethodSymbol>()
|
||||
.Any(m =>
|
||||
m.Parameters.Length == 1 &&
|
||||
m.Parameters[0].Type.ToDisplayString() == "Microsoft.AspNetCore.Components.ParameterView" &&
|
||||
m.DeclaredAccessibility == Accessibility.Public &&
|
||||
!m.IsStatic);
|
||||
}
|
||||
|
||||
|
||||
private static bool IsPartial(INamedTypeSymbol symbol)
|
||||
{
|
||||
return symbol.DeclaringSyntaxReferences
|
||||
.Select(r => r.GetSyntax())
|
||||
.OfType<ClassDeclarationSyntax>()
|
||||
.Any(c => c.Modifiers.Any(m => m.IsKind(SyntaxKind.PartialKeyword)));
|
||||
}
|
||||
private static bool IsComponent(ClassDeclarationSyntax classDeclarationSyntax, INamedTypeSymbol symbol, Compilation compilation)
|
||||
{
|
||||
if (HasUserDefinedSetParametersAsync(symbol))
|
||||
{
|
||||
// 用户自己写了方法,不生成
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!IsPartial(symbol))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
if (classDeclarationSyntax.SyntaxTree.FilePath.EndsWith(".razor") || classDeclarationSyntax.SyntaxTree.FilePath.EndsWith(".razor.cs"))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
var iComponent = compilation.GetTypeByMetadataName("Microsoft.AspNetCore.Components.IComponent");
|
||||
var componentBase = compilation.GetTypeByMetadataName("Microsoft.AspNetCore.Components.ComponentBase");
|
||||
if (iComponent == null || componentBase == null)
|
||||
return false;
|
||||
|
||||
if (SymbolEqualityComparer.Default.Equals(symbol, iComponent))
|
||||
return true;
|
||||
if (SymbolEqualityComparer.Default.Equals(symbol, componentBase))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enumerate methods with at least one Group attribute
|
||||
/// </summary>
|
||||
private static IEnumerable<INamedTypeSymbol> GetCandidateClasses(SyntaxReceiver receiver, GeneratorExecutionContext context)
|
||||
{
|
||||
var compilation = context.Compilation;
|
||||
var positiveAttributeSymbol = compilation.GetTypeByMetadataName("BlazorSetParametersAsyncGenerator.GenerateSetParametersAsyncAttribute");
|
||||
var negativeAttributeSymbol = compilation.GetTypeByMetadataName("BlazorSetParametersAsyncGenerator.DoNotGenerateSetParametersAsyncAttribute");
|
||||
|
||||
// loop over the candidate methods, and keep the ones that are actually annotated
|
||||
|
||||
// 找特性
|
||||
var assemblyAttributes = compilation.Assembly.GetAttributes();
|
||||
|
||||
var enableAttr = assemblyAttributes.FirstOrDefault(attr =>
|
||||
attr.AttributeClass?.ToDisplayString() == "BlazorSetParametersAsyncGenerator.GlobalGenerateSetParametersAsyncAttribute");
|
||||
|
||||
var globalEnable = false;
|
||||
if (enableAttr != null)
|
||||
{
|
||||
var arg = enableAttr.ConstructorArguments.FirstOrDefault();
|
||||
if (arg.Value is bool b)
|
||||
globalEnable = b;
|
||||
}
|
||||
|
||||
foreach (ClassDeclarationSyntax class_declaration in receiver.CandidateClasses)
|
||||
{
|
||||
var model = compilation.GetSemanticModel(class_declaration.SyntaxTree);
|
||||
var class_symbol = model.GetDeclaredSymbol(class_declaration);
|
||||
if (class_symbol is null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (class_symbol.Name == "_Imports")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// 是否拒绝生成
|
||||
var hasNegative = class_symbol.GetAttributes().Any(ad =>
|
||||
ad.AttributeClass?.Equals(negativeAttributeSymbol, SymbolEqualityComparer.Default) == true);
|
||||
|
||||
if (hasNegative)
|
||||
continue;
|
||||
|
||||
|
||||
if (IsComponent(class_declaration, class_symbol, compilation))
|
||||
{
|
||||
if (globalEnable)
|
||||
{
|
||||
yield return class_symbol;
|
||||
}
|
||||
else
|
||||
{
|
||||
// 必须显式标注 Positive Attribute
|
||||
var hasPositive = class_symbol.GetAttributes().Any(ad =>
|
||||
ad.AttributeClass?.Equals(positiveAttributeSymbol, SymbolEqualityComparer.Default) == true);
|
||||
|
||||
if (hasPositive)
|
||||
yield return class_symbol;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Created on demand before each generation pass
|
||||
/// </summary>
|
||||
internal class SyntaxReceiver : ISyntaxReceiver
|
||||
{
|
||||
public List<ClassDeclarationSyntax> CandidateClasses { get; } = new List<ClassDeclarationSyntax>();
|
||||
|
||||
/// <summary>
|
||||
/// Called for every syntax node in the compilation, we can inspect the nodes and save any information useful for generation
|
||||
/// </summary>
|
||||
public void OnVisitSyntaxNode(SyntaxNode syntax_node)
|
||||
{
|
||||
// any class with at least one attribute is a candidate for property generation
|
||||
if (syntax_node is ClassDeclarationSyntax classDeclarationSyntax)
|
||||
{
|
||||
CandidateClasses.Add(classDeclarationSyntax);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,15 @@
|
||||
using Microsoft.CodeAnalysis;
|
||||
using Microsoft.CodeAnalysis.Text;
|
||||
|
||||
using System.Text;
|
||||
|
||||
namespace BlazorSetParametersAsyncGenerator
|
||||
{
|
||||
internal static class SourceGeneratorContextExtension
|
||||
{
|
||||
public static void AddCode(this GeneratorExecutionContext context, string hint_name, string code)
|
||||
{
|
||||
context.AddSource(hint_name.Replace("<", "_").Replace(">", "_"), SourceText.From(code, Encoding.UTF8));
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,13 @@
|
||||
using Microsoft.CodeAnalysis;
|
||||
using Microsoft.CodeAnalysis.CSharp;
|
||||
|
||||
namespace BlazorSetParametersAsyncGenerator
|
||||
{
|
||||
internal static class StringExtension
|
||||
{
|
||||
public static string NormalizeWhitespace(this string code)
|
||||
{
|
||||
return CSharpSyntaxTree.ParseText(code).GetRoot().NormalizeWhitespace().ToFullString();
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,19 @@
|
||||
using Microsoft.CodeAnalysis;
|
||||
|
||||
namespace BlazorSetParametersAsyncGenerator
|
||||
{
|
||||
public static class TypeSymbolExtension
|
||||
{
|
||||
public static IEnumerable<INamedTypeSymbol> GetTypeHierarchy(this INamedTypeSymbol symbol)
|
||||
{
|
||||
yield return symbol;
|
||||
if (symbol.BaseType != null)
|
||||
{
|
||||
foreach (var type in GetTypeHierarchy(symbol.BaseType))
|
||||
{
|
||||
yield return type;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,49 @@
|
||||
param($installPath, $toolsPath, $package, $project)
|
||||
|
||||
$analyzersPaths = Join-Path (Join-Path (Split-Path -Path $toolsPath -Parent) "analyzers" ) * -Resolve
|
||||
|
||||
foreach($analyzersPath in $analyzersPaths)
|
||||
{
|
||||
# Install the language agnostic analyzers.
|
||||
if (Test-Path $analyzersPath)
|
||||
{
|
||||
foreach ($analyzerFilePath in Get-ChildItem $analyzersPath -Filter *.dll)
|
||||
{
|
||||
if($project.Object.AnalyzerReferences)
|
||||
{
|
||||
$project.Object.AnalyzerReferences.Add($analyzerFilePath.FullName)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# $project.Type gives the language name like (C# or VB.NET)
|
||||
$languageFolder = ""
|
||||
if($project.Type -eq "C#")
|
||||
{
|
||||
$languageFolder = "cs"
|
||||
}
|
||||
if($project.Type -eq "VB.NET")
|
||||
{
|
||||
$languageFolder = "vb"
|
||||
}
|
||||
if($languageFolder -eq "")
|
||||
{
|
||||
return
|
||||
}
|
||||
|
||||
foreach($analyzersPath in $analyzersPaths)
|
||||
{
|
||||
# Install language specific analyzers.
|
||||
$languageAnalyzersPath = join-path $analyzersPath $languageFolder
|
||||
if (Test-Path $languageAnalyzersPath)
|
||||
{
|
||||
foreach ($analyzerFilePath in Get-ChildItem $languageAnalyzersPath -Filter *.dll)
|
||||
{
|
||||
if($project.Object.AnalyzerReferences)
|
||||
{
|
||||
$project.Object.AnalyzerReferences.Add($analyzerFilePath.FullName)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,56 @@
|
||||
param($installPath, $toolsPath, $package, $project)
|
||||
|
||||
$analyzersPaths = Join-Path (Join-Path (Split-Path -Path $toolsPath -Parent) "analyzers" ) * -Resolve
|
||||
|
||||
foreach($analyzersPath in $analyzersPaths)
|
||||
{
|
||||
# Uninstall the language agnostic analyzers.
|
||||
if (Test-Path $analyzersPath)
|
||||
{
|
||||
foreach ($analyzerFilePath in Get-ChildItem $analyzersPath -Filter *.dll)
|
||||
{
|
||||
if($project.Object.AnalyzerReferences)
|
||||
{
|
||||
$project.Object.AnalyzerReferences.Remove($analyzerFilePath.FullName)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# $project.Type gives the language name like (C# or VB.NET)
|
||||
$languageFolder = ""
|
||||
if($project.Type -eq "C#")
|
||||
{
|
||||
$languageFolder = "cs"
|
||||
}
|
||||
if($project.Type -eq "VB.NET")
|
||||
{
|
||||
$languageFolder = "vb"
|
||||
}
|
||||
if($languageFolder -eq "")
|
||||
{
|
||||
return
|
||||
}
|
||||
|
||||
foreach($analyzersPath in $analyzersPaths)
|
||||
{
|
||||
# Uninstall language specific analyzers.
|
||||
$languageAnalyzersPath = join-path $analyzersPath $languageFolder
|
||||
if (Test-Path $languageAnalyzersPath)
|
||||
{
|
||||
foreach ($analyzerFilePath in Get-ChildItem $languageAnalyzersPath -Filter *.dll)
|
||||
{
|
||||
if($project.Object.AnalyzerReferences)
|
||||
{
|
||||
try
|
||||
{
|
||||
$project.Object.AnalyzerReferences.Remove($analyzerFilePath.FullName)
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -91,7 +91,7 @@ public sealed class OperDescAttribute : MoAttribute
|
||||
OperDescAttribute.WriteToQueue(log);
|
||||
}
|
||||
}
|
||||
private static SqlSugarClient _db = DbContext.Db.GetConnectionScopeWithAttr<SysOperateLog>().CopyNew();
|
||||
private static SqlSugarClient _db = DbContext.GetDB<SysOperateLog>();
|
||||
/// <summary>
|
||||
/// 将日志消息写入数据库中
|
||||
/// </summary>
|
||||
|
@@ -267,7 +267,7 @@ public class RequestAuditFilter : IAsyncActionFilter, IOrderedFilter
|
||||
}
|
||||
else
|
||||
{
|
||||
logger.Log(LogLevel.Warning, $"{logData.Method}:{logData.Path}-{logData.Operation}{Environment.NewLine}{logData.Exception.ToSystemTextJsonString()}");
|
||||
logger.Log(LogLevel.Warning, $"{logData.Method}:{logData.Path}-{logData.Operation}{Environment.NewLine}{logData.Exception?.ToSystemTextJsonString()}{Environment.NewLine}{logData.Validation?.ToSystemTextJsonString()}");
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -1,40 +0,0 @@
|
||||
using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
/// <summary>OAuthOptions 配置类</summary>
|
||||
public abstract class AdminOAuthOptions : OAuthOptions
|
||||
{
|
||||
/// <summary>默认构造函数</summary>
|
||||
protected AdminOAuthOptions()
|
||||
{
|
||||
ConfigureClaims();
|
||||
this.Events.OnRemoteFailure = context =>
|
||||
{
|
||||
var redirectUri = string.IsNullOrEmpty(HomePath) ? "/" : HomePath;
|
||||
context.Response.Redirect(redirectUri);
|
||||
context.HandleResponse();
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// <summary>配置 Claims 映射</summary>
|
||||
protected virtual void ConfigureClaims()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public virtual string GetName(JsonElement element)
|
||||
{
|
||||
JsonElement.ObjectEnumerator target = element.EnumerateObject();
|
||||
return target.TryGetValue("name");
|
||||
}
|
||||
|
||||
/// <summary>获得/设置 登陆后首页</summary>
|
||||
public string HomePath { get; set; } = "/";
|
||||
|
||||
}
|
@@ -1,12 +0,0 @@
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class GiteeOAuthUser
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Login { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public string Avatar_Url { get; set; }
|
||||
}
|
@@ -1,22 +0,0 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public static class OAuthUserExtensions
|
||||
{
|
||||
public static GiteeOAuthUser ToAuthUser(this JsonElement element)
|
||||
{
|
||||
GiteeOAuthUser authUser = new GiteeOAuthUser();
|
||||
JsonElement.ObjectEnumerator target = element.EnumerateObject();
|
||||
authUser.Id = target.TryGetValue("id");
|
||||
authUser.Login = target.TryGetValue("login");
|
||||
authUser.Name = target.TryGetValue("name");
|
||||
authUser.Avatar_Url = target.TryGetValue("avatar_url");
|
||||
return authUser;
|
||||
}
|
||||
|
||||
public static string TryGetValue(this JsonElement.ObjectEnumerator target, string propertyName)
|
||||
{
|
||||
return target.FirstOrDefault<JsonProperty>((Func<JsonProperty, bool>)(t => t.Name.Equals(propertyName, StringComparison.OrdinalIgnoreCase))).Value.ToString() ?? string.Empty;
|
||||
}
|
||||
}
|
@@ -8,5 +8,4 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
global using ThingsGateway;
|
||||
global using ThingsGateway.NewLife.Extension;
|
@@ -61,7 +61,7 @@ public class HardwareJob : IJob, IHardwareJob
|
||||
var historyHardwareInfos = MemoryCache.Get<List<HistoryHardwareInfo>>(CacheKey);
|
||||
if (historyHardwareInfos == null)
|
||||
{
|
||||
using var db = _db.CopyNew();
|
||||
using var db = DbContext.GetDB<HistoryHardwareInfo>(); ;
|
||||
historyHardwareInfos = await db.Queryable<HistoryHardwareInfo>().Where(a => a.Date > DateTime.Now.AddDays(-3)).ToListAsync().ConfigureAwait(false);
|
||||
|
||||
MemoryCache.Set(CacheKey, historyHardwareInfos);
|
||||
@@ -71,7 +71,7 @@ public class HardwareJob : IJob, IHardwareJob
|
||||
|
||||
private bool error = false;
|
||||
private DateTime hisInsertTime = default;
|
||||
private SqlSugarClient _db = DbContext.Db.GetConnectionScopeWithAttr<HistoryHardwareInfo>().CopyNew();
|
||||
private SqlSugarClient _db = DbContext.GetDB<HistoryHardwareInfo>();
|
||||
|
||||
public async Task ExecuteAsync(JobExecutingContext context, CancellationToken stoppingToken)
|
||||
{
|
||||
@@ -81,7 +81,7 @@ public class HardwareJob : IJob, IHardwareJob
|
||||
{
|
||||
if (HardwareInfo.MachineInfo == null)
|
||||
{
|
||||
await MachineInfo.RegisterAsync().ConfigureAwait(false);
|
||||
MachineInfo.Register();
|
||||
HardwareInfo.MachineInfo = MachineInfo.Current;
|
||||
|
||||
string currentPath = Directory.GetCurrentDirectory();
|
||||
|
@@ -27,7 +27,7 @@ public class LogJob : IJob
|
||||
|
||||
private static async Task DeleteSysOperateLog(int daysAgo, CancellationToken stoppingToken)
|
||||
{
|
||||
using var db = DbContext.Db.GetConnectionScopeWithAttr<SysOperateLog>().CopyNew();
|
||||
using var db = DbContext.GetDB<SysOperateLog>();
|
||||
var time = DateTime.Now.AddDays(-daysAgo);
|
||||
await db.DeleteableWithAttr<SysOperateLog>().Where(u => u.OpTime < time).ExecuteCommandAsync(stoppingToken).ConfigureAwait(false); // 删除操作日志
|
||||
}
|
||||
|
@@ -143,7 +143,7 @@ public class DatabaseLoggingWriter : IDatabaseLoggingWriter
|
||||
|
||||
if (flush)
|
||||
{
|
||||
SqlSugarClient ??= DbContext.Db.GetConnectionScopeWithAttr<SysOperateLog>().CopyNew();
|
||||
SqlSugarClient ??= DbContext.GetDB<SysOperateLog>();
|
||||
await SqlSugarClient.InsertableWithAttr(_operateLogMessageQueue.ToListWithDequeue()).ExecuteCommandAsync().ConfigureAwait(false);//入库
|
||||
return true;
|
||||
}
|
||||
@@ -202,7 +202,7 @@ public class DatabaseLoggingWriter : IDatabaseLoggingWriter
|
||||
|
||||
if (flush)
|
||||
{
|
||||
SqlSugarClient ??= DbContext.Db.GetConnectionScopeWithAttr<SysOperateLog>().CopyNew();
|
||||
SqlSugarClient ??= DbContext.GetDB<SysOperateLog>();
|
||||
await SqlSugarClient.InsertableWithAttr(_operateLogMessageQueue.ToListWithDequeue()).ExecuteCommandAsync().ConfigureAwait(false);//入库
|
||||
return true;
|
||||
}
|
||||
|
@@ -1,18 +1,14 @@
|
||||
using Microsoft.AspNetCore.Authentication;
|
||||
using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.WebUtilities;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
using System.Collections.Concurrent;
|
||||
using System.Net.Http.Headers;
|
||||
using System.Security.Claims;
|
||||
using System.Text;
|
||||
using System.Text.Encodings.Web;
|
||||
using System.Text.Json;
|
||||
|
||||
using ThingsGateway.Extension;
|
||||
|
||||
@@ -50,7 +46,7 @@ public class AdminOAuthHandler<TOptions>(
|
||||
/// </summary>
|
||||
private static async Task Insertable()
|
||||
{
|
||||
var db = DbContext.Db.GetConnectionScopeWithAttr<SysOperateLog>().CopyNew();
|
||||
var db = DbContext.GetDB<SysOperateLog>();
|
||||
var appLifetime = App.RootServices!.GetService<IHostApplicationLifetime>()!;
|
||||
while (!appLifetime.ApplicationStopping.IsCancellationRequested)
|
||||
{
|
||||
@@ -80,6 +76,7 @@ public class AdminOAuthHandler<TOptions>(
|
||||
AuthenticationProperties properties,
|
||||
OAuthTokenResponse tokens)
|
||||
{
|
||||
Backchannel.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", tokens.AccessToken);
|
||||
properties.RedirectUri = Options.HomePath;
|
||||
properties.IsPersistent = true;
|
||||
var appConfig = await configService.GetAppConfigAsync().ConfigureAwait(false);
|
||||
@@ -90,7 +87,7 @@ public class AdminOAuthHandler<TOptions>(
|
||||
properties.ExpiresUtc = TimeProvider.System.GetUtcNow().AddSeconds(result);
|
||||
expire = (int)(result / 60.0);
|
||||
}
|
||||
var user = await HandleUserInfoAsync(tokens).ConfigureAwait(false);
|
||||
var user = await Options.HandleUserInfoAsync(Context, tokens).ConfigureAwait(false);
|
||||
|
||||
var loginEvent = await GetLogin(expire).ConfigureAwait(false);
|
||||
await UpdateUser(loginEvent).ConfigureAwait(false);
|
||||
@@ -148,43 +145,8 @@ public class AdminOAuthHandler<TOptions>(
|
||||
}
|
||||
|
||||
|
||||
/// <summary>处理用户信息方法</summary>
|
||||
protected virtual async Task<JsonElement> HandleUserInfoAsync(OAuthTokenResponse tokens)
|
||||
{
|
||||
var request = new HttpRequestMessage(HttpMethod.Get, BuildUserInfoUrl(tokens));
|
||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||
|
||||
var response = await Backchannel.SendAsync(request, Context.RequestAborted).ConfigureAwait(false);
|
||||
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
|
||||
if (response.IsSuccessStatusCode)
|
||||
{
|
||||
return JsonDocument.Parse(content).RootElement;
|
||||
}
|
||||
|
||||
throw new OAuthTokenException($"OAuth user info endpoint failure: {await Display(response).ConfigureAwait(false)}");
|
||||
}
|
||||
|
||||
/// <summary>生成用户信息请求地址方法</summary>
|
||||
protected virtual string BuildUserInfoUrl(OAuthTokenResponse tokens)
|
||||
{
|
||||
return QueryHelpers.AddQueryString(Options.UserInformationEndpoint, new Dictionary<string, string>
|
||||
{
|
||||
{ "access_token", tokens.AccessToken }
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>生成错误信息方法</summary>
|
||||
protected static async Task<string> Display(HttpResponseMessage response)
|
||||
{
|
||||
var output = new StringBuilder();
|
||||
output.Append($"Status: {response.StatusCode}; ");
|
||||
output.Append($"Headers: {response.Headers}; ");
|
||||
output.Append($"Body: {await response.Content.ReadAsStringAsync().ConfigureAwait(false)};");
|
||||
|
||||
return output.ToString();
|
||||
}
|
||||
|
||||
private async Task<LoginEvent> GetLogin(int expire)
|
||||
{
|
||||
@@ -247,7 +209,7 @@ public class AdminOAuthHandler<TOptions>(
|
||||
|
||||
#endregion 重新赋值属性,设置本次登录信息为最新的信息
|
||||
|
||||
using var db = DbContext.Db.GetConnectionScopeWithAttr<SysUser>().CopyNew();
|
||||
using var db = DbContext.GetDB<SysUser>();
|
||||
//更新用户登录信息
|
||||
if (await db.Updateable(sysUser).UpdateColumns(it => new
|
||||
{
|
@@ -0,0 +1,87 @@
|
||||
using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.WebUtilities;
|
||||
|
||||
using System.Net.Http.Headers;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
/// <summary>OAuthOptions 配置类</summary>
|
||||
public abstract class AdminOAuthOptions : OAuthOptions
|
||||
{
|
||||
/// <summary>默认构造函数</summary>
|
||||
protected AdminOAuthOptions()
|
||||
{
|
||||
ConfigureClaims();
|
||||
this.Events.OnRemoteFailure = context =>
|
||||
{
|
||||
var redirectUri = string.IsNullOrEmpty(HomePath) ? "/" : HomePath;
|
||||
context.Response.Redirect(redirectUri);
|
||||
context.HandleResponse();
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
|
||||
Backchannel = new HttpClient(new HttpClientHandler
|
||||
{
|
||||
ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator
|
||||
});
|
||||
Backchannel.DefaultRequestHeaders.UserAgent.Add(
|
||||
new ProductInfoHeaderValue("ThingsGateway", "1.0"));
|
||||
}
|
||||
|
||||
/// <summary>配置 Claims 映射</summary>
|
||||
protected virtual void ConfigureClaims()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public virtual string GetName(JsonElement element)
|
||||
{
|
||||
JsonElement.ObjectEnumerator target = element.EnumerateObject();
|
||||
return target.TryGetValue("name");
|
||||
}
|
||||
|
||||
/// <summary>获得/设置 登陆后首页</summary>
|
||||
public string HomePath { get; set; } = "/";
|
||||
|
||||
|
||||
|
||||
/// <summary>处理用户信息方法</summary>
|
||||
public virtual async Task<JsonElement> HandleUserInfoAsync(HttpContext context, OAuthTokenResponse tokens)
|
||||
{
|
||||
var request = new HttpRequestMessage(HttpMethod.Get, BuildUserInfoUrl(tokens));
|
||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||
|
||||
var response = await Backchannel.SendAsync(request, context.RequestAborted).ConfigureAwait(false);
|
||||
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
|
||||
if (response.IsSuccessStatusCode)
|
||||
{
|
||||
return JsonDocument.Parse(content).RootElement;
|
||||
}
|
||||
|
||||
throw new OAuthTokenException($"OAuth user info endpoint failure: {await Display(response).ConfigureAwait(false)}");
|
||||
}
|
||||
|
||||
/// <summary>生成用户信息请求地址方法</summary>
|
||||
protected virtual string BuildUserInfoUrl(OAuthTokenResponse tokens)
|
||||
{
|
||||
return QueryHelpers.AddQueryString(UserInformationEndpoint, new Dictionary<string, string>
|
||||
{
|
||||
{ "access_token", tokens.AccessToken }
|
||||
});
|
||||
}
|
||||
/// <summary>生成错误信息方法</summary>
|
||||
protected async Task<string> Display(HttpResponseMessage response)
|
||||
{
|
||||
var output = new StringBuilder();
|
||||
output.Append($"Status: {response.StatusCode}; ");
|
||||
output.Append($"Headers: {response.Headers}; ");
|
||||
output.Append($"Body: {await response.Content.ReadAsStringAsync().ConfigureAwait(false)};");
|
||||
|
||||
return output.ToString();
|
||||
}
|
||||
}
|
@@ -3,16 +3,20 @@ using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
using Microsoft.AspNetCore.WebUtilities;
|
||||
|
||||
using System.Net.Http.Headers;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
|
||||
using ThingsGateway.NewLife.Log;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class GiteeOAuthOptions : AdminOAuthOptions
|
||||
{
|
||||
|
||||
INoticeService _noticeService;
|
||||
IVerificatInfoService _verificatInfoService;
|
||||
public GiteeOAuthOptions() : base()
|
||||
{
|
||||
_noticeService = App.GetService<INoticeService>();
|
||||
_verificatInfoService = App.GetService<IVerificatInfoService>();
|
||||
this.SignInScheme = ClaimConst.Scheme;
|
||||
this.AuthorizationEndpoint = "https://gitee.com/oauth/authorize";
|
||||
this.TokenEndpoint = "https://gitee.com/oauth/token";
|
||||
@@ -29,11 +33,14 @@ public class GiteeOAuthOptions : AdminOAuthOptions
|
||||
|
||||
Events.OnRedirectToAuthorizationEndpoint = context =>
|
||||
{
|
||||
//context.RedirectUri = context.RedirectUri.Replace("http%3A%2F%2F", "https%3A%2F%2F"); // 强制替换
|
||||
context.Response.Redirect(context.RedirectUri);
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
|
||||
Events.OnRemoteFailure = context =>
|
||||
{
|
||||
XTrace.WriteException(context.Failure);
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
}
|
||||
|
||||
/// <summary>刷新 Token 方法</summary>
|
||||
@@ -60,16 +67,7 @@ public class GiteeOAuthOptions : AdminOAuthOptions
|
||||
return OAuthTokenResponse.Failed(new OAuthTokenException($"OAuth token endpoint failure: {await Display(response).ConfigureAwait(false)}"));
|
||||
}
|
||||
|
||||
/// <summary>生成错误信息方法</summary>
|
||||
protected static async Task<string> Display(HttpResponseMessage response)
|
||||
{
|
||||
var output = new StringBuilder();
|
||||
output.Append($"Status: {response.StatusCode}; ");
|
||||
output.Append($"Headers: {response.Headers}; ");
|
||||
output.Append($"Body: {await response.Content.ReadAsStringAsync().ConfigureAwait(false)};");
|
||||
|
||||
return output.ToString();
|
||||
}
|
||||
|
||||
public override string GetName(JsonElement element)
|
||||
{
|
||||
@@ -77,7 +75,7 @@ public class GiteeOAuthOptions : AdminOAuthOptions
|
||||
return target.TryGetValue("name");
|
||||
}
|
||||
|
||||
private static async Task HandlerGiteeStarredUrl(OAuthCreatingTicketContext context, string repoFullName = "ThingsGateway/ThingsGateway")
|
||||
private async Task HandlerGiteeStarredUrl(OAuthCreatingTicketContext context, string repoFullName = "ThingsGateway/ThingsGateway")
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(context.AccessToken))
|
||||
throw new InvalidOperationException("Access token is missing.");
|
||||
@@ -89,7 +87,7 @@ public class GiteeOAuthOptions : AdminOAuthOptions
|
||||
{ "access_token", context.AccessToken }
|
||||
};
|
||||
|
||||
var request = new HttpRequestMessage(HttpMethod.Put, QueryHelpers.AddQueryString(uri, queryString))
|
||||
var request = new HttpRequestMessage(HttpMethod.Get, QueryHelpers.AddQueryString(uri, queryString))
|
||||
{
|
||||
Headers = { Accept = { new MediaTypeWithQualityHeaderValue("application/json") } }
|
||||
};
|
||||
@@ -99,7 +97,17 @@ public class GiteeOAuthOptions : AdminOAuthOptions
|
||||
if (!response.IsSuccessStatusCode)
|
||||
{
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
throw new Exception($"Failed to star repository: {response.StatusCode}, {content}");
|
||||
|
||||
var id = context.Identity.Claims.FirstOrDefault(a => a.Type == ClaimConst.VerificatId).Value;
|
||||
|
||||
var verificatInfoIds = _verificatInfoService.GetOne(id.ToLong());
|
||||
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
await Task.Delay(5000).ConfigureAwait(false);
|
||||
await _noticeService.NavigationMesage(verificatInfoIds.ClientIds, "https://gitee.com/ThingsGateway/ThingsGateway", "创作不易,如有帮助请star仓库").ConfigureAwait(false);
|
||||
});
|
||||
//throw new Exception($"Failed to star repository: {response.StatusCode}, {content}");
|
||||
}
|
||||
|
||||
|
@@ -0,0 +1,122 @@
|
||||
using Microsoft.AspNetCore.Authentication;
|
||||
using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
||||
using System.Net.Http.Headers;
|
||||
using System.Text.Json;
|
||||
|
||||
using ThingsGateway.NewLife.Log;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class GitHubOAuthOptions : AdminOAuthOptions
|
||||
{
|
||||
INoticeService _noticeService;
|
||||
IVerificatInfoService _verificatInfoService;
|
||||
public GitHubOAuthOptions() : base()
|
||||
{
|
||||
_noticeService = App.GetService<INoticeService>();
|
||||
_verificatInfoService = App.GetService<IVerificatInfoService>();
|
||||
SignInScheme = ClaimConst.Scheme;
|
||||
AuthorizationEndpoint = "https://github.com/login/oauth/authorize";
|
||||
TokenEndpoint = "https://github.com/login/oauth/access_token";
|
||||
UserInformationEndpoint = "https://api.github.com/user";
|
||||
HomePath = "/";
|
||||
CallbackPath = "/signin-github";
|
||||
|
||||
Scope.Add("read:user");
|
||||
Scope.Add("public_repo"); // 需要用于 Star 仓库
|
||||
|
||||
Events.OnCreatingTicket = async context =>
|
||||
{
|
||||
await HandleGitHubStarAsync(context).ConfigureAwait(false);
|
||||
};
|
||||
|
||||
Events.OnRedirectToAuthorizationEndpoint = context =>
|
||||
{
|
||||
context.Response.Redirect(context.RedirectUri);
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
Events.OnRemoteFailure = context =>
|
||||
{
|
||||
XTrace.WriteException(context.Failure);
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
}
|
||||
|
||||
protected override void ConfigureClaims()
|
||||
{
|
||||
ClaimActions.MapJsonKey(ClaimConst.AvatarUrl, "avatar_url");
|
||||
ClaimActions.MapJsonKey(ClaimConst.Account, "login");
|
||||
|
||||
base.ConfigureClaims();
|
||||
}
|
||||
|
||||
public override string GetName(JsonElement element)
|
||||
{
|
||||
if (element.TryGetProperty("login", out var loginProp))
|
||||
{
|
||||
return loginProp.GetString() ?? string.Empty;
|
||||
}
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
private async Task HandleGitHubStarAsync(OAuthCreatingTicketContext context, string repoFullName = "ThingsGateway/ThingsGateway")
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(context.AccessToken))
|
||||
throw new InvalidOperationException("Access token is missing.");
|
||||
|
||||
|
||||
|
||||
var request = new HttpRequestMessage(HttpMethod.Put, $"https://api.github.com/user/starred/{repoFullName}")
|
||||
{
|
||||
Headers =
|
||||
{
|
||||
Accept = { new MediaTypeWithQualityHeaderValue("application/vnd.github+json") },
|
||||
Authorization = new AuthenticationHeaderValue("Bearer", context.AccessToken),
|
||||
},
|
||||
Content = new StringContent(string.Empty) // GitHub Star 接口需要空内容
|
||||
};
|
||||
request.Headers.UserAgent.Add(new ProductInfoHeaderValue("ThingsGateway", "1.0")); // GitHub API 要求 User-Agent
|
||||
|
||||
var response = await context.Backchannel.SendAsync(request, context.HttpContext.RequestAborted).ConfigureAwait(false);
|
||||
|
||||
if (!response.IsSuccessStatusCode)
|
||||
{
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
|
||||
var id = context.Identity.Claims.FirstOrDefault(a => a.Type == ClaimConst.VerificatId).Value;
|
||||
|
||||
var verificatInfoIds = _verificatInfoService.GetOne(id.ToLong());
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
await Task.Delay(5000).ConfigureAwait(false);
|
||||
await _noticeService.NavigationMesage(verificatInfoIds.ClientIds, "https://github.com/ThingsGateway/ThingsGateway", "创作不易,如有帮助请star仓库").ConfigureAwait(false);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>处理用户信息方法</summary>
|
||||
public override async Task<JsonElement> HandleUserInfoAsync(HttpContext context, OAuthTokenResponse tokens)
|
||||
{
|
||||
|
||||
var request = new HttpRequestMessage(HttpMethod.Get, UserInformationEndpoint);
|
||||
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", tokens.AccessToken);
|
||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/vnd.github+json"));
|
||||
request.Headers.UserAgent.Add(new ProductInfoHeaderValue("ThingsGateway", "1.0")); // GitHub API 要求 User-Agent
|
||||
var response = await Backchannel.SendAsync(request, context.RequestAborted).ConfigureAwait(false);
|
||||
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
|
||||
if (response.IsSuccessStatusCode)
|
||||
{
|
||||
return JsonDocument.Parse(content).RootElement;
|
||||
}
|
||||
|
||||
throw new OAuthTokenException($"OAuth user info endpoint failure: {await Display(response).ConfigureAwait(false)}");
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class GithubOAuthSettings : GiteeOAuthSettings
|
||||
{
|
||||
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public static class OAuthUserExtensions
|
||||
{
|
||||
public static string TryGetValue(this JsonElement.ObjectEnumerator target, string propertyName)
|
||||
{
|
||||
return target.FirstOrDefault<JsonProperty>((Func<JsonProperty, bool>)(t => t.Name.Equals(propertyName, StringComparison.OrdinalIgnoreCase))).Value.ToString() ?? string.Empty;
|
||||
}
|
||||
}
|
@@ -18,7 +18,7 @@ public class SysRelationSeedData : ISqlSugarEntitySeedData<SysRelation>
|
||||
/// <inheritdoc/>
|
||||
public IEnumerable<SysRelation> SeedData()
|
||||
{
|
||||
using var db = DbContext.Db.GetConnectionScopeWithAttr<SysRelation>().CopyNew();
|
||||
using var db = DbContext.GetDB<SysRelation>();
|
||||
if (db.Queryable<SysRelation>().Any(a => a.ObjectId == RoleConst.SuperAdminId))
|
||||
return Enumerable.Empty<SysRelation>();
|
||||
var data = SeedDataUtil.GetSeedData<SysRelation>(PathExtensions.CombinePathWithOs("SeedData", "Admin", "seed_sys_relation.json"));
|
||||
|
@@ -324,7 +324,7 @@ public class AuthService : IAuthService
|
||||
|
||||
#endregion 重新赋值属性,设置本次登录信息为最新的信息
|
||||
|
||||
using var db = DbContext.Db.GetConnectionScopeWithAttr<SysUser>().CopyNew();
|
||||
using var db = DbContext.GetDB<SysUser>();
|
||||
//更新用户登录信息
|
||||
if (await db.Updateable(sysUser).UpdateColumns(it => new
|
||||
{
|
||||
|
@@ -78,7 +78,7 @@ public class Startup : AppStartup
|
||||
//遍历配置
|
||||
DbContext.DbConfigs?.ForEach(it =>
|
||||
{
|
||||
var connection = DbContext.Db.GetConnection(it.ConfigId);//获取数据库连接对象
|
||||
var connection = DbContext.GetDB().GetConnection(it.ConfigId);//获取数据库连接对象
|
||||
if (it.InitDatabase == true)
|
||||
connection.DbMaintenance.CreateDatabase();//创建数据库,如果存在则不创建
|
||||
});
|
||||
|
@@ -46,7 +46,6 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ThingsGateway.Razor\ThingsGateway.Razor.csproj" />
|
||||
<ProjectReference Include="..\ThingsGateway.DB\ThingsGateway.DB.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
@@ -40,7 +40,7 @@ public static class ClearTokenUtil
|
||||
public static async Task DeleteUserTokenByOrgIds(HashSet<long> orgIds)
|
||||
{
|
||||
// 获取用户ID列表
|
||||
var userIds = await DbContext.Db.CopyNew().QueryableWithAttr<SysUser>().Where(it => orgIds.Contains(it.OrgId)).Select(it => it.Id).ToListAsync().ConfigureAwait(false);
|
||||
var userIds = await DbContext.GetDB<SysUser>().Queryable<SysUser>().Where(it => orgIds.Contains(it.OrgId)).Select(it => it.Id).ToListAsync().ConfigureAwait(false);
|
||||
//从redis中删除所属机构的用户token
|
||||
App.CacheService.HashDel<VerificatInfo>(CacheConst.Cache_Token, userIds.Select(it => it.ToString()).ToArray());
|
||||
}
|
||||
|
@@ -5,6 +5,9 @@
|
||||
@<div>
|
||||
<span class="mx-3">@item.ConfirmMessage</span>
|
||||
|
||||
<Button Text=@Localizers["Jump"] Color="Color.Link" OnClick="()=>NavigationManager.NavigateTo(item.Uri)"></Button>
|
||||
<a href=@item.Uri target="_blank">
|
||||
@item.Uri
|
||||
</a>
|
||||
|
||||
</div>;
|
||||
}
|
||||
|
@@ -156,7 +156,7 @@ public class BlazorAppContext
|
||||
CurrentUser = (await SysUserService.GetUserByIdAsync(UserManager.UserId))!;
|
||||
}
|
||||
}
|
||||
TimeTick timeTick = new("50000");
|
||||
TimeTick timeTick = new("60000");
|
||||
/// <summary>
|
||||
/// 是否拥有按钮授权
|
||||
/// </summary>
|
||||
|
@@ -19,3 +19,4 @@ global using System.Diagnostics.CodeAnalysis;
|
||||
global using ThingsGateway.Razor;
|
||||
|
||||
[assembly: SuppressMessage("Reliability", "CA2007", Justification = "<挂起>", Scope = "module")]
|
||||
[assembly: BlazorSetParametersAsyncGenerator.GlobalGenerateSetParametersAsync(true)]
|
@@ -33,7 +33,7 @@
|
||||
</PopConfirmButton>
|
||||
<PopConfirmButton Color=Color.Warning IsDisabled="SelectedRows.Count!=1||!AuthorizeButton(AdminOperConst.Edit)" Text=@OperDescLocalizer["ChangeParentResource"] Icon="fa fa-copy" OnConfirm="OnChangeParent">
|
||||
<BodyTemplate>
|
||||
<div class="min-height-500 overflow-y-auto">
|
||||
<div class="overflow-y-auto" style="height:500px">
|
||||
<TreeView Items="MenuTreeItems" IsVirtualize="true" OnTreeItemClick="a=>{ChangeParentId=a.Value.Id;return Task.CompletedTask;}" />
|
||||
</div>
|
||||
</BodyTemplate>
|
||||
|
@@ -22,12 +22,11 @@ public partial class SessionPage
|
||||
|
||||
#region 查询
|
||||
|
||||
private async Task<QueryData<SessionOutput>> OnQueryAsync(QueryPageOptions options)
|
||||
private Task<QueryData<SessionOutput>> OnQueryAsync(QueryPageOptions options)
|
||||
{
|
||||
return await Task.Run(async () =>
|
||||
return Task.Run(() =>
|
||||
{
|
||||
var data = await SessionService.PageAsync(options);
|
||||
return data;
|
||||
return SessionService.PageAsync(options);
|
||||
});
|
||||
}
|
||||
|
||||
|
@@ -17,6 +17,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
||||
<!--<UseRazorSourceGenerator>false</UseRazorSourceGenerator>-->
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Content Remove="Locales\*.json" />
|
||||
@@ -32,6 +33,12 @@
|
||||
<None Remove="$(SolutionDir)..\README.md" Pack="false" PackagePath="\" />
|
||||
<None Remove="$(SolutionDir)..\README.zh-CN.md" Pack="false" PackagePath="\" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\BlazorSetParametersAsyncGenerator\BlazorSetParametersAsyncGenerator.csproj" PrivateAssets="all" OutputItemType="Analyzer" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
|
||||
|
@@ -16,6 +16,7 @@
|
||||
|
||||
<!--动态适用GC-->
|
||||
<GarbageCollectionAdaptationMode>1</GarbageCollectionAdaptationMode>
|
||||
<CETCompat>false</CETCompat>
|
||||
<!--使用自托管线程池-->
|
||||
<!--<UseWindowsThreadPool>false</UseWindowsThreadPool> -->
|
||||
|
||||
|
@@ -41,19 +41,19 @@ public abstract class PrimaryKeyEntity : PrimaryIdEntity
|
||||
[SugarColumn(ColumnDescription = "扩展信息", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
||||
[IgnoreExcel]
|
||||
[AutoGenerateColumn(Ignore = true)]
|
||||
public virtual string? ExtJson { get; set; }
|
||||
public virtual string ExtJson { get; set; }
|
||||
}
|
||||
|
||||
public interface IBaseEntity
|
||||
{
|
||||
DateTime? CreateTime { get; set; }
|
||||
string? CreateUser { get; set; }
|
||||
DateTime CreateTime { get; set; }
|
||||
string CreateUser { get; set; }
|
||||
long CreateUserId { get; set; }
|
||||
bool IsDelete { get; set; }
|
||||
int? SortCode { get; set; }
|
||||
DateTime? UpdateTime { get; set; }
|
||||
string? UpdateUser { get; set; }
|
||||
long? UpdateUserId { get; set; }
|
||||
int SortCode { get; set; }
|
||||
DateTime UpdateTime { get; set; }
|
||||
string UpdateUser { get; set; }
|
||||
long UpdateUserId { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -61,13 +61,22 @@ public interface IBaseEntity
|
||||
/// </summary>
|
||||
public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
{
|
||||
private long createUserId;
|
||||
private long updateUserId;
|
||||
private DateTime createTime;
|
||||
private DateTime updateTime;
|
||||
private int sortCode;
|
||||
private bool isDelete = false;
|
||||
private string createUser;
|
||||
private string updateUser;
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnDescription = "创建时间", IsOnlyIgnoreUpdate = true, IsNullable = true)]
|
||||
[IgnoreExcel]
|
||||
[AutoGenerateColumn(Visible = false, IsVisibleWhenAdd = false, IsVisibleWhenEdit = false)]
|
||||
public virtual DateTime? CreateTime { get; set; }
|
||||
public virtual DateTime CreateTime { get => createTime; set => createTime = value; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
@@ -76,7 +85,7 @@ public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
[IgnoreExcel]
|
||||
[NotNull]
|
||||
[AutoGenerateColumn(Ignore = true)]
|
||||
public virtual string? CreateUser { get; set; }
|
||||
public virtual string CreateUser { get => createUser; set => createUser = value; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建者Id
|
||||
@@ -84,7 +93,7 @@ public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
[SugarColumn(ColumnDescription = "创建者Id", IsOnlyIgnoreUpdate = true, IsNullable = true)]
|
||||
[IgnoreExcel]
|
||||
[AutoGenerateColumn(Ignore = true)]
|
||||
public virtual long CreateUserId { get; set; }
|
||||
public virtual long CreateUserId { get => createUserId; set => createUserId = value; }
|
||||
|
||||
/// <summary>
|
||||
/// 软删除
|
||||
@@ -92,8 +101,7 @@ public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
[SugarColumn(ColumnDescription = "软删除", IsNullable = true)]
|
||||
[IgnoreExcel]
|
||||
[AutoGenerateColumn(Ignore = true)]
|
||||
public virtual bool IsDelete { get; set; } = false;
|
||||
|
||||
public virtual bool IsDelete { get => isDelete; set => isDelete = value; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
@@ -101,7 +109,7 @@ public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
[SugarColumn(ColumnDescription = "更新时间", IsOnlyIgnoreInsert = true, IsNullable = true)]
|
||||
[IgnoreExcel]
|
||||
[AutoGenerateColumn(Visible = false, IsVisibleWhenAdd = false, IsVisibleWhenEdit = false)]
|
||||
public virtual DateTime? UpdateTime { get; set; }
|
||||
public virtual DateTime UpdateTime { get => updateTime; set => updateTime = value; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
@@ -109,7 +117,7 @@ public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
[SugarColumn(ColumnDescription = "更新人", IsOnlyIgnoreInsert = true, IsNullable = true)]
|
||||
[IgnoreExcel]
|
||||
[AutoGenerateColumn(Ignore = true)]
|
||||
public virtual string? UpdateUser { get; set; }
|
||||
public virtual string UpdateUser { get => updateUser; set => updateUser = value; }
|
||||
|
||||
/// <summary>
|
||||
/// 修改者Id
|
||||
@@ -117,7 +125,7 @@ public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
[SugarColumn(ColumnDescription = "修改者Id", IsOnlyIgnoreInsert = true, IsNullable = true)]
|
||||
[IgnoreExcel]
|
||||
[AutoGenerateColumn(Ignore = true)]
|
||||
public virtual long? UpdateUserId { get; set; }
|
||||
public virtual long UpdateUserId { get => updateUserId; set => updateUserId = value; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序码
|
||||
@@ -125,7 +133,7 @@ public abstract class BaseEntity : PrimaryKeyEntity, IBaseEntity
|
||||
[SugarColumn(ColumnDescription = "排序码", IsNullable = true)]
|
||||
[AutoGenerateColumn(Visible = false, DefaultSort = true, Sortable = true, DefaultSortOrder = SortOrder.Asc)]
|
||||
[IgnoreExcel]
|
||||
public virtual int? SortCode { get; set; }
|
||||
public virtual int SortCode { get => sortCode; set => sortCode = value; }
|
||||
}
|
||||
|
||||
public interface IBaseDataEntity
|
||||
|
@@ -161,7 +161,7 @@ public class BaseService<T> : IDataService<T>, IDisposable where T : class, new(
|
||||
/// <returns></returns>
|
||||
protected SqlSugarClient GetDB()
|
||||
{
|
||||
return DbContext.Db.GetConnectionScopeWithAttr<T>().CopyNew();
|
||||
return DbContext.GetDB<T>();
|
||||
}
|
||||
|
||||
|
||||
|
@@ -55,7 +55,7 @@ public static class CodeFirstUtils
|
||||
var entityType = seedType.GetInterfaces().First().GetGenericArguments().First();//获取实体类型
|
||||
var tenantAtt = entityType.GetCustomAttribute<TenantAttribute>();//获取sqlSugar多库特性
|
||||
if (tenantAtt == null) continue;//如果没有多库特性就下一个
|
||||
using var db = DbContext.Db.GetConnectionScope(tenantAtt.configId.ToString()).CopyNew();//获取数据库对象
|
||||
using var db = DbContext.GetDB(tenantAtt.configId.ToString());//获取数据库对象
|
||||
var config = DbContext.DbConfigs.FirstOrDefault(u => u.ConfigId.ToString() == tenantAtt.configId.ToString());//获取数据库配置
|
||||
if (config?.InitSeedData != true) continue;
|
||||
var entityInfo = db.EntityMaintenance.GetEntityInfo(entityType);
|
||||
@@ -99,7 +99,7 @@ public static class CodeFirstUtils
|
||||
var ignoreInit = entityType.GetCustomAttribute<IgnoreInitTableAttribute>();//获取忽略初始化特性
|
||||
if (ignoreInit != null) continue;//如果有忽略初始化特性
|
||||
if (tenantAtt == null) continue;//如果没有多库特性就下一个
|
||||
using var db = DbContext.Db.GetConnectionScope(tenantAtt.configId.ToString()).CopyNew();//获取数据库对象
|
||||
using var db = DbContext.GetDB(tenantAtt.configId.ToString());//获取数据库对象
|
||||
var splitTable = entityType.GetCustomAttribute<SplitTableAttribute>();//获取自动分表特性
|
||||
if (splitTable == null)//如果特性是空
|
||||
db.CodeFirst.InitTables(entityType);//普通创建
|
||||
|
@@ -24,7 +24,7 @@ public static class DbContext
|
||||
/// <summary>
|
||||
/// SqlSugar 数据库实例
|
||||
/// </summary>
|
||||
public static readonly SqlSugarScope Db;
|
||||
private static readonly SqlSugarClient Db;
|
||||
|
||||
/// <summary>
|
||||
/// 读取配置文件中的 ConnectionStrings:Sqlsugar 配置节点
|
||||
@@ -37,9 +37,28 @@ public static class DbContext
|
||||
/// <returns></returns>
|
||||
public static SqlSugarClient GetDB<T>()
|
||||
{
|
||||
return Db.GetConnectionScopeWithAttr<T>().CopyNew();
|
||||
return Db.GetConnectionWithAttr<T>().CopyNew();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取数据库连接
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static SqlSugarClient GetDB()
|
||||
{
|
||||
return Db;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取数据库连接
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static SqlSugarClient GetDB(string tenant)
|
||||
{
|
||||
return Db.GetConnection(tenant).CopyNew();//获取数据库对象
|
||||
}
|
||||
|
||||
|
||||
private static ISugarAopService sugarAopService;
|
||||
private static ISugarAopService SugarAopService
|
||||
{
|
||||
@@ -62,7 +81,7 @@ public static class DbContext
|
||||
{
|
||||
DbConfigs.ForEach(it =>
|
||||
{
|
||||
var sqlsugarScope = db.GetConnectionScope(it.ConfigId);//获取当前库
|
||||
var sqlsugarScope = db.GetConnection(it.ConfigId);//获取当前库
|
||||
MoreSetting(sqlsugarScope);//更多设置
|
||||
SugarAopService.AopSetting(sqlsugarScope, it.IsShowSql);//aop配置
|
||||
}
|
||||
@@ -75,7 +94,7 @@ public static class DbContext
|
||||
/// 实体更多配置
|
||||
/// </summary>
|
||||
/// <param name="db"></param>
|
||||
private static void MoreSetting(SqlSugarScopeProvider db)
|
||||
private static void MoreSetting(SqlSugarProvider db)
|
||||
{
|
||||
db.CurrentConnectionConfig.MoreSettings = new ConnMoreSettings
|
||||
{
|
||||
|
@@ -24,7 +24,7 @@ namespace ThingsGateway.Admin.Application;
|
||||
/// 种子数据工具类
|
||||
/// </summary>
|
||||
[ThingsGateway.DependencyInjection.SuppressSniffer]
|
||||
public static class SeedDataUtil
|
||||
public static partial class SeedDataUtil
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取List列表
|
||||
@@ -53,9 +53,7 @@ public static class SeedDataUtil
|
||||
if (!string.IsNullOrEmpty(json))//如果有内容
|
||||
{
|
||||
//字段没有数据的替换成null
|
||||
json = Regex.Replace(json, "\\\"[^\"]+?\\\": \\\"\\\"", match => match.Value.Replace("\"\"", "null"));
|
||||
|
||||
|
||||
json = SeedDataRegex().Replace(json, match => match.Value.Replace("\"\"", "null"));
|
||||
|
||||
var jtoken = JToken.Parse(json);
|
||||
jtoken = jtoken.SelectToken("Records") ?? jtoken.SelectToken("RECORDS");
|
||||
@@ -96,6 +94,9 @@ public static class SeedDataUtil
|
||||
|
||||
return seedData;
|
||||
}
|
||||
|
||||
[GeneratedRegex("\\\"[^\"]+?\\\": \\\"\\\"")]
|
||||
private static partial Regex SeedDataRegex();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@@ -22,6 +22,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!--<PackageReference Include="ThingsGateway.Razor" Version="$(SourceGeneratorVersion)" />-->
|
||||
<ProjectReference Include="..\ThingsGateway.Razor\ThingsGateway.Razor.csproj" />
|
||||
<ProjectReference Include="..\ThingsGateway.SqlSugar\ThingsGateway.SqlSugar.csproj" />
|
||||
<!--<PackageReference Include="SqlSugarCore" Version="5.1.4.195" />-->
|
||||
|
@@ -87,8 +87,8 @@ internal static class Penetrates
|
||||
// 本地静态方法
|
||||
static bool Function(Type type)
|
||||
{
|
||||
// 排除 OData 控制器
|
||||
if (type.Assembly.GetName().Name.StartsWith("Microsoft.AspNetCore.OData")) return false;
|
||||
//// 排除 OData 控制器
|
||||
//if (type.Assembly.GetName().Name.StartsWith("Microsoft.AspNetCore.OData")) return false;
|
||||
|
||||
// 不能是非公开、基元类型、值类型、抽象类、接口、泛型类
|
||||
if (!type.IsPublic || type.IsPrimitive || type.IsValueType || type.IsAbstract || type.IsInterface || type.IsGenericType) return false;
|
||||
|
@@ -37,15 +37,15 @@ public sealed class Retry
|
||||
{
|
||||
if (action == null) throw new ArgumentNullException(nameof(action));
|
||||
|
||||
InvokeAsync(async () =>
|
||||
InvokeAsync(() =>
|
||||
{
|
||||
action();
|
||||
await Task.CompletedTask.ConfigureAwait(false);
|
||||
return Task.CompletedTask;
|
||||
}, numRetries, retryTimeout, finalThrow, exceptionTypes, fallbackPolicy == null ? null
|
||||
: async (ex) =>
|
||||
: (ex) =>
|
||||
{
|
||||
fallbackPolicy?.Invoke(ex);
|
||||
await Task.CompletedTask.ConfigureAwait(false);
|
||||
return Task.CompletedTask;
|
||||
}, retryAction).GetAwaiter().GetResult();
|
||||
}
|
||||
|
||||
|
@@ -160,8 +160,8 @@ public sealed class DatabaseLoggerProvider : ILoggerProvider, ISupportExternalSc
|
||||
_databaseLoggingWriter = _serviceScope.ServiceProvider.GetRequiredService(databaseLoggingWriterType) as IDatabaseLoggingWriter;
|
||||
|
||||
// 创建长时间运行的后台任务,并将日志消息队列中数据写入存储中
|
||||
_processQueueTask = Task.Factory.StartNew(async state => await ((DatabaseLoggerProvider)state).ProcessQueueAsync().ConfigureAwait(false)
|
||||
, this, TaskCreationOptions.LongRunning);
|
||||
_processQueueTask = Task.Factory.StartNew(ProcessQueueAsync
|
||||
, TaskCreationOptions.LongRunning);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@@ -90,8 +90,7 @@ public sealed class FileLoggerProvider : ILoggerProvider, ISupportExternalScope
|
||||
_fileLoggingWriter = new FileLoggingWriter(this);
|
||||
|
||||
// 创建长时间运行的后台任务,并将日志消息队列中数据写入文件中
|
||||
_processQueueTask = Task.Factory.StartNew(async state => await ((FileLoggerProvider)state).ProcessQueueAsync().ConfigureAwait(false)
|
||||
, this, TaskCreationOptions.LongRunning);
|
||||
_processQueueTask = Task.Factory.StartNew(ProcessQueueAsync, TaskCreationOptions.LongRunning);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@@ -110,8 +110,7 @@ internal sealed partial class SchedulerFactory : ISchedulerFactory
|
||||
if (Persistence is not null)
|
||||
{
|
||||
// 创建长时间运行的后台任务,并将作业运行消息写入持久化中
|
||||
_processQueueTask = Task.Factory.StartNew(async state => await ((SchedulerFactory)state).ProcessQueueAsync().ConfigureAwait(false)
|
||||
, this, TaskCreationOptions.LongRunning);
|
||||
_processQueueTask = Task.Factory.StartNew(ProcessQueueAsync, TaskCreationOptions.LongRunning);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -39,7 +39,7 @@
|
||||
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
|
||||
<PackageReference Include="Mapster" Version="7.4.0" />
|
||||
<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.5.4" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
|
||||
|
@@ -127,63 +127,57 @@ public class MachineInfo
|
||||
|
||||
//static MachineInfo() => RegisterAsync().Wait(100);
|
||||
|
||||
private static Task<MachineInfo>? _task;
|
||||
/// <summary>异步注册一个初始化后的机器信息实例</summary>
|
||||
/// <returns></returns>
|
||||
public static Task<MachineInfo> RegisterAsync()
|
||||
public static MachineInfo Register()
|
||||
{
|
||||
|
||||
if (_task != null) return _task;
|
||||
|
||||
return _task = Task.Factory.StartNew(() =>
|
||||
if (Current != null) return Current;
|
||||
// 文件缓存,加快机器信息获取。在Linux下,可能StarAgent以root权限写入缓存文件,其它应用以普通用户访问
|
||||
var file = Path.GetTempPath().CombinePath("machine_info.json");
|
||||
var json = "";
|
||||
if (Current == null)
|
||||
{
|
||||
// 文件缓存,加快机器信息获取。在Linux下,可能StarAgent以root权限写入缓存文件,其它应用以普通用户访问
|
||||
var file = Path.GetTempPath().CombinePath("machine_info.json");
|
||||
var json = "";
|
||||
if (Current == null)
|
||||
var f = file;
|
||||
if (File.Exists(f))
|
||||
{
|
||||
var f = file;
|
||||
if (File.Exists(f))
|
||||
try
|
||||
{
|
||||
try
|
||||
{
|
||||
//XTrace.WriteLine("Load MachineInfo {0}", f);
|
||||
json = File.ReadAllText(f);
|
||||
Current = json.FromJsonNetString<MachineInfo>();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (XTrace.Log.Level <= LogLevel.Debug) NewLife.Log.XTrace.WriteException(ex);
|
||||
}
|
||||
//XTrace.WriteLine("Load MachineInfo {0}", f);
|
||||
json = File.ReadAllText(f);
|
||||
Current = json.FromJsonNetString<MachineInfo>();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (XTrace.Log.Level <= LogLevel.Debug) NewLife.Log.XTrace.WriteException(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var mi = Current ?? new MachineInfo();
|
||||
var mi = Current ?? new MachineInfo();
|
||||
|
||||
mi.Init();
|
||||
Current = mi;
|
||||
mi.Init();
|
||||
Current = mi;
|
||||
|
||||
try
|
||||
try
|
||||
{
|
||||
var json2 = mi.ToJsonNetString();
|
||||
if (json != json2)
|
||||
{
|
||||
var json2 = mi.ToJsonNetString();
|
||||
if (json != json2)
|
||||
{
|
||||
File.WriteAllText(file.EnsureDirectory(true), json2);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (XTrace.Log.Level <= LogLevel.Debug) NewLife.Log.XTrace.WriteException(ex);
|
||||
File.WriteAllText(file.EnsureDirectory(true), json2);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (XTrace.Log.Level <= LogLevel.Debug) NewLife.Log.XTrace.WriteException(ex);
|
||||
}
|
||||
|
||||
return mi;
|
||||
});
|
||||
return mi;
|
||||
|
||||
}
|
||||
|
||||
/// <summary>获取当前信息,如果未设置则等待异步注册结果</summary>
|
||||
/// <returns></returns>
|
||||
public static MachineInfo GetCurrent() => Current ?? RegisterAsync().ConfigureAwait(false).GetAwaiter().GetResult();
|
||||
public static MachineInfo GetCurrent() => Current ?? Register();
|
||||
|
||||
#endregion
|
||||
|
||||
|
@@ -172,7 +172,6 @@ public class TimerScheduler : ILogFeature
|
||||
else if (!timer.Async)
|
||||
Execute(timer);
|
||||
else
|
||||
//Task.Factory.StartNew(() => ProcessItem(timer));
|
||||
// 不需要上下文流动,捕获所有异常
|
||||
ThreadPool.UnsafeQueueUserWorkItem(s =>
|
||||
{
|
||||
@@ -231,8 +230,6 @@ public class TimerScheduler : ILogFeature
|
||||
{
|
||||
if (state is not TimerX timer) return;
|
||||
|
||||
TimerX.Current = timer;
|
||||
|
||||
// 控制日志显示
|
||||
WriteLogEventArgs.CurrentThreadName = Name == "Default" ? "T" : Name;
|
||||
|
||||
@@ -274,7 +271,6 @@ public class TimerScheduler : ILogFeature
|
||||
{
|
||||
if (state is not TimerX timer) return;
|
||||
|
||||
TimerX.Current = timer;
|
||||
|
||||
// 控制日志显示
|
||||
WriteLogEventArgs.CurrentThreadName = Name == "Default" ? "T" : Name;
|
||||
@@ -322,8 +318,6 @@ public class TimerScheduler : ILogFeature
|
||||
|
||||
timer.Calling = false;
|
||||
|
||||
TimerX.Current = null;
|
||||
|
||||
// 控制日志显示
|
||||
WriteLogEventArgs.CurrentThreadName = null;
|
||||
|
||||
|
@@ -84,15 +84,7 @@ public class TimerX : ITimer, IDisposable
|
||||
private readonly Cron[]? _crons;
|
||||
#endregion
|
||||
|
||||
#region 静态
|
||||
#if NET452
|
||||
private static readonly ThreadLocal<TimerX?> _Current = new();
|
||||
#else
|
||||
private static readonly AsyncLocal<TimerX?> _Current = new();
|
||||
#endif
|
||||
/// <summary>当前定时器</summary>
|
||||
public static TimerX? Current { get => _Current.Value; set => _Current.Value = value; }
|
||||
#endregion
|
||||
|
||||
|
||||
#region 构造
|
||||
private TimerX(Object? target, MethodInfo method, Object? state, String? scheduler = null)
|
||||
@@ -382,19 +374,27 @@ public class TimerX : ITimer, IDisposable
|
||||
/// <param name="period">构造 Timer 时指定的回调方法调用之间的时间间隔。 指定 InfiniteTimeSpan 可以禁用定期终止。</param>
|
||||
/// <returns></returns>
|
||||
public Boolean Change(TimeSpan dueTime, TimeSpan period)
|
||||
{
|
||||
return Change((int)dueTime.TotalMilliseconds, (int)period.TotalMilliseconds);
|
||||
}
|
||||
/// <summary>更改计时器的启动时间和方法调用之间的时间间隔,使用 TimeSpan 值度量时间间隔。</summary>
|
||||
/// <param name="dueTime">一个 TimeSpan,表示在调用构造 ITimer 时指定的回调方法之前的延迟时间量。 指定 InfiniteTimeSpan 可防止重新启动计时器。 指定 Zero 可立即重新启动计时器。</param>
|
||||
/// <param name="period">构造 Timer 时指定的回调方法调用之间的时间间隔。 指定 InfiniteTimeSpan 可以禁用定期终止。</param>
|
||||
/// <returns></returns>
|
||||
public Boolean Change(int dueTime, int period)
|
||||
{
|
||||
if (Absolutely) return false;
|
||||
if (Crons?.Length > 0) return false;
|
||||
|
||||
if (period.TotalMilliseconds <= 0)
|
||||
if (period <= 0)
|
||||
{
|
||||
Dispose();
|
||||
return true;
|
||||
}
|
||||
|
||||
Period = (Int32)period.TotalMilliseconds;
|
||||
Period = period;
|
||||
|
||||
if (dueTime.TotalMilliseconds >= 0) SetNext((Int32)dueTime.TotalMilliseconds);
|
||||
if (dueTime >= 0) SetNext(dueTime);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@@ -280,43 +280,6 @@ public static class ControlHelper
|
||||
}
|
||||
}
|
||||
|
||||
private static void ProcessBell(ref String m)
|
||||
{
|
||||
var ch = (Char)7;
|
||||
var p = 0;
|
||||
while (true)
|
||||
{
|
||||
p = m.IndexOf(ch, p);
|
||||
if (p < 0) break;
|
||||
|
||||
if (p > 0)
|
||||
{
|
||||
var str = m[..p];
|
||||
if (p + 1 < m.Length) str += m[(p + 1)..];
|
||||
m = str;
|
||||
}
|
||||
|
||||
//Console.Beep();
|
||||
// 用定时器来控制Beep,避免被堵塞
|
||||
_timer ??= new TimerX(Bell, null, 100, 100);
|
||||
_Beep = true;
|
||||
//SystemSounds.Beep.Play();
|
||||
p++;
|
||||
}
|
||||
}
|
||||
|
||||
private static TimerX? _timer;
|
||||
private static Boolean _Beep;
|
||||
|
||||
private static void Bell(Object? state)
|
||||
{
|
||||
if (_Beep)
|
||||
{
|
||||
_Beep = false;
|
||||
Console.Beep();
|
||||
}
|
||||
}
|
||||
|
||||
[DllImport("user32.dll")]
|
||||
private static extern Int32 SendMessage(IntPtr hwnd, Int32 wMsg, Int32 wParam, Int32 lParam);
|
||||
private const Int32 SB_TOP = 6;
|
||||
|
@@ -13,6 +13,7 @@ namespace ThingsGateway.Razor;
|
||||
/// <summary>
|
||||
/// 母版页基类
|
||||
/// </summary>
|
||||
[BlazorSetParametersAsyncGenerator.DoNotGenerateSetParametersAsync]
|
||||
public partial class BaseLayout
|
||||
{
|
||||
}
|
||||
|
@@ -11,7 +11,7 @@
|
||||
namespace ThingsGateway.Razor;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public abstract class WebSiteModuleComponentBase : BootstrapModuleComponentBase
|
||||
public abstract partial class WebSiteModuleComponentBase : BootstrapModuleComponentBase
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
protected override void OnLoadJSModule()
|
||||
|
@@ -41,14 +41,16 @@
|
||||
|
||||
}
|
||||
|
||||
<PopConfirmButton IsAsync IsDisabled=@_importPreviews.Any(it => it.Value.HasError) Color=Color.Warning class="mt-2" OnConfirm=@(SaveDeviceImport)>@Localizer["Import"]</PopConfirmButton>
|
||||
|
||||
<Button IsAsync class="mt-2" IsDisabled=@_importPreviews.Any(it => it.Value.HasError) OnClick="() => step.Next()">@Localizer["Next"]</Button>
|
||||
@*
|
||||
<Button IsAsync class="mt-2" IsDisabled=@_importPreviews.Any(it => it.Value.HasError) OnClick="() => step.Next()">@Localizer["Next"]</Button> *@
|
||||
|
||||
</div>
|
||||
</StepItem>
|
||||
<StepItem Text=@Localizer["Third"] Title=@Localizer["Import"]>
|
||||
@* <StepItem Text=@Localizer["Third"] Title=@Localizer["Import"]>
|
||||
<PopConfirmButton IsAsync Color=Color.Warning class="mt-2" OnConfirm=@(SaveDeviceImport)>@Localizer["Import"]</PopConfirmButton>
|
||||
</StepItem>
|
||||
</StepItem> *@
|
||||
</Step>
|
||||
@code {
|
||||
[NotNull]
|
||||
|
@@ -8,6 +8,8 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System.Collections.Concurrent;
|
||||
|
||||
namespace ThingsGateway;
|
||||
|
||||
/// <summary>
|
||||
@@ -22,7 +24,7 @@ public static class ParallelExtensions
|
||||
/// <typeparam name="T">集合元素类型</typeparam>
|
||||
/// <param name="source">要操作的集合</param>
|
||||
/// <param name="body">要执行的操作</param>
|
||||
public static void ParallelForEach<T>(this IEnumerable<T> source, Action<T> body)
|
||||
public static void ParallelForEach<T>(this IList<T> source, Action<T> body)
|
||||
{
|
||||
ParallelOptions options = new();
|
||||
options.MaxDegreeOfParallelism = Environment.ProcessorCount;
|
||||
@@ -39,7 +41,7 @@ public static class ParallelExtensions
|
||||
/// <typeparam name="T">集合元素类型</typeparam>
|
||||
/// <param name="source">要操作的集合</param>
|
||||
/// <param name="body">要执行的操作</param>
|
||||
public static void ParallelForEach<T>(this IEnumerable<T> source, Action<T, ParallelLoopState, long> body)
|
||||
public static void ParallelForEach<T>(this IList<T> source, Action<T, ParallelLoopState, long> body)
|
||||
{
|
||||
ParallelOptions options = new();
|
||||
options.MaxDegreeOfParallelism = Environment.ProcessorCount;
|
||||
@@ -57,7 +59,7 @@ public static class ParallelExtensions
|
||||
/// <param name="source">要操作的集合</param>
|
||||
/// <param name="body">要执行的操作</param>
|
||||
/// <param name="parallelCount">最大并行度</param>
|
||||
public static void ParallelForEach<T>(this IEnumerable<T> source, Action<T> body, int parallelCount)
|
||||
public static void ParallelForEach<T>(this IList<T> source, Action<T> body, int parallelCount)
|
||||
{
|
||||
// 创建并行操作的选项对象,设置最大并行度为指定的值
|
||||
var options = new ParallelOptions();
|
||||
@@ -69,6 +71,47 @@ public static class ParallelExtensions
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 使用默认的并行设置执行指定的操作(Partitioner 分区)
|
||||
/// </summary>
|
||||
public static void ParallelForEachStreamed<T>(this IEnumerable<T> source, Action<T> body)
|
||||
{
|
||||
var partitioner = Partitioner.Create<T>(source, EnumerablePartitionerOptions.NoBuffering);
|
||||
Parallel.ForEach(partitioner, new ParallelOptions
|
||||
{
|
||||
MaxDegreeOfParallelism = Environment.ProcessorCount
|
||||
}, body);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 使用默认的并行设置执行指定的操作(带索引和 LoopState,Partitioner 分区)
|
||||
/// </summary>
|
||||
public static void ParallelForEachStreamed<T>(this IEnumerable<T> source, Action<T, ParallelLoopState, long> body)
|
||||
{
|
||||
var partitioner = Partitioner.Create<T>(source, EnumerablePartitionerOptions.NoBuffering);
|
||||
Parallel.ForEach(partitioner, new ParallelOptions
|
||||
{
|
||||
MaxDegreeOfParallelism = Environment.ProcessorCount
|
||||
}, (item, state, index) => body(item, state, index));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 执行指定的操作,并指定最大并行度(Partitioner 分区)
|
||||
/// </summary>
|
||||
public static void ParallelForEachStreamed<T>(this IEnumerable<T> source, Action<T> body, int parallelCount)
|
||||
{
|
||||
var options = new ParallelOptions
|
||||
{
|
||||
MaxDegreeOfParallelism = parallelCount <= 0 ? 1 : parallelCount
|
||||
};
|
||||
|
||||
var partitioner = Partitioner.Create<T>(source, EnumerablePartitionerOptions.NoBuffering);
|
||||
Parallel.ForEach(partitioner, options, body);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 异步执行指定的操作,并指定最大并行度和取消标志
|
||||
/// </summary>
|
||||
@@ -78,7 +121,7 @@ public static class ParallelExtensions
|
||||
/// <param name="parallelCount">最大并行度</param>
|
||||
/// <param name="cancellationToken">取消操作的标志</param>
|
||||
/// <returns>表示异步操作的任务</returns>
|
||||
public static Task ParallelForEachAsync<T>(this IEnumerable<T> source, Func<T, CancellationToken, ValueTask> body, int parallelCount, CancellationToken cancellationToken = default)
|
||||
public static Task ParallelForEachAsync<T>(this IList<T> source, Func<T, CancellationToken, ValueTask> body, int parallelCount, CancellationToken cancellationToken = default)
|
||||
{
|
||||
// 创建并行操作的选项对象,设置最大并行度和取消标志
|
||||
var options = new ParallelOptions();
|
||||
@@ -95,8 +138,10 @@ public static class ParallelExtensions
|
||||
/// <param name="body">异步执行的操作</param>
|
||||
/// <param name="cancellationToken">取消操作的标志</param>
|
||||
/// <returns>表示异步操作的任务</returns>
|
||||
public static Task ParallelForEachAsync<T>(this IEnumerable<T> source, Func<T, CancellationToken, ValueTask> body, CancellationToken cancellationToken = default)
|
||||
public static Task ParallelForEachAsync<T>(this IList<T> source, Func<T, CancellationToken, ValueTask> body, CancellationToken cancellationToken = default)
|
||||
{
|
||||
return ParallelForEachAsync(source, body, Environment.ProcessorCount, cancellationToken);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@@ -21,3 +21,4 @@ global using System.Globalization;
|
||||
|
||||
|
||||
[assembly: SuppressMessage("Reliability", "CA2007", Justification = "<挂起>", Scope = "module")]
|
||||
[assembly: BlazorSetParametersAsyncGenerator.GlobalGenerateSetParametersAsync(true)]
|
@@ -5,10 +5,11 @@
|
||||
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
using System.Collections.Concurrent;
|
||||
using System.Reflection;
|
||||
using System.Resources;
|
||||
|
||||
using ThingsGateway.NewLife.Collections;
|
||||
|
||||
namespace ThingsGateway;
|
||||
|
||||
/// <summary>
|
||||
@@ -107,14 +108,14 @@ internal class JsonStringLocalizer(Assembly assembly, string typeName, string ba
|
||||
return ret;
|
||||
}
|
||||
|
||||
private readonly ConcurrentDictionary<string, object?> _missingManifestCache = [];
|
||||
private readonly ConcurrentHashSet<string> _missingManifestCache = [];
|
||||
private string? GetStringFromJson(string name)
|
||||
{
|
||||
// get string from json localization file
|
||||
var localizerStrings = MegerResolveLocalizers(CacheManager.GetAllStringsByTypeName(Assembly, typeName));
|
||||
var cacheKey = $"name={name}&culture={CultureInfo.CurrentUICulture.Name}";
|
||||
string? ret = null;
|
||||
if (!_missingManifestCache.ContainsKey(cacheKey))
|
||||
if (!_missingManifestCache.Contain(cacheKey))
|
||||
{
|
||||
var l = localizerStrings.Find(i => i.Name == name);
|
||||
if (l is { ResourceNotFound: false })
|
||||
@@ -161,6 +162,7 @@ internal class JsonStringLocalizer(Assembly assembly, string typeName, string ba
|
||||
private List<LocalizedString> MegerResolveLocalizers(IEnumerable<LocalizedString>? localizerStrings)
|
||||
{
|
||||
var localizers = new List<LocalizedString>(CacheManager.GetTypeStringsFromResolve(typeName));
|
||||
|
||||
if (localizerStrings != null)
|
||||
{
|
||||
localizers.AddRange(localizerStrings);
|
||||
@@ -175,7 +177,7 @@ internal class JsonStringLocalizer(Assembly assembly, string typeName, string ba
|
||||
{
|
||||
Logger.LogInformation("{JsonStringLocalizerName} searched for '{Name}' in '{TypeName}' with culture '{CultureName}' not found.", nameof(JsonStringLocalizer), name, typeName, CultureInfo.CurrentUICulture.Name);
|
||||
}
|
||||
_missingManifestCache.TryAdd($"name={name}&culture={CultureInfo.CurrentUICulture.Name}", null);
|
||||
_missingManifestCache.TryAdd($"name={name}&culture={CultureInfo.CurrentUICulture.Name}");
|
||||
}
|
||||
|
||||
private List<LocalizedString>? _allLocalizerdStrings;
|
||||
|
@@ -47,7 +47,7 @@ public class Startup : AppStartup
|
||||
// 缓存
|
||||
services.AddSingleton<ICache, MemoryCache>();
|
||||
|
||||
MachineInfo.RegisterAsync();
|
||||
MachineInfo.Register();
|
||||
|
||||
// 配置雪花Id算法机器码
|
||||
YitIdHelper.SetIdGenerator(new IdGeneratorOptions
|
||||
|
@@ -1,23 +1,21 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<Import Project="$(SolutionDir)Version.props" />
|
||||
<Import Project="$(SolutionDir)PackNuget.props" />
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net8.0;</TargetFrameworks>
|
||||
<TargetFrameworks>net8.0</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BootstrapBlazor.FontAwesome" Version="9.0.2" />
|
||||
<PackageReference Include="BootstrapBlazor" Version="9.7.3" />
|
||||
<PackageReference Include="BootstrapBlazor" Version="9.7.4-beta07" />
|
||||
<PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Remove="Locales\*.json" />
|
||||
<EmbeddedResource Include="Locales\*.json">
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="..\README.md" Pack="true" PackagePath="\" />
|
||||
@@ -30,6 +28,16 @@
|
||||
<ProjectReference Include="..\ThingsGateway.Furion\ThingsGateway.Furion.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<!--<ItemGroup Condition="'$(Configuration)' != 'Debug' ">
|
||||
<None Include="..\BlazorSetParametersAsyncGenerator\tools\*.ps1" PackagePath="tools" Pack="true" Visible="false" />
|
||||
<None Include="..\BlazorSetParametersAsyncGenerator\bin\$(Configuration)\netstandard2.0\BlazorSetParametersAsyncGenerator.dll" PackagePath="analyzers\dotnet\cs" Pack="true" Visible="false" />
|
||||
</ItemGroup>-->
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\BlazorSetParametersAsyncGenerator\BlazorSetParametersAsyncGenerator.csproj" PrivateAssets="all" OutputItemType="Analyzer" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
|
||||
|
@@ -1,5 +1,4 @@
|
||||
|
||||
@using System.Net.Http
|
||||
@using System.Net.Http
|
||||
@using System.Net.Http.Json
|
||||
@using Microsoft.AspNetCore.Components.Forms
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@@ -16,4 +15,5 @@
|
||||
@using BootstrapBlazor.Components
|
||||
|
||||
|
||||
@using ThingsGateway.Razor;
|
||||
@using ThingsGateway.Razor
|
||||
|
||||
|
@@ -7,8 +7,8 @@ namespace ThingsGateway.SqlSugar
|
||||
/// </summary>
|
||||
public partial class SqlSugarScope : ISqlSugarClient, ITenant
|
||||
{
|
||||
private List<ConnectionConfig> _configs;
|
||||
private Action<SqlSugarClient> _configAction;
|
||||
protected List<ConnectionConfig> _configs;
|
||||
protected Action<SqlSugarClient> _configAction;
|
||||
|
||||
protected virtual SqlSugarClient GetContext()
|
||||
{
|
||||
|
@@ -161,7 +161,7 @@ namespace ThingsGateway.SqlSugar
|
||||
}
|
||||
else if (db is SqlSugarScope)
|
||||
{
|
||||
db = (db as SqlSugarScope).ScopedContext.Context;
|
||||
db = (db as SqlSugarScope).Context;
|
||||
}
|
||||
if (!(db is SqlSugarProvider))
|
||||
{
|
||||
@@ -685,17 +685,20 @@ namespace ThingsGateway.SqlSugar
|
||||
|
||||
private static Type GetCustomDbType(string className, Type type)
|
||||
{
|
||||
if (className.Replace(".", "").Length + 1 == className.Length)
|
||||
//命名空间相关
|
||||
if (className.Replace(".", "").Length + 2 == className.Length)
|
||||
{
|
||||
var array = className.Split('.');
|
||||
foreach (var item in UtilMethods.EnumToDictionary<DbType>())
|
||||
if (array.Length >= 3)
|
||||
{
|
||||
if (array.Last().StartsWith(item.Value.ToString()))
|
||||
foreach (var item in UtilMethods.EnumToDictionary<DbType>())
|
||||
{
|
||||
|
||||
var newName = array.First() + "." + item.Value.ToString() + "." + array.Last();
|
||||
type = GetCustomTypeByClass(newName);
|
||||
break;
|
||||
if (array.Last().StartsWith(item.Value.ToString()))
|
||||
{
|
||||
var newName = $"{array[0]}.{array[1]}.{item.Value}.{array.Last()}";
|
||||
type = GetCustomTypeByClass(newName);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -1,4 +1,6 @@
|
||||
namespace ThingsGateway.SqlSugar
|
||||
using ThingsGateway.NewLife.Caching;
|
||||
|
||||
namespace ThingsGateway.SqlSugar
|
||||
{
|
||||
public class ReflectionInoCacheService : ICacheService
|
||||
{
|
||||
@@ -6,6 +8,7 @@
|
||||
{
|
||||
ReflectionInoCore<V>.GetInstance().Add(key, value);
|
||||
}
|
||||
|
||||
public void Add<V>(string key, V value, int cacheDurationInSeconds)
|
||||
{
|
||||
ReflectionInoCore<V>.GetInstance().Add(key, value, cacheDurationInSeconds);
|
||||
@@ -38,7 +41,7 @@
|
||||
}
|
||||
public class ReflectionInoCore<V>
|
||||
{
|
||||
readonly System.Collections.Concurrent.ConcurrentDictionary<string, V> InstanceCache = new System.Collections.Concurrent.ConcurrentDictionary<string, V>();
|
||||
readonly MemoryCache InstanceCache = new() { Expire = 1800 };
|
||||
private static ReflectionInoCore<V> _instance = null;
|
||||
private static readonly object _instanceLock = new object();
|
||||
private ReflectionInoCore() { }
|
||||
@@ -58,10 +61,7 @@
|
||||
|
||||
public V Get(string key)
|
||||
{
|
||||
if (this.ContainsKey(key))
|
||||
return this.InstanceCache[key];
|
||||
else
|
||||
return default(V);
|
||||
return this.InstanceCache.Get<V>(key);
|
||||
}
|
||||
|
||||
public static ReflectionInoCore<V> GetInstance()
|
||||
@@ -89,8 +89,7 @@
|
||||
|
||||
public void Remove(string key)
|
||||
{
|
||||
V val;
|
||||
this.InstanceCache.TryRemove(key, out val);
|
||||
this.InstanceCache.Remove(key);
|
||||
}
|
||||
|
||||
public void RemoveAllCache()
|
||||
@@ -108,13 +107,7 @@
|
||||
|
||||
public V GetOrCreate(string cacheKey, Func<V> create)
|
||||
{
|
||||
if (this.ContainsKey(cacheKey)) return Get(cacheKey);
|
||||
else
|
||||
{
|
||||
var reval = create();
|
||||
this.Add(cacheKey, reval);
|
||||
return reval;
|
||||
}
|
||||
return InstanceCache.GetOrAdd<V>(cacheKey, (a) => create());
|
||||
}
|
||||
}
|
||||
public static class ReflectionInoHelper
|
||||
|
@@ -28,7 +28,8 @@ namespace ThingsGateway.SqlSugar
|
||||
_configs = configs;
|
||||
this._configAction = configAction;
|
||||
}
|
||||
public SqlSugarClient ScopedContext { get { return GetContext(); } }
|
||||
public ISqlSugarClient Context => ScopedContext.Context;
|
||||
protected SqlSugarClient ScopedContext { get { return GetContext(); } }
|
||||
public SugarActionType SugarActionType { get => ScopedContext.SugarActionType; set => ScopedContext.SugarActionType = value; }
|
||||
public MappingTableList MappingTables { get => ScopedContext.MappingTables; set => ScopedContext.MappingTables = value; }
|
||||
public MappingColumnList MappingColumns { get => ScopedContext.MappingColumns; set => ScopedContext.MappingColumns = value; }
|
||||
|
@@ -23,7 +23,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SqlSugarCore.Dm" Version="8.8.0" />
|
||||
<PackageReference Include="SqlSugarCore.Kdbndp" Version="9.3.7.605" />
|
||||
<PackageReference Include="SqlSugarCore.Kdbndp" Version="9.3.7.613" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="$(NET9Version)" />
|
||||
<PackageReference Include="MySqlConnector" Version="2.4.0" />
|
||||
<PackageReference Include="Npgsql" Version="9.0.3" />
|
||||
|
92
src/Base1.sln
Normal file
92
src/Base1.sln
Normal file
@@ -0,0 +1,92 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.9.34622.214
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "other", "other", "{0B748352-5D27-4F14-8A20-364034C72867}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.editorconfig = .editorconfig
|
||||
Directory.Build.props = Directory.Build.props
|
||||
..\git_pull.bat = ..\git_pull.bat
|
||||
..\README.md = ..\README.md
|
||||
..\README.zh-CN.md = ..\README.zh-CN.md
|
||||
Version.props = Version.props
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Foundation", "Foundation", "{2AC600BB-4325-4E0A-93A7-B1F53C8E2CA7}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ThingsGateway.CSScript", "Foundation\ThingsGateway.CSScript\ThingsGateway.CSScript.csproj", "{506232CE-0FB6-4ACB-96DE-C8C8D075A642}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ThingsGateway.Foundation", "Foundation\ThingsGateway.Foundation\ThingsGateway.Foundation.csproj", "{9D49F8E2-A82C-4E36-8F54-4F45BF3E47C0}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ThingsGateway.Foundation.SourceGenerator", "Foundation\ThingsGateway.Foundation.SourceGenerator\ThingsGateway.Foundation.SourceGenerator.csproj", "{E325A64C-2B72-4DD0-8A6C-229B29FB95EB}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ThingsGateway.Foundation.Variable", "Foundation\ThingsGateway.Foundation.Variable\ThingsGateway.Foundation.Variable.csproj", "{8EE037EC-ED21-42A0-BE1F-219E9886E43A}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Admin", "Admin", "{72C65578-92A5-4E99-9779-27835B12B32F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThingsGateway.Furion", "Admin\ThingsGateway.Furion\ThingsGateway.Furion.csproj", "{D56A6669-28C5-4A99-89CF-356C7964B8E1}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThingsGateway.NewLife.X", "Admin\ThingsGateway.NewLife.X\ThingsGateway.NewLife.X.csproj", "{8198BEEA-AC24-4D70-B3D7-2601A803610B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThingsGateway.Razor", "Admin\ThingsGateway.Razor\ThingsGateway.Razor.csproj", "{93C0CC9A-500E-419A-B896-F36225377D43}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorSetParametersAsyncGenerator", "Admin\BlazorSetParametersAsyncGenerator\BlazorSetParametersAsyncGenerator.csproj", "{4C412EC1-8501-8211-5A57-3CEEE7EEA6B3}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{506232CE-0FB6-4ACB-96DE-C8C8D075A642}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{506232CE-0FB6-4ACB-96DE-C8C8D075A642}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{506232CE-0FB6-4ACB-96DE-C8C8D075A642}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{506232CE-0FB6-4ACB-96DE-C8C8D075A642}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9D49F8E2-A82C-4E36-8F54-4F45BF3E47C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9D49F8E2-A82C-4E36-8F54-4F45BF3E47C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9D49F8E2-A82C-4E36-8F54-4F45BF3E47C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9D49F8E2-A82C-4E36-8F54-4F45BF3E47C0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{E325A64C-2B72-4DD0-8A6C-229B29FB95EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E325A64C-2B72-4DD0-8A6C-229B29FB95EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E325A64C-2B72-4DD0-8A6C-229B29FB95EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E325A64C-2B72-4DD0-8A6C-229B29FB95EB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{8EE037EC-ED21-42A0-BE1F-219E9886E43A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{8EE037EC-ED21-42A0-BE1F-219E9886E43A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8EE037EC-ED21-42A0-BE1F-219E9886E43A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8EE037EC-ED21-42A0-BE1F-219E9886E43A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{D56A6669-28C5-4A99-89CF-356C7964B8E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D56A6669-28C5-4A99-89CF-356C7964B8E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D56A6669-28C5-4A99-89CF-356C7964B8E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D56A6669-28C5-4A99-89CF-356C7964B8E1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{8198BEEA-AC24-4D70-B3D7-2601A803610B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{8198BEEA-AC24-4D70-B3D7-2601A803610B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8198BEEA-AC24-4D70-B3D7-2601A803610B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8198BEEA-AC24-4D70-B3D7-2601A803610B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{93C0CC9A-500E-419A-B896-F36225377D43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{93C0CC9A-500E-419A-B896-F36225377D43}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{93C0CC9A-500E-419A-B896-F36225377D43}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{93C0CC9A-500E-419A-B896-F36225377D43}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{4C412EC1-8501-8211-5A57-3CEEE7EEA6B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{4C412EC1-8501-8211-5A57-3CEEE7EEA6B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{4C412EC1-8501-8211-5A57-3CEEE7EEA6B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{4C412EC1-8501-8211-5A57-3CEEE7EEA6B3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{506232CE-0FB6-4ACB-96DE-C8C8D075A642} = {2AC600BB-4325-4E0A-93A7-B1F53C8E2CA7}
|
||||
{9D49F8E2-A82C-4E36-8F54-4F45BF3E47C0} = {2AC600BB-4325-4E0A-93A7-B1F53C8E2CA7}
|
||||
{E325A64C-2B72-4DD0-8A6C-229B29FB95EB} = {2AC600BB-4325-4E0A-93A7-B1F53C8E2CA7}
|
||||
{8EE037EC-ED21-42A0-BE1F-219E9886E43A} = {2AC600BB-4325-4E0A-93A7-B1F53C8E2CA7}
|
||||
{D56A6669-28C5-4A99-89CF-356C7964B8E1} = {72C65578-92A5-4E99-9779-27835B12B32F}
|
||||
{8198BEEA-AC24-4D70-B3D7-2601A803610B} = {72C65578-92A5-4E99-9779-27835B12B32F}
|
||||
{93C0CC9A-500E-419A-B896-F36225377D43} = {72C65578-92A5-4E99-9779-27835B12B32F}
|
||||
{4C412EC1-8501-8211-5A57-3CEEE7EEA6B3} = {72C65578-92A5-4E99-9779-27835B12B32F}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
RESX_NeutralResourcesLanguage = zh-Hans
|
||||
RESX_Rules = {"EnabledRules":[]}
|
||||
SolutionGuid = {199B1B96-4F56-4828-9531-813BA02DB282}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@@ -1,9 +1,10 @@
|
||||
<Project>
|
||||
|
||||
<PropertyGroup>
|
||||
<PluginVersion>10.7.56</PluginVersion>
|
||||
<ProPluginVersion>10.7.56</ProPluginVersion>
|
||||
<AuthenticationVersion>2.6.0</AuthenticationVersion>
|
||||
<PluginVersion>10.8.9</PluginVersion>
|
||||
<ProPluginVersion>10.8.9</ProPluginVersion>
|
||||
<AuthenticationVersion>2.8.0</AuthenticationVersion>
|
||||
<SourceGeneratorVersion>10.8.2</SourceGeneratorVersion>
|
||||
<NET8Version>8.0.17</NET8Version>
|
||||
<NET9Version>9.0.6</NET9Version>
|
||||
</PropertyGroup>
|
||||
@@ -24,7 +25,7 @@
|
||||
<AnalysisModeStyle>None</AnalysisModeStyle>
|
||||
|
||||
<NoWarn>
|
||||
CS8603;CS8618;CS1591;CS8625;CS8602;CS8604;CS8600;CS8601;CS8714;CS8619;CS8629;CS8765;CS8634;CS8621;CS8767;CS8633;CS8620;CS8610;CS8631;CS8605;CS8622;CS8613;NU5100;NU5104;NU1903;NU1902;CA1813;CA1852;CA1822;CA2100;CA2008;CA1812;CA1508;CA1512;CA1513;CA1810;CA1814;CA1815;CA1835;CA1819;CA1823;CA2002;CA5350;CA5351;CA5358;CA5384;CA5392;CA1805;CA1851;CA1510;CA5401;CA2022;CA1848;CA2000;CA5394;CA3003;CA1515;CA1849;CA1863
|
||||
CS8603;CS8618;CS1591;CS8625;CS8602;CS8604;CS8600;CS8601;CS8714;CS8619;CS8629;CS8765;CS8634;CS8621;CS8767;CS8633;CS8620;CS8610;CS8631;CS8605;CS8622;CS8613;NU5100;NU5104;NU1903;NU1902;CA1813;CA1852;CA1822;CA2100;CA2008;CA1812;CA1508;CA1512;CA1513;CA1810;CA1814;CA1815;CA1835;CA1819;CA1823;CA2002;CA5350;CA5351;CA5358;CA5384;CA5392;CA1805;CA1851;CA1510;CA5401;CA2022;CA1848;CA2000;CA5394;CA3003;CA1515;CA1849;CA1863;CA5400
|
||||
</NoWarn>
|
||||
<TargetFrameworks>net8.0;</TargetFrameworks>
|
||||
<LangVersion>13.0</LangVersion>
|
||||
|
@@ -36,6 +36,7 @@
|
||||
<EditorItem @bind-Field="@context.StopBits" Ignore=@(context.ChannelType!=ChannelTypeEnum.SerialPort) />
|
||||
<EditorItem @bind-Field="@context.DtrEnable" Ignore=@(context.ChannelType!=ChannelTypeEnum.SerialPort) />
|
||||
<EditorItem @bind-Field="@context.RtsEnable" Ignore=@(context.ChannelType!=ChannelTypeEnum.SerialPort) />
|
||||
<EditorItem @bind-Field="@context.StreamAsync" Ignore=@(context.ChannelType!=ChannelTypeEnum.SerialPort) />
|
||||
|
||||
|
||||
<EditorItem @bind-Field="@context.CacheTimeout" Ignore=@(context.ChannelType==ChannelTypeEnum.UdpSession||context.ChannelType==ChannelTypeEnum.Other) />
|
||||
|
@@ -1,6 +1,7 @@
|
||||
@using Microsoft.AspNetCore.Components.Web;
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.JSInterop;
|
||||
@using ThingsGateway.Foundation
|
||||
@using ThingsGateway.NewLife.Threading
|
||||
@using ThingsGateway.Extension;
|
||||
@using BootstrapBlazor.Components
|
||||
|
@@ -228,15 +228,3 @@ public partial class LogConsole : IDisposable
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class LogMessage
|
||||
{
|
||||
public LogMessage(int level, string message)
|
||||
{
|
||||
Level = level;
|
||||
Message = message;
|
||||
}
|
||||
|
||||
public int Level { get; set; }
|
||||
public string Message { get; set; }
|
||||
}
|
||||
|
@@ -0,0 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||||
// 使用文档:https://thingsgateway.cn/
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace ThingsGateway.Foundation;
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
||||
public class LogMessage
|
||||
{
|
||||
public LogMessage(int level, string message)
|
||||
{
|
||||
Level = level;
|
||||
Message = message;
|
||||
}
|
||||
|
||||
public int Level { get; set; }
|
||||
public string Message { get; set; }
|
||||
}
|
@@ -18,3 +18,5 @@ global using System.Diagnostics.CodeAnalysis;
|
||||
global using ThingsGateway.Razor;
|
||||
|
||||
[assembly: SuppressMessage("Reliability", "CA2007", Justification = "<挂起>", Scope = "module")]
|
||||
|
||||
[assembly: BlazorSetParametersAsyncGenerator.GlobalGenerateSetParametersAsync(true)]
|
@@ -23,6 +23,7 @@
|
||||
"PortName": "COM Port",
|
||||
"RemoteUrl": "Remote IP Address",
|
||||
"RtsEnable": "Rts",
|
||||
"StreamAsync": "StreamAsync",
|
||||
"SaveChannel": "Add/Modify Channel",
|
||||
"StopBits": "Stop Bits"
|
||||
},
|
||||
@@ -80,6 +81,7 @@
|
||||
"PortName": "PortName",
|
||||
"RemoteUrl": "RemoteUrl",
|
||||
"RtsEnable": "RtsEnable",
|
||||
"StreamAsync": "StreamAsync",
|
||||
"StopBits": "StopBits"
|
||||
}
|
||||
}
|
@@ -23,6 +23,7 @@
|
||||
"PortName": "COM口",
|
||||
"RemoteUrl": "远程url",
|
||||
"RtsEnable": "Rts",
|
||||
"StreamAsync": "串口流读写",
|
||||
"SaveChannel": "添加/修改通道",
|
||||
"StopBits": "停止位"
|
||||
},
|
||||
@@ -80,6 +81,7 @@
|
||||
"PortName": "COM口",
|
||||
"RemoteUrl": "远程url",
|
||||
"RtsEnable": "Rts",
|
||||
"StreamAsync": "串口流读写",
|
||||
"StopBits": "停止位"
|
||||
}
|
||||
}
|
@@ -4,8 +4,10 @@
|
||||
<Import Project="$(SolutionDir)PackNuget.props" />
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net8.0;</TargetFrameworks>
|
||||
<!--<UseRazorSourceGenerator>false</UseRazorSourceGenerator>-->
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<!--<PackageReference Include="ThingsGateway.Razor" Version="$(SourceGeneratorVersion)" />-->
|
||||
<ProjectReference Include="..\..\Admin\ThingsGateway.Razor\ThingsGateway.Razor.csproj" />
|
||||
<ProjectReference Include="..\ThingsGateway.Foundation\ThingsGateway.Foundation.csproj" />
|
||||
</ItemGroup>
|
||||
@@ -20,8 +22,10 @@
|
||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Admin\BlazorSetParametersAsyncGenerator\BlazorSetParametersAsyncGenerator.csproj" PrivateAssets="all" OutputItemType="Analyzer" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
|
||||
|
@@ -1,10 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="$(SolutionDir)PackNuget.props" />
|
||||
<Import Project="$(SolutionDir)Version.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
|
||||
<Version>$(SourceGeneratorVersion)</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@@ -68,6 +68,11 @@ namespace ThingsGateway.Foundation
|
||||
/// </summary>
|
||||
public virtual bool DtrEnable { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// StreamAsync
|
||||
/// </summary>
|
||||
public virtual bool StreamAsync { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// RtsEnable
|
||||
/// </summary>
|
||||
|
@@ -73,6 +73,10 @@ public interface IChannelOptions
|
||||
/// </summary>
|
||||
bool RtsEnable { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// StreamAsync
|
||||
/// </summary>
|
||||
bool StreamAsync { get; set; }
|
||||
|
||||
#endregion
|
||||
/// <summary>
|
||||
|
@@ -549,7 +549,7 @@ public abstract class DeviceBase : DisposableObject, IDevice
|
||||
Channel.ChannelReceivedWaitDict.TryAdd(sign, ChannelReceived);
|
||||
var sendOperResult = await SendAsync(command, clientChannel, endPoint, cancellationToken).ConfigureAwait(false);
|
||||
if (!sendOperResult.IsSuccess)
|
||||
throw sendOperResult.Exception ?? new(sendOperResult.ErrorMessage);
|
||||
throw sendOperResult.Exception ?? new(sendOperResult.ErrorMessage ?? "unknown error");
|
||||
|
||||
await waitData.WaitAsync(timeout).ConfigureAwait(false);
|
||||
|
||||
|
@@ -112,11 +112,18 @@ public static partial class DeviceExtension
|
||||
int index = variable.Index;
|
||||
try
|
||||
{
|
||||
var data = byteConverter.GetDataFormBytes(device, variable.RegisterAddress, buffer, index, dataType, variable.ArrayLength ?? 1);
|
||||
result = Set(variable, data);
|
||||
if (exWhenAny)
|
||||
if (!result.IsSuccess)
|
||||
return result;
|
||||
var changed = byteConverter.GetChangedDataFormBytes(device, variable.RegisterAddress, buffer, index, dataType, variable.ArrayLength ?? 1, variable.Value, out var data);
|
||||
if (changed)
|
||||
{
|
||||
result = variable.SetValue(data, time);
|
||||
if (exWhenAny)
|
||||
if (!result.IsSuccess)
|
||||
return result;
|
||||
}
|
||||
else
|
||||
{
|
||||
variable.SetNoChangedValue(time);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@@ -124,10 +131,7 @@ public static partial class DeviceExtension
|
||||
}
|
||||
}
|
||||
return result;
|
||||
OperResult Set(IVariable organizedVariable, object num)
|
||||
{
|
||||
return organizedVariable.SetValue(num, time);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@@ -20,6 +20,7 @@
|
||||
"PortName": "PortName",
|
||||
"RemoteUrl": "RemoteUrl",
|
||||
"RtsEnable": "RtsEnable",
|
||||
"StreamAsync": "StreamAsync",
|
||||
"StopBits": "StopBits"
|
||||
},
|
||||
"ThingsGateway.Foundation.ConverterConfig": {
|
||||
|
@@ -20,6 +20,7 @@
|
||||
"PortName": "COM口",
|
||||
"RemoteUrl": "远程url",
|
||||
"RtsEnable": "Rts",
|
||||
"StreamAsync": "串口流读写",
|
||||
"StopBits": "停止位"
|
||||
},
|
||||
"ThingsGateway.Foundation.ConverterConfig": {
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="$(NET9Version)" />
|
||||
<PackageReference Include="TouchSocket" Version="3.1.7" />
|
||||
<PackageReference Include="TouchSocket.SerialPorts" Version="3.1.7" />
|
||||
<PackageReference Include="TouchSocket" Version="3.1.8" />
|
||||
<PackageReference Include="TouchSocket.SerialPorts" Version="3.1.8" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@@ -241,87 +241,292 @@ public static class ThingsGatewayBitConverterExtension
|
||||
/// <summary>
|
||||
/// 根据数据类型获取实际值
|
||||
/// </summary>
|
||||
public static object GetDataFormBytes(this IThingsGatewayBitConverter byteConverter, IDevice device, string address, byte[] buffer, int index, DataTypeEnum dataType, int arrayLength)
|
||||
public static bool GetChangedDataFormBytes(
|
||||
this IThingsGatewayBitConverter byteConverter,
|
||||
IDevice device,
|
||||
string address,
|
||||
byte[] buffer,
|
||||
int index,
|
||||
DataTypeEnum dataType,
|
||||
int arrayLength,
|
||||
object? oldValue,
|
||||
out object? result)
|
||||
{
|
||||
switch (dataType)
|
||||
{
|
||||
case DataTypeEnum.Boolean:
|
||||
return arrayLength > 1 ?
|
||||
byteConverter.ToBoolean(buffer, index, arrayLength, device.BitReverse(address)) :
|
||||
byteConverter.ToBoolean(buffer, index, device.BitReverse(address));
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToBoolean(buffer, index, arrayLength, device.BitReverse(address));
|
||||
if (oldValue is bool[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToBoolean(buffer, index, device.BitReverse(address));
|
||||
if (oldValue is bool oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.Byte:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToByte(buffer, index, arrayLength) :
|
||||
byteConverter.ToByte(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToByte(buffer, index, arrayLength);
|
||||
if (oldValue is byte[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToByte(buffer, index);
|
||||
if (oldValue is byte oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.Int16:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToInt16(buffer, index, arrayLength) :
|
||||
byteConverter.ToInt16(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToInt16(buffer, index, arrayLength);
|
||||
if (oldValue is short[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToInt16(buffer, index);
|
||||
if (oldValue is short oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.UInt16:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToUInt16(buffer, index, arrayLength) :
|
||||
byteConverter.ToUInt16(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToUInt16(buffer, index, arrayLength);
|
||||
if (oldValue is ushort[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToUInt16(buffer, index);
|
||||
if (oldValue is ushort oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.Int32:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToInt32(buffer, index, arrayLength) :
|
||||
byteConverter.ToInt32(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToInt32(buffer, index, arrayLength);
|
||||
if (oldValue is int[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToInt32(buffer, index);
|
||||
if (oldValue is int oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.UInt32:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToUInt32(buffer, index, arrayLength) :
|
||||
byteConverter.ToUInt32(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToUInt32(buffer, index, arrayLength);
|
||||
if (oldValue is uint[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToUInt32(buffer, index);
|
||||
if (oldValue is uint oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.Int64:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToInt64(buffer, index, arrayLength) :
|
||||
byteConverter.ToInt64(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToInt64(buffer, index, arrayLength);
|
||||
if (oldValue is long[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToInt64(buffer, index);
|
||||
if (oldValue is long oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.UInt64:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToUInt64(buffer, index, arrayLength) :
|
||||
byteConverter.ToUInt64(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToUInt64(buffer, index, arrayLength);
|
||||
if (oldValue is ulong[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToUInt64(buffer, index);
|
||||
if (oldValue is ulong oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.Single:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToSingle(buffer, index, arrayLength) :
|
||||
byteConverter.ToSingle(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToSingle(buffer, index, arrayLength);
|
||||
if (oldValue is float[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToSingle(buffer, index);
|
||||
if (oldValue is float oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.Double:
|
||||
return
|
||||
arrayLength > 1 ?
|
||||
byteConverter.ToDouble(buffer, index, arrayLength) :
|
||||
byteConverter.ToDouble(buffer, index);
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
var newVal = byteConverter.ToDouble(buffer, index, arrayLength);
|
||||
if (oldValue is double[] oldArr && newVal.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
var newVal = byteConverter.ToDouble(buffer, index);
|
||||
if (oldValue is double oldVal && oldVal == newVal)
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newVal;
|
||||
return true;
|
||||
}
|
||||
|
||||
case DataTypeEnum.String:
|
||||
default:
|
||||
if (arrayLength > 1)
|
||||
{
|
||||
List<String> strings = new();
|
||||
var newArr = new string[arrayLength];
|
||||
for (int i = 0; i < arrayLength; i++)
|
||||
{
|
||||
var data = byteConverter.ToString(buffer, index + i * byteConverter.StringLength ?? 1, byteConverter.StringLength ?? 1);
|
||||
strings.Add(data);
|
||||
newArr[i] = byteConverter.ToString(buffer, index + i * (byteConverter.StringLength ?? 1), byteConverter.StringLength ?? 1);
|
||||
}
|
||||
return strings.ToArray();
|
||||
|
||||
if (oldValue is string[] oldArr && newArr.SequenceEqual(oldArr))
|
||||
{
|
||||
result = oldValue;
|
||||
return false;
|
||||
}
|
||||
result = newArr;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return byteConverter.ToString(buffer, index, byteConverter.StringLength ?? 1);
|
||||
var str = byteConverter.ToString(buffer, index, byteConverter.StringLength ?? 1);
|
||||
if (oldValue is string oldStr && oldStr == str)
|
||||
{
|
||||
result = oldStr;
|
||||
return false;
|
||||
}
|
||||
result = str;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endregion 获取对应数据类型的数据
|
||||
}
|
||||
|
@@ -55,6 +55,8 @@ public interface IVariable
|
||||
/// </summary>
|
||||
IVariableSource VariableSource { get; set; }
|
||||
|
||||
void SetNoChangedValue(DateTime dateTime);
|
||||
|
||||
/// <summary>
|
||||
/// 赋值变量,返回是否成功,一般在实体内部需要做异常保存
|
||||
/// </summary>
|
||||
|
@@ -8,8 +8,6 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ThingsGateway.NewLife;
|
||||
|
||||
namespace ThingsGateway.Foundation;
|
||||
|
||||
/// <summary>
|
||||
@@ -33,9 +31,9 @@ public interface IVariableSource
|
||||
string RegisterAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// TimeTick
|
||||
/// IntervalTime
|
||||
/// </summary>
|
||||
TimeTick TimeTick { get; set; }
|
||||
string IntervalTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 添加变量
|
||||
|
@@ -62,6 +62,10 @@ public class VariableClass : IVariable
|
||||
/// </summary>
|
||||
public IVariableSource VariableSource { get; set; }
|
||||
|
||||
public void SetNoChangedValue(DateTime dateTime)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 赋值变量
|
||||
/// </summary>
|
||||
|
@@ -8,8 +8,6 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ThingsGateway.NewLife;
|
||||
|
||||
namespace ThingsGateway.Foundation;
|
||||
|
||||
/// <summary>
|
||||
@@ -28,8 +26,10 @@ public class VariableSourceClass : IVariableSource
|
||||
/// <inheritdoc/>
|
||||
public string RegisterAddress { get; set; }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public TimeTick TimeTick { get; set; }
|
||||
/// <summary>
|
||||
/// IntervalTime
|
||||
/// </summary>
|
||||
public string IntervalTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 已打包变量
|
||||
|
@@ -24,7 +24,7 @@ public class KeyboardShortcutsBehavior : Behavior
|
||||
|
||||
public KeyboardShortcutsBehavior(Diagram diagram) : base(diagram)
|
||||
{
|
||||
_shortcuts = new Dictionary<string, Func<Diagram, ValueTask>>(10000, new CaseInsensitiveComparer());
|
||||
_shortcuts = new Dictionary<string, Func<Diagram, ValueTask>>(10, new CaseInsensitiveComparer());
|
||||
SetShortcut("Delete", false, false, false, KeyboardShortcutsDefaults.DeleteSelection);
|
||||
SetShortcut("g", true, false, true, KeyboardShortcutsDefaults.Grouping);
|
||||
|
||||
|
@@ -11,3 +11,4 @@
|
||||
|
||||
global using Microsoft.AspNetCore.Components;
|
||||
|
||||
[assembly: BlazorSetParametersAsyncGenerator.GlobalGenerateSetParametersAsync(true)]
|
@@ -4,6 +4,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
||||
<!--<UseRazorSourceGenerator>false</UseRazorSourceGenerator>-->
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
@@ -26,7 +27,9 @@
|
||||
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ThingsGateway.Blazor.Diagrams.Core\ThingsGateway.Blazor.Diagrams.Core.csproj" />
|
||||
<ProjectReference Include="..\ThingsGateway.Blazor.Diagrams.Core\ThingsGateway.Blazor.Diagrams.Core.csproj" />
|
||||
|
||||
<ProjectReference Include="..\..\Admin\BlazorSetParametersAsyncGenerator\BlazorSetParametersAsyncGenerator.csproj" PrivateAssets="all" OutputItemType="Analyzer" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
|
@@ -0,0 +1,143 @@
|
||||
using ThingsGateway.NewLife;
|
||||
using ThingsGateway.NewLife.Threading;
|
||||
|
||||
using TouchSocket.Core;
|
||||
|
||||
namespace ThingsGateway.Gateway.Application;
|
||||
|
||||
public class CronScheduledTask : DisposeBase, IScheduledTask
|
||||
{
|
||||
private int _interval10MS = 10;
|
||||
private string _interval;
|
||||
private readonly Func<object?, CancellationToken, Task> _taskFunc;
|
||||
private readonly Action<object?, CancellationToken> _taskAction;
|
||||
private readonly CancellationToken _token;
|
||||
private TimerX? _timer;
|
||||
private object? _state;
|
||||
private ILog LogMessage;
|
||||
private volatile int _isRunning = 0;
|
||||
private volatile int _pendingTriggers = 0;
|
||||
|
||||
public CronScheduledTask(string interval, Func<object?, CancellationToken, Task> taskFunc, object? state, ILog log, CancellationToken token)
|
||||
{
|
||||
_interval = interval;
|
||||
LogMessage = log;
|
||||
_state = state;
|
||||
_taskFunc = taskFunc;
|
||||
_token = token;
|
||||
}
|
||||
public CronScheduledTask(string interval, Action<object?, CancellationToken> taskAction, object? state, ILog log, CancellationToken token)
|
||||
{
|
||||
_interval = interval;
|
||||
LogMessage = log;
|
||||
_state = state;
|
||||
_taskAction = taskAction;
|
||||
_token = token;
|
||||
}
|
||||
|
||||
public void Start()
|
||||
{
|
||||
_timer?.Dispose();
|
||||
if (_token.IsCancellationRequested) return;
|
||||
if (_taskAction == null)
|
||||
_timer = new TimerX(TimerCallback, _state, _interval, nameof(IScheduledTask)) { Async = true };
|
||||
else
|
||||
_timer = new TimerX(TimerCallbackAsync, _state, _interval, nameof(IScheduledTask)) { Async = true };
|
||||
}
|
||||
|
||||
private async Task TimerCallbackAsync(object? state)
|
||||
{
|
||||
if (_token.IsCancellationRequested)
|
||||
return;
|
||||
|
||||
Interlocked.Increment(ref _pendingTriggers);
|
||||
|
||||
if (Interlocked.Exchange(ref _isRunning, 1) == 1)
|
||||
return;
|
||||
|
||||
// 减少一个触发次数
|
||||
Interlocked.Decrement(ref _pendingTriggers);
|
||||
|
||||
try
|
||||
{
|
||||
await _taskFunc(state, _token).ConfigureAwait(false);
|
||||
}
|
||||
catch (OperationCanceledException)
|
||||
{
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogMessage.LogWarning(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Interlocked.Exchange(ref _isRunning, 0);
|
||||
}
|
||||
|
||||
if (Interlocked.Exchange(ref _pendingTriggers, 0) >= 1)
|
||||
{
|
||||
if (!_token.IsCancellationRequested)
|
||||
{
|
||||
DelayDo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void TimerCallback(object? state)
|
||||
{
|
||||
if (_token.IsCancellationRequested)
|
||||
return;
|
||||
|
||||
Interlocked.Increment(ref _pendingTriggers);
|
||||
|
||||
if (Interlocked.Exchange(ref _isRunning, 1) == 1)
|
||||
return;
|
||||
|
||||
// 减少一个触发次数
|
||||
Interlocked.Decrement(ref _pendingTriggers);
|
||||
|
||||
try
|
||||
{
|
||||
_taskAction(state, _token);
|
||||
}
|
||||
catch (OperationCanceledException)
|
||||
{
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogMessage.LogWarning(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Interlocked.Exchange(ref _isRunning, 0);
|
||||
}
|
||||
|
||||
if (Interlocked.Exchange(ref _pendingTriggers, 0) >= 1)
|
||||
{
|
||||
if (!_token.IsCancellationRequested)
|
||||
{
|
||||
DelayDo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void DelayDo()
|
||||
{
|
||||
// 延迟触发下一次
|
||||
if (!_token.IsCancellationRequested)
|
||||
_timer?.SetNext(_interval10MS);
|
||||
}
|
||||
|
||||
public void Stop()
|
||||
{
|
||||
_timer?.Dispose();
|
||||
_timer = null;
|
||||
}
|
||||
|
||||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
Stop();
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
}
|
@@ -23,16 +23,17 @@ public class DoTask
|
||||
/// 取消令牌
|
||||
/// </summary>
|
||||
private CancellationTokenSource? _cancelTokenSource;
|
||||
private object? _state;
|
||||
|
||||
public DoTask(Func<CancellationToken, ValueTask> doWork, ILog logger, string taskName = null)
|
||||
public DoTask(Func<object?, CancellationToken, Task> doWork, ILog logger, object? state = null, string taskName = null)
|
||||
{
|
||||
DoWork = doWork; Logger = logger; TaskName = taskName;
|
||||
DoWork = doWork; Logger = logger; TaskName = taskName; _state = state;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 执行任务方法
|
||||
/// </summary>
|
||||
public Func<CancellationToken, ValueTask> DoWork { get; }
|
||||
public Func<object?, CancellationToken, Task> DoWork { get; }
|
||||
private ILog Logger { get; }
|
||||
private Task PrivateTask { get; set; }
|
||||
private string TaskName { get; }
|
||||
@@ -74,7 +75,7 @@ public class DoTask
|
||||
{
|
||||
if (_cancelTokenSource.IsCancellationRequested)
|
||||
return;
|
||||
await DoWork(_cancelTokenSource.Token).ConfigureAwait(false);
|
||||
await DoWork(_state, _cancelTokenSource.Token).ConfigureAwait(false);
|
||||
}
|
||||
catch (OperationCanceledException)
|
||||
{
|
@@ -0,0 +1,7 @@
|
||||
namespace ThingsGateway.Gateway.Application
|
||||
{
|
||||
public interface IScheduledIntIntervalTask
|
||||
{
|
||||
int IntervalMS { get; }
|
||||
}
|
||||
}
|
@@ -0,0 +1,13 @@
|
||||
namespace ThingsGateway.Gateway.Application
|
||||
{
|
||||
public interface IScheduledTask
|
||||
{
|
||||
void Start();
|
||||
void Stop();
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@@ -0,0 +1,93 @@
|
||||
using ThingsGateway.NewLife;
|
||||
using ThingsGateway.NewLife.Threading;
|
||||
|
||||
using TouchSocket.Core;
|
||||
|
||||
namespace ThingsGateway.Gateway.Application;
|
||||
|
||||
public class ScheduledAsyncTask : DisposeBase, IScheduledTask, IScheduledIntIntervalTask
|
||||
{
|
||||
private int _interval10MS = 10;
|
||||
public int IntervalMS { get; }
|
||||
private readonly Func<object?, CancellationToken, Task> _taskFunc;
|
||||
private readonly CancellationToken _token;
|
||||
private TimerX? _timer;
|
||||
private object? _state;
|
||||
private ILog LogMessage;
|
||||
private volatile int _isRunning = 0;
|
||||
private volatile int _pendingTriggers = 0;
|
||||
|
||||
public ScheduledAsyncTask(int interval, Func<object?, CancellationToken, Task> taskFunc, object? state, ILog log, CancellationToken token)
|
||||
{
|
||||
IntervalMS = interval;
|
||||
LogMessage = log;
|
||||
_state = state;
|
||||
_taskFunc = taskFunc;
|
||||
_token = token;
|
||||
}
|
||||
|
||||
public void Start()
|
||||
{
|
||||
_timer?.Dispose();
|
||||
if (!_token.IsCancellationRequested)
|
||||
_timer = new TimerX(DoAsync, _state, IntervalMS, IntervalMS, nameof(IScheduledTask)) { Async = true };
|
||||
}
|
||||
|
||||
private async Task DoAsync(object? state)
|
||||
{
|
||||
if (_token.IsCancellationRequested)
|
||||
return;
|
||||
|
||||
Interlocked.Increment(ref _pendingTriggers);
|
||||
|
||||
if (Interlocked.Exchange(ref _isRunning, 1) == 1)
|
||||
return;
|
||||
|
||||
// 减少一个触发次数
|
||||
Interlocked.Decrement(ref _pendingTriggers);
|
||||
|
||||
try
|
||||
{
|
||||
await _taskFunc(state, _token).ConfigureAwait(false);
|
||||
}
|
||||
catch (OperationCanceledException)
|
||||
{
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogMessage.LogWarning(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Interlocked.Exchange(ref _isRunning, 0);
|
||||
}
|
||||
|
||||
if (Interlocked.Exchange(ref _pendingTriggers, 0) >= 1)
|
||||
{
|
||||
if (!_token.IsCancellationRequested)
|
||||
{
|
||||
DelayDo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void DelayDo()
|
||||
{
|
||||
// 延迟触发下一次
|
||||
if (!_token.IsCancellationRequested)
|
||||
_timer?.SetNext(_interval10MS);
|
||||
}
|
||||
|
||||
|
||||
public void Stop()
|
||||
{
|
||||
_timer?.Dispose();
|
||||
_timer = null;
|
||||
}
|
||||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
Stop();
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
}
|
@@ -0,0 +1,96 @@
|
||||
using ThingsGateway.NewLife;
|
||||
using ThingsGateway.NewLife.Threading;
|
||||
|
||||
using TouchSocket.Core;
|
||||
|
||||
namespace ThingsGateway.Gateway.Application;
|
||||
|
||||
public class ScheduledSyncTask : DisposeBase, IScheduledTask, IScheduledIntIntervalTask
|
||||
{
|
||||
private int _interval10MS = 10;
|
||||
public int IntervalMS { get; }
|
||||
private readonly Action<object?, CancellationToken> _taskAction;
|
||||
private readonly CancellationToken _token;
|
||||
private TimerX? _timer;
|
||||
private object? _state;
|
||||
private ILog LogMessage;
|
||||
private volatile int _isRunning = 0;
|
||||
private volatile int _pendingTriggers = 0;
|
||||
|
||||
public ScheduledSyncTask(int interval, Action<object?, CancellationToken> taskFunc, object? state, ILog log, CancellationToken token)
|
||||
{
|
||||
IntervalMS = interval;
|
||||
LogMessage = log;
|
||||
_state = state;
|
||||
_taskAction = taskFunc;
|
||||
_token = token;
|
||||
}
|
||||
|
||||
public void Start()
|
||||
{
|
||||
_timer?.Dispose();
|
||||
if (!_token.IsCancellationRequested)
|
||||
_timer = new TimerX(TimerCallback, _state, IntervalMS, IntervalMS, nameof(IScheduledTask)) { Async = true };
|
||||
}
|
||||
|
||||
private void TimerCallback(object? state)
|
||||
{
|
||||
if (_token.IsCancellationRequested)
|
||||
return;
|
||||
|
||||
Interlocked.Increment(ref _pendingTriggers);
|
||||
|
||||
if (Interlocked.Exchange(ref _isRunning, 1) == 1)
|
||||
return;
|
||||
Do(state);
|
||||
}
|
||||
|
||||
private void Do(object? state)
|
||||
{
|
||||
// 减少一个触发次数
|
||||
Interlocked.Decrement(ref _pendingTriggers);
|
||||
|
||||
try
|
||||
{
|
||||
_taskAction(state, _token);
|
||||
}
|
||||
catch (OperationCanceledException)
|
||||
{
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
LogMessage.LogWarning(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
Interlocked.Exchange(ref _isRunning, 0);
|
||||
}
|
||||
|
||||
if (Interlocked.Exchange(ref _pendingTriggers, 0) >= 1)
|
||||
{
|
||||
if (!_token.IsCancellationRequested)
|
||||
{
|
||||
DelayDo();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void DelayDo()
|
||||
{
|
||||
// 延迟触发下一次
|
||||
if (!_token.IsCancellationRequested)
|
||||
_timer?.SetNext(_interval10MS);
|
||||
}
|
||||
|
||||
public void Stop()
|
||||
{
|
||||
_timer?.Dispose();
|
||||
_timer = null;
|
||||
}
|
||||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
Stop();
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
}
|
@@ -0,0 +1,29 @@
|
||||
namespace ThingsGateway.Gateway.Application;
|
||||
|
||||
public static class ScheduledTaskHelper
|
||||
{
|
||||
public static IScheduledTask GetTask(string interval, Func<object?, CancellationToken, Task> func, object? state, TouchSocket.Core.ILog log, CancellationToken cancellationToken)
|
||||
{
|
||||
if (int.TryParse(interval, out int intervalV))
|
||||
{
|
||||
var intervalMilliseconds = intervalV < 10 ? 10 : intervalV;
|
||||
return new ScheduledAsyncTask(intervalMilliseconds, func, state, log, cancellationToken);
|
||||
}
|
||||
else
|
||||
{
|
||||
return new CronScheduledTask(interval, func, state, log, cancellationToken);
|
||||
}
|
||||
}
|
||||
public static IScheduledTask GetTask(string interval, Action<object?, CancellationToken> action, object? state, TouchSocket.Core.ILog log, CancellationToken cancellationToken)
|
||||
{
|
||||
if (int.TryParse(interval, out int intervalV))
|
||||
{
|
||||
var intervalMilliseconds = intervalV < 10 ? 10 : intervalV;
|
||||
return new ScheduledSyncTask(intervalMilliseconds, action, state, log, cancellationToken);
|
||||
}
|
||||
else
|
||||
{
|
||||
return new CronScheduledTask(interval, action, state, log, cancellationToken);
|
||||
}
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user