summaryrefslogtreecommitdiff
path: root/xmlhelp/source/com/sun/star/help/HelpIndexer.java
blob: 240f08bdc8df488ed3b42a442a77ff28b7291f26 (plain)
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
/**
 * Title:        <p>
 * Description:  <p>
 * Copyright:    Copyright (c) <p>
 * Company:      <p>
 * @author
 * @version 1.0
 */
package com.sun.star.help;


import java.io.*;
import java.net.URL;
import java.util.*;

import org.w3c.dom.*;
import com.sun.xml.tree.*;
import org.xml.sax.*;
import javax.xml.parsers.*;
import com.jclark.xsl.sax.*;

import com.sun.xmlsearch.util.*;
import com.sun.xmlsearch.xml.qe.*;
import com.sun.xmlsearch.xml.indexer.*;

import com.sleepycat.db.*;
import com.sun.star.help.HelpURLStreamHandlerFactory;

public class HelpIndexer {

    private HelpURLStreamHandlerFactory _urlHandler = null;
    private String _language = null, _module = null, _system = null;


    public HelpIndexer( HelpURLStreamHandlerFactory urlHandler,String language, String module, String system )
      {
           _urlHandler = urlHandler;
        _system = system;
          _language = language;
        _module = module;
      }


       private final class TagInfo
    {
        String _tag,_id;

          public TagInfo( String id,String tag )
           {
            _tag = tag;
             _id = id;
        }

        public String get_tag()
          {
            return _tag;
        }

         public String get_id()
          {
               return _id;
           }
    }


    private final class DocInfo
     {
          private String _url = null,_id = null;

        private ArrayList _helptags = new ArrayList();


          public void append( String id,String tag )
        {
             _helptags.add( new TagInfo( id,tag ) );
         }


          public String getURL()
           {
            return _url;
        }

        public void setURL( String url )
          {
            _url = url;
          }

        public void setId( String id )
          {
            _id = id;
          }

           public String getId()
        {
            return _id;
        }

        public ArrayList getAppendices()
        {
            return _helptags;
        }
      }


    Hashtable _hashDocInfo = new Hashtable();
    Hashtable _hashHelptext = new Hashtable();


