Skip to main content
Email Password   helpLost your password?

Sample Image - IFilter.png

What's in a IFilter?

The IFilter interface was designed by Microsoft for use in its Indexing Service. Its main purpose is to extract text from files so the Indexing Service can index them and later search them. Some versions of Windows comes with IFilter implementations for Office files, and there are free and commercial filters available for other file types (Adobe PDF filter is a popular one). The IFilter interface is used mainly in non-text files like Office documents, PDF documents etc., but is also used for text files like HTML and XML, to extract only the important parts of the file. Although the IFilter interface can be used for general purpose text extraction from documents, it is generally used in search engines. Windows Desktop Search uses filters to index files. For more information on IFilter, see the Links section.

So what else is new?

There are already quite a few articles and pieces of information on how to use the IFilter interface in .NET (see the Links section), so why write another article you ask? Well, there are some problems with the implementations offered in those articles (details below) which caused me to take a different approach to using and loading filters. I'm currently using this implementation in a new product I'm developing (more details will be revealed here), and since it's working great, I decided to share it with you (yes, You!).

Issues with the current implementations

These are the issues I and others have found with the current implementations, I'll discuss each in detail below:

  1. Extracting text from very large files.
  2. COM threading issues.
  3. Adobe PDF filter crashing the application when it's closed.

Extracting text from very large files

All of the sample code I found on using IFilters in C# provided a method that extracts the entire text of a document and returns that as a string. Usually, it's something like this:

public static string GetTextFromFile(string path)

Now, this might be OK for some uses, but for a general purpose indexer, I find that it isn't the most scalable way to extract text from documents. Some documents may be very large (30 MB PDFs or Word documents are not uncommon), and extracting the entire text at once can have negative effects on the garbage collector since these objects will be stored in the .NET "Large Objects Heap" (see the Links section for more information).

COM threading issues

Since filters are essentially COM objects, they carry with them all the COM threading model issues that we all love to hate. See the Links section for some of the reported problems. To make a long story short, some filters are marked as STA (Adobe PDF filter), some as MTA (Microsoft XML filter), and some as Both (Microsoft Office Filter). This means MTA filters will not load into C# threads that are marked with the [STAThread], and STA filters will not load into [MTAThread] threads. Some people recommend manually changing the registry to mark "problematic" filters as Both, but this isn't something you want to do during the installation of a product, nor can you reliably do it because you don't know which filters are installed on the customer's machine. We basically need a way to load an IFilter and use it no matter what its threading model or our threading model is.

Adobe PDF filter crashing the application when it's closed

There are quite a few reports about problems with the Adobe PDF filter v6. See this and this for some examples. I researched this issue for some time, and I believe I found what the problem is. It seems Adobe forgot (or not..) to export the DllCanUnloadNow function from their PDFFILT.dll. Since a filter is implemented as a COM object, it should export this function to let COM know when it can unload this library. It seems that this causes problems for C# applications because the .dll is never unloaded, and when it does, it's probably a bit late.

In a previous version of my application, I managed to work around this issue by specifically unloading the PDFFILT.dll library. In the current implementation, this workaround is not needed.

How my implementation solves these issues?

Implement a FilterReader

I decided to go the hard way and implement a TextReader derived class called FilterReader. This solves issue #1 because we don't have to extract the entire text at once. Instead, you can simply use the reader to get a buffer at a time. If you still want to get the entire text as a string, use the ReadToEnd() method.

Bypassing COM

