Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Open Metadata Search"

(The Architectural Overview)
Line 9: Line 9:
 
== '''The Solution Overview''' ==
 
== '''The Solution Overview''' ==
 
Open Type and Open Resource index searches in the workbench are one of the most widely benefited tools for many developers. Especially its enormous ability of locating the exact class and the file in a huge project is very helpful. If we can perform the same kind of a search for Java metadata also it will be so beneficial to general developers. It will be guaranteed that the developers get the hassle free most effective results on facts that they want to search for.  
 
Open Type and Open Resource index searches in the workbench are one of the most widely benefited tools for many developers. Especially its enormous ability of locating the exact class and the file in a huge project is very helpful. If we can perform the same kind of a search for Java metadata also it will be so beneficial to general developers. It will be guaranteed that the developers get the hassle free most effective results on facts that they want to search for.  
This feature should be capable of being invoked by a dialog box (as it is in the case of the Open Type and Open Resource) A hotkey combination is also important so that the developers can access this feature easily. The developers should be capable of searching for the particular artifact by just typing a portion of the content or some other important aspect such as the name of it.  
+
The Open Metadata Search is ideally designed and developed to achieve the aforementioned task. It guarantees the total hassle free search on the JavaEE Artifacts which are indexed through the EMF Index. Thus this tool utilizes the rich features of the EMF Index Project and the EMF Models.
This tool will perform the index search over the EMF models and it is expected to use the EMF index as well. Indeed this tool is more specific than that of a generic indexing system. It is expected that this will work in close relation and with higher compatibility with the other tooling as it is expected to perform the search over the Java metadata stored in EMF models rather than over raw files.
+
This can be invoked by simply using the icon provided for the Open Metadata Search or by simply using the hotkey combination Ctrl+Shift+J. It will search on the EMF Index which is being created on the built projects and display the resources according to the search parameter used. It also helps the developers to load these resources on the editor by simply double clicking on these search resources.  
  
 
== '''The Architectural Overview''' ==
 
== '''The Architectural Overview''' ==
Line 22: Line 22:
 
'''3.2 Presentation Controller Unit'''
 
'''3.2 Presentation Controller Unit'''
  
This Unit links the GUI with the internal units. This passes parameters from the GUI appropriately and displays the results accordingly.
+
This Unit links the GUI with the internal units. This passes the parameters to the GUI and display the results appropriately. It also helps the system to create the relevant data carriers and create the system in such a way that it shows the results in the desired way.
  
'''3.3 EMF Access Unit'''
+
'''3.3 EMF Index Access Unit'''
  
This unit is responsible for dealing with EMF. It has the ability of accessing the EMF models metadata and the EMF Index. This has two sub units. These units are the EMF Models Operator and the EMF Index Operator. As the name implies the EMF Index Operator will be taking care of tasks related to accessing the EMF Index and the EMF Index Operator will be taking care of tasks related to accessing the EMF models metadata. These units are designed in such a way that they are highly extensible and inter-related.
+
The main job that is expected by this unit is Indexing the JavaEE Artifacts and accessing the EMF Index. At the moment this unit indexes the Servlets, Listeners, Filters, Session Beans, Message Driven Beans etc. This can be further enhanced in such a way that there are other resources also available for indexing.
 +
It also queries the index and extracts the resources which matches with the search parameters that are passed.
  
'''3.4 Scheduler Unit'''
+
'''3.4 Plug-in Connector'''
 
+
The basic functions of this unit is to trigger the system in order to get the latest EMF index. This will make sure that the index available for searching is the latest at all the time. This unit optimizes the performance by performing the index process as a background process.
+
 
+
'''3.5 Plug-in Connector'''
+
  
 
This unit will connect the system to the central eclipse IDE. This will make the reset of the units run independently. The other units do not have to worry about the process of being integrated to the eclipse IDE.
 
This unit will connect the system to the central eclipse IDE. This will make the reset of the units run independently. The other units do not have to worry about the process of being integrated to the eclipse IDE.
  