     private void schnitzel()
      {
        // Determine the location of the database
        String installDirectory = HelpDatabases.getInstallDirectory();
        Db table = null;

          try
        {
            table = new Db( null,0 );
             table.set_error_stream( System.err );
            table.set_errpfx( "indexing" );


               // Create indexDirectory, if not existent
             String indexDirectory = installDirectory + _language + File.separator + _module + ".idx";
              File indexDir = new File( indexDirectory );
               if( indexDir.exists() && indexDir.isFile() )
                indexDir.delete();

            if( ! indexDir.exists() )
                indexDir.mkdir();

            indexDir = null;

             // Initialize the indexBuilder
            XmlIndexBuilder builder = new XmlIndexBuilder( indexDirectory );

             String[] translations = { "vnd.sun.star.help://", "#HLP#" };
            PrefixTranslator translator = PrefixTranslator.makePrefixTranslator( translations );
            builder.setPrefixTranslator( translator );

            builder.clearIndex();               // Build index from scratch
            builder.setTransformLocation( installDirectory + "..\\StyleSheets\\Indexing\\" );
            builder.init( "index" );


             // Determine and read the database
            String fileName = installDirectory
                              + _language
                            + File.separator
                            + _module
                               + ".db";

            table.open( fileName,null,Db.DB_BTREE,Db.DB_RDONLY,0644 );
            Dbc cursor = table.cursor( null,0 );
            StringDbt key = new StringDbt();
            StringDbt data = new StringDbt();

            boolean first = true;
              key.set_flags( Db.DB_DBT_MALLOC );      // Initially the cursor must allocate the necessary memory
             data.set_flags( Db.DB_DBT_MALLOC );
            while( Db.DB_NOTFOUND != cursor.get( key,data,Db.DB_NEXT ) )
            {
                try
                {
                       String keyStr = key.getString();
                    String dataStr = data.getFile();
                    String tagStr = data.getHash();

                    DocInfo info = ( DocInfo ) _hashDocInfo.get( dataStr );

                     if( info == null )
                     {
                        info = new DocInfo();
                        _hashDocInfo.put( dataStr,info );
                    }

                      if( ! tagStr.equals( "" ) )
                          info.append( keyStr,tagStr );
                    else
                     {
                        String url = "vnd.sun.star.help://" + _module + "/" + keyStr + "?Language=" + _language;
                        info.setURL( url );
                        info.setId( keyStr );
                      }
                }
                catch( Exception e )
                   {
                  }
                   if( first )
                  {
                    key.set_flags( Db.DB_DBT_REALLOC );
                     data.set_flags( Db.DB_DBT_REALLOC );
                     first = false;
                }
            }
            cursor.close();
               table.close( 0 );

            System.out.println( "Indexing..." );
              Enumeration enum = _hashDocInfo.elements();
            int cut = 0;
             while( enum.hasMoreElements() && cut < 100000000 )
             {
                  try
                {
                      DocInfo info = ( DocInfo ) enum.nextElement();
                     String url = info.getURL();

                    if( url == null )
                     {
                         System.out.println( "<----------------------------------->" );
                         System.out.println( "big error: found helptext without URL" );
                          System.out.println( "<----------------------------------->" );
                          continue;
                      }
                      cut++;

                       _urlHandler.setMode( null );
                      byte[] embResolved = getSourceDocument( url );
//                  InputSource in = new InputSource( new ByteArrayInputStream( embResolved ) );

                    ByteArrayInputStream inbyte = new ByteArrayInputStream(embResolved);
                    InputStreamReader inread;
                    try
                    {
                        inread = new InputStreamReader( inbyte,"UTF8" );
                    }
                    catch( UnsupportedEncodingException e )
                    {
                        inread = new InputStreamReader( inbyte );
                    }
                     InputSource in = new InputSource( inread );

                      in.setEncoding( "UTF8" );
                    Document docResolved = null;
                    try
                    {
                        docResolved = XmlDocument.createXmlDocument( in,false );
                    }
                    catch( Exception e )
                    {
                        if( docResolved == null )
                            System.err.println( "Nullpointer" );

                        System.err.println( e.getMessage() );
                    }

                     String id = info.getId();
                      if( id == null )
                           System.out.println( "Found tag without valid id" );
                    else
                        addKeywords( docResolved,info.getId() );

                      Object[] attrList = info.getAppendices().toArray();
                       for( int i = 0; i < attrList.length; ++i )
                    {
                        TagInfo tag = ( TagInfo ) attrList[i];
                         Node node = extractHelptext( docResolved,tag.get_tag() );
                           if( node != null )
                           {
                            String text = dump(node);
                            _hashHelptext.put( tag.get_id(),text );
                           }
                    }

                    int idx = url.indexOf( '?' );
                    if( idx != -1 )
                        url = url.substring( 0,idx );

                    if( indexable( docResolved ) )
                    {
                        System.out.println( url );
                        _urlHandler.setMode( embResolved );
                        builder.indexDocument( new URL( url ),"" );
                    }
                    else
                    {
                        System.out.println( "excluded from indexing: " + url );
                    }
                }
                catch( Exception e )
                {
                    System.err.println( e.getMessage() );
                }
             }

            try
            {
                dumpHelptext();
                _keywords.dump();
                builder.close();
            }
            catch( Exception e )
            {
                System.err.println( e.getMessage() );
            }
        }
         catch( DbRunRecoveryException e )
        {
            System.out.println( "Not able to create cursor: " + e.getMessage() );
             System.exit(1);
        }
        catch( DbException e )
        {
            System.out.println( "Error initializing database" );
             System.exit(1);
        }
        catch (FileNotFoundException fnfe)
        {
            System.err.println("HelpAccess: " + fnfe.getMessage() );
            System.exit(1);
        }
          catch( java.lang.Exception e )
        {
             System.out.println( "any other exception" + e.getMessage() );
         }
       }



