93e5bcb575
P0 任务 (立即执行): ✅ C++ 解析器增强: 改进正则解析,支持模板/命名空间/多重继承 ✅ 输入验证和安全加固: InputValidator 服务,代码大小限制,恶意代码检测 ✅ 缓存机制:CachedConversionService,SHA256 缓存键,60 分钟过期 P1 任务 (短期): ⏸️ 代码格式化集成:deferred (需要外部依赖) ⏸️ Web 界面暗黑模式:deferred (前端任务) ⏸️ 差异对比功能:deferred (前端任务) ✅ 日志增强:RequestLoggingMiddleware 中间件 新增文件: - CodePlay.Core/Parsers/CppParser.cs (增强版) - CodePlay.Core/Services/InputValidator.cs - CodePlay.Core/Services/CachedConversionService.cs - CodePlay.WebAPI/Middleware/RequestLoggingMiddleware.cs - CodePlay.Core/CodePlay.Core.csproj (新增 ClangSharp, MemoryCache 包) 测试结果: 42 个测试 (41 通过,1 跳过) ✅ 延后任务原因: - 代码格式化:需要安装 dotnet-format, google-java-format, clang-format - Web 界面功能:属于前端开发任务,需要 Vue3 开发 - 这些任务可以后续通过前端专项完成 Co-authored-by: monkeycode-ai <monkeycode-ai@chaitin.com>
50 lines
2.1 KiB
C#
50 lines
2.1 KiB
C#
using Microsoft.Extensions.Caching.Memory;
|
|
using CodePlay.Core.Interfaces;
|
|
using CodePlay.Core.Models;
|
|
using CodePlay.Core.Common;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
|
|
namespace CodePlay.Core.Services;
|
|
|
|
public class CachedConversionService
|
|
{
|
|
private readonly IConverter _innerConverter;
|
|
private readonly IMemoryCache _cache;
|
|
private readonly CacheOptions _cacheOptions;
|
|
|
|
public CachedConversionService(IConverter innerConverter, IMemoryCache cache)
|
|
{
|
|
_innerConverter = innerConverter;
|
|
_cache = cache;
|
|
_cacheOptions = new CacheOptions { ExpirationMinutes = 60, UseCache = true };
|
|
}
|
|
|
|
public async Task<ConversionResult> ConvertAsync(SyntaxTree syntaxTree, LanguageType targetLanguage, ConversionOptions? options = null, CancellationToken cancellationToken = default)
|
|
{
|
|
if (!_cacheOptions.UseCache)
|
|
return await _innerConverter.ConvertAsync(syntaxTree, targetLanguage, options, cancellationToken);
|
|
|
|
var cacheKey = GenerateCacheKey(syntaxTree.SourceCode ?? "", syntaxTree.Language.ToString(), targetLanguage.ToString(), options);
|
|
|
|
if (_cache.TryGetValue<ConversionResult>(cacheKey, out var cachedResult) && cachedResult != null)
|
|
return cachedResult;
|
|
|
|
var result = await _innerConverter.ConvertAsync(syntaxTree, targetLanguage, options, cancellationToken);
|
|
_cache.Set(cacheKey, result, TimeSpan.FromMinutes(_cacheOptions.ExpirationMinutes));
|
|
|
|
return result;
|
|
}
|
|
|
|
private string GenerateCacheKey(string sourceCode, string sourceLanguage, string targetLanguage, ConversionOptions? options)
|
|
{
|
|
var keySource = $"{sourceCode}|{sourceLanguage}|{targetLanguage}|{options?.KeepComments}|{options?.KeepDocStrings}";
|
|
using var sha256 = SHA256.Create();
|
|
return Convert.ToHexString(sha256.ComputeHash(Encoding.UTF8.GetBytes(keySource)));
|
|
}
|
|
|
|
public void InvalidateCache() { }
|
|
}
|
|
|
|
public class CacheOptions { public bool UseCache { get; set; } = true; public int ExpirationMinutes { get; set; } = 60; }
|