Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[Dltk-dev] Re: How to create a custom view to the debug view?

Dmitriy Kovalev,
Thank you very much for your advice.
There is another thing I am worrying about.
 
Here is the situation, we want to debug users' script which is written in Tcl, and we realize our debugger in Java, right?
When I refresh CustomObjectView, I got the business objects and relations through the java API of our business logic.
It is like this:
 System.loadLibrary("sJava");
sObjects = sJava.sGet(root, new StringVector());
and then I can construct the object tree recursively.
Dltk run users' Tcl script by creating a new thread to run the tcl interpreter, right? The above code getting bussiness objects runs in the main thread.
I am wondering, if the main thread can get the objects created in the thread that interpreter running?
 
After I read your mail, especially the IScriptEvaluationEngine part, I think there might be another solution do not need the java API to get objects. As you said I can execute tcl code, say test::get all, and return it as IScriptValue. And then use this instance of IScriptValue to construct the object tree, right? Does this support structed data? And is this solution feasible?
 
Please give some comments on these two solutions. Thanks again.
 
Best regards,
Joy
 

 
----- Original Message ----
From: "dltk-dev-request@xxxxxxxxxxx" <dltk-dev-request@xxxxxxxxxxx>
To: dltk-dev@xxxxxxxxxxx
Sent: Friday, August 3, 2007 12:00:23 AM
Subject: dltk-dev Digest, Vol 6, Issue 3

Send dltk-dev mailing list submissions to
    dltk-dev@xxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
    https://dev.eclipse.org/mailman/listinfo/dltk-dev
or, via email, send a message with subject or body 'help' to
    dltk-dev-request@xxxxxxxxxxx

You can reach the person managing the list at
    dltk-dev-owner@xxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of dltk-dev digest..."


Today's Topics:

   1. Re: How to create a custom view to the debug view?
      (Dmitriy Kovalev)


----------------------------------------------------------------------

Message: 1
Date: Thu, 02 Aug 2007 12:10:33 +0700
From: Dmitriy Kovalev <kds@xxxxxxxxx>
Subject: Re: [Dltk-dev] How to create a custom view to the debug view?
To: DLTK Developer Discussions <dltk-dev@xxxxxxxxxxx>
Message-ID: <46B16749.2040901@xxxxxxxxx>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hello,

This link http://www.eclipse.org/eclipse/debug/documents.php is a good
source of Eclipse debugger documentation. Presentations of two last
EclipseConfs (with source examples) are very useful and explain
practically all parts of Eclipse debug infrastructure with many details.

Eclipse has a common model of debug objects (threads, stack frames and
etc.). Our debug model extends Eclipse model and implements many script
language specific things using DBGP protocol. The main interfaces are:
IScriptThread, IScriptStackFrame, IScriptVariable, IScriptValue. See the
source code for more information.

I think your problem can be solved in the following way. The first thing
you should investigate is the IDebugEventSetListener. Your class may
implement this interface to listen debug events (class DebugEvent).
These events give a complete information about debugging process: when
debugger
suspends, why it suspends (end of step or breakpoint) and etc.
DebugEvent has a good javadoc, read it first. So, you can  detect the
moment when your view should be shown.

Adding information about objects is more complex but realizable task. I
think you should use IScriptEvaluationEngine. This interface allow you
to execute any code (in this case Tcl code) in the application thread
and obtain results as instance of IScriptValue. Evaluation engine
interface can be requested through IScriptThread (method
getEvaluationEgine). Instance of IScriptThread  can be simply extracted
from DebugEvent.

This is a short outline of possible solution. Please, ask additional
questions for more information.

--
Dmitriy Kovalev

wang dada wrote:
> Hi,
> Recently I've been studying the debugger of Dltk. What I want to do is
> adding a custom view to the DebugView, let's say it to be
> CustomObjectView.
> When users' scripte suspend at the breakpoint, CustomObjectView will
> show all the objects created by now. These objects has no
> relation with Tcl lanuage, they are just the bussiness objects created
> by users.
> For example, users script will be like this:  set i [test::newobject1]
>                                                                           set
> j [test::new object2]
>                                                                    
>       test::new relationship -parent  i j
> And I can get all the objects by using:  test::get all to get all
> the created objects and their relations, and show them in
> CustomObjectView with a treeViewer. When user click step,
> CustomObjectView will refresh.
>  
> Could anyone give me some clue or example code to realize it? I've
> read articles at http://www.eclipse.org/eclipse/debug/documents.php,
> but still do not know how to begin. Is there any documents about how
> to realizing debugger of DLTK? Any advise and help will be greatly
> appreciated.
>  
> Best regards,
> Joy
>  
>
> ------------------------------------------------------------------------
> Take the Internet to Go: Yahoo!Go puts the Internet in your pocket:
> <http://us.rd.yahoo.com/evt=48253/*http://mobile.yahoo.com/go?refer=1GNXIC>
> mail, news, photos & more.
> --
> This message was scanned by ESVA and is believed to be clean.
> Click here to report this message as spam.
> <http://mail-gw-us.xored.com/cgi-bin/learn-msg.cgi?id=8A66B299B1.03B83>
> ------------------------------------------------------------------------
>
> _______________________________________________
> dltk-dev mailing list
> dltk-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/dltk-dev
>  




------------------------------

_______________________________________________
dltk-dev mailing list
dltk-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/dltk-dev


End of dltk-dev Digest, Vol 6, Issue 3
**************************************



Luggage? GPS? Comic books?
Check out fitting gifts for grads at Yahoo! Search.

Back to the top