    private final class NodeIterator
    {
        private final class StackElement
          {
            public boolean _isDone;
              public Node _node;

            StackElement( Node node )
              {
                _isDone = false;
                  _node = node;
            }
        }

        private Stack stack = new Stack();

        public NodeIterator( Node node )
          {
            stack.push( new StackElement(node) );
        }

         void change()
          {
               ((StackElement)(stack.peek()))._isDone = true;
              NodeList top = ((StackElement)(stack.peek()))._node.getChildNodes();
              for( int i = top.getLength()-1; i >= 0; --i )
                stack.push( new StackElement( top.item(i) ) );
           }

         public Node next()
          {
               if( stack.empty() ) return null;
            while( ! ((StackElement)(stack.peek()))._isDone ) change();
               return ((StackElement)stack.pop())._node;
        }
    }


    /**
     *  Given a dom of the document, the next Help:Helptext following Help:HelpID value="tag" is extracted
     */

    private Node extractHelptext( Node node,String tag )
    {
        boolean found = false;
        Node test;
        NodeIterator it = new NodeIterator( node );
          while( ( test=it.next() ) != null )
        {
            if( !found && test.getNodeName().equals("help:help-id" ) && ((Element)test).getAttribute("value").equals(tag) )
                   found = true;
               if( found && test.getNodeName().equals("help:help-text") )
                 return test;
          }
        return null;
    }


    private final class Keywords
    {
        private Hashtable _hash = new Hashtable();

         class Data
          {
               int pos = 0;
               String[] _idList = new String[5];

             void append( String id )
              {
                if( pos == _idList.length )
                {
                    String[] buff = _idList;
                    _idList = new String[ pos + 5 ];
                       for( int i = 0; i < buff.length; ++i )
                          _idList[i] = buff[i];
                     buff = null;
                }
                _idList[ pos++] = id;
               }


            int getLength()
            {
                return pos;
            }

            String getString()
            {
                String ret = new String();
                for( int i = 0; i < pos; ++i )
                 {
                      ret += ( _idList[i] + ";" );
                  }
                   return ret;
            }
           }   // end class data


        public void insert( String key, String id )
          {
            Data data = (Data)_hash.get(key);
              if( data == null )
            {
                 data = new Data();
                   _hash.put( key,data );
             }
              data.append( id );
        }


         void dump()
          {
            Enumeration enum = _hash.keys();
               int j = 0;
            String[] list = new String[ _hash.size() ];
               while( enum.hasMoreElements() )
              {
                  list[j++] = ( String ) enum.nextElement();
               }

            Db table;
              try
            {
                table = new Db( null,0 );

                String fileName = HelpDatabases.getInstallDirectory()
                                    + _language
                                  + File.separator
                                  + _module
                                     + ".key";

                table.open( fileName,null,Db.DB_BTREE,Db.DB_CREATE,0644 );

                for( int i = 0; i < list.length; ++i )
                {
                    Data data = ( Data ) _hash.get( list[i] );
                      StringDbt key = new StringDbt( list[i] );
                    StringDbt value = new StringDbt( data.getString() );
                     table.put( null,key,value,0);
                }
                 table.close( 0 );
            }
             catch( Exception e )
              {
                System.out.println( "error writing keydata" );
            }
           }

    }


     void dumpHelptext()
     {
        Enumeration enum = _hashHelptext.keys();
           int j = 0;
        String[] list = new String[ _hashHelptext.size() ];
           while( enum.hasMoreElements() )
          {
              list[j++] = ( String ) enum.nextElement();
        }

        Db table;
          try
        {
            table = new Db( null,0 );

            String fileName = HelpDatabases.getInstallDirectory()
                            + _language
                            + File.separator
                            + _module
                               + ".ht";

            table.open( fileName,null,Db.DB_BTREE,Db.DB_CREATE,0644 );

            for( int i = 0; i < list.length; ++i )
            {
                String data = ( String ) _hashHelptext.get( list[i] );
                  StringDbt key = new StringDbt( list[i] );
                StringDbt value = new StringDbt( data );
                table.put( null,key,value,0);
            }
            table.close( 0 );
        }
        catch( Exception e )
        {
            System.out.println( "error writing keydata" );
        }
    }




