Skip to main content
summaryrefslogtreecommitdiffstats
blob: 37b205854e25bf3a8eb0250800c203e4df126947 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2013 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.help.ui.util;

import java.io.BufferedInputStream;
import java.io.InputStream;
import java.net.URL;
import java.util.Collection;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamReader;
import org.eclipse.osee.framework.jdk.core.util.Lib;
import org.eclipse.osee.framework.jdk.core.util.Strings;

/**
 * @author Angel Avila
 */
public class ContextParser {

   private static final XMLInputFactory xmlInputFactory = XMLInputFactory.newFactory();

   private static final String CONTEXT = "context";
   private static final String TOPIC = "topic";
   private static final String HREF = "href";
   private static final String ID_TAG = "id";

   public Map<String, ContextEntry> entries = new HashMap<String, ContextEntry>();
   public String path;

   private String localName;
   private String uri;
   private ContextEntry currentEntry;

   public ContextParser(String path) {
      this.path = path;
   }

   public void parse() throws Exception {
      entries.clear();
      URL url = HelpTestUtil.getResource(path);

      InputStream inputStream = null;
      try {
         inputStream = new BufferedInputStream(url.openStream());
         XMLStreamReader streamReader = xmlInputFactory.createXMLStreamReader(inputStream);
         while (streamReader.hasNext()) {
            process(streamReader);
            streamReader.next();
         }

      } finally {
         Lib.close(inputStream);
      }
   }

   private void process(XMLStreamReader reader) {
      int eventType = reader.getEventType();
      switch (eventType) {
         case XMLStreamConstants.START_ELEMENT:
            localName = reader.getLocalName();
            uri = reader.getNamespaceURI();
            if (CONTEXT.equals(localName)) {

               String id = reader.getAttributeValue(uri, ID_TAG);
               if (Strings.isValid(id)) {
                  currentEntry = new ContextEntry(id);
               }

            } else if (TOPIC.equals(localName) && currentEntry != null) {
               String reference = reader.getAttributeValue(uri, HREF);
               if (Strings.isValid(reference)) {
                  String path = normalizePath(reference);
                  currentEntry.getReferences().add(path);
               }
            }
            break;
         case XMLStreamConstants.END_ELEMENT:
            localName = reader.getLocalName();
            uri = reader.getNamespaceURI();
            if (CONTEXT.equals(localName) && currentEntry != null) {
               entries.put(currentEntry.getId(), currentEntry);
               reset();
            }
            break;
      }
   }

   private String normalizePath(String reference) {
      return reference.replaceAll("\\.html#.*", ".html");
   }

   private void reset() {
      localName = null;
      uri = null;
      currentEntry = null;
   }

   public Collection<ContextEntry> getEntries() {
      return entries.values();
   }

   public ContextEntry getEntry(String id) {
      return entries.get(id);
   }

   public Set<String> getIds() {
      return entries.keySet();
   }

   public final class ContextEntry {
      private final String id;
      private final Set<String> references = new LinkedHashSet<String>();

      public ContextEntry(String id) {
         super();
         this.id = id;
      }

      public String getId() {
         return id;
      }

      public Set<String> getReferences() {
         return references;
      }

   }

}

Back to the top