File: filter.html

package info (click to toggle)
swish-e 2.4.5-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,044 kB
  • ctags: 7,630
  • sloc: ansic: 47,771; sh: 8,968; perl: 3,170; makefile: 587; xml: 9
file content (887 lines) | stat: -rw-r--r-- 33,286 bytes parent folder | download
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<!-- 
    ***** GENERATED FILE *** DO NOT EDIT DIRECTLY - any changes will be LOST ******

    swish-e.org mockup based on http://www.oswd.org/design/1773/prosimii/index2.html 
-->


<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-US">
  <head>
    <meta http-equiv="content-type" content="application/xhtml+xml; charset=iso-8859-1" />
    <meta name="author" content="haran" />
    <meta name="generator" content="haran" />


    <link rel="stylesheet" type="text/css" href="./swish.css" media="screen" title="swish css" />

    
        <link rel="Prev" href="./spider.html" />
    
        <link rel="Up" href="./index.html" />
    
        <link rel="Start" href="./index.html" />
    
        <link rel="First" href="./readme.html" />
    

    <title>Swish-e :: SWISH::Filter - Perl extension for filtering documents with Swish-e</title>
  </head>


<body>
    

    <!-- noindex -->

    <!-- For non-visual user agents: -->
      <div id="top"><a href="#main-copy" class="doNotDisplay doNotPrint">Skip to main content.</a></div>

    <!-- ##### Header ##### -->

    <div id="header">
      <div class="superHeader">
        <span>Related Sites:</span>
            <a href="http://swishewiki.org/" title="swishe wiki">swish-e wiki</a> |
            <a href="http://www.xmlsoft.org/" title="libxml2 home page">libxml2</a> |
            <a href="http://www.zlib.net/" title="zlib home page">zlib</a> |
            <a href="http://www.foolabs.com/xpdf/" title="xpdf home page">xpdf</a> |
            <a href="http://cvs.sourceforge.net/viewcvs.py/swishe/" title="View CVS at SourceForge">CVS @ SourceForge</a> 
      </div>

      <div class="midHeader">
        <h1 class="headerTitle" lang="la">Swish-e</h1>
        <div class="headerSubTitle">Simple Web Indexing System for Humans - Enhanced</div>

        <br class="doNotDisplay doNotPrint" />

        <div class="headerLinks">
          <span class="doNotDisplay">Tools:</span>

              <!-- don't know what platform, so link to download page -->

              <a href="http://swish-e.org/download/index.html">download latest version</a>


        </div>
      </div>
    </div>
    <!-- index -->

  <!-- noindex -->
  <div class="subHeader">

   <form method="get"
        action="http://swish-e.org/search/index.html"
        enctype="application/x-www-form-urlencoded"
        class="srchform">

         <table width='100%'>
          <tr>
           <td align='left'>
            <a href="http://swish-e.org/index.html">home</a> |
            <a href="http://swish-e.org/support.html">support</a> |
            <a href="http://swish-e.org/download/index.html">download</a>
           </td>

           <td align='right'>


     <label for="searchfield">Search for</label>
     <input maxlength="200" value="" id="searchfield" size="30" name="query" type="text" alt="Search input field"/>
     <input value="search swish-e.org" name="submit" type="submit" class='button' />

                </td>
           </tr>
          </table>

   </form>

  </div>
  <!-- index -->



    <div id="side-bar">

    <!-- noindex -->
<ul class="menu"><li class="menuparent">

    <a class="menu" 
    href="./index.html"
    >Doc Overview</a>

<!-- noindex -->
<ul class="submenu"><li class="">

    <a class="submenu" 
    href="./readme.html"
     title="First time users">README</a>

</li><li class="">

    <a class="submenu" 
    href="./install.html"
     title="Installation and usage overview">Install</a>

</li><li class="">

    <a class="submenu" 
    href="./changes.html"
     title="Important changes from previous versions">Changes</a>

</li><li class="">

    <a class="submenu" 
    href="./swish-config.html"
     title="Directives that go in your Swish-e configuration file">Configuration</a>