== '''Technologies Used and the Implementation''' ==
+
== '''Technologies Used''' ==
This system will be dealing with the EMF models very closely. It is expected to use some available open source frameworks at the different units of the system.
+
This tool uses a number of plug-ins which comes with the Eclipse Bunch. The major technology that is used is the EMF Index. Apart from that there are some more features that are used especially in creating the UI of the system. It mainly extends the FilteredItemsSelectionDialog. There are many dependencies that are added into this system to perform the desired task.
The system is designed and implemented in such a way that there would be a higher degree of extensibility. The system design will be produces and accepted before developing and the system will be developed unit after unit so that it will be easier for mentors and other interested parties to receive intermediate releases. This system will also be developed in such a way that it will be flexible. The users will get the total ability to configure it according to their desire.
+
  
 
== '''Conclusion''' ==
 
== '''Conclusion''' ==

Revision as of 06:58, 24 August 2009

(Index search for Java EE metadata)

Introduction

In working with huge projects there are many instances the developers fall into situations where they need to find Java EE metadata of certain projects. It is indeed a tedious task to remember the exact locations of all project artifacts. Generally a particular artifact is remembered by a part of the content or some other special attribute such as the file name. At such instances developers usually tend to locate the file by performing a file search available in the operating system or going for a full text search. This indeed is a tedious task and wastes a lot of time of the developer. At the same time the results obtained might be of a low degree of effectiveness. It is indeed bliss if the Developing IDE itself can provide a Java EE metadata search. Obviously this can save a lot of time of the developer and it also can deliver the most optimal results that the developers are looking for.


The Solution Overview

Open Type and Open Resource index searches in the workbench are one of the most widely benefited tools for many developers. Especially its enormous ability of locating the exact class and the file in a huge project is very helpful. If we can perform the same kind of a search for Java metadata also it will be so beneficial to general developers. It will be guaranteed that the developers get the hassle free most effective results on facts that they want to search for. The Open Metadata Search is ideally designed and developed to achieve the aforementioned task. It guarantees the total hassle free search on the JavaEE Artifacts which are indexed through the EMF Index. Thus this tool utilizes the rich features of the EMF Index Project and the EMF Models. This can be invoked by simply using the icon provided for the Open Metadata Search or by simply using the hotkey combination Ctrl+Shift+J. It will search on the EMF Index which is being created on the built projects and display the resources according to the search parameter used. It also helps the developers to load these resources on the editor by simply double clicking on these search resources.

The Architectural Overview

The system uses a unit wise architecture. There are different units that are used to achieve desired functions. (Refer to the Appendix A for the Architectural Overview.) The functions that are implemented by each unit are independent of the other units but the communication is done between units. The functions that are expected from each unit are as summarized below.

3.1 Presentation Unit (GUI Unit)

This unit implements the presentation layer functions. This creates the basic GUI of the system and helps to obtain data from the user and show the relevant response.

3.2 Presentation Controller Unit

This Unit links the GUI with the internal units. This passes the parameters to the GUI and display the results appropriately. It also helps the system to create the relevant data carriers and create the system in such a way that it shows the results in the desired way.

3.3 EMF Index Access Unit

The main job that is expected by this unit is Indexing the JavaEE Artifacts and accessing the EMF Index. At the moment this unit indexes the Servlets, Listeners, Filters, Session Beans, Message Driven Beans etc. This can be further enhanced in such a way that there are other resources also available for indexing. It also queries the index and extracts the resources which matches with the search parameters that are passed.

3.4 Plug-in Connector

This unit will connect the system to the central eclipse IDE. This will make the reset of the units run independently. The other units do not have to worry about the process of being integrated to the eclipse IDE.

Technologies Used

This tool uses a number of plug-ins which comes with the Eclipse Bunch. The major technology that is used is the EMF Index. Apart from that there are some more features that are used especially in creating the UI of the system. It mainly extends the FilteredItemsSelectionDialog. There are many dependencies that are added into this system to perform the desired task.

Conclusion

The Open Metadata Search is considered to be a very useful feature all the developers who use the eclipse IDE. This is designed with a high degree of extensibility so that in the long run this can be modified and created new advanced systems. It is guaranteed that this will be an easy to use, flexible system which will deliver a toil free experience for developers.

Appendix - A

OpenMetadaSearchArchitectureOverview.jpg

Copyright © Eclipse Foundation, Inc. All Rights Reserved.