Package org.eclipse.help.internal.index

Source Code of org.eclipse.help.internal.index.IndexFileProvider

/*******************************************************************************
* Copyright (c) 2006, 2007 IBM Corporation and others.
* 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:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.internal.index;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.Platform;
import org.eclipse.help.AbstractIndexProvider;
import org.eclipse.help.IIndexContribution;
import org.eclipse.help.internal.HelpPlugin;

/*
* Provides index data from index XML files to the help system.
*/
public class IndexFileProvider extends AbstractIndexProvider {

  public static final String EXTENSION_POINT_ID_INDEX = HelpPlugin.PLUGIN_ID + ".index"; //$NON-NLS-1$
  public static final String ELEMENT_NAME_INDEX = "index"; //$NON-NLS-1$
  public static final String ATTRIBUTE_NAME_FILE = "file"; //$NON-NLS-1$

  /* (non-Javadoc)
   * @see org.eclipse.help.AbstractIndexProvider#getIndexContributions(java.lang.String)
   */
  public IIndexContribution[] getIndexContributions(String locale) {
    List contributions = new ArrayList();
    IndexFile[] indexFiles = getIndexFiles(locale);
    IndexFileParser parser = new IndexFileParser();
    for (int i=0;i<indexFiles.length;++i) {
      try {
        IIndexContribution toc = parser.parse(indexFiles[i]);
        contributions.add(toc);
      }
      catch (Throwable t) {
        String msg = "Error reading help keyword index file /\"" + indexFiles[i].getPluginId() + '/' + indexFiles[i].getFile() + "\" (skipping file)"; //$NON-NLS-1$ //$NON-NLS-2$
        HelpPlugin.logError(msg, t);
      }
    }
    return (IIndexContribution[])contributions.toArray(new IIndexContribution[contributions.size()]);
  }

  /*
   * Returns all available IndexFiles for the given locale.
   */
  private IndexFile[] getIndexFiles(String locale) {
    List indexFiles = new ArrayList();
    IExtensionRegistry registry = Platform.getExtensionRegistry();
    IConfigurationElement[] elements = registry.getConfigurationElementsFor(EXTENSION_POINT_ID_INDEX);
    for (int i=0;i<elements.length;++i) {
      IConfigurationElement elem = elements[i];
      String pluginId = elem.getContributor().getName();
      if (elem.getName().equals(ELEMENT_NAME_INDEX)) {
        String file = elem.getAttribute(ATTRIBUTE_NAME_FILE);
        IndexFile indexFile = new IndexFile(pluginId, file, locale);
        indexFiles.add(indexFile);
      }
    }
    return (IndexFile[])indexFiles.toArray(new IndexFile[indexFiles.size()]);
  }
}
TOP

Related Classes of org.eclipse.help.internal.index.IndexFileProvider

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.