org.vast.stt.gui.widgets.catalog.CatalogWidget.java Source code

Java tutorial

Introduction

Here is the source code for org.vast.stt.gui.widgets.catalog.CatalogWidget.java

Source

/***************************** BEGIN LICENSE BLOCK ***************************
    
 The contents of this file are subject to the Mozilla Public License Version
 1.1 (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.mozilla.org/MPL/MPL-1.1.html
     
 Software distributed under the License is distributed on an "AS IS" basis,
 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 for the specific language governing rights and limitations under the License.
     
 The Original Code is the "Space Time Toolkit".
     
 The Initial Developer of the Original Code is the VAST team at the
 University of Alabama in Huntsville (UAH). <http://vast.uah.edu>
 Portions created by the Initial Developer are Copyright (C) 2007
 the Initial Developer. All Rights Reserved.
     
 Please Contact Mike Botts <mike.botts@uah.edu> for more information.
     
 Contributor(s): 
Alexandre Robin <robin@nsstc.uah.edu>
Tony Cook <tcook@nsstc.uah.edu>
     
******************************* END LICENSE BLOCK ***************************/

package org.vast.stt.gui.widgets.catalog;

import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Set;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.PlatformUI;
import org.vast.xml.DOMHelperException;
import org.vast.ows.OWSException;
import org.vast.ows.OWSLayerCapabilities;
import org.vast.ows.OWSServiceCapabilities;
import org.vast.ows.OWSUtils;
import org.vast.ows.wrs.WRSQuery;
import org.vast.ows.wrs.WRSRequestWriter;
import org.vast.ows.wrs.WRSResponseReader;
import org.vast.ows.wrs.WRSQuery.QueryType;
import org.vast.stt.gui.views.ScenePageInput;
import org.vast.stt.project.world.WorldScene;
import org.vast.stt.provider.STTSpatialExtent;
import org.vast.util.Bbox;

/**
 * <p><b>Title:</b>
 *   Catalog Widget
 * </p>
 *
 * <p><b>Description:</b><br/>
 *    Allow user to search OGC Catalog by keyword, service type, roi, or provider organization
 *    TODO ADD borders to all combos and text fields
 *    TODO add time
 *    TODO add queries for other service types (only SOS for OWS4 demo)
 *    TODO make this and CapWidget extend ScrolledComp (see AdvGeomTab)
 * </p>
 *
 * <p>Copyright (c) 2007</p>
 * @author Tony Cook
 * @date Aug 17, 2006
 * @version 1.0
 */

public class CatalogWidget {
    Composite mainGroup;
    //  TODO Add Other Catalog servers, possibly
    String[] catServers = {
            //         "http://dev.ionicsoft.com:8082/ows4catalog/wrs/WRS"
            "Ionic" };
    LayerTree layerTree;
    private Text minXText;
    private Text maxXText;
    private Text minYText;
    private Text maxYText;

    private static final int NO_BBOX_SET = 0;
    private static final int BBOX_ERROR = -1;
    private static final int BBOX_OK = 1;
    private Text kwText;
    private OWSUtils owsUtils = new OWSUtils();

    public CatalogWidget(Composite parent, int style) {
        initGui(parent);
    }

