|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Immutable;
using System.Threading;
using Microsoft.CodeAnalysis.CodeStyle;
using Microsoft.CodeAnalysis.Diagnostics;
using Microsoft.CodeAnalysis.EmbeddedLanguages;
using Microsoft.CodeAnalysis.Simplification;
namespace Microsoft.CodeAnalysis.Features.EmbeddedLanguages.Json.LanguageServices
{
/// <summary>
/// Analyzer that helps find strings that are likely to be JSON and which we should offer the
/// enable language service features for.
/// </summary>
internal abstract class AbstractJsonDetectionAnalyzer : AbstractBuiltInCodeStyleDiagnosticAnalyzer
{
public const string DiagnosticId = "JSON002";
public const string StrictKey = nameof(StrictKey);
private static readonly ImmutableDictionary<string, string?> s_strictProperties =
ImmutableDictionary<string, string?>.Empty.Add(StrictKey, "");
private readonly EmbeddedLanguageInfo _info;
protected AbstractJsonDetectionAnalyzer(EmbeddedLanguageInfo info)
: base(DiagnosticId,
EnforceOnBuildValues.DetectProbableJsonStrings,
option: null,
new LocalizableResourceString(nameof(FeaturesResources.Probable_JSON_string_detected), FeaturesResources.ResourceManager, typeof(FeaturesResources)),
new LocalizableResourceString(nameof(FeaturesResources.Probable_JSON_string_detected), FeaturesResources.ResourceManager, typeof(FeaturesResources)))
{
_info = info;
}
public override DiagnosticAnalyzerCategory GetAnalyzerCategory()
=> DiagnosticAnalyzerCategory.SemanticSpanAnalysis;
public override bool OpenFileOnly(SimplifierOptions? options)
=> false;
protected override void InitializeWorker(AnalysisContext context)
=> context.RegisterSemanticModelAction(Analyze);
public void Analyze(SemanticModelAnalysisContext context)
{
var semanticModel = context.SemanticModel;
var syntaxTree = semanticModel.SyntaxTree;
var cancellationToken = context.CancellationToken;
if (!context.GetIdeAnalyzerOptions().DetectAndOfferEditorFeaturesForProbableJsonStrings)
return;
var detector = JsonLanguageDetector.GetOrCreate(semanticModel.Compilation, _info);
var root = syntaxTree.GetRoot(cancellationToken);
Analyze(context, detector, root, cancellationToken);
}
private void Analyze(
SemanticModelAnalysisContext context,
JsonLanguageDetector detector,
SyntaxNode node,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
foreach (var child in node.ChildNodesAndTokens())
{
if (child.IsNode)
{
Analyze(context, detector, child.AsNode()!, cancellationToken);
}
else
{
var token = child.AsToken();
// If we have a string, and it's not being passed to a known JSON api (and it doesn't have a
// lang=json comment), but it is parseable as JSON with enough structure that we are confident it is
// json, then report that json features could light up here.
if (_info.IsAnyStringLiteral(token.RawKind) &&
detector.TryParseString(token, context.SemanticModel, includeProbableStrings: false, cancellationToken) == null &&
detector.IsProbablyJson(token, out _))
{
var chars = _info.VirtualCharService.TryConvertToVirtualChars(token);
var strictTree = JsonParser.TryParse(chars, JsonOptions.Strict);
var properties = strictTree != null && strictTree.Diagnostics.Length == 0
? s_strictProperties
: ImmutableDictionary<string, string?>.Empty;
// Show this as a hidden diagnostic so the user can enable json features explicitly if they
// want, but do not spam them with a ... notification if they don't want it.
context.ReportDiagnostic(DiagnosticHelper.Create(
this.Descriptor,
token.GetLocation(),
ReportDiagnostic.Hidden,
additionalLocations: null,
properties));
}
}
}
}
}
}
|