</li><li class="">

    <a class="submenu" 
    href="./swish-run.html"
     title="Command line options for Swish-e binary">Running</a>

</li><li class="">

    <a class="submenu" 
    href="./swish-search.html"
     title="Swish-e's search language">Searching</a>

</li><li class="">

    <a class="submenu" 
    href="./swish-faq.html"
    >FAQ</a>

</li><li class="">

    <a class="submenu" 
    href="./swish-bugs.html"
    >Known issues</a>

</li><li class="">

    <a class="submenu" 
    href="./swish-3.0.html"
    >The Future</a>

</li><li class="">

    <a class="submenu" 
    href="./swish-library.html"
     title="Swish-e C API">C API</a>

</li><li class="">

    <a class="submenu" 
    href="./api.html"
     title="Perl interface to the Swish-e library">Perl API</a>

</li><li class="">

    <a class="submenu" 
    href="./swish.cgi.html"
     title="Example CGI/mod_perl script">Swish.cgi</a>

</li><li class="">

    <a class="submenu" 
    href="./search.cgi.html"
     title="Example Perl script using SWISH::API">Search.cgi</a>

</li><li class="">

    <a class="submenu" 
    href="./spider.html"
     title="The Swish-e HTTP spider">Spider.pl</a>

</li><li class="">

    <a class="thisfile" 
    href="./filter.html"
     title="How to index non-text documents">Filters &#187;</a>

</li></ul>
<!-- index -->


</li></ul>
<!-- index -->



</div>

<div id="main-copy">
    
    
    
    
<h1>SWISH::Filter - Perl extension for filtering documents with Swish-e</h1>
Swish-e version 2.4.5



    <!-- noindex -->

    
        <h2>Table of Contents</h2>
        <div class="toc">
            
    <ul class="toc">
        
            <li>
                <a href="#synopsis">SYNOPSIS</a>
                
            </li>
        
            <li>
                <a href="#description">DESCRIPTION</a>
                
            </li>
        
            <li>
                <a href="#methods">METHODS</a>
                
    <ul class="toc">
        
            <li>
                <a href="#swish_filter_new_options">SWISH::Filter-&gt;new Options</a>
                
            </li>
        
    </ul>

            </li>
        
            <li>
                <a href="#writing_filters">WRITING FILTERS</a>
                
            </li>
        
            <li>
                <a href="#swish_filter_document_methods">SWISH::Filter::document Methods</a>
                
    <ul class="toc">
        
            <li>
                <a href="#methods_used_by_end_users_and_filter_authors">Methods used by end-users and filter authors</a>
                
            </li>
        
            <li>
                <a href="#methods_used_by_filter_authors">Methods used by filter authors</a>
                
            </li>
        
    </ul>

            </li>
        
            <li>
                <a href="#swish_filters__base">SWISH::Filters::_BASE</a>
                
            </li>
        
            <li>
                <a href="#testing">TESTING</a>
                
            </li>
        
            <li>
                <a href="#support">SUPPORT</a>
                
            </li>
        
            <li>
                <a href="#bugs_todo_items_and_other_notes">Bugs, todo items, and other notes</a>
                
            </li>
        
            <li>
                <a href="#author">AUTHOR</a>
                
            </li>
        
            <li>
                <a href="#copyright">COPYRIGHT</a>
                
            </li>
        
    </ul>

        </div>
    
    <!-- index -->





<hr />


    <div class="sub-section">
        
<h1><a name="synopsis"></a>SYNOPSIS</h1>