In order to get an IFilter instance, you should call the LoadIFilter API and pass it a file name. LoadIFilter eventually calls CoCreateInstance() to actually instantiate the filter, and thus abide to COM rules. To avoid the threading issues, I decided to bypass COM and instantiate the filter COM class myself. This has the following implications and assumptions:

  1. I needed to find the correct COM class that implements the filter for a specific file type.
  2. I needed to dynamically load the COM DLL that implements that COM class and call the DllGetClassObject function that is exported from that .dll.
  3. I didn't want to re-implement all of the COM infrastructure, so in order to solve the issue of unloading COM DLLs only when they're not needed, I decided to keep the DLLs loaded during the entire application lifetime and only unload them when the application dies. Note that this essentially solves issue #3 since we manually unload the PDFFILT.dll.
  4. An IFilter should not be used by multiple threads since it is no longer protected by COM.
  5. I assumed that STA filters will behave correctly when called from an MTA thread when COM is not involved. Until now, I didn't encounter any problem with this approach. If you find a filter that behaves badly when used this way, please let me know.

To conclude:

How to use the code

Using the code is very simple: instantiate a FilterReader by passing it the file you want to extract text from, and use it like any TextReader derived class:

TextReader reader=new FilterReader(fileName);
using (reader)
{
  textBox1.Text=reader.ReadToEnd();
}

The details

Finding the correct COM class

Since I've decided not to use LoadIFilter, I needed to find a way to locate the correct DLL and class ID of the object implementing the filter for the file whose text we're interested in. This was a simple task, thanks to the excellent RegMon utility from SysInternals. I simply called LoadIFilter and traced which registry keys where read during that operation. I then used the same logic in my own implementation. The details can be found in the FilterLoader class. When a class\DLL pair is found for a certain file extension, this information is cached to avoid traversing the registry again.

During the research I made on how LoadIFilter works, I came across a utility called IFilter Explorer that shows which filters are installed on your computer. From that tool, I also learned that some indexing engines use methods not implemented in LoadIFilter to find filters. One of these methods uses the content type registered for that extension. My version of LoadIFilter also handles loading filters for files that have no filter registered for them but do have a filter registered for their content type.

Loading the DLL and instantiating the filter implementation

OK, so we have the name of the DLL and the ID of the class implementing our filter, how do we create an instance of that class? Most of the work is handled by the ComHelper class. The steps needed to accomplish that are:

private static IClassFactory GetClassFactoryFromDll(string dllName, 
               string filterPersistClass)
{
  //Load the dll

  IntPtr dllHandle=Win32NativeMethods.LoadLibrary(dllName);
  if (dllHandle==IntPtr.Zero)
    return null;

  //Keep a reference to the dll until the process\AppDomain dies

  _dllList.AddDllHandle(dllHandle);

  //Get a pointer to the DllGetClassObject function

  IntPtr dllGetClassObjectPtr=Win32NativeMethods.GetProcAddress(dllHandle, 
    "DllGetClassObject");
  if (dllGetClassObjectPtr==IntPtr.Zero)
    return null;

  //Convert the function pointer to a .net delegate

  DllGetClassObject dllGetClassObject=
    (DllGetClassObject)Marshal.GetDelegateForFunctionPointer(
    dllGetClassObjectPtr, typeof(DllGetClassObject));

  //Call the DllGetClassObject to retreive a class factory 

  //for out Filter class

  Guid filterPersistGUID=new Guid(filterPersistClass);
  //IClassFactory class id

  Guid IClassFactoryGUID=new 
    Guid("00000001-0000-0000-C000-000000000046");
  Object unk;
  if (dllGetClassObject(ref filterPersistGUID, 
          ref IClassFactoryGUID, out unk)!=0)
    return null;

  //Yippie! cast the returned object to IClassFactory

  return (unk as IClassFactory);
}

Once we have an IClassFactory object, we can use it to create instances of the class implementing our filter:

private static IFilter LoadFilterFromDll(string dllName, 
                       string filterPersistClass)
{
  //Get a classFactory for our classID

  IClassFactory classFactory=ComHelper.GetClassFactory(dllName, 
    filterPersistClass);
  if (classFactory==null)
    return null;

  //And create an IFilter instance using that class factory

  Guid IFilterGUID=new Guid("89BCB740-6119-101A-BCB7-00DD010655AF");
  Object obj;
  classFactory.CreateInstance(null, ref IFilterGUID, out obj);
  return (obj as IFilter);
}