    Keywords _keywords = new Keywords();

    private void addKeywords( Node node,String id )
    {
          Node test;
          NodeIterator it = new NodeIterator( node );
        while( ( test=it.next() ) != null )
         {
              if( test.getNodeName().equals( "help:key-word" ) )
            {
                Element element = ( Element ) test;

                String isEmbedded = element.getAttribute( "embedded" );

                if( isEmbedded != null && isEmbedded.equals( "false" ) )
                {
                    String keyword = element.getAttribute( "value" );
                    String getJump = element.getAttribute( "tag" );

                    if( ! keyword.equals("") && !id.equals("") )
                        _keywords.insert( keyword,id + "#" + getJump );
                }
             }
          }
    }



    /**
     *  Returns a textual representation of
     *  the node
     */


    private String dump( Node node )
    {
        String app = new String();
        if( node.hasChildNodes() )
          {
            NodeList list = node.getChildNodes();
            for( int i = 0; i < list.getLength(); ++ i )
                 app += dump( list.item(i) );
        }
         if( node.getNodeType() == Node.ELEMENT_NODE )
          {
            /*
             String start = "<" + node.getNodeName();
               NamedNodeMap attr = node.getAttributes();
               for( int j = 0; j < attr.getLength(); ++j )
               {
                start += ( " " + ((Attr)attr.item(j)).getName()+"=\"" + ((Attr)attr.item(j)).getValue() + "\"");
            }
            start += ">";
              String end = "</" + node.getNodeName() + ">";

               return start + app + end;
            */
           }
        else if( node.getNodeType() == Node.TEXT_NODE )
        {
            return ((Text)node).toString();
        }
        return app;
    }


    boolean indexable( Node node )
    {
        Node test;
        NodeIterator it = new NodeIterator( node );
          while( ( test=it.next() ) != null )
        {
            if( test.getNodeName().equals( "meta:user-defined" ) &&
                ((Element)test).getAttribute("meta:name").equals("Info 2" ) )
                break;
        }
        if( test != null )
        {
            NodeList list = test.getChildNodes();
            for( int i = 0; i < list.getLength(); ++ i )
                if( list.item(i).getNodeType() == Node.TEXT_NODE )
                    return ! "NOINDEX".equals(((Text)list.item(i)).toString());
        }
        return true;
    }


    // This is a configurable class, which capsulates the parser initialization stuff and all this things

       public static final class ParseStuff
    {
        private final XSLProcessor _processor;
         private final OutputMethodHandlerImpl _output;


        private ParseStuff()
        {
            _processor = new XSLProcessorImpl();

            // Determine the parser
             SAXParserFactory spf = SAXParserFactory.newInstance();
              spf.setValidating( false );
            try
            {
                _processor.setParser( spf.newSAXParser().getParser() );
            }
            catch( java.lang.Exception e )
            {
                System.err.println( "<!-- NO HELP AVAILABLE: no parser found -->" );
                 System.exit( 1 );
            }

            // Determine the OutputMethodHandler
            _output = new OutputMethodHandlerImpl( _processor );
            _processor.setOutputMethodHandler( _output );
        }

        // Loading from a URL
          public ParseStuff( URL url )
           {
            this();
            try
            {
                _processor.loadStylesheet( new InputSource( url.toExternalForm() ) );
            }
            catch( SAXException e )
            {
                System.err.println( "<!-- Syntactic error in stylesheet -->" );
                System.err.println( e.getMessage() );
                   System.exit( 1 );
            }
            catch( java.io.IOException e )
            {
                System.err.println( "<!-- Style sheet not found -->" );
                System.err.println( e.getMessage() );
                   System.exit( 1 );
            }
            System.out.println( "Using stylesheet: " + url.toExternalForm() );
        }


