Nothing new in this article, but it’s explained very clearly and I need a quick reference for the next time someone asks me about this topic and I’ve forgotten it!
admin
Multi-Cores and .NET Threading
My first job after university involved designing and writing parallel algorithms, and over the intervening 20 years I’ve always taken a keen interest in the subject. I’d always thought that by now, desktop PCs would contain upwards of 32 processors, whereas 2 processors are only just becoming commonplace. At the March 2007 MVP summit, Bill Gates said that parallel programming will be one of the big new challenges facing the .NET development programming community:
“…the ability to take multiple processors and use them in parallel has been a
programming challenge going back many, many decades, so now it’s important
that we actually solve that problem, and make it possible for developers of all
types to take advantage of these multi-core devices.”
May’s 2007 issue of MSDN magazine has an excellent article on Reusable Parallel Data Structures and Algorithms by Joe Duffy, a renowned developer in the .NET threading arena. He has an upcoming book “Concurrent Programming on Windows”, due to be released by Addison Wesley sometime in 2007. One to watch out for…
Over at Michael Suess’s ThinkingParallel blog, he’s been running a series of interviews with parallelism industry leaders in different environments, including Ten Questions with Joe Duffy about Parallel Programming and .NET Threads.
The following are all good resources on how to get started for developers new to .NET threading:
There is also an index of past MSDN Magazine articles on .NET concurrency.
Logging and ASP.NET Health Monitoring
In the comments to my post of a few days ago on logging with log4net, Alik Levin raised a good question:
“Why would I actually use log4net for ASP.NET 2 (VS2005) instead of the built in
health monitoring?”
I’m sure I must have seen ASP.NET 2.0 Health Monitoring before but it had completely slipped my mind! I followed the link Alik supplied and it does look interesting. Now, I obviously have not used it in a live application, so I’m shooting from the hip, but to answer Alik’s question, the only reasons that spring to mind are to have a coherent logging stragey in place across all application types, and perhaps the number of different ‘appenders’ that are available. Also, the API seems a bit heavy if I have to instantiate a class for every event that is raised. That said, if you are starting out on a new project it’s definitely worth evaluating.
WinDBG Update Released
An update of the Windows debugger, WinDBG, has been released (6.7.5.0). You can download here.
AnkhSVN: Visual Studio 2005 Subversion Plugin
I’m not currently using Subversion on a day-to-day basis, but if I was I’d definitely be keen to have it integrated into the Visual Studio 2005 IDE (even SourceSafe, the enfant terrible gives you this ability!), rather than using TortoiseSVN, which integrates into Windows Explorer. Back in January this year (2007), Arild Fines released version 1.0 Final of AnkhSVN, a Visual Studio 2005 plugin for Subversion. You can download it here.
The source code is also available for free, and there is a AnkhSVN Wiki.
log4net: .NET Logging Tool
I took a brief look at log4net quite some time ago and have to admit I didn’t look closely enough! log4net is a port of the highly successful java based log4j logging library and is very mature tool. It’s been at the back of my mind to have another look, and my current project provided the opportunity and impetus. Without wanting this to sound like hype, log4net really does provide a one-stop shop for all your logging, tracing and diagnostics in a simple to use package.
It’s very easy to use out of the box, and highly intuitive. It comes with just about every ‘appender’ you could want (an ‘appender’ is a kind of output sink, i.e. a target for your logging messages). You can define the layout of the log messages. It’s extensible, if you require some other type of appender. It comes with the source code. It has excellent documentation. It’s free! If that doesn’t sound like a great deal, well, there’s no satisfying some people!
I’m going to be using and recommending log4net for all new .NET projects I work on.
You can download log4net here. Even though log4net is fully extensible, it is highly likely that it will meet your logging needs straight out of the box.
The excellent documentation contains config-examples for the list of currently supported appenders:
- AdoNetAppender
- MS SQL Server
- MS Access
- Oracle9i
- Oracle8i
- IBM DB2
- SQLite
- AspNetTraceAppender
- BufferingForwardingAppender
- ColoredConsoleAppender
- ConsoleAppender
- EventLogAppender
- FileAppender
- ForwardingAppender
- MemoryAppender
- NetSendAppender
- OutputDebugStringAppender
- RemotingAppender
- RollingFileAppender
- SmtpAppender
- SmtpPickupDirAppender
- TraceAppender
- UdpAppender
Of these, probably the most commonly used are the:
The documentation and tutorials section provide examples of how to configure the various appenders (\examples\net\1.0\Tutorials\ConsoleApp\cs\src, for example).
[Note: OutputDebugString is also worth looking at; it’s a Win32 API call that’s been there since before .NET, and is a nice technique for connecting to live applications and capturing logging on the fly using a separate application to catch debugging messages]
Adding log4net to your VS2005 project
Download log4net from the official site here. Unzip it to create a log4net folder (with the version number appended) containing the binaries, documentation, examples and source code.
Add the log4net assembly to your project
It’s good practice to include third party assemblies under source control as part of a project. That way, performing a get latest on a new PC includes everything.
If your project does not already contain a source-controlled external libs folder for third party assemblies:
- Right click on project
- Select “Add -> New Folder”, call it “ThirdPartyDlls” or “libs” or whatever your in-house standards specify.
OK, now add log4net:
- Right click on your external libs folder, select “Add Existing Item…” and browse to where you unzipped log4net and choose the release version of log4net.dll (\bin\net\2.0\release\log4net.dll)
- Right click on References, select “Add Reference …” and browse to your libs folder and pick the log4net.dll you just added.
Configure log4net: Creating and Specifying the Log4Net Config File
Although it is possible to add your log4net configuration settings to your project’s app.config or web.config file, it is preferable to place them in a separate configuration file. Aside from the obvious benefit of maintainability, it has the added benefit that log4net can place a FileSystemWatcher object on your config file to monitor when it changes and update its settings dynamically.
To use a separate config file, add a file named Log4Net.config to your project and add the following attribute to your AssemblyInfo.cs file:
[assembly: log4net.Config.XmlConfigurator(ConfigFile = “Log4Net.config”, Watch = true)]
Note: for web applications, this assumes Log4Net.config resides in the web root. Ensure the log4net.config file is marked as “Copy To Output” -> “Copy Always” in Properties.
Here is an sample log4net config file with several appenders defined:
<?xml version="1.0" encoding="utf-8" ?>
<log4net>
<appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="..\\Logs\\CurrentLog" />
<appendToFile value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="10000" />
<staticLogFileName value="true" />
<!-- Alternatively, roll on date -->
<!-- -->
<!-- -->
<filter type="log4net.Filter.LevelRangeFilter">
<acceptOnMatch value="true" />
<levelMin value="INFO" />
<levelMax value="FATAL" />
</filter>
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%-5level %date [%thread] %-22.22c{1} - %m%n" />
</layout>
</appender>
<appender name="LogFileAppender" type="log4net.Appender.FileAppender">
<file value="log-file.txt" />
<!-- Example using environment variables in params -->
<!-- -->
<appendToFile value="true" />
<layout type="log4net.Layout.PatternLayout">
<header value="[Your Header text here]" />
<footer value="[Your Footer text here]" />
<conversionPattern value="%date [%thread] %-5level %logger [%ndc]
<%property{auth}> - %message%newline" />
</layout>
<!-- Alternate layout using XML
-->
</appender>
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger - %message%newline" />
</layout>
</appender>
<appender name="EventLogAppender" type="log4net.Appender.EventLogAppender" >
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger
[%property{NDC}] - %message%newline" />
</layout>
</appender>
<!-- Set the default logging level and add the active appenders -->
<root>
<level value="DEBUG" />
<appender-ref ref="LogFileAppender" />
<appender-ref ref="ConsoleAppender" />
<appender-ref ref="RollingFileAppender" />
</root>
<!-- Specify the level for specific categories (“namespace.class”)-->
<logger name="ConsoleApp.LoggingExample">
<level value="ERROR" />
<appender-ref ref="EventLogAppender" />
</logger>
</log4net>
In the “RollingFileAppender“ defined above, as Phil Haack points out: “Note that the file value (with backslashes escaped) points to ..\Logs\CurrentLog. [In Web Applications] this specifies that log4net will log to a file in a directory named Logs parallel to the webroot. You need to give the ASPNET user write permission to this directory, which is why it is generally a good idea to leave it out of the webroot. Not to mention the potential for an IIS misconfiguration that allows the average Joe to snoop through your logs.”
Using the Logger
At the start of each class declare a logger instance as follows:
public class ClassWithLoggingExample
{
private static readonly ILog log = LogManager.GetLogger( System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
...
}
You will need to add a “using log4net;” statement to each class file. By defining a logger in each class you have the ability to control the logging level on a class by class basis, simply by using the config file.
Once you have instantiated a logger, you can call its logging methods. Each method is named for the logging level. For example:
// In ascending order of severity (descending level of verbosity)
log.Debug("This is a DEBUG level message. The most VERBOSE level.");
log.Info("Extended information, with higher importance than the Debug call");
log.Warn("An unexpected but recoverable situation occurred");
log.Error("An unexpected error occurred, an exception was thrown, or is about to be thrown", ex);
log.Fatal("Meltdown!", ex);
Whether or not a message shows up in your logs depends on how you have configured your appenders and the logging level you have set. If you want to avoid the overhead of string construction and a call to a logging method, you can first test to see if the appropriate level is active:
// If you are concerned about performance, test the appropriate
// log level enabled property (one for each of the log level methods)
if (log.IsInfoEnabled)
log.Info("Performance sensitive Info message");
The format of the logged output can be adjusted in the config file. See the log4net documentation that came in the zipped download (\doc\release\sdk\log4net.Layout.PatternLayout.html).
For web applications, add the following line to the Application_Error method in the Global.asax.cs file:
protected void Application_Error(object sender, EventArgs e)
{
log.Fatal("An uncaught exception occurred", this.Server.GetLastError());
}
Contextual Logging
Log4net also has a mechanism called NDC (which stands for Nested Dynamic Context) where you can add contextual information to the log, allowing you to mark log entries as coming from a certain user or having a specific context. These can be nested in a push/pop stack fashion. For example:
// Push a message on to the Nested Diagnostic Context stack
using(log4net.NDC.Push(this.User.Name))
{
log.Debug("log entry will be tagged with the current user's name");
}
// The NDC message is popped off the stack at the end of the using {} block
The context is added to log messages where the pattern layout contains “[%ndc]”.
Resources / References
If you run into permissions problems configuring logging for ASP.NET, check out Phil Haack’s post on configuring log4net for Web Applications here. His quick and dirty guide is also worth reading.
There is also a very useful log4net dashboard / viewer tool called l4ndash.
Bill Ryan has a blog post about The connection string for ADONetAppenders as well as his original post on a log4net walkthrough.
Free e-book: Basics of Compiler Design
Those long winter evenings will soon be with us here in Perth Australia, so what could be better than curling up with a nice thick, free e-book on the Basics of Compiler Design!
It might not be of interest to everyone(!), but if you do fancy a free e-book, Torben Mogensen has made his book available online as a PDF here.
If you’re interested in this kind of thing, check out Joe Duffy’s and Joel Pobar’s PDC session, Good For Nothing Compiler (PDC – TLN410)
Expresso 3.0 Beta, a Regular Expression Editor and Tester
I mentioned Expresso, a regular expression tool written by Jim Hollenhorst, on my blog back in February along with several other regular expression tools and resources. Version 3.0 is now in Beta and is well worth a look.
Expresso is not only a great tool for building and testing new regular expressions, but it’s also great for understanding existing expressions, as it provides an explained English breakdown of the various parts of an expression as a tree. It’s rapidly becoming my favorite regular expression tool.
NUnit 2.4 Final Release (2.4.0.2)
Most of the time I use the version of NUnit that happens to be installed on my system, and I only infrequently check for updates. When I visited the home NUnit site today I noticed that the final version 2.4 of NUnit has been released. You can download it here (release notes). It was released over a month ago and includes several enhancements such as a new syntax and internal architecture for Asserts based on the constraints found in JMock and NMock.
Get Visual Studio 2005 Intellisense with Google Earth KML files
In fact, given a custom XSD schema definition file you can use this method to get Visual Studio 2005 intellisense with just about any XML based file, including NAnt and NAntContrib schemas (see here for a build task to generate the combined NAnt and NAntContrib schema).
1) Download kml21.xsd from http://code.google.com/apis/kml/schema/kml21.xsd and paste it into C:\Program Files\Microsoft Visual Studio 8\Xml\Schemas
2) Open regedit at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\Editors\{fa3cd31e-987b-443a-9b81-186104e8dac1}\Extensions and add a DWORD value of “kml” with value ‘2A’ (the value may vary depending on the editor). For other file extensions (such as .build) add the extension to the relevent editor at the \Editors\{GUID}\Extensions level.
3) In each .kml file, set the xml namespace to:
<kml xmlns="http://earth.google.com/kml/2.1">
Updated: Jonathon Howey kindly pointed out that I missed the \Extensions part of the registry key, which I’ve now fixed. Thanks Jonathon.