File size: 53,272 Bytes
4fea3ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 | /**
* 🚀 Advanced C# Test File for Chahuadev Emoji Cleaner Tool
* 📝 Comprehensive C# patterns with extensive emoji usage for testing
* 🎯 Features: Modern C# features, async/await, LINQ, and emoji integration
* 🧪 Perfect for testing emoji removal from C# source files
*
* @author Chahuadev Development Team 👨💻
* @version 2.0.0 🎯
* @since 2025-01-20 📅
*/
using System; // 🔧 Core system functionality
using System.Collections.Generic; // 📦 Collections support
using System.Collections.Concurrent; // 🧵 Thread-safe collections
using System.Linq; // 🌊 LINQ queries
using System.Threading.Tasks; // ⚡ Async operations
using System.Threading; // 🧵 Threading support
using System.Text; // 📝 Text processing
using System.Text.RegularExpressions; // 🔍 Regular expressions
using System.IO; // 📁 File operations
using System.Diagnostics; // 📊 Performance monitoring
using System.Reflection; // 🪞 Reflection capabilities
using System.ComponentModel; // 🏷️ Component model
using System.Runtime.CompilerServices; // ⚙️ Compiler services
using System.Text.Json; // 📄 JSON serialization
using System.Globalization; // 🌍 Internationalization
namespace Chahuadev.EmojiCleaner.Test // 📦 Namespace declaration
{
/// <summary>
/// 🧪 Custom attribute for emoji testing metadata
/// 🎯 Demonstrates attribute usage with emoji descriptions
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property)]
public class EmojiTestAttribute : Attribute
{
/// <summary>🎯 Test description with emoji indicators</summary>
public string Description { get; set; } = "🧪 Default test";
/// <summary>📊 Test category classification</summary>
public string Category { get; set; } = "🏷️ General";
/// <summary>🔥 Priority level (1-5)</summary>
public int Priority { get; set; } = 1;
/// <summary>🏷️ Test tags for organization</summary>
public string[] Tags { get; set; } = Array.Empty<string>();
/// <summary>
/// 🎯 Constructor with emoji-enhanced parameters
/// </summary>
/// <param name="description">📝 Test description</param>
/// <param name="category">📊 Test category</param>
public EmojiTestAttribute(string description, string category = "🏷️ General")
{
Description = description;
Category = category;
}
}
/// <summary>
/// 📊 Immutable record for emoji statistics
/// 🎯 Demonstrates C# 9+ record types with emoji data
/// </summary>
public record EmojiStatistics(
int TotalEmojis, // 🔢 Total emoji count
int UniqueEmojis, // 🎯 Unique emoji varieties
TimeSpan ProcessingTime, // ⏱️ Time taken for processing
Dictionary<string, int> CategoryBreakdown, // 📊 Category statistics
double EfficiencyScore, // 📈 Processing efficiency
bool Success // ✅ Success indicator
)
{
/// <summary>
/// 📋 Generate formatted report with emoji indicators
/// </summary>
/// <returns>📄 Formatted statistics report</returns>
public string GenerateReport()
{
var report = new StringBuilder();
report.AppendLine("📊 EMOJI PROCESSING STATISTICS");
report.AppendLine("==============================");
report.AppendLine();
report.AppendLine($"🔢 Total emojis processed: {TotalEmojis}");
report.AppendLine($"🎯 Unique emoji types: {UniqueEmojis}");
report.AppendLine($"⏱️ Processing time: {ProcessingTime.TotalMilliseconds:F2} ms");
report.AppendLine($"📈 Efficiency score: {EfficiencyScore:F2}%");
report.AppendLine($"✅ Success status: {(Success ? "Completed" : "Failed")}");
report.AppendLine();
if (CategoryBreakdown.Count > 0)
{
report.AppendLine("🏷️ CATEGORY BREAKDOWN:");
foreach (var (category, count) in CategoryBreakdown.OrderByDescending(x => x.Value))
{
var percentage = (double)count / TotalEmojis * 100;
report.AppendLine($" {category}: {count} emojis ({percentage:F1}%)");
}
}
return report.ToString();
}
}
/// <summary>
/// 🎯 Delegate for emoji processing operations
/// ⚡ Functional programming support with emoji context
/// </summary>
/// <typeparam name="TInput">📝 Input type</typeparam>
/// <typeparam name="TOutput">📊 Output type</typeparam>
/// <param name="input">📥 Input data</param>
/// <param name="cancellationToken">🛑 Cancellation support</param>
/// <returns>📤 Processed output</returns>
public delegate Task<TOutput> EmojiProcessorDelegate<TInput, TOutput>(TInput input, CancellationToken cancellationToken);
/// <summary>
/// 🔧 Interface for emoji processing operations
/// 🎯 Contract definition for emoji handlers
/// </summary>
public interface IEmojiProcessor
{
/// <summary>🏷️ Processor name with emoji indicator</summary>
string Name { get; }
/// <summary>📊 Current processing statistics</summary>
EmojiStatistics Statistics { get; }
/// <summary>
/// 🧹 Process content to remove emojis
/// </summary>
/// <param name="content">📝 Input content</param>
/// <param name="cancellationToken">🛑 Cancellation token</param>
/// <returns>📊 Processing result</returns>
Task<ProcessingResult> ProcessContentAsync(string content, CancellationToken cancellationToken = default);
/// <summary>
/// 📦 Process multiple content items in batch
/// </summary>
/// <param name="contentItems">📋 Content collection</param>
/// <param name="cancellationToken">🛑 Cancellation token</param>
/// <returns>📊 Batch processing results</returns>
Task<IEnumerable<ProcessingResult>> ProcessBatchAsync(IEnumerable<string> contentItems, CancellationToken cancellationToken = default);
}
/// <summary>
/// 📊 Processing result container
/// 🎯 Encapsulates emoji processing outcomes
/// </summary>
public class ProcessingResult
{
/// <summary>📝 Original content before processing</summary>
public string OriginalContent { get; init; } = string.Empty;
/// <summary>🧹 Content after emoji removal</summary>
public string CleanedContent { get; init; } = string.Empty;
/// <summary>🔍 List of detected emojis</summary>
public IReadOnlyList<string> FoundEmojis { get; init; } = Array.Empty<string>();
/// <summary>📊 Category-wise emoji statistics</summary>
public IReadOnlyDictionary<string, int> CategoryStats { get; init; } = new Dictionary<string, int>();
/// <summary>⏱️ Time taken for processing</summary>
public TimeSpan ProcessingTime { get; init; }
/// <summary>✅ Success indicator</summary>
public bool Success { get; init; }
/// <summary>❌ Error message if processing failed</summary>
public string? ErrorMessage { get; init; }
/// <summary>🏷️ Processor identifier</summary>
public string ProcessorName { get; init; } = "🔧 Unknown";
/// <summary>
/// 📈 Calculate processing efficiency
/// </summary>
/// <returns>📊 Efficiency percentage</returns>
public double CalculateEfficiency()
{
if (OriginalContent.Length == 0) return 100.0;
var reductionRatio = (double)FoundEmojis.Count / OriginalContent.Length;
return Math.Min(100.0, reductionRatio * 100.0);
}
/// <summary>
/// 📋 Generate detailed processing report
/// </summary>
/// <returns>📄 Formatted report string</returns>
public string GenerateDetailedReport()
{
var report = new StringBuilder();
report.AppendLine("🎯 PROCESSING RESULT REPORT");
report.AppendLine("==========================");
report.AppendLine();
report.AppendLine($"🏷️ Processor: {ProcessorName}");
report.AppendLine($"📝 Original length: {OriginalContent.Length:N0} characters");
report.AppendLine($"🧹 Cleaned length: {CleanedContent.Length:N0} characters");
report.AppendLine($"🔍 Emojis detected: {FoundEmojis.Count:N0}");
report.AppendLine($"⏱️ Processing time: {ProcessingTime.TotalMilliseconds:F2} ms");
report.AppendLine($"📈 Efficiency: {CalculateEfficiency():F2}%");
report.AppendLine($"✅ Status: {(Success ? "Success" : "Failed")}");
if (!string.IsNullOrEmpty(ErrorMessage))
{
report.AppendLine($"❌ Error: {ErrorMessage}");
}
return report.ToString();
}
}
/// <summary>
/// 🧹 Advanced emoji processor implementation
/// ⚡ High-performance emoji cleaning with modern C# features
/// </summary>
[EmojiTest("🧪 Advanced processor implementation", "🔧 Core")]
public class AdvancedEmojiProcessor : IEmojiProcessor, IDisposable
{
// 🔍 Emoji detection patterns for different categories
private static readonly Dictionary<string, Regex> EmojiPatterns = new()
{
["😀 Faces"] = new Regex(@"[\u{1F600}-\u{1F64F}]", RegexOptions.Compiled | RegexOptions.CultureInvariant),
["❤️ Hearts"] = new Regex(@"[\u{1F495}-\u{1F49F}]|❤️|🧡|💛|💚|💙|💜", RegexOptions.Compiled | RegexOptions.CultureInvariant),
["🚀 Objects"] = new Regex(@"[\u{1F680}-\u{1F6FF}]", RegexOptions.Compiled | RegexOptions.CultureInvariant),
["🌸 Nature"] = new Regex(@"[\u{1F300}-\u{1F5FF}]", RegexOptions.Compiled | RegexOptions.CultureInvariant),
["🎯 Symbols"] = new Regex(@"[\u{2600}-\u{26FF}]", RegexOptions.Compiled | RegexOptions.CultureInvariant)
};
// 💾 Thread-safe caching for performance optimization
private readonly ConcurrentDictionary<string, List<string>> _emojiCache = new();
// 📊 Atomic counters for statistics tracking
private long _totalProcessed = 0;
private long _totalEmojisRemoved = 0;
private long _totalProcessingTimeMs = 0;
// ⚙️ Configuration and state
private readonly SemaphoreSlim _semaphore;
private readonly CancellationTokenSource _disposalTokenSource = new();
private bool _disposed = false;
/// <summary>🏷️ Processor name with emoji indicator</summary>
public string Name => "🧹 Advanced C# Emoji Processor";
/// <summary>📊 Current processing statistics</summary>
public EmojiStatistics Statistics => CalculateCurrentStatistics();
/// <summary>
/// 🎯 Constructor with configuration options
/// </summary>
/// <param name="maxConcurrency">🧵 Maximum concurrent operations</param>
public AdvancedEmojiProcessor(int maxConcurrency = Environment.ProcessorCount)
{
_semaphore = new SemaphoreSlim(maxConcurrency, maxConcurrency);
LogMessage("✅ Advanced emoji processor initialized successfully");
}
/// <summary>
/// 🧹 Process content to remove emojis asynchronously
/// </summary>
/// <param name="content">📝 Input content with emojis</param>
/// <param name="cancellationToken">🛑 Cancellation token</param>
/// <returns>📊 Processing result</returns>
[EmojiTest("🔧 Core processing method", "⚡ Performance")]
public async Task<ProcessingResult> ProcessContentAsync(string content, CancellationToken cancellationToken = default)
{
if (_disposed) throw new ObjectDisposedException(nameof(AdvancedEmojiProcessor));
if (string.IsNullOrEmpty(content))
return CreateEmptyResult(content, "📝 Empty or null content provided");
var stopwatch = Stopwatch.StartNew();
try
{
await _semaphore.WaitAsync(cancellationToken);
using var combinedToken = CancellationTokenSource.CreateLinkedTokenSource(
cancellationToken, _disposalTokenSource.Token);
LogMessage($"🔄 Processing content ({content.Length:N0} characters)");
// 🔍 Detect emojis with parallel processing
var foundEmojis = await DetectEmojisAsync(content, combinedToken.Token);
// 📊 Generate category statistics
var categoryStats = await GenerateCategoryStatisticsAsync(foundEmojis, combinedToken.Token);
// 🧹 Remove emojis from content
var cleanedContent = await RemoveEmojisAsync(content, foundEmojis, combinedToken.Token);
stopwatch.Stop();
// 📊 Update global statistics
Interlocked.Increment(ref _totalProcessed);
Interlocked.Add(ref _totalEmojisRemoved, foundEmojis.Count);
Interlocked.Add(ref _totalProcessingTimeMs, stopwatch.ElapsedMilliseconds);
var result = new ProcessingResult
{
OriginalContent = content,
CleanedContent = cleanedContent,
FoundEmojis = foundEmojis.AsReadOnly(),
CategoryStats = categoryStats,
ProcessingTime = stopwatch.Elapsed,
Success = true,
ProcessorName = Name
};
LogMessage($"✅ Processing completed: {foundEmojis.Count} emojis removed in {stopwatch.ElapsedMilliseconds} ms");
return result;
}
catch (OperationCanceledException)
{
LogMessage("🛑 Processing cancelled by user request");
return CreateErrorResult(content, "🛑 Operation was cancelled", stopwatch.Elapsed);
}
catch (Exception ex)
{
LogMessage($"❌ Processing failed: {ex.Message}");
return CreateErrorResult(content, $"❌ Processing error: {ex.Message}", stopwatch.Elapsed);
}
finally
{
_semaphore.Release();
stopwatch.Stop();
}
}
/// <summary>
/// 📦 Process multiple content items in batch
/// </summary>
/// <param name="contentItems">📋 Content collection</param>
/// <param name="cancellationToken">🛑 Cancellation token</param>
/// <returns>📊 Batch processing results</returns>
[EmojiTest("📦 Batch processing capability", "⚡ Performance")]
public async Task<IEnumerable<ProcessingResult>> ProcessBatchAsync(
IEnumerable<string> contentItems,
CancellationToken cancellationToken = default)
{
if (_disposed) throw new ObjectDisposedException(nameof(AdvancedEmojiProcessor));
var items = contentItems?.ToList() ?? new List<string>();
LogMessage($"📦 Starting batch processing for {items.Count:N0} items");
// 🧵 Process items concurrently with controlled parallelism
var tasks = items.Select(async (content, index) =>
{
try
{
var result = await ProcessContentAsync(content, cancellationToken);
return result;
}
catch (Exception ex)
{
LogMessage($"❌ Batch item {index} failed: {ex.Message}");
return CreateErrorResult(content, $"❌ Batch processing error: {ex.Message}", TimeSpan.Zero);
}
});
var results = await Task.WhenAll(tasks);
var successCount = results.Count(r => r.Success);
var totalEmojis = results.Sum(r => r.FoundEmojis.Count);
LogMessage($"📦 Batch processing completed: {successCount}/{items.Count} successful, {totalEmojis:N0} emojis removed");
return results;
}
/// <summary>
/// 🔍 Detect emojis in content using parallel pattern matching
/// </summary>
/// <param name="content">📝 Content to analyze</param>
/// <param name="cancellationToken">🛑 Cancellation token</param>
/// <returns>📋 List of found emojis</returns>
private async Task<List<string>> DetectEmojisAsync(string content, CancellationToken cancellationToken)
{
// 💾 Check cache first for performance
var cacheKey = content.GetHashCode().ToString();
if (_emojiCache.TryGetValue(cacheKey, out var cachedEmojis))
{
LogMessage("📊 Cache hit for emoji detection");
return new List<string>(cachedEmojis);
}
// 🔍 Parallel detection across emoji categories
var detectionTasks = EmojiPatterns.Select(async pattern =>
{
return await Task.Run(() =>
{
cancellationToken.ThrowIfCancellationRequested();
var matches = pattern.Value.Matches(content);
return matches.Cast<Match>().Select(m => m.Value).ToList();
}, cancellationToken);
});
var categoryResults = await Task.WhenAll(detectionTasks);
// 🎯 Combine and deduplicate results
var allEmojis = categoryResults
.SelectMany(emojis => emojis)
.Distinct()
.OrderBy(emoji => emoji)
.ToList();
// 💾 Cache results for future use
_emojiCache.TryAdd(cacheKey, new List<string>(allEmojis));
return allEmojis;
}
/// <summary>
/// 📊 Generate category statistics for detected emojis
/// </summary>
/// <param name="emojis">🔍 Detected emoji list</param>
/// <param name="cancellationToken">🛑 Cancellation token</param>
/// <returns>📈 Category statistics dictionary</returns>
private async Task<Dictionary<string, int>> GenerateCategoryStatisticsAsync(
List<string> emojis,
CancellationToken cancellationToken)
{
var categoryStats = new Dictionary<string, int>();
// 🔄 Count emojis by category using parallel processing
var categoryTasks = EmojiPatterns.Select(async pattern =>
{
var (categoryName, regex) = pattern;
var count = await Task.Run(() =>
{
cancellationToken.ThrowIfCancellationRequested();
return emojis.Count(emoji => regex.IsMatch(emoji));
}, cancellationToken);
return new { Category = categoryName, Count = count };
});
var results = await Task.WhenAll(categoryTasks);
foreach (var result in results.Where(r => r.Count > 0))
{
categoryStats[result.Category] = result.Count;
}
return categoryStats;
}
/// <summary>
/// 🧹 Remove detected emojis from content
/// </summary>
/// <param name="content">📝 Original content</param>
/// <param name="emojis">🔍 Emojis to remove</param>
/// <param name="cancellationToken">🛑 Cancellation token</param>
/// <returns>🧹 Cleaned content</returns>
private async Task<string> RemoveEmojisAsync(
string content,
List<string> emojis,
CancellationToken cancellationToken)
{
return await Task.Run(() =>
{
cancellationToken.ThrowIfCancellationRequested();
var result = content;
// 🔄 Remove each detected emoji
foreach (var emoji in emojis)
{
cancellationToken.ThrowIfCancellationRequested();
result = result.Replace(emoji, string.Empty);
}
// 🧹 Clean up extra whitespace
result = Regex.Replace(result, @"\s+", " ").Trim();
return result;
}, cancellationToken);
}
/// <summary>
/// 📊 Calculate current processor statistics
/// </summary>
/// <returns>📈 Current statistics</returns>
private EmojiStatistics CalculateCurrentStatistics()
{
var totalProcessed = Interlocked.Read(ref _totalProcessed);
var totalEmojisRemoved = Interlocked.Read(ref _totalEmojisRemoved);
var totalTimeMs = Interlocked.Read(ref _totalProcessingTimeMs);
var avgTimeMs = totalProcessed > 0 ? (double)totalTimeMs / totalProcessed : 0.0;
var efficiency = totalProcessed > 0 ? (double)totalEmojisRemoved / totalProcessed * 100 : 0.0;
return new EmojiStatistics(
TotalEmojis: (int)totalEmojisRemoved,
UniqueEmojis: _emojiCache.Values.SelectMany(v => v).Distinct().Count(),
ProcessingTime: TimeSpan.FromMilliseconds(avgTimeMs),
CategoryBreakdown: new Dictionary<string, int>(),
EfficiencyScore: efficiency,
Success: true
);
}
/// <summary>
/// 📝 Create empty result for invalid input
/// </summary>
/// <param name="content">📝 Original content</param>
/// <param name="message">💬 Error message</param>
/// <returns>📊 Empty processing result</returns>
private ProcessingResult CreateEmptyResult(string content, string message)
{
return new ProcessingResult
{
OriginalContent = content ?? string.Empty,
CleanedContent = content ?? string.Empty,
FoundEmojis = Array.Empty<string>(),
CategoryStats = new Dictionary<string, int>(),
ProcessingTime = TimeSpan.Zero,
Success = false,
ErrorMessage = message,
ProcessorName = Name
};
}
/// <summary>
/// ❌ Create error result for failed processing
/// </summary>
/// <param name="content">📝 Original content</param>
/// <param name="error">❌ Error message</param>
/// <param name="elapsed">⏱️ Elapsed time</param>
/// <returns>📊 Error processing result</returns>
private ProcessingResult CreateErrorResult(string content, string error, TimeSpan elapsed)
{
return new ProcessingResult
{
OriginalContent = content,
CleanedContent = content, // 🔄 Return original on error
FoundEmojis = Array.Empty<string>(),
CategoryStats = new Dictionary<string, int>(),
ProcessingTime = elapsed,
Success = false,
ErrorMessage = error,
ProcessorName = Name
};
}
/// <summary>
/// 📝 Log message with timestamp and emoji indicators
/// </summary>
/// <param name="message">💬 Message to log</param>
private void LogMessage(string message)
{
var timestamp = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff", CultureInfo.InvariantCulture);
Console.WriteLine($"[{timestamp}] 🕒 {Name}: {message}");
}
/// <summary>
/// 🧹 Dispose pattern implementation
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// 🧹 Protected dispose implementation
/// </summary>
/// <param name="disposing">🔄 Disposing flag</param>
protected virtual void Dispose(bool disposing)
{
if (!_disposed && disposing)
{
LogMessage("🔄 Disposing emoji processor resources");
_disposalTokenSource.Cancel();
_semaphore?.Dispose();
_disposalTokenSource?.Dispose();
_emojiCache.Clear();
_disposed = true;
LogMessage("✅ Emoji processor disposed successfully");
}
}
}
/// <summary>
/// 🛠️ Utility class for emoji-related operations
/// 🎯 Static helper methods for emoji analysis
/// </summary>
public static class EmojiUtilities
{
// 🔍 Comprehensive emoji detection pattern
private static readonly Regex AllEmojisPattern = new(
@"[\u{1F600}-\u{1F64F}]|[\u{1F300}-\u{1F5FF}]|[\u{1F680}-\u{1F6FF}]|[\u{2600}-\u{26FF}]|[\u{1F1E0}-\u{1F1FF}]|[\u{1F900}-\u{1F9FF}]",
RegexOptions.Compiled | RegexOptions.CultureInvariant);
/// <summary>
/// 📊 Count emoji frequency in text
/// </summary>
/// <param name="text">📝 Text to analyze</param>
/// <returns>📈 Emoji frequency dictionary</returns>
public static Dictionary<string, int> CountEmojiFrequency(string text)
{
if (string.IsNullOrEmpty(text)) return new Dictionary<string, int>();
return AllEmojisPattern.Matches(text)
.Cast<Match>()
.GroupBy(m => m.Value)
.ToDictionary(g => g.Key, g => g.Count());
}
/// <summary>
/// 🔍 Extract all emojis from text
/// </summary>
/// <param name="text">📝 Source text</param>
/// <returns>📋 List of unique emojis</returns>
public static List<string> ExtractEmojis(string text)
{
if (string.IsNullOrEmpty(text)) return new List<string>();
return AllEmojisPattern.Matches(text)
.Cast<Match>()
.Select(m => m.Value)
.Distinct()
.OrderBy(emoji => emoji)
.ToList();
}
/// <summary>
/// ✅ Check if text contains any emojis
/// </summary>
/// <param name="text">📝 Text to check</param>
/// <returns>🔍 True if emojis are found</returns>
public static bool ContainsEmojis(string text)
{
return !string.IsNullOrEmpty(text) && AllEmojisPattern.IsMatch(text);
}
/// <summary>
/// 📏 Calculate text length excluding emojis
/// </summary>
/// <param name="text">📝 Input text</param>
/// <returns>📊 Length without emojis</returns>
public static int LengthWithoutEmojis(string text)
{
if (string.IsNullOrEmpty(text)) return 0;
var cleanText = AllEmojisPattern.Replace(text, string.Empty);
return cleanText.Length;
}
/// <summary>
/// 📈 Calculate emoji density in text
/// </summary>
/// <param name="text">📝 Text to analyze</param>
/// <returns>📊 Emoji density percentage</returns>
public static double CalculateEmojiDensity(string text)
{
if (string.IsNullOrEmpty(text)) return 0.0;
var emojiCount = AllEmojisPattern.Matches(text).Count;
return (double)emojiCount / text.Length * 100.0;
}
/// <summary>
/// 📋 Generate comprehensive emoji analysis report
/// </summary>
/// <param name="text">📝 Text to analyze</param>
/// <returns>📄 Formatted analysis report</returns>
public static string GenerateAnalysisReport(string text)
{
if (string.IsNullOrEmpty(text))
return "📝 No content provided for analysis";
var emojis = ExtractEmojis(text);
var frequency = CountEmojiFrequency(text);
var density = CalculateEmojiDensity(text);
var lengthWithoutEmojis = LengthWithoutEmojis(text);
var report = new StringBuilder();
report.AppendLine("🎯 COMPREHENSIVE EMOJI ANALYSIS");
report.AppendLine("===============================");
report.AppendLine();
report.AppendLine($"📝 Total characters: {text.Length:N0}");
report.AppendLine($"🔍 Total emojis: {frequency.Values.Sum():N0}");
report.AppendLine($"🎯 Unique emojis: {emojis.Count:N0}");
report.AppendLine($"📏 Length without emojis: {lengthWithoutEmojis:N0}");
report.AppendLine($"📈 Emoji density: {density:F2}%");
report.AppendLine($"✅ Contains emojis: {(emojis.Count > 0 ? "Yes" : "No")}");
report.AppendLine();
if (frequency.Count > 0)
{
report.AppendLine("🏆 MOST FREQUENT EMOJIS:");
foreach (var (emoji, count) in frequency.OrderByDescending(x => x.Value).Take(10))
{
var percentage = (double)count / frequency.Values.Sum() * 100;
report.AppendLine($" {emoji}: {count:N0} times ({percentage:F1}%)");
}
report.AppendLine();
}
if (emojis.Count > 0)
{
report.AppendLine("📋 ALL DETECTED EMOJIS:");
report.AppendLine($" {string.Join(" ", emojis)}");
}
return report.ToString();
}
}
/// <summary>
/// 🧪 Test runner for emoji processor validation
/// 🎯 Comprehensive testing with performance metrics
/// </summary>
[EmojiTest("🧪 Main test runner class", "🎪 Testing")]
public class EmojiProcessorTestRunner
{
/// <summary>
/// 🚀 Main entry point for emoji processor tests
/// </summary>
/// <param name="args">📋 Command line arguments</param>
/// <returns>⚡ Async task completion</returns>
public static async Task Main(string[] args)
{
Console.WriteLine("🎉 Starting Chahuadev C# Emoji Cleaner Test Suite! 🧪\n");
// 🔧 Initialize processor
using var processor = new AdvancedEmojiProcessor(maxConcurrency: 4);
try
{
// 🧪 Run comprehensive test suite
await RunBasicTests(processor);
await RunAdvancedTests(processor);
await RunPerformanceTests(processor);
await RunBatchTests(processor);
await RunUtilityTests();
// 📊 Display final statistics
await DisplayFinalStatistics(processor);
}
catch (Exception ex)
{
Console.WriteLine($"❌ Test suite failed: {ex.Message}");
}
Console.WriteLine("\n🎉 All tests completed successfully! ✅");
}
/// <summary>
/// 🧪 Run basic emoji processing tests
/// </summary>
/// <param name="processor">🔧 Processor instance</param>
private static async Task RunBasicTests(IEmojiProcessor processor)
{
Console.WriteLine("🧪 Running basic emoji processing tests...\n");
var testCases = new Dictionary<string, string>
{
["🎯 Simple Faces"] = "Hello 😊 World! 😀 This is a test 🙂 with basic emojis 😃!",
["❤️ Hearts and Love"] = "I love ❤️ programming! 💕 C# is amazing 💖 for development 💘!",
["🚀 Objects and Tools"] = "Check out this rocket 🚀! We use tools 🔧 and technology 💻 daily ⚡!",
["🌸 Nature Elements"] = "Beautiful flowers 🌸🌺🌻 grow in the garden 🌱 under the sun ☀️!",
["🎪 Mixed Content"] = "🎉 Celebration time! 🚀 Let's code! 😊 Happy programming 💻 with emojis 🎨!"
};
foreach (var (testName, content) in testCases)
{
Console.WriteLine($"Testing: {testName}");
var result = await processor.ProcessContentAsync(content);
Console.WriteLine($" 📝 Original: {TruncateString(content, 50)}");
Console.WriteLine($" 🧹 Cleaned: {TruncateString(result.CleanedContent, 50)}");
Console.WriteLine($" 🔍 Emojis found: {result.FoundEmojis.Count}");
Console.WriteLine($" ⏱️ Time: {result.ProcessingTime.TotalMilliseconds:F2} ms");
Console.WriteLine($" ✅ Success: {result.Success}");
Console.WriteLine();
}
}
/// <summary>
/// 🔬 Run advanced emoji processing tests
/// </summary>
/// <param name="processor">🔧 Processor instance</param>
private static async Task RunAdvancedTests(IEmojiProcessor processor)
{
Console.WriteLine("🔬 Running advanced emoji processing tests...\n");
var complexContent = """
🎯 Welcome to our comprehensive C# emoji testing suite! 🧪
This content includes various emoji categories:
• 😀 Facial expressions: 😊 😂 🤣 😍 🥰 😘 😎 🤓 😴 😇 🙃 😉
• ❤️ Hearts and emotions: 💕 💖 💗 💘 💝 💞 💟 💔 ❣️ 💋 😍 🥰
• 🚀 Technology objects: 💻 📱 ⌨️ 🖥️ 🖨️ 📡 💾 💿 📀 🔌 🔋 💡
• 🌸 Nature elements: 🌱 🌿 🍀 🌾 🌳 🌲 🌴 🌵 🌺 🌻 🌼 🌷
• 🎯 Symbols and signs: ⭐ 🌟 ✨ 💫 🌙 ☀️ ⛅ 🌈 ⚡ 🔥 💧 🌊
Advanced unicode sequences:
👨💻 Developer coding in C# 💻 with Visual Studio 🎯
👩🚀 Astronaut exploring 🌍 space with advanced 🚀 technology
🏳️🌈 Rainbow flag representing 🌈 diversity in tech community
👨👩👧👦 Family enjoying 🎪 technology conference together
Skin tone modifiers and variations:
👋🏻 👋🏼 👋🏽 👋🏾 👋🏿 (greeting with skin tone diversity)
👍🏻 👍🏼 👍🏽 👍🏾 👍🏿 (approval across all backgrounds)
👨🏻💻 👨🏼💻 👨🏽💻 👨🏾💻 👨🏿💻 (diverse developers)
Multilingual content with emojis:
English: Hello 👋 World! 🌍 Welcome to C# programming! 💻
ไทย: สวัสดี 🙏 ชาวโลก! 🌎 ยินดีต้อนรับสู่การเขียนโปรแกรม C#! 👨💻
日本語: こんにちは 👋 世界! 🌏 C# プログラミングへようこそ! 🎯
Español: ¡Hola 👋 Mundo! 🌍 ¡Bienvenido a la programación C#! 🚀
Performance and statistics:
📊 Processing speed: 1000+ emojis/second ⚡
📈 Accuracy rate: 99.8% detection success ✅
⏰ Response time: < 100ms average 🎯
💾 Memory usage: Optimized for efficiency 🧠
🔧 Concurrent processing: Multi-threaded support 🧵
Special characters and edge cases:
Unicode combinations: 🤦♀️ 🤷♂️ 💁♀️ 🙋♂️ 🙎♀️ 🙍♂️
Food and drinks: ☕ 🍕 🍔 🍟 🌭 🥪 🌮 🌯 🥙 🍗 🍖 🥓
Sports and activities: ⚽ 🏀 🏈 ⚾ 🎾 🏐 🏉 🎱 🏓 🏸 🥅
Transportation: 🚗 🚕 🚙 🚌 🚎 🏎️ 🚓 🚑 🚒 🚐 🛻 🚚
🎉 End of advanced testing content! 🧪✨
""";
Console.WriteLine($"Processing complex content with 100+ emojis ({complexContent.Length:N0} characters)...");
var result = await processor.ProcessContentAsync(complexContent);
Console.WriteLine(result.GenerateDetailedReport());
// 📊 Category analysis
Console.WriteLine("🏷️ Detailed Category Analysis:");
foreach (var (category, count) in result.CategoryStats.OrderByDescending(x => x.Value))
{
var percentage = (double)count / result.FoundEmojis.Count * 100;
Console.WriteLine($" {category}: {count:N0} emojis ({percentage:F1}%)");
}
Console.WriteLine();
}
/// <summary>
/// ⚡ Run performance and stress tests
/// </summary>
/// <param name="processor">🔧 Processor instance</param>
private static async Task RunPerformanceTests(IEmojiProcessor processor)
{
Console.WriteLine("⚡ Running performance tests...\n");
// 📊 Generate large content for stress testing
var emojiSamples = new[]
{
"😀", "😃", "😄", "😁", "😆", "😅", "🤣", "😂", "🙂", "🙃",
"😉", "😊", "😇", "🥰", "😍", "🤩", "😘", "😗", "😚", "😙",
"🚀", "⚡", "🔥", "💧", "🌟", "✨", "💫", "⭐", "🌙", "☀️",
"❤️", "🧡", "💛", "💚", "💙", "💜", "🤎", "🖤", "🤍", "💔",
"📊", "📈", "📉", "📋", "📌", "📍", "📎", "📏", "📐", "📑"
};
var contentBuilder = new StringBuilder();
var random = new Random(42); // 🎯 Deterministic for reproducible tests
// 🔄 Generate content with 2000+ emojis
for (int i = 0; i < 2000; i++)
{
contentBuilder.Append($"Sample text {i} ");
contentBuilder.Append(emojiSamples[i % emojiSamples.Length]);
contentBuilder.Append(" ");
if (i % 20 == 0) contentBuilder.AppendLine();
}
var testContent = contentBuilder.ToString();
Console.WriteLine($"📊 Generated performance test content: {testContent.Length:N0} characters");
// ⏱️ Multiple performance runs for accuracy
var results = new List<ProcessingResult>();
var totalStopwatch = Stopwatch.StartNew();
for (int run = 0; run < 5; run++)
{
var runResult = await processor.ProcessContentAsync(testContent);
results.Add(runResult);
Console.WriteLine($" 🔄 Run {run + 1}: {runResult.FoundEmojis.Count} emojis in {runResult.ProcessingTime.TotalMilliseconds:F2} ms");
}
totalStopwatch.Stop();
// 📈 Calculate performance metrics
var avgTime = results.Average(r => r.ProcessingTime.TotalMilliseconds);
var avgEmojis = results.Average(r => r.FoundEmojis.Count);
var avgThroughput = avgEmojis / (avgTime / 1000.0);
var successRate = results.Count(r => r.Success) / (double)results.Count * 100;
Console.WriteLine("\n⚡ PERFORMANCE SUMMARY:");
Console.WriteLine($" 📊 Average processing time: {avgTime:F2} ms");
Console.WriteLine($" 🔍 Average emojis processed: {avgEmojis:F0}");
Console.WriteLine($" 🚀 Average throughput: {avgThroughput:F0} emojis/second");
Console.WriteLine($" ✅ Success rate: {successRate:F1}%");
Console.WriteLine($" ⏱️ Total test time: {totalStopwatch.Elapsed.TotalSeconds:F2} seconds");
Console.WriteLine();
}
/// <summary>
/// 📦 Run batch processing tests
/// </summary>
/// <param name="processor">🔧 Processor instance</param>
private static async Task RunBatchTests(IEmojiProcessor processor)
{
Console.WriteLine("📦 Running batch processing tests...\n");
var batchContent = new List<string>
{
"🎯 First batch item with various emojis 😊 and text content 📝",
"🚀 Second item containing rockets 🚀 and stars ⭐✨ for testing",
"❤️ Third piece with hearts 💕 and love 💖 symbols everywhere",
"🌸 Fourth content about nature 🌿 flowers 🌺 and growth 🌱",
"🎪 Fifth document mixing celebration 🎉 and fun 🎈 activities",
"💻 Sixth item about technology 📱 coding 👨💻 and innovation",
"🍎 Seventh piece with food 🍕 drinks ☕ and culinary 🍳 emojis",
"🏠 Eighth content about places 🏢 travel ✈️ and exploration 🗺️",
"🎨 Ninth document with art 🖼️ creativity 🎭 and design 🎪",
"🧪 Tenth item for scientific 🔬 testing 📊 and research 📚 purposes",
"🎵 Eleventh content with music 🎶 entertainment 🎬 and media 📺",
"🏆 Twelfth item celebrating achievements 🥇 success ✅ and victory 🎉"
};
Console.WriteLine($"Processing batch of {batchContent.Count:N0} items...");
var batchStopwatch = Stopwatch.StartNew();
var batchResults = await processor.ProcessBatchAsync(batchContent);
batchStopwatch.Stop();
var resultsList = batchResults.ToList();
var totalEmojis = resultsList.Sum(r => r.FoundEmojis.Count);
var successCount = resultsList.Count(r => r.Success);
var avgTimePerItem = resultsList.Average(r => r.ProcessingTime.TotalMilliseconds);
Console.WriteLine("📦 BATCH PROCESSING RESULTS:");
Console.WriteLine($" 📊 Items processed: {resultsList.Count:N0}");
Console.WriteLine($" ✅ Successful items: {successCount:N0} ({(double)successCount / resultsList.Count * 100:F1}%)");
Console.WriteLine($" 🔍 Total emojis removed: {totalEmojis:N0}");
Console.WriteLine($" ⏱️ Total batch time: {batchStopwatch.Elapsed.TotalMilliseconds:F2} ms");
Console.WriteLine($" 📈 Average per item: {avgTimePerItem:F2} ms");
Console.WriteLine($" 🚀 Batch throughput: {totalEmojis / batchStopwatch.Elapsed.TotalSeconds:F0} emojis/second");
Console.WriteLine();
}
/// <summary>
/// 🛠️ Run utility function tests
/// </summary>
private static async Task RunUtilityTests()
{
Console.WriteLine("🛠️ Running utility function tests...\n");
var testText = "🎯 Sample text with emojis! 😊 Testing utilities 🧪 for analysis 📊 and reporting 📋! ⚡✨🎉";
Console.WriteLine("Testing EmojiUtilities functions:");
Console.WriteLine($" 📝 Test text: {testText}");
Console.WriteLine();
// 🔍 Test individual utility functions
var emojis = EmojiUtilities.ExtractEmojis(testText);
var frequency = EmojiUtilities.CountEmojiFrequency(testText);
var containsEmojis = EmojiUtilities.ContainsEmojis(testText);
var lengthWithoutEmojis = EmojiUtilities.LengthWithoutEmojis(testText);
var density = EmojiUtilities.CalculateEmojiDensity(testText);
Console.WriteLine("🔍 UTILITY FUNCTION RESULTS:");
Console.WriteLine($" 📋 Extracted emojis: {string.Join(" ", emojis)}");
Console.WriteLine($" 📊 Emoji frequency: {frequency.Count} unique, {frequency.Values.Sum()} total");
Console.WriteLine($" ✅ Contains emojis: {containsEmojis}");
Console.WriteLine($" 📏 Length without emojis: {lengthWithoutEmojis} characters");
Console.WriteLine($" 📈 Emoji density: {density:F2}%");
Console.WriteLine();
// 📋 Generate and display comprehensive analysis
var analysisReport = EmojiUtilities.GenerateAnalysisReport(testText);
Console.WriteLine("📋 COMPREHENSIVE ANALYSIS REPORT:");
Console.WriteLine(analysisReport);
await Task.Delay(10); // 🔄 Simulate async operation
}
/// <summary>
/// 📊 Display final processor statistics
/// </summary>
/// <param name="processor">🔧 Processor instance</param>
private static async Task DisplayFinalStatistics(IEmojiProcessor processor)
{
Console.WriteLine("📊 FINAL PROCESSOR STATISTICS");
Console.WriteLine("=============================\n");
var stats = processor.Statistics;
Console.WriteLine(stats.GenerateReport());
// 🎯 Additional processor information
Console.WriteLine("🔧 PROCESSOR INFORMATION:");
Console.WriteLine($" 🏷️ Name: {processor.Name}");
Console.WriteLine($" ⚙️ Type: {processor.GetType().Name}");
Console.WriteLine($" 🧵 Thread-safe: Yes");
Console.WriteLine($" 💾 Caching: Enabled");
Console.WriteLine($" ⚡ Async support: Full");
Console.WriteLine();
await Task.Delay(10); // 🔄 Simulate async operation
}
/// <summary>
/// ✂️ Truncate string for display purposes
/// </summary>
/// <param name="text">📝 Text to truncate</param>
/// <param name="maxLength">📏 Maximum length</param>
/// <returns>✂️ Truncated text</returns>
private static string TruncateString(string text, int maxLength)
{
if (string.IsNullOrEmpty(text) || text.Length <= maxLength)
return text;
return text[..maxLength] + "...";
}
}
/// <summary>
/// 🏭 Factory for creating test data with emoji content
/// 📊 Generates various test scenarios for validation
/// </summary>
public static class EmojiTestDataFactory
{
private static readonly Random Random = new(Environment.TickCount);
/// <summary>
/// 🎯 Generate test content with specified characteristics
/// </summary>
/// <param name="wordCount">📊 Number of words</param>
/// <param name="emojiDensity">📈 Percentage of emoji content</param>
/// <returns>📝 Generated test content</returns>
public static string GenerateTestContent(int wordCount, double emojiDensity)
{
var words = new[]
{
"test", "content", "sample", "example", "demonstration", "validation",
"processing", "analysis", "performance", "optimization", "efficiency",
"technology", "innovation", "development", "programming", "software"
};
var emojis = new[]
{
"😀", "😃", "😄", "😁", "😆", "😅", "🤣", "😂", "🙂", "🙃",
"🚀", "⚡", "🔥", "💧", "🌟", "✨", "💫", "⭐", "🌙", "☀️",
"❤️", "🧡", "💛", "💚", "💙", "💜", "🤎", "🖤", "🤍", "💔",
"📊", "📈", "📉", "📋", "📌", "📍", "📎", "📏", "📐", "📑",
"🎯", "🎪", "🎨", "🎵", "🎶", "🎬", "🎭", "🎮", "🎲", "🎸"
};
var content = new StringBuilder();
for (int i = 0; i < wordCount; i++)
{
if (Random.NextDouble() < emojiDensity)
{
content.Append(emojis[Random.Next(emojis.Length)]);
}
else
{
content.Append(words[Random.Next(words.Length)]);
}
if (i < wordCount - 1) content.Append(" ");
}
return content.ToString();
}
/// <summary>
/// 📋 Create predefined test scenarios with various emoji patterns
/// </summary>
/// <returns>🧪 Dictionary of test scenarios</returns>
public static Dictionary<string, string> CreateTestScenarios()
{
return new Dictionary<string, string>
{
["🧪 Light Usage"] = GenerateTestContent(50, 0.15), // 15% emojis
["🎯 Medium Usage"] = GenerateTestContent(75, 0.30), // 30% emojis
["🔥 Heavy Usage"] = GenerateTestContent(100, 0.50), // 50% emojis
["🎪 Extreme Usage"] = GenerateTestContent(40, 0.75), // 75% emojis
["📊 Mixed Content"] = GenerateTestContent(200, 0.25) // 25% emojis, longer text
};
}
}
}
/*
* 🎉 End of Advanced C# Emoji Cleaner Test File
*
* 📊 File Statistics:
* - Lines of code: 1000+ lines
* - Emoji count: 400+ emojis
* - C# features: Modern C# 10+ patterns with records, async/await, LINQ
* - Complexity: Enterprise-grade with concurrency, performance optimization
*
* 🧪 Test Coverage:
* ✅ Advanced emoji detection with regex patterns
* ✅ Asynchronous processing with cancellation support
* ✅ Thread-safe concurrent operations
* ✅ Comprehensive error handling and logging
* ✅ Performance monitoring and optimization
* ✅ Batch processing capabilities
* ✅ Memory-efficient caching system
* ✅ Resource management with IDisposable pattern
* ✅ Statistical analysis and reporting
* ✅ Utility functions for emoji analysis
*
* 🎯 Perfect for testing emoji removal from C# source files!
* 🚀 Demonstrates modern C# development patterns with emoji integration
* 💻 Ready for comprehensive emoji cleaner validation and performance testing
*/ |