    public void initGui(Composite parent) {
        GridData gd;

        mainGroup = new Composite(parent, 0x0);
        mainGroup.setLayout(new GridLayout(1, false));
        mainGroup.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));

        Group optionGroup = new Group(mainGroup, SWT.BORDER);
        GridLayout optLayout = new GridLayout(4, false);
        optLayout.verticalSpacing = 6;
        optLayout.marginWidth = 4;
        optionGroup.setLayout(optLayout);
        optionGroup.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false));
        optionGroup.setText("Serarch Options");

        //  Servers (Only one initially, but still making it a combo)
        Label serverLabel = new Label(optionGroup, SWT.LEFT);
        serverLabel.setText("Server:");
        gd = new GridData(SWT.RIGHT, SWT.CENTER, false, false);
        serverLabel.setLayoutData(gd);
        Combo serverCombo = new Combo(optionGroup, SWT.BORDER | SWT.READ_ONLY);
        serverCombo.setTextLimit(20);
        serverCombo.setItems(catServers);
        //typesCombo.setItems(new String [] {"WMS", "WCS", "WFS", "SOS"});
        gd = new GridData(SWT.LEFT, SWT.CENTER, false, false);
        gd.horizontalSpan = 3;
        serverCombo.setLayoutData(gd);
        serverCombo.select(0);
        serverCombo.addSelectionListener(new SelectionListener() {
            public void widgetSelected(SelectionEvent e) {
            }

            public void widgetDefaultSelected(SelectionEvent e) {
            }
        });

        //  Search Criteria
        //  Service Type (Combo)

        //  Keyword (Text)
        Label kwLabel = new Label(optionGroup, SWT.LEFT);
        kwLabel.setText("Keywords:");
        kwText = new Text(optionGroup, SWT.BORDER | SWT.LEFT);
        gd = new GridData(SWT.FILL, SWT.CENTER, true, false);
        gd.horizontalSpan = 3;
        kwText.setLayoutData(gd);
        kwText.setToolTipText("Keyword for search");

        //  Provder (Text)

        //  ROI (text)
        //  TODO enforce numeric entry on ROI Text widgets
        Label minYLabel = new Label(optionGroup, SWT.LEFT);
        minYLabel.setText("minLon:");
        gd = new GridData(SWT.RIGHT, SWT.CENTER, false, false);
        minYLabel.setLayoutData(gd);
        minYText = new Text(optionGroup, SWT.BORDER | SWT.LEFT);
        minYText.setTextLimit(15);
        gd = new GridData(SWT.LEFT, SWT.CENTER, false, false);
        gd.widthHint = 45;
        minYText.setLayoutData(gd);

        Label minXLabel = new Label(optionGroup, SWT.LEFT);
        minXLabel.setText("minLat:");
        gd = new GridData(SWT.RIGHT, SWT.CENTER, false, false);
        minXLabel.setLayoutData(gd);
        minXText = new Text(optionGroup, SWT.BORDER | SWT.LEFT);
        minXText.setTextLimit(15);
        gd = new GridData(SWT.LEFT, SWT.CENTER, false, false);
        gd.widthHint = 45;
        minXText.setLayoutData(gd);

        Label maxYLabel = new Label(optionGroup, SWT.LEFT);
        maxYLabel.setText("maxLon:");
        gd = new GridData(SWT.RIGHT, SWT.CENTER, false, false);
        maxYLabel.setLayoutData(gd);
        maxYText = new Text(optionGroup, SWT.BORDER | SWT.LEFT);
        maxYText.setTextLimit(15);
        gd = new GridData(SWT.LEFT, SWT.CENTER, false, false);
        gd.widthHint = 45;
        maxYText.setLayoutData(gd);

        Label maxXLabel = new Label(optionGroup, SWT.LEFT);
        maxXLabel.setText("maxLat:");
        gd = new GridData(SWT.RIGHT, SWT.CENTER, false, false);
        maxXLabel.setLayoutData(gd);
        maxXText = new Text(optionGroup, SWT.BORDER | SWT.LEFT);
        maxXText.setTextLimit(15);
        gd = new GridData(SWT.LEFT, SWT.CENTER, false, false);
        gd.widthHint = 45;
        maxXText.setLayoutData(gd);

        // load test fields (may want to keep this, but will need to mod other logic)
        //      minXText.setText("-90.0");
        //      maxXText.setText("90.0");
        //      minYText.setText("-180.0");
        //      maxYText.setText("180.0");

        // Get Bbox Btn
        Button getBboxBtn = new Button(optionGroup, SWT.PUSH);
        getBboxBtn.setText("Get BBOX");
        gd = new GridData(SWT.RIGHT, SWT.CENTER, false, false, 4, 1);
        getBboxBtn.setLayoutData(gd);
        getBboxBtn.addSelectionListener(new SelectionListener() {
            public void widgetSelected(SelectionEvent e) {
                ScenePageInput pageInput = (ScenePageInput) PlatformUI.getWorkbench().getActiveWorkbenchWindow()
                        .getActivePage().getInput();
                if (pageInput != null) {
                    WorldScene scene = (WorldScene) pageInput.getScene();
                    STTSpatialExtent bbox = new STTSpatialExtent();
                    scene.getViewSettings().getProjection().fitBboxToView(bbox, scene);
                    minXText.setText("" + bbox.getMinY());
                    maxXText.setText("" + bbox.getMaxY());
                    minYText.setText("" + bbox.getMinX());
                    maxYText.setText("" + bbox.getMaxX());
                }

            }

            public void widgetDefaultSelected(SelectionEvent e) {
            }
        });

        //  Submit Btn (and potentially edit btn to add new Catalog)
        Button submitBtn = new Button(optionGroup, SWT.PUSH);
        submitBtn.setText("Submit");
        gd = new GridData(SWT.RIGHT, SWT.CENTER, false, false, 4, 1);
        submitBtn.setLayoutData(gd);
        submitBtn.addSelectionListener(new SelectionListener() {
            public void widgetSelected(SelectionEvent e) {
                WRSQuery query = buildQuery();
                if (query != null)
                    searchCatalog(query);
            }

            public void widgetDefaultSelected(SelectionEvent e) {
            }

        });

        //  Layer Tree
        layerTree = new LayerTree(mainGroup);
        layerTree.getControl().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
    }

    private WRSQuery buildQuery() {
        WRSQuery query = new WRSQuery();
        query.setPostServer("http://dev.ionicsoft.com:8082/ows4catalog/wrs/WRS");
        query.setVersion("2.0.0");
        List<QueryType> queryTypeList = new ArrayList<QueryType>(2);
        int bboxStatus = loadQueryBbox(query);
        if (bboxStatus == BBOX_ERROR)
            return null;
        if (bboxStatus == BBOX_OK) {
            queryTypeList.add(QueryType.BBOX_SOS);
        }
        String keyword = kwText.getText();
        if (keyword.trim().length() > 0) {
            query.setKeyword(keyword);
            queryTypeList.add(QueryType.KEYWORD_SOS);
        }
        //  Uncomment for multi keywords, if catalog will support it
        //      String [] keywords = null;
        //      List<QueryType> queryTypeList = new ArrayList<QueryType>(2);
        //      if (kw.trim().length() > 0) {
        //         keywords = kw.split(", ");
        //         query.setKeyword(keywords);
        //         queryTypeList.add(QueryType.KEYWORD_SOS);
        //      }
        query.setQueryTypeList(queryTypeList);

        return query;
    }

    private List<OWSLayerCapabilities> submitCatalogQuery(WRSQuery query) {

        List<OWSLayerCapabilities> emptyList = new ArrayList<OWSLayerCapabilities>(0);
        WRSRequestWriter wrsRW = new WRSRequestWriter();
        InputStream is = null;

        try {
            List<String> sosUri = null;
            wrsRW.writeXMLQuery(System.out, query);
            //  Either request ALL (no filtes set on query)...
            //  NOTE:  Untested change to owsUtil.sendPostRequest() - if there's a problem, check here!
            is = owsUtils.sendPostRequest(query).getInputStream();
            //  Either we requested ALL SOS (no filtes set on query)...
            if (query.getQueryTypeList().isEmpty()) {
                WRSResponseReader wrsReader = new WRSResponseReader();
                sosUri = wrsReader.parseSOSEndpoint(is);
                if (sosUri == null || sosUri.isEmpty())
                    return emptyList;
                is.close();
                return (getOfferings(sosUri));
            }
            //  .. . or we have a 3 step, filtered query
            //  1) Get all objects matching the initial search
            WRSResponseReader wrsReader = new WRSResponseReader();
            //  eoMap is map of <extObjId, offeringName>
            HashMap<String, String> eoMap = wrsReader.parseExtrinsicObjects(is);
            if (eoMap.isEmpty())
                return emptyList;
            //  Change query type to serviceSearch
            List<QueryType> qlist = new ArrayList<QueryType>(1);
            qlist.add(QueryType.SERVICE_SOS);
            query.setQueryTypeList(qlist);
            // uriMap is map of (uri, List<ExtObjOfferings>)
            HashMap<String, List<String>> uriMap = new HashMap<String, List<String>>();
            Set<String> extObjIds = eoMap.keySet();
            for (String id : extObjIds) {
                //  2)  For each ID, get the serviceURI
                query.setServiceSearchId(id);
                //  NOTE:  Untested change to owsUtil.sendPostRequest() - if there's a problem, check here!
                is = owsUtils.sendPostRequest(query).getInputStream();
                sosUri = wrsReader.parseSOSEndpoint(is);
                is.close();
                if (sosUri.isEmpty())
                    continue;
                // 3)  Read caps and get Offerings - Note, we have to manually filter this
                //     to find the extObjId offering.  Not very efficient
                String thisUri = sosUri.get(0);
                String name = eoMap.get(id);
                if (uriMap.containsKey(thisUri)) { // add name to thisUri's list
                    List<String> eoList = uriMap.get(thisUri);
                    eoList.add(name);
                } else { //  add thisUri to map, and add name to thisUri's list
                    List<String> eoList = new ArrayList<String>(3);
                    eoList.add(name);
                    uriMap.put(thisUri, eoList);
                }
            }
            return (getFilteredOfferings(uriMap));
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (OWSException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (DOMHelperException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return null;
    }

    //  Return offerings matching names in List<String> parameter of UriMap
    private List<OWSLayerCapabilities> getFilteredOfferings(HashMap<String, List<String>> uriMap) {
        //     Cycle through SOS's and get all ObsOfferings
        List<OWSLayerCapabilities> layerCaps = new ArrayList<OWSLayerCapabilities>();
        Set<String> sosUris = uriMap.keySet();
        for (String sosTmp : sosUris) {
            try {
                List<String> offerings = uriMap.get(sosTmp);
                //  Not sure how to detect version prior to this call...
                OWSServiceCapabilities caps = owsUtils.getCapabilities(sosTmp, "SOS", "0.0.31");
                List<OWSLayerCapabilities> capsTmp = caps.getLayers();
                for (OWSLayerCapabilities thisCaps : capsTmp) {
                    String thisOffering = thisCaps.getIdentifier();
                    if (offerings.contains(thisOffering))
                        layerCaps.add(thisCaps);
                }
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }

        return layerCaps;
    }

    //  Return ALL offerings for all uri's in the collection
    private List<OWSLayerCapabilities> getOfferings(Collection<String> sosUri) {
        //     Cycle through SOS's and get all ObsOfferings
        List<OWSLayerCapabilities> layerCaps = new ArrayList<OWSLayerCapabilities>();
        for (String sosTmp : sosUri) {
            try {
                //  Not sure how to detect version prior to this call...
                OWSServiceCapabilities caps = owsUtils.getCapabilities(sosTmp, "SOS", "0.0.31");
                List<OWSLayerCapabilities> capsTmp = caps.getLayers();
                layerCaps.addAll(capsTmp);
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }

        return layerCaps;
    }

    private class SearchCatalogRunnable implements IRunnableWithProgress {
        List<OWSLayerCapabilities> layerCaps;
        WRSQuery query;

        public SearchCatalogRunnable(WRSQuery query) {
            this.query = query;
        }

        public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
            String msg = "Attempting to read Catalog at: " + query.getPostServer();
            monitor.beginTask(msg, IProgressMonitor.UNKNOWN);
            layerCaps = submitCatalogQuery(query);
        };

        public List<OWSLayerCapabilities> getLayerCaps() {
            return layerCaps;
        }
    }

    protected void searchCatalog(WRSQuery query) {
        ProgressMonitorDialog pmd = new ProgressMonitorDialog(
                PlatformUI.getWorkbench().getDisplay().getActiveShell());

        pmd.setCancelable(true);
        SearchCatalogRunnable runnable = new SearchCatalogRunnable(query);
        //  Load Bbox, keywords...

        try {
            pmd.run(true, true, runnable);
        } catch (InvocationTargetException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        List<OWSLayerCapabilities> caps = runnable.getLayerCaps();
        if (caps == null)
            MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), "STT Error",
                    "Error reading Catalog from " + query.getPostServer());
        else if (caps.isEmpty())
            MessageDialog.openInformation(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
                    "STT Information", "Catalog Query returned no results");
        else
            layerTree.setInput(caps);
    }

    private int loadQueryBbox(WRSQuery query) {
        try {
            String minXstr = minXText.getText().trim();
            String maxXstr = maxXText.getText().trim();
            String minYstr = minYText.getText().trim();
            String maxYstr = maxYText.getText().trim();
            if (minXstr.length() == 0 && minYstr.length() == 0 && maxXstr.length() == 0 && maxYstr.length() == 0) {
                return NO_BBOX_SET;
            }
            double minX = Double.parseDouble(minXstr);
            double maxX = Double.parseDouble(maxXstr);
            double minY = Double.parseDouble(minYstr);
            double maxY = Double.parseDouble(maxYstr);
            Bbox bbox = new Bbox();
            bbox.setMinX(minX);
            bbox.setMaxX(maxX);
            bbox.setMinY(minY);
            bbox.setMaxY(maxY);
            query.setBbox(bbox);
            return BBOX_OK;
        } catch (Exception e) {
            //  TODO hilite incorrect fields
            MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), "STT Error",
                    "BBox is invalid. Correct and resubmit.");
            return BBOX_ERROR;
        }
    }

}