File size: 60,017 Bytes
8c763fb | 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 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#define TRACE
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Text;
using System.Threading;
namespace System.Management.Automation
{
#region PSTraceSourceOptions
/// <summary>
/// These flags enable tracing based on the types of
/// a tracing supplied. Each type of tracing will allow
/// for one or more methods in the StructuredTraceSource class to become
/// "enabled".
/// </summary>
[Flags]
public enum PSTraceSourceOptions
{
/// <summary>
/// All tracing off.
/// </summary>
/// <!--
/// No tracing is enabled
/// -->
None = 0x00000000,
/// <summary>
/// Constructors will be traced.
/// </summary>
/// <!--
/// The TraceConstructor methods are enabled
/// -->
Constructor = 0x00000001,
/// <summary>
/// Dispose will be traced.
/// </summary>
/// <!--
/// The TraceDispose methods are enabled
/// -->
Dispose = 0x00000002,
/// <summary>
/// Finalize will be traced.
/// </summary>
/// <!--
/// The TraceFinalizer methods are enabled
/// -->
Finalizer = 0x00000004,
/// <summary>
/// Methods will be traced.
/// </summary>
/// <!--
/// The TraceMethod methods are enabled
/// -->
Method = 0x00000008,
/// <summary>
/// Properties will be traced.
/// </summary>
/// <!--
/// The TraceProperty methods are enabled
/// -->
Property = 0x00000010,
/// <summary>
/// Delegates will be traced.
/// </summary>
/// <!--
/// The TraceDelegate and TraceDelegateHandler methods are enabled
/// -->
Delegates = 0x00000020,
/// <summary>
/// Events will be traced.
/// </summary>
/// <!--
/// The TraceRaiseEvent and TraceEventHandler methods are enabled
/// -->
Events = 0x00000040,
/// <summary>
/// Exceptions will be traced.
/// </summary>
/// <!--
/// The TraceException method is enabled
/// -->
Exception = 0x00000080,
/// <summary>
/// Locks will be traced.
/// </summary>
/// <!--
/// The TraceLock methods are enabled
/// -->
Lock = 0x00000100,
/// <summary>
/// Errors will be traced.
/// </summary>
/// <!--
/// The TraceError methods are enabled
/// -->
Error = 0x00000200,
/// <summary>
/// Warnings will be traced.
/// </summary>
/// <!--
/// The TraceWarning methods are enabled
/// -->
Warning = 0x00000400,
/// <summary>
/// Verbose messages will be traced.
/// </summary>
Verbose = 0x00000800,
/// <summary>
/// WriteLines will be traced.
/// </summary>
/// <!--
/// The WriteLine methods are enabled
/// -->
WriteLine = 0x00001000,
/// <summary>
/// TraceScope calls will be traced.
/// </summary>
Scope = 0x00002000,
/// <summary>
/// Assertions will be traced.
/// </summary>
Assert = 0x00004000,
/// <summary>
/// A combination of flags that trace the execution flow.
/// The methods associated with the flags; Constructor, Dispose,
/// Finalizer, Method, Delegates, and Events will be enabled.
/// </summary>
ExecutionFlow =
Constructor |
Dispose |
Finalizer |
Method |
Delegates |
Events |
Scope,
/// <summary>
/// A combination of flags that trace the data.
/// The methods associated with the flags; Constructor, Dispose,
/// Finalizer, Property, and WriteLine will be enabled.
/// </summary>
Data =
Constructor |
Dispose |
Finalizer |
Property |
Verbose |
WriteLine,
/// <summary>
/// A combination of flags that trace the errors.
/// The methods associated with the flags; Error,
/// and Exception will be enabled.
/// </summary>
Errors =
Error |
Exception,
/// <summary>
/// All combination of trace flags will be set.
/// All methods for tracing will be enabled.
/// </summary>
All =
Constructor |
Dispose |
Finalizer |
Method |
Property |
Delegates |
Events |
Exception |
Error |
Warning |
Verbose |
Lock |
WriteLine |
Scope |
Assert
}
#endregion PSTraceSourceOptions
/// <summary>
/// An PSTraceSource is a representation of a System.Diagnostics.TraceSource instance
/// that is used in the PowerShell components to produce trace output.
/// </summary>
/// <!--
/// The StructuredTraceSource class is derived from TraceSource to provide granular
/// control over the tracing in a program. An instance of StructuredTraceSource
/// is created for each category of tracing such that separate flags
/// (filters) can be set. Each flag enables one or more method for tracing.
///
/// For instance, the Exception flag will enable tracing on these methods:
/// TraceException.
/// </summary>
/// <remarks>
/// To get an instance of this class a user should define a static
/// field of the type StructuredTraceSource, and assign the results of GetTracer() to it.
/// If the category should be automatically put in the application config file the
/// field should be decorated with the TraceSourceAttribute so that GenerateAppConfigFile.exe
/// can find it through reflection.
/// <example>
/// <code>
/// [TraceSourceAttribute("category", "description")]
/// public static StructuredTraceSource tracer = GetTracer("category", "description", true);
/// </code>
/// </example>
/// Other than initial creation of this class through the GetTracer method,
/// this class should throw no exceptions. Any call to a StructuredTraceSource method
/// that results in an exception being thrown will be ignored.
/// -->
public partial class PSTraceSource
{
#region PSTraceSource construction methods
/// <summary>
/// Constructor that determines the name of the trace
/// flag in the config file.
/// </summary>
/// <param name="fullName">
/// The full name for the trace category. This is different from the name parameter as
/// it is not limited to 16 characters.
/// </param>
/// <param name="name">
/// The name of the category that this class
/// will control the tracing for. This parameter must always be 16 characters to ensure
/// proper formatting of the output.
/// </param>
/// <param name="description">
/// The description to describe what the category
/// is used for.
/// </param>
/// <param name="traceHeaders">
/// If true, the line headers will be traced, if false, only the trace message will be traced.
/// </param>
internal PSTraceSource(string fullName, string name, string description, bool traceHeaders)
{
ArgumentException.ThrowIfNullOrEmpty(fullName);
try
{
FullName = fullName;
_name = name;
// TODO: move this to startup json file instead of using env var
string tracingEnvVar = Environment.GetEnvironmentVariable("MshEnableTrace");
if (string.Equals(
tracingEnvVar,
"True",
StringComparison.OrdinalIgnoreCase))
{
string options = this.TraceSource.Attributes["Options"];
if (options != null)
{
_flags = (PSTraceSourceOptions)Enum.Parse(typeof(PSTraceSourceOptions), options, true);
}
}
ShowHeaders = traceHeaders;
Description = description;
}
catch (System.Xml.XmlException)
{
// This exception occurs when the config
// file is malformed. Just default to Off.
_flags = PSTraceSourceOptions.None;
}
#if !CORECLR
catch (System.Configuration.ConfigurationException)
{
// This exception occurs when the config
// file is malformed. Just default to Off.
_flags = PSTraceSourceOptions.None;
}
#endif
}
private static bool globalTraceInitialized;
/// <summary>
/// Traces the app domain header with information about the execution
/// time, the platform, etc.
/// </summary>
internal void TraceGlobalAppDomainHeader()
{
// Only trace the global header if it hasn't
// already been traced
if (globalTraceInitialized)
{
return;
}
// AppDomain
OutputLine(
PSTraceSourceOptions.All,
"Initializing tracing for AppDomain: {0}",
AppDomain.CurrentDomain.FriendlyName);
// Current time
OutputLine(
PSTraceSourceOptions.All,
"\tCurrent time: {0}",
DateTime.Now.ToString());
// OS build
OutputLine(
PSTraceSourceOptions.All,
"\tOS Build: {0}",
Environment.OSVersion.ToString());
// .NET Framework version
OutputLine(
PSTraceSourceOptions.All,
"\tFramework Build: {0}\n",
Environment.Version.ToString());
// Mark that we have traced the global header
globalTraceInitialized = true;
}
/// <summary>
/// Outputs a header when a new StructuredTraceSource object is created.
/// </summary>
/// <param name="callingAssembly">
/// The assembly that created the instance of the StructuredTraceSource.
/// </param>
/// <remarks>
/// A header will be output that contains information such as;
/// the category and description of the new trace object,
/// the assembly in which the new trace object
/// will be stored.
/// </remarks>
internal void TracerObjectHeader(
Assembly callingAssembly)
{
if (_flags == PSTraceSourceOptions.None)
{
return;
}
// Write the header for the new trace object
OutputLine(PSTraceSourceOptions.All, "Creating tracer:");
// Category
OutputLine(
PSTraceSourceOptions.All,
"\tCategory: {0}",
this.Name);
// Description
OutputLine(
PSTraceSourceOptions.All,
"\tDescription: {0}",
Description);
if (callingAssembly != null)
{
// Assembly name
OutputLine(
PSTraceSourceOptions.All,
"\tAssembly: {0}",
callingAssembly.FullName);
// Assembly location
OutputLine(
PSTraceSourceOptions.All,
"\tAssembly Location: {0}",
callingAssembly.Location);
// Assembly File timestamp
FileInfo assemblyFileInfo =
new FileInfo(callingAssembly.Location);
OutputLine(
PSTraceSourceOptions.All,
"\tAssembly File Timestamp: {0}",
assemblyFileInfo.CreationTime.ToString());
}
StringBuilder flagBuilder = new StringBuilder();
// Label
flagBuilder.Append("\tFlags: ");
flagBuilder.Append(_flags.ToString());
// Write out the flags
OutputLine(PSTraceSourceOptions.All, flagBuilder.ToString());
}
#endregion StructuredTraceSource constructor methods
#region PSTraceSourceOptions.Scope
internal IDisposable TraceScope(string msg)
{
if (_flags.HasFlag(PSTraceSourceOptions.Scope))
{
try
{
return new ScopeTracer(this, PSTraceSourceOptions.Scope, null, null, string.Empty, msg);
}
catch { }
}
return null;
}
internal IDisposable TraceScope(string format, object arg1)
{
if (_flags.HasFlag(PSTraceSourceOptions.Scope))
{
try
{
return new ScopeTracer(this, PSTraceSourceOptions.Scope, null, null, string.Empty, format, arg1);
}
catch { }
}
return null;
}
internal IDisposable TraceScope(string format, object arg1, object arg2)
{
if (_flags.HasFlag(PSTraceSourceOptions.Scope))
{
try
{
return new ScopeTracer(this, PSTraceSourceOptions.Scope, null, null, string.Empty, format, arg1, arg2);
}
catch { }
}
return null;
}
#endregion PSTraceSourceOptions.Scope
#region PSTraceSourceOptions.Method methods/helpers
/// <summary>
/// Traces the method name and indents the trace output.
/// </summary>
/// <param name="format">
/// The format string for additional arguments to be traced
/// </param>
/// <param name="args">
/// The additional arguments given to the format string
/// </param>
/// <returns>
/// An object that supports IDisposable. The caller
/// should dispose of the object when it goes out of
/// scope.
/// </returns>
/// <remarks>
/// <newpara/>
/// <example>
/// <code>
/// public void MethodName(int count)
/// {
/// using (TraceMethod(
/// "count={0:d}",
/// count))
/// {
/// // do something here...
/// }
/// }
/// </code>
/// </example>
/// <newpara/>
/// This will produce output similar to the following:
/// <newpara/>
/// Entering MethodName: count=4
/// other trace output indented
/// Leaving MethodName
/// </remarks>
internal IDisposable TraceMethod(
string format,
params object[] args)
{
if (_flags.HasFlag(PSTraceSourceOptions.Method))
{
try
{
// Get the name of the method that called this method
// 1, signifies the caller of this method, whereas 2
// would signify the caller of that method.
string methodName = GetCallingMethodNameAndParameters(1);
// Create the method tracer object
return (IDisposable)new ScopeTracer(
this,
PSTraceSourceOptions.Method,
methodOutputFormatter,
methodLeavingFormatter,
methodName,
format,
args);
}
catch
{
// Eat all exceptions
// Do not assert here because exceptions can be
// raised while a thread is shutting down during
// normal operation.
}
}
return null;
}
#endregion PSTraceSourceOptions.Method methods/helpers
#region PSTraceSourceOptions.Events methods/helpers
/// <summary>
/// Traces the entrance and exit from event handlers.
/// </summary>
/// <returns>
/// An object that supports IDisposable. The caller
/// should dispose of the object when it goes out of
/// scope.
/// </returns>
internal IDisposable TraceEventHandlers()
{
if (_flags.HasFlag(PSTraceSourceOptions.Events))
{
try
{
// Get the name of the method that called this method
// 1, signifies the caller of this method, whereas 2
// would signify the caller of that method.
string methodName = GetCallingMethodNameAndParameters(1);
// Create the scope tracer object
return (IDisposable)new ScopeTracer(
this,
PSTraceSourceOptions.Events,
eventHandlerOutputFormatter,
eventHandlerLeavingFormatter,
methodName,
string.Empty);
}
catch
{
// Eat all exceptions
// Do not assert here because exceptions can be
// raised while a thread is shutting down during
// normal operation.
}
}
return null;
}
/// <summary>
/// Traces the entrance and exit from event handlers.
/// </summary>
/// <param name="format">
/// The format string for additional arguments to be traced
/// </param>
/// <param name="args">
/// The additional arguments given to the format string
/// </param>
/// <returns>
/// An object that supports IDisposable. The caller
/// should dispose of the object when it goes out of
/// scope.
/// </returns>
internal IDisposable TraceEventHandlers(
string format,
params object[] args)
{
if (_flags.HasFlag(PSTraceSourceOptions.Events))
{
try
{
// Get the name of the method that called this method
// 1, signifies the caller of this method, whereas 2
// would signify the caller of that method.
string methodName = GetCallingMethodNameAndParameters(1);
// Create the scope tracer object
return (IDisposable)new ScopeTracer(
this,
PSTraceSourceOptions.Events,
eventHandlerOutputFormatter,
eventHandlerLeavingFormatter,
methodName,
format,
args);
}
catch
{
// Eat all exceptions
// Do not assert here because exceptions can be
// raised while a thread is shutting down during
// normal operation.
}
}
return null;
}
#endregion PSTraceSourceOptions.Events methods/helpers
#region PSTraceSourceOptions.Lock methods/helpers
/// <summary>
/// Traces the user specified lock name and indents the trace output.
/// </summary>
/// <returns>
/// An object that supports IDisposable. The caller
/// should dispose of the object when it goes out of
/// scope.
/// </returns>
/// <remarks>
/// <newpara/>
/// <example>
/// <code>
/// public void MethodName()
/// {
/// lock (this)
/// {
/// using (TraceLock("my lock name"))
/// {
/// // do something here...
/// }
/// }
/// }
/// </code>
/// </example>
/// <newpara/>
/// This will produce output similar to the following:
/// <newpara/>
/// Entering Lock: my lock name
/// other trace output indented
/// Leaving Lock: my lock name
/// </remarks>
internal IDisposable TraceLock(string lockName)
{
if (_flags.HasFlag(PSTraceSourceOptions.Lock))
{
try
{
return (IDisposable)new ScopeTracer(
this,
PSTraceSourceOptions.Lock,
lockEnterFormatter,
lockLeavingFormatter,
lockName);
}
catch
{
// Eat all exceptions
// Do not assert here because exceptions can be
// raised while a thread is shutting down during
// normal operation.
}
}
return null;
}
/// <summary>
/// Call this before acquiring a lock.
/// </summary>
/// <param name="lockName">
/// User defined name given to the lock
/// </param>
internal void TraceLockAcquiring(string lockName)
{
if (_flags.HasFlag(PSTraceSourceOptions.Lock))
{
TraceLockHelper(
lockAcquiringFormatter,
lockName);
}
}
/// <summary>
/// Call this after acquiring a lock.
/// </summary>
/// <param name="lockName">
/// User defined name given to the lock
/// </param>
/// <remarks>
/// Use this only if the TraceLock that returns
/// an IDisposable won't work in your situation.
/// You will not get automatic indentation or
/// release tracing of the lock.
/// </remarks>
internal void TraceLockAcquired(string lockName)
{
if (_flags.HasFlag(PSTraceSourceOptions.Lock))
{
TraceLockHelper(
lockEnterFormatter,
lockName);
}
}
/// <summary>
/// Call this after releasing the lock, but only
/// if you called TraceLockAcquired when you acquired
/// the lock.
/// </summary>
/// <param name="lockName">
/// User defined name given to the lock
/// </param>
internal void TraceLockReleased(string lockName)
{
if (_flags.HasFlag(PSTraceSourceOptions.Lock))
{
TraceLockHelper(
lockLeavingFormatter,
lockName);
}
}
/// <summary>
/// A helper to simplify tracing of the lock flags.
/// </summary>
/// <param name="formatter">
/// A format string for the output.
/// </param>
/// <param name="lockName">
/// User defined name for the lock
/// </param>
private void TraceLockHelper(
string formatter,
string lockName)
{
try
{
OutputLine(
PSTraceSourceOptions.Lock,
formatter,
lockName);
}
catch
{
// Eat all exceptions
// Do not assert here because exceptions can be
// raised while a thread is shutting down during
// normal operation.
}
}
#endregion PSTraceSourceOptions.Lock methods/helpers
#region PSTraceSourceOptions.Error,Warning,Normal methods/helpers
/// <summary>
/// Traces the specified formatted output when PSTraceSourceOptions.Error
/// is enabled.
/// </summary>
/// <param name="errorMessageFormat">
/// The format string containing the error message
/// </param>
/// <param name="args">
/// The arguments for the format string
/// </param>
internal void TraceError(
string errorMessageFormat,
params object[] args)
{
if (_flags.HasFlag(PSTraceSourceOptions.Error))
{
FormatOutputLine(
PSTraceSourceOptions.Error,
errorFormatter,
errorMessageFormat,
args);
}
}
/// <summary>
/// Traces the specified formatted output when PSTraceSourceOptions.Warning
/// is enabled.
/// </summary>
/// <param name="warningMessageFormat">
/// The format string containing the error message
/// </param>
/// <param name="args">
/// The arguments for the format string
/// </param>
internal void TraceWarning(
string warningMessageFormat,
params object[] args)
{
if (_flags.HasFlag(PSTraceSourceOptions.Warning))
{
FormatOutputLine(
PSTraceSourceOptions.Warning,
warningFormatter,
warningMessageFormat,
args);
}
}
/// <summary>
/// Traces the specified formatted output when PSTraceSourceOptions.Verbose
/// is enabled.
/// </summary>
/// <param name="verboseMessageFormat">
/// The format string containing the error message
/// </param>
/// <param name="args">
/// The arguments for the format string
/// </param>
internal void TraceVerbose(
string verboseMessageFormat,
params object[] args)
{
if (_flags.HasFlag(PSTraceSourceOptions.Verbose))
{
FormatOutputLine(
PSTraceSourceOptions.Verbose,
verboseFormatter,
verboseMessageFormat,
args);
}
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="format">
/// The format string
/// </param>
internal void WriteLine(string format)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
FormatOutputLine(
PSTraceSourceOptions.WriteLine,
writeLineFormatter,
format,
Array.Empty<object>());
}
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="format">The format string.</param>
/// <param name="arg1"></param>
internal void WriteLine(string format, object arg1)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
FormatOutputLine(
PSTraceSourceOptions.WriteLine,
writeLineFormatter,
format,
new object[] { arg1 });
}
}
internal void WriteLine(string format, bool arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, byte arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, char arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, decimal arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, double arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, float arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, int arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, long arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, uint arg1)
{
WriteLine(format, (object)arg1.ToString());
}
internal void WriteLine(string format, ulong arg1)
{
WriteLine(format, (object)arg1.ToString());
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="format">The format string.</param>
/// <param name="arg1"></param>
/// <param name="arg2"></param>
internal void WriteLine(string format, object arg1, object arg2)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
FormatOutputLine(
PSTraceSourceOptions.WriteLine,
writeLineFormatter,
format,
new object[] { arg1, arg2 });
}
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="format">The format string.</param>
/// <param name="arg1"></param>
/// <param name="arg2"></param>
/// <param name="arg3"></param>
internal void WriteLine(string format, object arg1, object arg2, object arg3)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
FormatOutputLine(
PSTraceSourceOptions.WriteLine,
writeLineFormatter,
format,
new object[] { arg1, arg2, arg3 });
}
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="format">The format string.</param>
/// <param name="arg1"></param>
/// <param name="arg2"></param>
/// <param name="arg3"></param>
/// <param name="arg4"></param>
internal void WriteLine(string format, object arg1, object arg2, object arg3, object arg4)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
FormatOutputLine(
PSTraceSourceOptions.WriteLine,
writeLineFormatter,
format,
new object[] { arg1, arg2, arg3, arg4 });
}
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="format">The format string.</param>
/// <param name="arg1"></param>
/// <param name="arg2"></param>
/// <param name="arg3"></param>
/// <param name="arg4"></param>
/// <param name="arg5"></param>
internal void WriteLine(string format, object arg1, object arg2, object arg3, object arg4, object arg5)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
FormatOutputLine(
PSTraceSourceOptions.WriteLine,
writeLineFormatter,
format,
new object[] { arg1, arg2, arg3, arg4, arg5 });
}
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="format">The format string.</param>
/// <param name="arg1"></param>
/// <param name="arg2"></param>
/// <param name="arg3"></param>
/// <param name="arg4"></param>
/// <param name="arg5"></param>
/// <param name="arg6"></param>
internal void WriteLine(string format, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
FormatOutputLine(
PSTraceSourceOptions.WriteLine,
writeLineFormatter,
format,
new object[] { arg1, arg2, arg3, arg4, arg5, arg6 });
}
}
/// <summary>
/// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled.
/// </summary>
/// <param name="arg">
/// The object to be output
/// </param>
internal void WriteLine(object arg)
{
if (_flags.HasFlag(PSTraceSourceOptions.WriteLine))
{
WriteLine("{0}", arg == null ? "null" : arg.ToString());
}
}
/// <summary>
/// Formats the specified text and then traces it.
/// </summary>
/// <param name="flag">
/// The flag that met the criteria to have this line traced.
/// </param>
/// <param name="classFormatter">
/// This is the trace class formatter. For instance,
/// TraceError has a formatter like "ERROR: {0}".
/// </param>
/// <param name="format">
/// Additional format string.
/// </param>
/// <param name="args">
/// Arguments for the additional format string
/// </param>
private void FormatOutputLine(
PSTraceSourceOptions flag,
string classFormatter,
string format,
params object[] args)
{
try
{
// First format the class format string and the
// user provided format string together
StringBuilder output = new StringBuilder();
if (classFormatter != null)
{
output.Append(classFormatter);
}
if (format != null)
{
output.AppendFormat(
CultureInfo.CurrentCulture,
format,
args);
}
// finally trace the output
OutputLine(flag, output.ToString());
}
catch
{
// Eat all exceptions
//
// Do not assert here because exceptions can be
// raised while a thread is shutting down during
// normal operation.
}
}
#endregion PSTraceSourceOptions.Error methods/helpers
#region Class helper methods and properties
/// <summary>
/// Gets the method name of the method that called this one
/// plus the skipFrames.
/// </summary>
/// <remarks>
/// For instance, GetCallingMethodNameAndParameters(1)
/// will return the method that called the method that is calling
/// GetCallingMethodNameAndParameters.
/// </remarks>
/// <param name="skipFrames">
/// The number of frames to skip in the calling stack.
/// </param>
/// <returns>
/// The name of the method on the stack.
/// </returns>
private static string GetCallingMethodNameAndParameters(int skipFrames)
{
StringBuilder methodAndParameters = null;
try
{
// Use the stack to get the method and type information
// for the calling method
StackFrame stackFrame = new StackFrame(++skipFrames);
MethodBase callingMethod = stackFrame.GetMethod();
Type declaringType = callingMethod.DeclaringType;
// Append the class name and method name together
methodAndParameters = new StringBuilder();
// Note: don't use the FullName for the declaringType
// as it is usually way too long and makes the trace
// output hard to read.
methodAndParameters.AppendFormat(
CultureInfo.CurrentCulture,
"{0}.{1}(",
declaringType.Name,
callingMethod.Name);
methodAndParameters.Append(')');
}
catch
{
// Eat all exceptions
// Do not assert here because exceptions can be
// raised while a thread is shutting down during
// normal operation.
}
return methodAndParameters.ToString();
}
// The default formatter for TraceError
private const string errorFormatter =
"ERROR: ";
// The default formatter for TraceWarning
private const string warningFormatter =
"Warning: ";
// The default formatter for TraceVerbose
private const string verboseFormatter =
"Verbose: ";
// The default formatter for WriteLine
private const string writeLineFormatter =
"";
// The default formatter for TraceConstructor
private const string constructorOutputFormatter =
"Enter Ctor {0}";
private const string constructorLeavingFormatter =
"Leave Ctor {0}";
// The default formatter for TraceDispose
private const string disposeOutputFormatter =
"Enter Disposer {0}";
private const string disposeLeavingFormatter =
"Leave Disposer {0}";
// The default formatter for TraceMethod
private const string methodOutputFormatter =
"Enter {0}:";
private const string methodLeavingFormatter =
"Leave {0}";
// The default formatter for TraceProperty
private const string propertyOutputFormatter =
"Enter property {0}:";
private const string propertyLeavingFormatter =
"Leave property {0}";
// The default formatter for TraceDelegateHandler
private const string delegateHandlerOutputFormatter =
"Enter delegate handler: {0}:";
private const string delegateHandlerLeavingFormatter =
"Leave delegate handler: {0}";
// The default formatter for TraceEventHandlers
private const string eventHandlerOutputFormatter =
"Enter event handler: {0}:";
private const string eventHandlerLeavingFormatter =
"Leave event handler: {0}";
// The default formatters for TraceException
private const string exceptionOutputFormatter =
"{0}: {1}\n{2}";
private const string innermostExceptionOutputFormatter =
"Inner-most {0}: {1}\n{2}";
// The default formatters for TraceLock
private const string lockEnterFormatter =
"Enter Lock: {0}";
private const string lockLeavingFormatter =
"Leave Lock: {0}";
private const string lockAcquiringFormatter =
"Acquiring Lock: {0}";
private static StringBuilder GetLinePrefix(PSTraceSourceOptions flag)
{
StringBuilder prefixBuilder = new StringBuilder();
// Add the flag that caused this line to be traced
prefixBuilder.AppendFormat(
CultureInfo.CurrentCulture,
" {0,-11} ",
Enum.GetName(typeof(PSTraceSourceOptions), flag));
return prefixBuilder;
}
private static void AddTab(StringBuilder lineBuilder)
{
// The Trace.IndentSize does not change at all
// through the running of the process so there
// are no thread issues here.
int indentSize = Trace.IndentSize;
int threadIndentLevel = ThreadIndentLevel;
lineBuilder.Append(System.Management.Automation.Internal.StringUtil.Padding(indentSize * threadIndentLevel));
}
// used to find and blocks cyclic-loops in tracing.
private bool _alreadyTracing = false;
/// <summary>
/// Composes a line of trace output and then writes it.
/// </summary>
/// <param name="flag">
/// The flag that caused the line to be traced.
/// </param>
/// <param name="format">
/// The string to write with format symbols if necessary.
/// </param>
/// <param name="arg">
/// Arguments to the format string.
/// </param>
/// <remarks>
/// The line is composed by prefixing the process name, thread ID,
/// and tick count. Then the indenting is added. Then the
/// specified string is formatted. Finally the finished string
/// is output using the Trace class.
/// </remarks>
internal void OutputLine(
PSTraceSourceOptions flag,
string format,
string arg = null)
{
// if already tracing something for this current TraceSource,
// dont trace again. This will block cyclic-loops from happening.
if (_alreadyTracing)
{
return;
}
_alreadyTracing = true;
try
{
Diagnostics.Assert(
format != null,
"The format string should not be null");
StringBuilder lineBuilder = new StringBuilder();
if (ShowHeaders)
{
// Get the line prefix string which includes things
// like App name, clock tick, thread ID, etc.
lineBuilder.Append(GetLinePrefix(flag));
}
// Add the spaces for the indent
AddTab(lineBuilder);
if (arg != null)
{
lineBuilder.AppendFormat(
CultureInfo.CurrentCulture,
format,
arg);
}
else
{
lineBuilder.Append(format);
}
this.TraceSource.TraceInformation(lineBuilder.ToString());
}
finally
{
// reset tracing for the current trace source..
// so future traces can go through.
_alreadyTracing = false;
}
}
/// <summary>
/// Property to access the indent level in thread local storage.
/// </summary>
internal static int ThreadIndentLevel
{
get
{
// The first time access the ThreadLocal instance, the default int value will be used
// to initialize the instance. The default int value is 0.
return s_localIndentLevel.Value;
}
set
{
if (value >= 0)
{
// Set the new indent level in thread local storage
s_localIndentLevel.Value = value;
}
else
{
Diagnostics.Assert(value >= 0, "The indention value cannot be less than zero");
}
}
}
/// <summary>
/// Allocates some thread local storage to hold the indent level.
/// </summary>
private static readonly ThreadLocal<int> s_localIndentLevel = new ThreadLocal<int>();
/// <summary>
/// Local storage for the trace switch flags.
/// </summary>
private PSTraceSourceOptions _flags = PSTraceSourceOptions.None;
/// <summary>
/// Gets or sets the description for this trace sources.
/// </summary>
public string Description { get; set; } = string.Empty;
/// <summary>
/// Determines if the line and switch headers should be shown.
/// </summary>
/// <value></value>
internal bool ShowHeaders { get; set; } = true;
/// <summary>
/// Gets the full name of the trace source category.
/// </summary>
internal string FullName { get; } = string.Empty;
private readonly string _name;
/// <summary>
/// Creates an instance of the TraceSource on demand.
/// </summary>
internal TraceSource TraceSource
{
get { return _traceSource ??= new MonadTraceSource(_name); }
}
private TraceSource _traceSource;
#endregion Class helper methods and properties
#region Public members
/// <summary>
/// Gets or sets the options for what will be traced.
/// </summary>
public PSTraceSourceOptions Options
{
get
{
return _flags;
}
set
{
_flags = value;
this.TraceSource.Switch.Level = (SourceLevels)_flags;
}
}
internal bool IsEnabled
{
get { return _flags != PSTraceSourceOptions.None; }
}
/// <summary>
/// Gets the attributes of the TraceSource.
/// </summary>
public StringDictionary Attributes
{
get
{
return TraceSource.Attributes;
}
}
/// <summary>
/// Gets the listeners for the TraceSource.
/// </summary>
public TraceListenerCollection Listeners
{
get
{
return TraceSource.Listeners;
}
}
/// <summary>
/// Gets the TraceSource name (also known as category).
/// </summary>
/// <remarks>
/// Note, this name is truncated to 16 characters due to limitations
/// in the TraceSource class.
/// </remarks>
public string Name
{
get
{
return _name;
}
}
/// <summary>
/// Gets or sets the TraceSource's Switch.
/// </summary>
public SourceSwitch Switch
{
get
{
return TraceSource.Switch;
}
set
{
TraceSource.Switch = value;
}
}
#endregion Public members
#region TraceCatalog
/// <summary>
/// Storage for all the PSTraceSource instances.
/// </summary>
/// <value></value>
internal static Dictionary<string, PSTraceSource> TraceCatalog { get; } = new Dictionary<string, PSTraceSource>(StringComparer.OrdinalIgnoreCase);
/// <summary>
/// Storage for trace source instances which have not been instantiated but for which
/// the user has specified Options.
///
/// If the PSTraceSource cannot be found in the TraceCatalog, the same name is used
/// to look in this dictionary to see if the PSTraceSource has been pre-configured.
/// </summary>
internal static Dictionary<string, PSTraceSource> PreConfiguredTraceSource { get; } = new Dictionary<string, PSTraceSource>(StringComparer.OrdinalIgnoreCase);
#endregion TraceCatalog
}
#region ScopeTracer object/helpers
/// <summary>
/// A light-weight object to manage the indention of
/// trace output for each thread.
/// </summary>
/// <remarks>
/// An instance of this object is returned when any scoping
/// Trace method (like TraceMethod, TraceProperty, etc.)
/// is called. In the constructor to the object the indention
/// level for the thread is incremented.
/// The Dispose method will decrement the thread indent level.
/// </remarks>
internal class ScopeTracer : IDisposable
{
/// <summary>
/// Constructor that traces the scope name
/// and raises the indent level in thread
/// local storage.
/// </summary>
/// <param name="tracer">
/// The trace object that is to be used for output
/// </param>
/// <param name="flag">
/// The PSTraceSourceOptions that is causing the scope object to
/// be created.
/// </param>
/// <param name="scopeOutputFormatter">
/// This format string is used to determine the
/// general output format for the scope. For instance,
/// TraceMethod would probably provide a formatter similar
/// to "Entering: {0}: {1}" where {0} is the name of the
/// method and {1} is the additional formatted info provided.
/// </param>
/// <param name="leavingScopeFormatter">
/// The format string used to determine the general output
/// format for the scope when the Dispose method is called.
/// </param>
/// <param name="scopeName">
/// The name of the scope that is being traced
/// </param>
internal ScopeTracer(
PSTraceSource tracer,
PSTraceSourceOptions flag,
string scopeOutputFormatter,
string leavingScopeFormatter,
string scopeName)
{
_tracer = tracer;
// Call the helper
ScopeTracerHelper(
flag,
scopeOutputFormatter,
leavingScopeFormatter,
scopeName,
string.Empty);
}
/// <summary>
/// Constructor that traces the scope name
/// and raises the indent level in thread
/// local storage.
/// </summary>
/// <param name="tracer">
/// The trace object that is to be used for output
/// </param>
/// <param name="flag">
/// The PSTraceSourceOptions that is causing the scope object to
/// be created.
/// </param>
/// <param name="scopeOutputFormatter">
/// This format string is used to determine the
/// general output format for the scope. For instance,
/// TraceMethod would probably provide a formatter similar
/// to "Entering: {0}: {1}" where {0} is the name of the
/// method and {1} is the additional formatted info provided.
/// </param>
/// <param name="leavingScopeFormatter">
/// The format string used to determine the general output
/// format for the scope when the Dispose method is called.
/// </param>
/// <param name="scopeName">
/// The name of the scope that is being traced
/// </param>
/// <param name="format">
/// The format of any additional arguments which will be appended
/// to the line of trace output
/// </param>
/// <param name="args">
/// Arguments to the format string.
/// </param>
internal ScopeTracer(
PSTraceSource tracer,
PSTraceSourceOptions flag,
string scopeOutputFormatter,
string leavingScopeFormatter,
string scopeName,
string format,
params object[] args)
{
_tracer = tracer;
// Call the helper
if (format != null)
{
ScopeTracerHelper(
flag,
scopeOutputFormatter,
leavingScopeFormatter,
scopeName,
format,
args);
}
else
{
ScopeTracerHelper(
flag,
scopeOutputFormatter,
leavingScopeFormatter,
scopeName,
string.Empty);
}
}
/// <summary>
/// Helper for the ScopeTracer constructor.
/// </summary>
/// <param name="flag">
/// The flag that caused this line of tracing to be traced.
/// </param>
/// <param name="scopeOutputFormatter">
/// This format string is used to determine the
/// general output format for the scope. For instance,
/// TraceMethod would probably provide a formatter similar
/// to "Entering: {0}: {1}" where {0} is the name of the
/// method and {1} is the additional formatted info provided.
/// </param>
/// <param name="leavingScopeFormatter">
/// The format string used to determine the general output
/// format for the scope when the Dispose method is called.
/// </param>
/// <param name="scopeName">
/// The name of the scope being entered
/// </param>
/// <param name="format">
/// The format of any additional arguments which will be appended
/// to the "Entering" line of trace output
/// </param>
/// <param name="args">
/// Arguments to the format string.
/// </param>
internal void ScopeTracerHelper(
PSTraceSourceOptions flag,
string scopeOutputFormatter,
string leavingScopeFormatter,
string scopeName,
string format,
params object[] args)
{
// Store the flags, scopeName, and the leavingScopeFormatter
// so that it can be used in the Dispose method
_flag = flag;
_scopeName = scopeName;
_leavingScopeFormatter = leavingScopeFormatter;
// Format the string for output
StringBuilder output = new StringBuilder();
if (!string.IsNullOrEmpty(scopeOutputFormatter))
{
output.AppendFormat(
CultureInfo.CurrentCulture,
scopeOutputFormatter,
_scopeName);
}
if (!string.IsNullOrEmpty(format))
{
output.AppendFormat(
CultureInfo.CurrentCulture,
format,
args);
}
// Now write the trace
_tracer.OutputLine(_flag, output.ToString());
// Increment the current thread indent level
PSTraceSource.ThreadIndentLevel++;
}
/// <summary>
/// Decrements the indent level in thread local
/// storage and then traces the scope name.
/// </summary>
public void Dispose()
{
// Decrement the indent level in thread local storage
PSTraceSource.ThreadIndentLevel--;
// Trace out the scope name
if (!string.IsNullOrEmpty(_leavingScopeFormatter))
{
_tracer.OutputLine(_flag, _leavingScopeFormatter, _scopeName);
}
GC.SuppressFinalize(this);
}
/// <summary>
/// The trace object that is used for any output.
/// </summary>
private readonly PSTraceSource _tracer;
/// <summary>
/// The flag which caused this scope object to be created.
/// </summary>
private PSTraceSourceOptions _flag;
/// <summary>
/// Stores the scope name that is passed to the constructor.
/// </summary>
private string _scopeName;
/// <summary>
/// Stores the format string used when formatting output when
/// leaving the scope.
/// </summary>
private string _leavingScopeFormatter;
}
#endregion ScopeTracer object/helpers
#region PSTraceSourceAttribute
/// <summary>
/// This attribute is placed on the field of the PSTraceSource class
/// in the class that is consuming the tracing methods defined in
/// this file. It defines the trace category and description
/// for that instance of PSTraceSource.
/// </summary>
/// <remarks>
/// This attribute is only allowed on fields and there can only
/// be one for each instance. Only one instance of this attribute
/// should be used in any one class.
/// In order for the attribute to be used to help in constructing
/// the PSTraceSource object, reflection is used to find the field
/// that the PSTraceSource object will be assigned to. This attribute
/// declares the category and description for the PSTraceSource object
/// in that field. Having multiple instances of this attribute on
/// multiple fields in the same class will cause unexpected results.
/// For instance, trace output for one category may actually be
/// considered part of another category.
/// </remarks>
[AttributeUsage(
AttributeTargets.Field,
AllowMultiple = false)]
internal class TraceSourceAttribute : Attribute
{
/// <summary>
/// Constructor for the TraceSourceAttribute class.
/// </summary>
/// <param name="category">
/// The name of the category for which the TraceSource instance
/// will be used.
/// </param>
/// <param name="description">
/// A description for the category.
/// </param>
internal TraceSourceAttribute(
string category,
string description)
{
Category = category;
Description = description;
}
/// <summary>
/// The category to be used for the TraceSource.
/// </summary>
internal string Category { get; }
/// <summary>
/// The description for the category to be used for the TraceSource.
/// </summary>
internal string Description { get; set; }
}
#endregion TraceSourceAttribute
#region MonadTraceSource
/// <summary>
/// This derived class of TraceSource is required so that we can tell
/// the configuration infrastructure which attributes are supported in
/// the XML app-config file for our trace source.
/// </summary>
internal class MonadTraceSource : TraceSource
{
internal MonadTraceSource(string name)
: base(name)
{
}
/// <summary>
/// Tells the config infrastructure which attributes are supported
/// for our TraceSource.
/// </summary>
/// <returns>
/// A string array with the names of the attributes supported by our
/// trace source.
/// </returns>
protected override string[] GetSupportedAttributes()
{
return new string[] { "Options" };
}
}
#endregion MonadTraceSource
}
|