| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- /**
- * C# Framework Resolver
- *
- * Handles ASP.NET Core, ASP.NET MVC, and common C# patterns.
- */
- import { Node } from '../../types';
- import { FrameworkResolver, UnresolvedRef, ResolvedRef, ResolutionContext } from '../types';
- import { stripCommentsForRegex } from '../strip-comments';
- export const aspnetResolver: FrameworkResolver = {
- name: 'aspnet',
- languages: ['csharp'],
- detect(context: ResolutionContext): boolean {
- // Check for .csproj files with ASP.NET references
- const allFiles = context.getAllFiles();
- for (const file of allFiles) {
- if (file.endsWith('.csproj')) {
- const content = context.readFile(file);
- if (content && (
- content.includes('Microsoft.AspNetCore') ||
- content.includes('Microsoft.NET.Sdk.Web') ||
- content.includes('System.Web.Mvc')
- )) {
- return true;
- }
- }
- }
- // Check for Program.cs with WebApplication
- const programCs = context.readFile('Program.cs');
- if (programCs && (
- programCs.includes('WebApplication') ||
- programCs.includes('CreateHostBuilder') ||
- programCs.includes('UseStartup')
- )) {
- return true;
- }
- // Check for Startup.cs (ASP.NET Core signature)
- if (context.fileExists('Startup.cs')) {
- return true;
- }
- // ASP.NET signatures in controller/entrypoint SOURCE — covers feature-folder
- // apps with no `/Controllers/` dir and a subdir `Program.cs` that the
- // root-only checks above miss (e.g. realworld: Features/*/FooController.cs).
- // `.csproj` often isn't in the indexed source set, so source-scan is the
- // reliable signal.
- for (const file of allFiles) {
- if (!/(?:Controller|Program|Startup)\.cs$/.test(file)) continue;
- const c = context.readFile(file);
- if (c && (
- /\[(?:ApiController|Route|Http(?:Get|Post|Put|Patch|Delete))\b/.test(c) ||
- c.includes('ControllerBase') || c.includes(': Controller') ||
- c.includes('MapControllers') || c.includes('WebApplication') ||
- c.includes('Microsoft.AspNetCore')
- )) return true;
- }
- return false;
- },
- resolve(ref: UnresolvedRef, context: ResolutionContext): ResolvedRef | null {
- // Pattern 1: Controller references
- if (ref.referenceName.endsWith('Controller')) {
- const result = resolveByNameAndKind(ref.referenceName, CLASS_KINDS, CONTROLLER_DIRS, context);
- if (result) {
- return {
- original: ref,
- targetNodeId: result,
- confidence: 0.85,
- resolvedBy: 'framework',
- };
- }
- }
- // Pattern 2: Service references (dependency injection)
- if (ref.referenceName.endsWith('Service') || ref.referenceName.startsWith('I') && ref.referenceName.length > 1) {
- const result = resolveByNameAndKind(ref.referenceName, SERVICE_KINDS, SERVICE_DIRS, context);
- if (result) {
- return {
- original: ref,
- targetNodeId: result,
- confidence: 0.85,
- resolvedBy: 'framework',
- };
- }
- }
- // Pattern 3: Repository references
- if (ref.referenceName.endsWith('Repository')) {
- const result = resolveByNameAndKind(ref.referenceName, SERVICE_KINDS, REPO_DIRS, context);
- if (result) {
- return {
- original: ref,
- targetNodeId: result,
- confidence: 0.85,
- resolvedBy: 'framework',
- };
- }
- }
- // Pattern 4: Model/Entity references
- if (/^[A-Z][a-zA-Z]+$/.test(ref.referenceName)) {
- const result = resolveByNameAndKind(ref.referenceName, CLASS_KINDS, MODEL_DIRS, context);
- if (result) {
- return {
- original: ref,
- targetNodeId: result,
- confidence: 0.7,
- resolvedBy: 'framework',
- };
- }
- }
- // Pattern 5: ViewModel references
- if (ref.referenceName.endsWith('ViewModel') || ref.referenceName.endsWith('Dto')) {
- const result = resolveByNameAndKind(ref.referenceName, CLASS_KINDS, VIEWMODEL_DIRS, context);
- if (result) {
- return {
- original: ref,
- targetNodeId: result,
- confidence: 0.8,
- resolvedBy: 'framework',
- };
- }
- }
- return null;
- },
- extract(filePath, content) {
- if (!filePath.endsWith('.cs')) return { nodes: [], references: [] };
- const nodes: Node[] = [];
- const references: UnresolvedRef[] = [];
- const now = Date.now();
- const safe = stripCommentsForRegex(content, 'csharp');
- // Class-level [Route("api/[controller]")] prefix — joined onto each action.
- let classPrefix = '';
- const cls = /\[Route\s*\(\s*"([^"]+)"[^)]*\)\]\s*(?:\[[^\]]*\]\s*)*(?:public\s+|sealed\s+|abstract\s+|partial\s+)*class\b/.exec(safe);
- if (cls) classPrefix = cls[1]!;
- // [HttpGet], [HttpGet("path")], [HttpPost("path", Name="x")] — BARE or with a
- // path. (The old regex required a string, so bare attributes — with the route
- // on the class [Route] — were missed; eShopOnWeb was 24 bare / 2 string.)
- const attrRegex = /\[(HttpGet|HttpPost|HttpPut|HttpPatch|HttpDelete)(?:\s*\(\s*"([^"]+)"[^)]*\))?\s*\]/g;
- let match: RegExpExecArray | null;
- while ((match = attrRegex.exec(safe)) !== null) {
- const verb = match[1]!;
- const method = verb.replace(/^Http/, '').toUpperCase();
- const routePath = joinCsPath(classPrefix, match[2] || '');
- const line = safe.slice(0, match.index).split('\n').length;
- const routeNode: Node = {
- id: `route:${filePath}:${line}:${method}:${routePath}`,
- kind: 'route',
- name: `${method} ${routePath}`,
- qualifiedName: `${filePath}::route:${routePath}`,
- filePath,
- startLine: line,
- endLine: line,
- startColumn: 0,
- endColumn: match[0].length,
- language: 'csharp',
- updatedAt: now,
- };
- nodes.push(routeNode);
- // Next method declaration (skip stacked attributes; C# puts the return type
- // before the name). Bounded so we don't grab a far one.
- const tail = safe.slice(match.index + match[0].length, match.index + match[0].length + 600);
- const methodMatch = tail.match(/(?:public|private|protected|internal)\s+[\w<>,\s\[\]?.]+?\s+(\w+)\s*\(/);
- if (methodMatch) {
- references.push({
- fromNodeId: routeNode.id,
- referenceName: methodMatch[1]!,
- referenceKind: 'references',
- line,
- column: 0,
- filePath,
- language: 'csharp',
- });
- }
- }
- // Minimal APIs: app.MapGet("/path", handler)
- const minimalRegex = /\.Map(Get|Post|Put|Patch|Delete)\s*\(\s*"([^"]+)"\s*,\s*([^,)]+)/g;
- while ((match = minimalRegex.exec(safe)) !== null) {
- const [, verb, routePath, handlerExpr] = match;
- const method = verb!.toUpperCase();
- const line = safe.slice(0, match.index).split('\n').length;
- const routeNode: Node = {
- id: `route:${filePath}:${line}:${method}:${routePath}`,
- kind: 'route',
- name: `${method} ${routePath}`,
- qualifiedName: `${filePath}::route:${routePath}`,
- filePath,
- startLine: line,
- endLine: line,
- startColumn: 0,
- endColumn: match[0].length,
- language: 'csharp',
- updatedAt: now,
- };
- nodes.push(routeNode);
- const handlerName = extractCSharpTailIdent(handlerExpr!);
- if (handlerName) {
- references.push({
- fromNodeId: routeNode.id,
- referenceName: handlerName,
- referenceKind: 'references',
- line,
- column: 0,
- filePath,
- language: 'csharp',
- });
- }
- }
- return { nodes, references };
- },
- };
- /** Join a class-level [Route] prefix and an action's path into one normalized `/path`. */
- function joinCsPath(prefix: string, sub: string): string {
- const parts = [prefix, sub].map((p) => p.replace(/^\/+|\/+$/g, '')).filter(Boolean);
- return '/' + parts.join('/');
- }
- /** Extract last identifier from an expression like `MyService.Handler` or `Handler`. */
- function extractCSharpTailIdent(expr: string): string | null {
- const cleaned = expr.trim().replace(/\s+/g, '');
- const m = cleaned.match(/(?:\.|^)([A-Za-z_][A-Za-z0-9_]*)$/);
- return m ? m[1]! : null;
- }
- // Directory patterns
- const CONTROLLER_DIRS = ['/Controllers/'];
- const SERVICE_DIRS = ['/Services/', '/Service/', '/Application/'];
- const REPO_DIRS = ['/Repositories/', '/Repository/', '/Data/', '/Infrastructure/'];
- const MODEL_DIRS = ['/Models/', '/Model/', '/Entities/', '/Entity/', '/Domain/'];
- const VIEWMODEL_DIRS = ['/ViewModels/', '/ViewModel/', '/DTOs/', '/Dto/'];
- const CLASS_KINDS = new Set(['class']);
- const SERVICE_KINDS = new Set(['class', 'interface']);
- /**
- * Resolve a symbol by name using indexed queries instead of scanning all files.
- */
- function resolveByNameAndKind(
- name: string,
- kinds: Set<string>,
- preferredDirPatterns: string[],
- context: ResolutionContext,
- ): string | null {
- const candidates = context.getNodesByName(name);
- if (candidates.length === 0) return null;
- const kindFiltered = candidates.filter((n) => kinds.has(n.kind));
- if (kindFiltered.length === 0) return null;
- // Prefer candidates in framework-conventional directories
- const preferred = kindFiltered.filter((n) =>
- preferredDirPatterns.some((d) => n.filePath.includes(d))
- );
- if (preferred.length > 0) return preferred[0]!.id;
- // Fall back to any match
- return kindFiltered[0]!.id;
- }
|