NIH | National Cancer Institute | NCI Wiki  

WIKI MAINTENANCE NOTICE

NCI Wiki will be will be undergoing scheduled maintenance on Monday, June 23rd between 5:00 and 6:00 PM ET.
Wiki will remain available, but users may experience screen refreshes or HTTP 502 errors during the maintenance period. If you encounter these errors, wait 1-2 minutes, then refresh your page.
As a precautionary measure, editors should ensure all work is saved prior to the maintenance period.

If you have any questions or concerns, contact the CBIIT Atlassian Management Team.

Create content

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Code Block
languageJava
titleJava Code
/*
 * Copyright: (c) 2004-2009 Mayo Foundation for Medical Education and 
 * Research (MFMER). All rights reserved. MAYO, MAYO CLINIC, and the
 * triple-shield Mayo logo are trademarks and service marks of MFMER.
 *
 * Except as contained in the copyright notice above, or as used to identify 
 * MFMER as the author of this software, the trade names, trademarks, service
 * marks, or product names of the copyright holder shall not be used in
 * advertising, promotion or otherwise in connection with this software without
 * prior written authorization of the copyright holder.
 * 
 * Licensed under the Eclipse Public License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at 
 * 
 * 		http://www.eclipse.org/legal/epl-v10.html
 * 
 */
package org.LexGrid.LexBIG.example;

import java.util.Enumeration;
import org.LexGrid.LexBIG.DataModel.Collections.AbsoluteCodingSchemeVersionReferenceList;
import org.LexGrid.LexBIG.DataModel.Collections.MetadataPropertyList;
import org.LexGrid.LexBIG.DataModel.Core.AbsoluteCodingSchemeVersionReference;
import org.LexGrid.LexBIG.DataModel.Core.MetadataProperty;
import org.LexGrid.LexBIG.Exceptions.LBException;
import org.LexGrid.LexBIG.Impl.LexBIGServiceImpl;
import org.LexGrid.LexBIG.LexBIGService.LexBIGService;
import org.LexGrid.LexBIG.LexBIGService.LexBIGServiceMetadata;

/**
 * Example how to query stored metadata for a code system. For the example, use
 * the LoadSampleMetaDataData.bat to load the required code system and metadata.
 */
public class MetaDataSearch {

    public MetaDataSearch() {
        super();
    }

    /**
     * Entry point for processing.
     * 
     * @param args
     */
    public static void main(String[] args) {

        if (args.length < 1) {
            System.out.println("Example: MetaDataSearch \"test string\"");
            return;
        }
        ;

        try {
            String s = args[0];
            System.out.println("string passed: " + s);
            new MetaDataSearch().run(s);
        } catch (Exception e) {
            Util.displayAndLogError("REQUEST FAILED !!!", e);
        }
    }

    public void run(String s) throws LBException {

        try {
            LexBIGService lbs = LexBIGServiceImpl.defaultInstance();

            LexBIGServiceMetadata smd = lbs.getServiceMetadata();

            AbsoluteCodingSchemeVersionReferenceList al = smd.listCodingSchemes();

            int i = 0;
            AbsoluteCodingSchemeVersionReference ref = null;

            for (Enumeration<AbsoluteCodingSchemeVersionReference> items = al
                    .enumerateAbsoluteCodingSchemeVersionReference(); items.hasMoreElements();) {
                ref = items.nextElement();
                String csurn = ref.getCodingSchemeURN();
                String csvers = ref.getCodingSchemeVersion();

                // Search for localName in metadata for specified coding scheme
                smd = lbs.getServiceMetadata();
                smd.restrictToCodingScheme(ref);

                // Restrict to properties. In this example, 'localName'
                smd.restrictToProperties(new String[] { s });
                printCodingSchemes(csurn, csvers, smd.resolve(), s);

                i++;
            }

            System.out.println();

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void printCodingSchemes(String urn, String version, MetadataPropertyList mdpl, String searchString) {

        int i = 0;
        System.out.println("Results for metadata search in coding scheme:  " + urn + " (" + version + ")");
        System.out.println();
        System.out.println("Search String: " + searchString);
        System.out.println();

        for (Enumeration<MetadataProperty> items = mdpl.enumerateMetadataProperty(); items.hasMoreElements();) {
            MetadataProperty mdp = items.nextElement();
            i++;

            System.out.println("[" + i + "] " + mdp.getValue());

        }
        System.out.println();
        System.out.println("Count: " + i);

        System.out.println();
        System.out.println();

    }

}