We finally have an IFilter instance that can be passed to our FilterReader (after doing the standard filter initialization code):

IPersistFile persistFile=(filter as IPersistFile);
if (persistFile!=null)
{
  persistFile.Load(fileName, 0);
  IFILTER_FLAGS flags;
  IFILTER_INIT iflags =
    IFILTER_INIT.CANON_HYPHENS |
    IFILTER_INIT.CANON_PARAGRAPHS |
    IFILTER_INIT.CANON_SPACES |
    IFILTER_INIT.APPLY_INDEX_ATTRIBUTES |
    IFILTER_INIT.HARD_LINE_BREAKS |
    IFILTER_INIT.FILTER_OWNED_VALUE_OK;

  if (filter.Init(iflags, 0, IntPtr.Zero, out flags)==IFilterReturnCode.S_OK)
    return filter;
}

Note that because we didn't use any COM calls during that process, we get a "raw" interface pointer to the filter class and COM does not create any proxy\stubs to protect that interface.

Conclusion

I've been using this approach for several months now without any problems. Here's a summary of the benefits and implications with this approach:

Benefits

Implications

Links and References

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralDoesn't work on Win2003 64-bit w/ Adobe PDF Filter 9.0? [modified] Pin
Spike!
7:50 27 Oct '09  
QuestionIPersist::Load fails Pin
__Gianluca__
2:45 7 Oct '09  
GeneralException from HRESULT: 0x8004170C with Microsoft Word document Pin
DrewV
12:25 2 Oct '09  
AnswerRe: Exception from HRESULT: 0x8004170C with Microsoft Word document Pin
DrewV
22:32 2 Oct '09  
General[Message Deleted] Pin
Tim Haughton
5:42 5 Sep '09  
Generalbreak line Pin
Silvano_bhz
13:20 27 Aug '09  
AnswerRe: break line Pin
__Gianluca__
2:50 7 Oct '09  
GeneralPDF queries fail with 126 Pin
yowl00
5:39 16 Aug '09  
GeneralAdobe PDF filter crashing the application when it's closed Pin
Munikumar
8:59 21 Jul '09  
Generalhow to use IPersistStream istead of IPersistFile Pin
xugoushan
1:58 19 Jul '09  
GeneralRe: how to use IPersistStream istead of IPersistFile Pin
el_topo
8:09 7 Sep '09  
QuestionProblems with pdf IFilter and asp.net 2.0 Pin
il_depa
12:52 9 Jul '09  
GeneralIs there a way distinguish the pages? Pin
gecgin
11:06 7 Jul '09  
GeneralGood work with some small problems Pin
thbruns
6:54 3 Jul '09  
AnswerSolution: No Filter Defined Pin
BenJee
1:36 18 Jun '09  
Generalit sometimes fails. why not using the LoadIFilter? Pin
kamnas
3:19 22 May '09  
GeneralPut text into SQL Server Pin
Dragan.Goranic
16:13 9 Apr '09  
GeneralDOCX and line breaks Pin
haliphax
6:51 3 Apr '09  
GeneralRe: DOCX and line breaks Pin
Brian H@lkjær
22:51 6 Apr '09  
GeneralRe: DOCX and line breaks Pin
hendi6
13:22 16 Apr '09  
GeneralRe: DOCX and line breaks Pin
Brian H@lkjær
21:12 22 Apr '09  
GeneralRe: DOCX and line breaks Pin
haliphax
12:45 20 May '09  
GeneralRe: DOCX and line breaks Pin
haliphax
12:50 20 May '09  
GeneralGreat Article. How about embedding objects? Pin
Member 4726435
14:45 18 Feb '09  
GeneralAdded support for explicit file extension Pin
Olivier Oswald
3:26 27 Jan '09  


Last Updated 19 Mar 2006 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009