Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Quick Links | ||||||||
Line: 51 to 51 | ||||||||
I have done some technical exploration to see whether a plugin similar to Fishtail could be implemented in Visual Studio. | ||||||||
Changed: | ||||||||
< < | I have built a simple add-in for Visual Studio 2010 (source code available at the link above). This add-in uses the EnvDTE and EnvDTE80 namespaces (http://msdn.microsoft.com/en-us/library/1xt0ezx9.aspx![]() ![]() | |||||||
> > | I have built a simple add-in for Visual Studio 2010 (source code available at the link above). This add-in uses the EnvDTE and EnvDTE80 namespaces (http://msdn.microsoft.com/en-us/library/1xt0ezx9.aspx![]() ![]() ![]() ![]() | |||||||
Goals and Challenges for Fishtail-VS | ||||||||
Changed: | ||||||||
< < | As mentioned earlier, one of the challenges with automatically generated search keywords is the risk of overly general results. One area to explore is whether the use of the Mylyn task context helps or hinders in addressing this challenge. In certain task contexts, using keywords from multiple high-DOI elements might exacerbate the problem, yielding an even broader set of results. In other cases, the ability to choose keywords from the entire task context, rather than just the current file, might yield a narrower, more focused result set. | |||||||
> > | The current set of search keywords generated by Fishtail seems insufficient. To get better results, we need to use similar heuristics to those employed in Strathcona. Thus, we need to start from the program elements in the task context, such as modified or selected methods and classes, and determine their parent classes and interfaces, the methods they invoke, and the types they reference. These are the elements that are more likely to generate search results relevant to what the programmer is trying to do. As mentioned earlier, one of the challenges with automatically-generated search keywords is the risk of overly general results. One area to explore is whether the use of the Mylyn task context helps or hinders in addressing this challenge. If the initial search keywords come from the current source file, and then we add additional code elements from the task context, we are likely to narrow the result set. However, an open question is whether that narrowed result set will have greater precision, relative to what the programmer wants to accomplish next. In addition to code elements, the task context may link to a bug report. Another avenue to explore is whether results can be improved by including keywords from the bug report in the query. | |||||||
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Quick Links | ||||||||
Line: 32 to 32 | ||||||||
Fishtail differs from Strathcona in a few key ways:
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
| ||||||||
Line: 47 to 47 | ||||||||
Unlike Strathcona and Fishtail, the above approaches do not use program structure as input to the search. A separate thread of research has continued to explore this strategy. A challenge with trying to use program structure is that the existing structure does not necessarily yield a good indication of the specific task the programmer now needs help with. Consequently, search results may be unfocused and broad. A number of research efforts provide more specific results by targeting a single, common development task: how to obtain an instance of a given output type, given a set of input types available at a given point in the code. Prospector (http://dx.doi.org/10.1145/1064978.1065018![]() ![]() ![]() | ||||||||
Added: | ||||||||
> > | Fishtail-VS: Visual Studio PrototypeI have done some technical exploration to see whether a plugin similar to Fishtail could be implemented in Visual Studio. I have built a simple add-in for Visual Studio 2010 (source code available at the link above). This add-in uses the EnvDTE and EnvDTE80 namespaces (http://msdn.microsoft.com/en-us/library/1xt0ezx9.aspx![]() ![]() Goals and Challenges for Fishtail-VSAs mentioned earlier, one of the challenges with automatically generated search keywords is the risk of overly general results. One area to explore is whether the use of the Mylyn task context helps or hinders in addressing this challenge. In certain task contexts, using keywords from multiple high-DOI elements might exacerbate the problem, yielding an even broader set of results. In other cases, the ability to choose keywords from the entire task context, rather than just the current file, might yield a narrower, more focused result set. |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Quick Links
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Status (Jan 2011)The plugin available from the project page is not compatible with the latest versions of Eclipse and Mylyn. | ||||||||
Changed: | ||||||||
< < | The source code at the link above was decompiled from the jarfile, as the original source repository was lost. The decompiled source has been updated so that it compiles with the latest versions of Eclipse and Mylyn. A plugin built from this source now loads in the latest version of Eclipse (3.6.1, Helios), but there remain a number of issues. Incompatibilities with the latest version of the Google search results page have been fixed. However, results are still not being displayed in the Fishtail view. The origin of this issue is still unknown. | |||||||
> > | The plugin built from the updated source now runs against the latest versions of Mylyn (3.4.2) and Eclipse (3.6.1, Helios), but there remain a number of issues. Incompatibilities with the latest version of the Google search results page have been fixed. However, results are still not being displayed in the Fishtail view. The origin of this issue is still unknown. | |||||||
The Visual Studio prototype is very minimal. It simply demonstrates the ability to periodically poll for the location of the cursor in the edit window, and map that location to a structural element in the program source.
Background | ||||||||
Changed: | ||||||||
< < | The Fishtail Eclipse plugin was originally developed by Nathan Hapke and Gail Murphy during Nathan's internship in late 2007. The basic goal of the plugin is to automatically search the web for code samples and other pages applicable to the user's Mylyn task context. Keywords are automatically generated based on Java structure elements within the context (e.g. class names, method names, package names). The user may augment the search input by manually entering additional keywords. Changes in the task context can automatically trigger searches, or they can be manually initiated by the user. Result links are listed in an Eclipse view. | |||||||
> > | The Fishtail Eclipse plugin was originally developed by Nathan Hapke and Gail Murphy during Nathan's internship in late 2007. The function of the plugin is to automatically search the web for code samples and other pages applicable to the user's Mylyn task context. Search keywords are generated based on Java structure elements within the task context (e.g. class names, method names, package names). The user may augment the search input by manually entering additional keywords. Changes in the task context can automatically trigger searches, or they can be manually initiated by the user. Result links are listed in an Eclipse view. | |||||||
Changed: | ||||||||
< < | In fall 2010, Gail and I (Nick) started exploring the possibility of building a similar plugin for Visual Studio 2010. I first wanted to familiarize myself with the existing plugin. It was no longer compatible with the latest versions of Eclipse and Mylyn, and the original source code repository had been lost. I decompiled the jarfile using JD (http://java.decompiler.free.fr/![]() ![]() | |||||||
> > | In fall 2010, Gail and I (Nick) started exploring the possibility of building a similar plugin for Visual Studio 2010. I first wanted to familiarize myself with the existing plugin. It was no longer compatible with the latest versions of Mylyn and Eclipse, and the original source code repository had been lost. I decompiled the jarfile using JD (http://java.decompiler.free.fr/![]() ![]() | |||||||
Changed: | ||||||||
< < | I also needed to update the code to be compatible with the latest version of the Google search results page (unfortunately, the current implementation does not use the Google web search service, and is tightly coupled with the format of the Google search results page). While the plugin now loads successfully with the latest versions of Eclipse (3.6.1, Helios) and Mylyn (3.4.2), it is still not fully working, as search results do not show up in the Mylyn view. | |||||||
> > | I also needed to update the code to be compatible with the latest version of the Google search results page (unfortunately, the current implementation does not use the Google web search service, and is tightly coupled with the format of the Google search results page). While the plugin now loads successfully with the latest versions of Mylyn (3.4.2) and Eclipse (3.6.1, Helios), it is still not fully working, as search results do not show up in the Fishtail view. | |||||||
Changed: | ||||||||
< < | While some time was expended on trying to get the existing Eclipse plugin working, the majority of my work this past fall has been to explore the technical feasibility of building a similar plugin for Visual Studio 2010, and to try to understand better the value and novelty of the overall approach within the context of current research. Results of this work are summarized in the next two sections. | |||||||
> > | While some time was expended trying to get the existing Eclipse plugin working, the majority of my work this past fall has been to explore the technical feasibility of building a similar plugin for Visual Studio 2010, and to understand better the value and novelty of the overall approach within the context of current research. Results of this work are summarized in the next two sections. | |||||||
Fishtail Approach and Related Work | ||||||||
Changed: | ||||||||
< < | The Fishtail concept originates in work done by Reid Holmes, Robert Walker, and Gail on the Strathcona example recommendation tool (http://dx.doi.org/10.1145/1062455.1062491![]() | |||||||
> > | The Fishtail concept originates in work done by Reid Holmes, Robert Walker, and Gail on the Strathcona example recommendation tool (http://dx.doi.org/10.1145/1062455.1062491![]() | |||||||
Fishtail differs from Strathcona in a few key ways: | ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
| ||||||||
Changed: | ||||||||
< < | Many researchers have recognized the importance of examples in the development process, and sought ways to make relevant sample code more accessible to the programmer. | |||||||
> > | Since the Strathcona work, other researchers have recognized the importance of examples in the development process, and sought ways to make relevant sample code more accessible to the programmer. | |||||||
Changed: | ||||||||
< < | Mica (http://dx.doi.org/10.1109/VLHCC.2006.32![]() | |||||||
> > | Codetrail (http://dx.doi.org/10.1109/VLHCC.2008.4639060![]() | |||||||
Changed: | ||||||||
< < | Codetrail (http://dx.doi.org/10.1109/VLHCC.2008.4639060![]() | |||||||
> > | Mica (http://dx.doi.org/10.1109/VLHCC.2006.32![]() | |||||||
Added: | ||||||||
> > | Like Mica, the Blueprint plugin for Adobe Flex Builder (http://dx.doi.org/10.1145/1753326.1753402![]() | |||||||
Added: | ||||||||
> > | The contributions of Mica and Blueprint largely relate to the way search results are presented to the programmer. Sourcerer (http://dx.doi.org/10.1007/s10618-008-0118-x![]() | |||||||
Changed: | ||||||||
< < | -- NickSawadsky - 06 Jan 2011 | |||||||
> > | Unlike Strathcona and Fishtail, the above approaches do not use program structure as input to the search. A separate thread of research has continued to explore this strategy. A challenge with trying to use program structure is that the existing structure does not necessarily yield a good indication of the specific task the programmer now needs help with. Consequently, search results may be unfocused and broad. A number of research efforts provide more specific results by targeting a single, common development task: how to obtain an instance of a given output type, given a set of input types available at a given point in the code. Prospector (http://dx.doi.org/10.1145/1064978.1065018![]() ![]() ![]() | |||||||
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Quick Links | ||||||||
Line: 27 to 27 | ||||||||
Fishtail Approach and Related Work | ||||||||
Changed: | ||||||||
< < | The Fishtail concept originates in work done by Reid Holmes, Robert Walker, and Gail on the Strathcona example recommendation tool (http://dx.doi.org/10.1145/1062455.1062491![]() | |||||||
> > | The Fishtail concept originates in work done by Reid Holmes, Robert Walker, and Gail on the Strathcona example recommendation tool (http://dx.doi.org/10.1145/1062455.1062491![]()
![]() ![]() | |||||||
-- NickSawadsky - 06 Jan 2011 |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
Quick Links
Status (Jan 2011)The plugin available from the project page is not compatible with the latest versions of Eclipse and Mylyn. The source code at the link above was decompiled from the jarfile, as the original source repository was lost. The decompiled source has been updated so that it compiles with the latest versions of Eclipse and Mylyn. A plugin built from this source now loads in the latest version of Eclipse (3.6.1, Helios), but there remain a number of issues. Incompatibilities with the latest version of the Google search results page have been fixed. However, results are still not being displayed in the Fishtail view. The origin of this issue is still unknown. The Visual Studio prototype is very minimal. It simply demonstrates the ability to periodically poll for the location of the cursor in the edit window, and map that location to a structural element in the program source.BackgroundThe Fishtail Eclipse plugin was originally developed by Nathan Hapke and Gail Murphy during Nathan's internship in late 2007. The basic goal of the plugin is to automatically search the web for code samples and other pages applicable to the user's Mylyn task context. Keywords are automatically generated based on Java structure elements within the context (e.g. class names, method names, package names). The user may augment the search input by manually entering additional keywords. Changes in the task context can automatically trigger searches, or they can be manually initiated by the user. Result links are listed in an Eclipse view. In fall 2010, Gail and I (Nick) started exploring the possibility of building a similar plugin for Visual Studio 2010. I first wanted to familiarize myself with the existing plugin. It was no longer compatible with the latest versions of Eclipse and Mylyn, and the original source code repository had been lost. I decompiled the jarfile using JD (http://java.decompiler.free.fr/![]() ![]() Fishtail Approach and Related WorkThe Fishtail concept originates in work done by Reid Holmes, Robert Walker, and Gail on the Strathcona example recommendation tool (http://dx.doi.org/10.1145/1062455.1062491![]() |