        // Loading from a file
          public ParseStuff( String styleSheet )
           {
            this();
            try
            {
                _processor.loadStylesheet( new InputSource( new FileInputStream( styleSheet ) ) );
            }
            catch( SAXException e )
            {
                System.err.println( "<!-- Syntactic error in stylesheet -->" );
                System.err.println( e.getMessage() );
                   System.exit( 1 );
            }
            catch( java.io.IOException e )
            {
                System.err.println( "<!-- Style sheet not found: -->" );
                   System.exit( 1 );
            }
            System.out.println( "Using stylesheet: " + styleSheet );
        }


          public byte[] parse( String url )
        {
            InputSource _in = new InputSource( url );
               _in.setEncoding( "UTF-8" );


            HelpOutputStream _out = new HelpOutputStream();
               try
            {
                  // OutputStreamDestination _dest = new OutputStreamDestination( _out );
                HelpProvider.ProviderDestination _dest = new HelpProvider.ProviderDestination( _out,"UTF-8" );
                  synchronized( this )
                 {
                    _output.setDestination( _dest );
                    _processor.parse( _in );
                    _out.flush();
                }
             }
            catch( java.io.IOException e )
            {
                System.err.println( "no file corresponding to URL exists: " + url );
                System.err.println( "no file corresponding to URL exists: " + e.getMessage() );
                // System.exit( 1 );
            }
            catch( SAXException e )
            {
                System.err.println( "ill formed xml document: " + e.getMessage() );
                System.err.println( "                    url: " + url );
                // System.exit( 1 );
            }
            catch( Exception e )
            {
                System.err.println( "any other exception" );
                System.err.println( e.getMessage() );
            }

               return _out.getBigBuffer();
         }


          public void setParameter( String key,Object value )
           {
            _processor.setParameter( key,value );
        }

    }   // end class ParseStuff



    /**
       *   Returns the embedding resolved document
     */

    ParseStuff _stuff = null;

    byte[] getSourceDocument( String url )
     {
          // Initialize
          if( _stuff == null )
        {
              String styleSheet = HelpDatabases.getInstallDirectory() + "..\\StyleSheets\\Indexing\\ResEmb.xsl";
            _stuff = new ParseStuff( styleSheet );

             // Setting the parameters
             _stuff.setParameter( "Language", _language );
             _stuff.setParameter( "Database", _module );
             _stuff.setParameter( "System", _system );
        }

        // and parse
        return _stuff.parse( url );
      }




       // Now has to be settled up
    public static void main( String[] args ) throws Exception
    {
         System.setProperty( "XMLSEARCH", HelpDatabases.getInstallDirectory() );
        if( args.length != 6 )
          {
            System.out.println( "Usage example: main -language de -module swriter -system WIN" );
              System.exit( 1 );
        }

         String language = null,module = null, system = null;

          for( int i = 0; i < 5; i+=2 )
           {
             if( args[i].trim().equals( "-language" ) )
                language = args[i+1];
               else if( args[i].trim().equals( "-module" ) )
                 module = args[i+1];
               else if( args[i].trim().equals( "-system" ) )
                 system = args[i+1];
        }

           if( language == null || module == null || system == null )
        {
            System.out.println( "Usage example: main -language de -module swriter -system WIN" );
              System.exit( 1 );
        }
        else
        {
              System.out.println( " Configuring for \"system\" = " + system);
              System.out.println( "                 \"module\" = " + module);
              System.out.println( "               \"language\" = " + language);
          }

        try
          {
            String urlmode = HelpDatabases.getURLMode();
              HelpURLStreamHandlerFactory urlHandler = new HelpURLStreamHandlerFactory( urlmode );
              URL.setURLStreamHandlerFactory( urlHandler );

            HelpIndexer helpIndexer = new HelpIndexer( urlHandler,language,module,system );

            // helpIndexer.indexDatabase();
             helpIndexer.schnitzel();
          }
        catch( Exception e )
        {
              e.printStackTrace();
        }
    }
}