<pre class="pre-section">  use SWISH::Filter;

  # load available filters into memory
  my $filter = SWISH::Filter-&gt;new;

  # convert a document

  my $doc = $filter-&gt;convert(
        document     =&gt; \$scalar_ref,  # path or ref to a doc
        content_type =&gt; $content_type, # content type if doc reference
        name         =&gt; $real_path,    # optional name for this file (useful for debugging)
        user_data    =&gt; $whatever,     # optional data to make available to filters
   );

  return unless $doc;  # empty doc, zero size, or no filters installed

  # Was the document converted by a filter?
  my $was_filtered = $doc-&gt;was_filtered;

  # Skip if the file is not text
  return if $doc-&gt;is_binary;

  # Print out the doc
  my $doc_ref = $doc-&gt;fetch_doc;
  print $$doc_ref;

  # Fetch the final content type of the document
  my $content_type = $doc-&gt;content_type;

  # Fetch Swish-e parser type (TXT*, XML*, HTML*, or undefined)
  my $doc_type = $doc-&gt;swish_parser_type;</pre>

    </div>

    <div class="sub-section">
        
<h1><a name="description"></a>DESCRIPTION</h1>

<p>SWISH::Filter provides a unified way to convert documents into a type that
Swish-e can index.  Individual filters are installed as separate perl modules.
For example, there might be a filter that converts from PDF format to HTML
format.</p>
<p>Note that this is just a framework for filtering documents.  Additional helper
programs or Perl module may need to be installed to use SWISH::Filter to filter
documents.  For example, to filter PDF documents you must install the Xpdf
package.</p>
<p>The filters are automatically loaded when <code>SWISH::Filters-&gt;new()</code> is
called.  Filters define a type and priority that determines the processing
order of the filter.  Filters are processed in this sort order until a filter
accepts the document for filtering. The filter uses the document's content type
to determine if the filter should handle the current document.  The
content-type is determined by the files suffix if not supplied by the calling
program.</p>
<p>The individual filters are not designed to be used as separate modules.  All
access to the filters is through this SWISH::Filter module.</p>
<p>Normally, once a document is filtered processing stops.  Filters can filter the
document and then set a flag saying that filtering should continue (for example
a filter that uncompresses a MS Word document before passing on to the filter
that converts from MS Word to text).  All this should be transparent to the end
user.  So, filters can be pipe-lined.</p>
<p>The idea of SWISH::Filter is that new filters can be created, and then
downloaded and installed to provide new filtering capabilities.  For example,
if you needed to index MS Excel documents you might be able to download a
filter from the Swish-e site and magically next time you run indexing MS Excel
docs would be indexed.</p>
<p>The SWISH::Filter setup can be used with -S prog or -S http.  It works best
with the -S prog method because the filter modules only need to be loaded and
compiled one time.  The -S prog program <i>spider.pl</i> will automatically use
SWISH::Filter when spidering with default settings (using "default" as the
first parameter to spider.pl).</p>
<p>The -S http indexing method uses a Perl helper script called <i>swishspider</i>.
<i>swishspider</i> has been updated to work with SWISH::Filter, but (unlike
spider.pl) does not contain a "use lib" line to point to the location of
SWISH::Filter.  This means that by default <i>swishspider</i> will <b>not</b> use
SWISH::Filter for filtering.  The reason for this is because <i>swishspider</i>
runs for every URL fetched, and loading the Filters for each document can be
slow.  The recommended way of spidering is using -S prog with spider.pl, but if
-S http is desired the way to enable SWISH::Filter is to set PERL5LIB before
running swish so that <i>swishspider</i> will be able to locate the SWISH::Filter
module.  Here's one way to set the PERL5LIB with the bash shell:</p>
<pre class="pre-section">  $ export PERL5LIB=`swish-filter-test -path`</pre>

    </div>

    <div class="sub-section">
        
<h1><a name="methods"></a>METHODS</h1>

<ul>
<li><a name="item__filter"></a><a name="_filter"></a><b>$filter = SWISH::Filter-&gt;new()</b>
<p>This creates a SWISH::Filter object.  You may pass in options as a list or a hash reference.</p>
</li>
</ul>

    </div>

    <div class="sub-section">
        
<h2><a name="swish_filter_new_options"></a>SWISH::Filter-E&lt;gt&gt;new Options</h2>

