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 "E4/Scripting/bofecon12"

< E4‎ | Scripting
(Attendees and Interests)
Line 90: Line 90:
 
* Collect very concrete use-cases
 
* Collect very concrete use-cases
  
<!--
+
[[Category:E4|Scripting]]
* '''Doug Schaefer''' (QNX/RIM): build & usability: make it easier for new users to create projects
+
* Vladimir Prus (Mentor Graphics / Code Sourcery): See demo of TCF auto-discovery in action
+
* Bill Swanson (Tilera): Integration into package, and Visualization (Talk: Wed Afternoon with Marc)
+
* Marc Khouzam (Ericsson): Debugging, Multicore ([http://www.eclipsecon.org/2012/sessions/seeing-understanding-debugging-multicore-visualizer Visualizer talk Wed @ 5pm]). Problem: how to get feedback, what the user wants ?
+
* Sergey Prigogin (Google): Support of C++ developers at Google; Make C++ better; Refactorings ([http://www.eclipsecon.org/2012/sessions/c-refactoring-now-real Refactoring Talk: Thu 3pm)
+
* Chris Recoskie (IBM): Rational Dev for Power / RDT; Static Analysis
+
* Leo Treggiari (Intel): Compiler and Debugger integrations for Fortran and C++; would integrate more but doesn't happen. Keep up.
+
* Elena Laskavaia (QNX/RIM): IDE's / Freetime on CODAN ([http://www.eclipsecon.org/2012/sessions/how-profit-static-analysis CODAN Talk: Thu 11.45] - will give away a PLAYBOOK)
+
* Benjamin : ARM / DSP Integration; Static Analysis
+
* Patrick Tassé (Ericsson) : Static Analysis
+
* Jason Litton (Sage): CDT for BIOS programming
+
* Mohamed Hussein (Mentor Graphics / Code Sourcery): RCP's on top of Eclipse+CDT;
+
* Dmitry, Mentor / Code Sourcery: Build system for Mentor Toolchains; Debugger; Configurations; Parser
+
* Beth Tibbitts (IBM): PTP, Static Analysis for API's (especially HPC, ...) : Interested in fresh, new User Experiences; Remote
+
* Jeff Johnston (Red Hat): Linuxtools, Autotools, CDT/Mylyn bridge
+
* Andrew Overholt (Red Hat):
+
* Anna Dushistova (MontaVista): Build and TM integrations
+
* Greg Watson (IBM): HPC, Photran, Linuxtools, Automatic Remote Synchronization with git (Talk tomorrow); USABILITY !
+
* Martijn Rutten, Vector Fabrics
+
* Jesper Eskilson (IAR Systems)
+
 
+
 
+
* Couple more guys showed interest by signing up but could not make it in the end:
+
** Jonas Jonsson (Ericsson)
+
** Eric Cloninger (Motorola) or Julia Perdigueiro
+
** Alex Ruiz (Google)
+
-->
+

Revision as of 04:51, 18 April 2012

Eclipse Scripting BoF session at EclipseCon 2012

Doing easy customizations and automation of common workflows is the bread-and-butter of pretty much every advanced editor such as Emacs, vi, Slickedit, Textmate or others. Office products such as LibreOffice or the Microsoft suite provide scripting and macro recording as essential capabilities for easy extension. JTAG debuggers such as Lauterbach Trace32 or Greenhills MULTI are even built around scripting.

But what about Eclipse ? What happened to Monkey, Command Shell and all the other ideas ?

Come join us for a BoF at EclipseCon 2012 if you care about making it easy to customize an Eclipse IDE.

Date: Wed Mar 28, 2012
Time: 7.30pm - 8.30pm (Html.gifHTML | Ical.gifiCal)
Room: Reston Suites A
Regency Ballroom B

All are invited, even if you didn't sign up :).

Attendees and Interests

  • Martin Oberhuber (Wind River): What is the current state of scripting, why is it so fragmented, and how can we unify it ?
  • Anna Dushistova (MontaVista)
  • Leo Treggiari (Intel)
  • Jeffrey Hiller
  • Mohamed Hussein (Mentor Graphics)
  • Andrew Eisenberg (SpringSource)
  • Matej Spiller Muys (ComTrade)

Notes

  • Existing Scripting
    • Eclipse Monkey (archived)
    • Groovy Monkey
    • xored Q7 - ECL
    • The new OSGi Shell
    • Aptana: Rubles
    • Emacs+
    • TOPCASED
    • GroovyEclipse (Editor scripting)
    • DLTK - Console for running scripts
    • Jython
    • Javascript / Rhino engine
    • BeanScripting foundation for WebSphere
    • Scala etc in plugins
    • Mohammed's old extension point infrastructure
  • Properties of usable scripting
    • Can be pretty pragmatic (scripts don't live too long)
      • But if it's good it's going to remain ... people WILL leverage it for bigger things
    • Should be self-documenting ("help")
      • Eclipse Monkey was too hard to learn how to write something
    • Should have escape mechanism into full Eclipse API's
      • Ideally, new DOM / Simple API can be created inside the scripting language(s)
    • Easy to share / deploy scripts (Monkey model is good)
  • Script WHAT - Use-Cases
    • Simple automation eg Open a View
    • Create a Project with certain properties, add some files / folders
    • eg find-replace certain things in certain files
    • Editor Macros
  • Script HOW
    • Button / Menu inside IDE
    • Connect to running instance and make it do something
      • bug 4922 implemented in 3.6 - open a file in eclipse from the command line - uses SWT window system communication
      • OSGi shell supports opening telnet port to communicate
      • Wind River proprietary socket communication eg eclipse -data someWS -runScript foo will run foo in existing instance if someWS is already open
        • This could potentially be contributed
    • Testcase from outside (launch Eclipse and do X)
  • Automated Recording
    • Not perfect, but may help finding ID's etc.
    • SWTBot
    • Jubula
    • WindowTester
  • Properties of the Scripts
    • Allow multiple languages (eg those supported by JRE 6: JavaScript, Pyhton/Jython, Groovy, ...)

Next Steps

  • Get in touch with more interested parties
  • Set up a Forum or Mailing list
  • Find a candidate
  • Collect very concrete use-cases

Back to the top