<p>There is currently only one option that can be passed in to new():</p>
<ul>
<li><a name="item_ignore_filters"></a><a name="ignore_filters"></a><b>ignore_filters</b>
<p>Pass in a reference to a list of filter names to ignore.  For example, if you have two filters installed
"Pdf2HTML" and "Pdf2XML" and want to avoid using "Pdf2XML":</p>
<pre class="pre-section">    my $filter = SWISH::Filter-&gt;new( ignore_filters =&gt; ['Pdf2XML'];</pre>
</li>
<li><a name="item__doc_object"></a><a name="_doc_object"></a><b>$doc_object = $filter-&gt;convert();</b>
<p>This method filters a document.  Returns an object of the class SWISH::Filter::document
or undefined if passed in an empty document, a filename that cannot be read off disk, or
if no filters have been loaded.</p>
<p>SWISH::Filter::document methods listed below can be called on the object to, for
example, check if the document was filtered and to fetch the document content (filtered or
not).</p>
<p>You must pass in a hash (or hash reference) of parameters to the convert() method.  The
possible parameters are:</p>
<ul>
<li><a name="item_document"></a><a name="document"></a><b>document</b>
<p>This can be either a path to a file, or a scalar reference to a document in memory.
This is required.</p>
</li>
<li><a name="item_content_type"></a><a name="content_type"></a><b>content_type</b>
<p>The MIME type of the document.  This is only required when passing in a scalar
reference to a document. The content type string is what the filters use to
match a document type.</p>
<p>When passing in a file name and <code>content_type</code> is not set, then the content type will
be determined from the file's extension by using the MIME::Types Perl module (available on CPAN).</p>
</li>
<li><a name="item_name"></a><a name="name"></a><b>name</b>
<p>Optional name to pass in to filters that will be used in error and warning messages.</p>
</li>
<li><a name="item_user_data"></a><a name="user_data"></a><b>user_data</b>
<p>Optional data structure that all filters may access.
This can be fetched in a filter by:</p>
<pre class="pre-section">    my $user_data = $doc_object-&gt;user_data;</pre>
<p>And used in the filter as:</p>
<pre class="pre-section">    if ( ref $user_data &amp;&amp; $user_data-&gt;{pdf2html}{title} ) {
       ...
    }</pre>
<p>It's up to the filter author to use a unique first-level hash key for a given filter.</p>
</li>
</ul>
<p>Example of using the convert() method:</p>
<pre class="pre-section">    $doc_object = $filter-&gt;convert(
        document     =&gt; $doc_ref,
        content-type =&gt; 'application/pdf',
    );</pre>
</li>
<li><a name="item__filter_mywarn_"></a><a name="_filter_mywarn_"></a><b>$filter-&gt;mywarn()</b>
<p>Internal function used for writing warning messages to STDERR if
$ENV{FILTER_DEBUG} is set.  Set the environment variable FILTER_DEBUG before
running to see extra messages while processing.</p>
</li>
<li><a name="item__filters"></a><a name="_filters"></a><b>@filters = $filter-&gt;filter_list;</b>
<p>Returns a list of filter objects installed.</p>
</li>
<li><a name="item__filter"></a><a name="_filter"></a><b>@filter = $filter-&gt;can_filter( $content_type );</b>
<p>This is useful for testing to see if a mimetype might be handled by SWISH::Filter
wihtout having to pass in a document.  Helpful if doing HEAD requests.</p>
<p>Returns an array of filters that can handle this type of document</p>
</li>
</ul>

    </div>

    <div class="sub-section">
        
<h1><a name="writing_filters"></a>WRITING FILTERS</h1>

<p>Filters are standard perl modules that are installed into the SWISH::Filters name space.
Filters are not complicated -- see the existing filters for examples.</p>
<p>Each filter defines the content-types (or mimetypes) that it can handle.  These
are specified as a list of regular expressions to match against the document's
content-type.  If one of the mimetypes of a filter match the incoming
document's content-type the filter is called.  The filter can then either
filter the content or return undefined indicating that it decided not to
filter the document for some reason.  If the document is converted the filter
returns either a reference to a scalar of the content or a file name where the
content is stored.  The filter also must change the content-type of the document
to reflect the new document.</p>
<p>Filters typically use external programs or modules to do that actual work of
converting a document from one type to another.  For example, programs in the
Xpdf packages are used for converting PDF files.  The filter can (and should)
test for those programs in its new() method.</p>
<p>Filters also can define a type and priority.  These attributes are used
to set the order filters are tested for a content-type match.  This allows
you to have more than one filter that can work on the same content-type.</p>
<p>If a filter calls die() then the filter is removed from the chain and will not be
called again <i>during the same run</i>.  Calling die when running with -S http or
-S fs has no effect since the program is run once per document.</p>
<p>Once a filter returns something other than undef no more filters will be
called.  If the filter calls $filter-&gt;set_continue then processing will
continue as if the file was not filtered.  For example, a filter can uncompress
data and then set $filter-&gt;set_continue and let other filters process the
document.</p>
<p>This is the list of methods the filter should or may define (as specificed):</p>
<ul>
<li><a name="item_new_"></a><a name="new_"></a><b>new()  * required *</b>
<p>This method returns either an object which provides access to the filter, or undefined
if the filter is not to be used.</p>
<p>The new() method is a good place to check for required modules or helper programs.
Returning undefined prevents the filter from being included in the filter chain.</p>
<p>The new method must return a blessed hash reference.  The only required attribute
is <b>mimetypes</b>.  This attribute must contain a reference to an array of regular
expressions used for matching the content-type of the document passed in.</p>
<p>Example:</p>
<pre class="pre-section">    sub new {
        my ( $class ) = @_;

        # List of regular expressions
        my @mimetypes = (
            qr[application/(x-)?msword],
            qr[application/worddoc],
        );

        my %settings = (
            mimetypes   =&gt; \@mimetypes,

            # Optional settings
            priority    =&gt; 20,
            type        =&gt; 2,
        );

        return bless \%settings, $class;
    }</pre>
<p>The attribute "mimetypes" returns an array reference to a list of regular
expressions.  Those patterns are matched against each document's content type.</p>
</li>
<li><a name="item_filter_"></a><a name="filter_"></a><b>filter() * required *</b>
<p>This is the function that does the work of converting a document from one content type
to another.  The function is passed the document object.  See document object methods
listed below for what methods may be called on a document.</p>
<p>The function can return undefined (or any false value) to indicate that the
filter did not want to process the document.  Other filters will then be tested for
a content type match.</p>
<p>If the document is filtered then the filter must set the new document's content
type (if it changed) and return either a file name where the document can be found or
a reference to a scalar containing the document.</p>
</li>
<li><a name="item_type_"></a><a name="type_"></a><b>type()</b>
<p>Returns a number. Filters are sorted (for processing in a specific order)
and this number is simply the primary key used in sorting.  If not specified
the filter's type used for sorting is 2.</p>
<p>This is an optional method.  You can also set the type in your new() constructor
as shown above.</p>
</li>
<li><a name="item_priority_"></a><a name="priority_"></a><b>priority()</b>
<p>Returns a number.  Filters are sorted (for processing in a specific order)
and this number is simply the secondary key used in sorting.  If not specified
the filter's priority is 50.</p>
<p>This is an optional method.  You can also set the priority in your new() constructor
as shown above.</p>
</li>
</ul>
<p>Again, the point of the type() and priority() methods is to allow setting the sort order
of the filters.  Useful if you have two filters for filtering the same content-type,
but prefer to use one over the other.  Neither are required.</p>
<p>Here's a module to convert MS Word documents using the program "catdoc":</p>
<pre class="pre-section">    package SWISH::Filters::Doc2txt;
    use vars qw/ $VERSION /;

    $VERSION = '0.02';

    sub new {
        my ( $class ) = @_;

        my $self = bless {
            mimetypes   =&gt; [ qr!application/(x-)?msword! ],
            priority    =&gt; 50,
        }, $class;

        # check for helpers
        return $self-&gt;set_programs( 'catdoc' );

    }

    sub filter {
        my ( $self, $doc ) = @_;

        my $content = $self-&gt;run_catdoc( $doc-&gt;fetch_filename ) || return;

        # update the document's content type
        $filter-&gt;set_content_type( 'text/plain' );

        # return the document
        return \$content;
    }
    1;</pre>
<p>The new() constructor creates a blessed hash which contains an array reference
of mimetypes patterns that this filter accepts.  The priority sets this
filter to run after any other filters that might handle the same type of content.
The <i>set_programs()</i> function says that we need to call a program called "catdoc".
The function either returns $self or undefined if catdoc could not be found.
The <i>set_programs()</i> function creates a new method for running catdoc.</p>
<p>The filter function runs catdoc passing in the name of the file (if the file is in memory
a temporary file is created).  That <i>run_catdoc()</i> function was created by the
<i>set_programs()</i> call above.</p>

    </div>

    <div class="sub-section">
        
<h1><a name="swish_filter_document_methods"></a>SWISH::Filter::document Methods</h1>

<p>These methods are available to Filter authors, and also provide access to the
document after calling the convert() method to end-users of SWISH::Filter.</p>
<p>End users of SWISH::Filter will use a subset of these methods.  Mostly:</p>
<pre class="pre-section">   $doc_object-&gt;fetch_doc      # and alias for fetch_document_reference()
   $doc_object-&gt;was_filtered   # true the document was filtered
   $doc_object-&gt;content_type   # document's current content type (mime type)
   $doc_object-&gt;swish_parser_type # returns a parser type to use with Swish-e -S prog method
   $doc_object-&gt;is_binary      # returns $content_type !~ m[^text/];</pre>
<p>These methods are also available to the individual filter modules.  The filter's "filter"
function is also passed a SWISH::Filter::document object.  Method calls may be made on this
object to check the document's current content type, or to fetch the document as either a
file name or a reference to a scalar containing the document content.</p>

    </div>

    <div class="sub-section">
        
<h2><a name="methods_used_by_end_users_and_filter_authors"></a>Methods used by end-users and filter authors</h2>

<ul>
<li><a name="item__doc_ref"></a><a name="_doc_ref"></a><b>$doc_ref = $doc_object-&gt;fetch_doc_reference;</b>
<p>Returns a scalar reference to the document.  This can be used when the filter
can operate on the document in memory (or if an external program expects the input
to be from standard input).</p>
<p>If the file is currently on disk then it will be read into memory.  If the file was stored
in a temporary file on disk the file will be deleted once read into memory.
The file will be read in binmode if $doc-&gt;is_binary is true.</p>
<p>Note that $doc_object-&gt;fetch_doc is an alias.</p>
</li>
<li><a name="item__was_filtered"></a><a name="_was_filtered"></a><b>$was_filtered = $doc_object-&gt;was_filtered</b>
<p>Returns true if some filter processed the document</p>
</li>
<li><a name="item__content_type"></a><a name="_content_type"></a><b>$content_type = $doc_object-&gt;content_type;</b>
<p>Fetches the current content type for the document.</p>
<p>Example:</p>
<pre class="pre-section">    return unless $filter-&gt;content_type =~ m!application/pdf!;</pre>
</li>
<li><a name="item__type"></a><a name="_type"></a><b>$type = $doc_object-&gt;swish_parser_type</b>
<p>Returns a parser type based on the content type</p>
</li>
<li><a name="item__doc_object_is_binary"></a><a name="_doc_object_is_binary"></a><b>$doc_object-&gt;is_binary</b>
<p>Returns true if the document's content-type does not match "text/".</p>
</li>
</ul>

    </div>

    <div class="sub-section">
        
<h2><a name="methods_used_by_filter_authors"></a>Methods used by filter authors</h2>

<ul>
<li><a name="item__file_name"></a><a name="_file_name"></a><b>$file_name = $doc_object-&gt;fetch_filename;</b>
<p>Returns a path to the document as stored on disk.
This name can be passed to external programs (e.g. catdoc) that expect input
as a file name.</p>
<p>If the document is currently in memory then a temporary file will be created.  Do not expect
the file name passed to be the real path of the document.</p>
<p>The file will be written in binmode if $doc-&gt;is_binary is true.</p>
<p>This method is not normally used by end-users of SWISH::Filter.</p>
</li>
<li><a name="item__doc_object_set_continue_"></a><a name="_doc_object_set_continue_"></a><b>$doc_object-&gt;set_continue;</b>
<p>Processing will continue to the next filter if this is set to a true value.
This should be set for filters that change encodings or uncompress documents.</p>
</li>
<li><a name="item__doc_object_set_content_type_"></a><a name="_doc_object_set_content_type_"></a><b>$doc_object-&gt;set_content_type( $type );</b>
<p>Sets the content type for a document.</p>
</li>
<li><a name="item__doc_object_name"></a><a name="_doc_object_name"></a><b>$doc_object-&gt;name</b>
<p>Fetches the name of the current file.  This is useful for printing out the
name of the file in an error message.
This is the name passed in to the SWISH::Filter-&gt;convert method.
It is optional and thus may not always be set.</p>
<pre class="pre-section">    my $name = $doc_object-&gt;name || 'Unknown name';
    warn "File '$name': failed to convert -- file may be corrupt\n";</pre>
</li>
<li><a name="item__doc_object_user_data"></a><a name="_doc_object_user_data"></a><b>$doc_object-&gt;user_data</b>
<p>Fetches the the user_data passed in to the filter.
This can be any data or data structure passed into SWISH::Filter-&gt;new.</p>
<p>This is an easy way to pass special parameters into your filters.</p>
<p>Example:</p>
<pre class="pre-section">    my $data = $doc_object-&gt;user_data;
    # see if a choice for the &lt;title&gt; was passed in
    if ( ref $data eq 'HASH' &amp;&amp; $data-&gt;{pdf2html}{title_field}  {
       ...
       ...
    }</pre>
</li>
</ul>

    </div>

    <div class="sub-section">
        
<h1><a name="swish_filters__base"></a>SWISH::Filters::_BASE</h1>

<p>Each filter is a subclass of SWISH::Filters::_BASE.  A number of methods
are available by default (and some can be overridden).  Others are useful
when writing your new() constructor.</p>
<ul>
<li><a name="item__self_type"></a><a name="_self_type"></a><b>$self-&gt;type</b>
<p>This method fetches the type of the filter.  The value returned sets the
primary sort key for sorting the filters.  You can override this in your
filter, or just set it as an attribute in your object.  The default is 2.</p>
<p>The idea of the "type" is to create groups of filters, if needed.
For example, you might have a set of filters that are used for uncompressing
some documents before passing on to another group for filtering.</p>
</li>
<li><a name="item__self_priority"></a><a name="_self_priority"></a><b>$self-&gt;priority</b>
<p>This method fetches the priority of the filter.  The value returned sets the
secondary sort key for sorting the filters.  You can override this in your
filter, or just set it as an attribute in your object.  The default method
returns 50.</p>
<p>The priority is useful if you have multiple filters for the same content type that
use different methods for filtering (say one uses wvWare and another uses catdoc for
filtering MS Word files).  You might give the wvWare filter a lower priority number
so it runs before the catdoc filter if both wvWare AND catdoc happen to be installed
at the same time.</p>
</li>
<li><a name="item__types"></a><a name="_types"></a><b>@types = $self-&gt;mimetypes</b>
<p>Returns the list of mimetypes (as regular expressions) set for the filter.</p>
</li>
<li><a name="item__pattern"></a><a name="_pattern"></a><b>$pattern = $self-&gt;can_filter_mimetype( $content_type )</b>
<p>Returns true if passed in content type matches one of the filter's mimetypes
Returns the pattern that matched.</p>
</li>
<li><a name="item_mywarn_"></a><a name="mywarn_"></a><b>mywarn( $message )</b>
<p>method for printing out message if debugging is available</p>
</li>
<li><a name="item__boolean"></a><a name="_boolean"></a><b>$boolean = $self-&gt;set_programs( @program_list );</b>
<p>Returns true if all the programs listed in @program_list are found
and can be executed as the current user.  Creates a method for each
program with the "run_" prefix.  Returns false is ANY program cannot
be found.</p>
<p>Actually, it returns $self, so you can make it the last statement in
your constructor.</p>
<p>So in your constructor you might do:</p>
<pre class="pre-section">    return $self-&gt;set_programs( qw/ pdftotext pdfinfo / );</pre>
<p>Then in your filter() method:</p>
<pre class="pre-section">    my $content = $self-&gt;run_pdfinfo( $doc-&gt;fetch_filename, [options] );</pre>
</li>
<li><a name="item__path"></a><a name="_path"></a><b>$path = $self-&gt;find_binary( $prog );</b>
<p>Use in a filter's new() method to test for a necesary program located in $PATH.
Returns the path to the program or undefined if not found or does not pass the -x
file test.</p>
</li>
<li><a name="item__bool"></a><a name="_bool"></a><b>$bool = $self-&gt;use_modules( @module_list );</b>
<p>Attempts to load each of the module listed and calls its import() method.</p>
<p>Use to test and load required modules within a filter without aborting.</p>
<pre class="pre-section">    return unless $self-&gt;use_modules( qw/ Spreadsheet::ParseExcel  HTML::Entities / );</pre>
<p>A warning message is displayed if the FILTER_DEBUG environment variable is true.
Returns $self if no error.</p>
</li>
<li><a name="item__doc_ref"></a><a name="_doc_ref"></a><b>$doc_ref = $self-&gt;run_program( $program, @args );</b>
<p>Runs $program with @args.  Must pass in @args.</p>
<p>Under Windows calls IPC::Open2, which may pass data through the shell.  Double-quotes are
escaped (backslashed) and each parameter is wrapped in double-quotes.</p>
<p>On other platforms a fork and exec is used to avoid passing any data through the shell.
Returns a reference to a scalar containing the output from your program, or dies.</p>
<p>This method is intended to read output from a program that converts one format into text.
The output is read back in text mode -- on systems like Windows this means \r\n (CRLF) will
be convertet to \n.</p>
</li>
</ul>

    </div>

    <div class="sub-section">
        
<h1><a name="testing"></a>TESTING</h1>

<p>Filters can be tested with the <i>swish-filter-test</i> program.  Run:</p>
<pre class="pre-section">   swish-filter-test -man</pre>
<p>for documentation.</p>

    </div>

    <div class="sub-section">
        
<h1><a name="support"></a>SUPPORT</h1>

<p>Please contact the Swish-e discussion list.  <a href="http://swish-e.org">http://swish-e.org</a></p>

    </div>

    <div class="sub-section">
        
<h1><a name="bugs_todo_items_and_other_notes"></a>Bugs, todo items, and other notes</h1>

<p>TBD</p>

    </div>

    <div class="sub-section">
        
<h1><a name="author"></a>AUTHOR</h1>

<p>Bill Moseley</p>

    </div>

    <div class="sub-section">
        
<h1><a name="copyright"></a>COPYRIGHT</h1>

<p>This library is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.</p>

    </div>















</div>

<!-- ##### Footer ##### -->
<!-- noindex -->

<div id="footer">
    <span class="doNotPrint">
        Swish-e is distributed with <strong>no warranty</strong> under the terms of the <br />
        <a href='/license.html'>Swish-e License</a>.<br />
        Questions may be posted to the 
        <a href="http://swish-e.org/discuss.html" title="email list and list archive">Swish-e Discussion list</a>.
    </span>

    <p>
    <SCRIPT type='text/javascript' language='JavaScript'
             src='http://www.ohloh.net/projects/3196;badge_js'></SCRIPT>
    </p>

    <p>
        <strong>URI &raquo;</strong> http://swish-e.org/ 
        &bull; <strong>Updated &raquo;</strong> Fri, 24 Jun 2005 12:47:15 UTC
    </p>
</div>
<!-- index -->



</body>
</html>