Hi Piotr,
I checked your ttb integration and it looks very nice!
I had one problem: after terminating the trace, it wasn't opened
automatically in the viewer. I could open it from the trace browser,
but it's not obvious how to do that (it's not mentioned in the docs).
Otherwise, I only have some
Hi all,
I'm slowly finishing working on tracing feature for erlide (I've been working
on it during my internship in Erlang Solutions). I know that you're very busy
but I'd really appreciate if you found some time to look at it;) It may be too
late to do any serious changes (if you decide that st
Hi!
On Wed, Sep 15, 2010 at 12:16, Piotr Dorobisz
wrote:
> I changed repository I'm working with. Now I'm using company's account so my
> source code will be here: git://github.com/esl/erlide.git ("tracing" branch).
> I've created eclipse update site here: http://esl.github.com/erlide/site/
> (
Hi,
I changed repository I'm working with. Now I'm using company's account so my
source code will be here: git://github.com/esl/erlide.git ("tracing" branch).
I've created eclipse update site here: http://esl.github.com/erlide/site/ (just
add to eclipse's software sites, it should work with night
On Wed, Sep 8, 2010 at 18:29, Piotr Dorobisz
wrote:
> Hi,
> I wanted to create my own update site with tracing feature but I had some
> problems with it.
> I created feature project in which I specified my plugins. Then I created
> another project (update site project) where I specified this fea
Hi,
I wanted to create my own update site with tracing feature but I had some
problems with it.
I created feature project in which I specified my plugins. Then I created
another project (update site project) where I specified this feature in
site.xml. After clicking "Build" eclipse starts prepar
hi,
On Wed, Sep 1, 2010 at 14:04, Piotr Dorobisz
wrote:
> Unfortunately it won't work.
Okay, I'll keep this in mind - or better, write a ticket about it.
> If you have some time could you checkout my ttb branch and take a look on my
> plugin? Once I wrote how to use it but I'll do it again:
>
Hi,
Unfortunately it won't work. It's because I'm starting new node using
ILaunchConfiguration.launch() as you suggested me. And only thing it cares
about are parameters set in my getLaunchConfiguration method which looks like
this (it's copied from yours with some modifications):
private ILaunc
Hi!
On Tue, Aug 31, 2010 at 15:52, Piotr Dorobisz
wrote:
> As I wrote you few days ago I managed to create my own node using
> launchConfig.launch():
>
> private Backend createBackend(String name) {
> final RuntimeInfo info =
> RuntimeInfo.copy(ErlangCore.getRuntimeInfoManager().getEr
Hi,
As I wrote you few days ago I managed to create my own node using
launchConfig.launch():
private Backend createBackend(String name) {
final RuntimeInfo info =
RuntimeInfo.copy(ErlangCore.getRuntimeInfoManager().getErlideRuntime(), false);
if (info != null) {
t
Hi,
At the end of createIdeBackend() there is a line:
ideBackend = createBackend(info, options, null);
createBackend:
private ErlideBackend createBackend(final RuntimeInfo info,
final Set options, Map
env)
throws BackendException {
On Tue, Aug 24, 2010 at 13:13, Piotr Dorobisz
wrote:
> Hello,
> I wrote method to create my own node (actually I did it very similar to
> BackendManager.getIdeBackend()). However, the problem is that this node is
> started with long name (-name parameter) instead of short one. It happens
> desp
Hello,
I wrote method to create my own node (actually I did it very similar to
BackendManager.getIdeBackend()). However, the problem is that this node is
started with long name (-name parameter) instead of short one. It happens
despite setting info.useLongName(false). What else can I do?
Btw, wh
Yesterday I looked at wrong function so I haven't noticed "checkAllProjects"
parameter;) However still it's not clear for me:
public static boolean openExternalFunction(final String mod,
final ErlangFunction function, final String path,
final IErlMod
Thanks. I have to pass to this method path to file containing module. Is it
possible to get path knowing module's name?
Piotrek
- "Jakob Cederlund" wrote:
> Hi!
> I think the method
> org.erlide.ui.util.ErlModelUtils.openExternalFunction(String,
> ErlangFunction, String, IErlModule, IProje
Hi!
I think the
method org.erlide.ui.util.ErlModelUtils.openExternalFunction(String,
ErlangFunction, String, IErlModule, IProject, boolean) is the best one. (We
should really make a cleaner interface, but we haven't yet.)
/Jakob
2010/8/19 Piotr Dorobisz
> Hello,
> Is there a method using which
Hello,
Is there a method using which I can open in editor module or function
declaration?
regards,
Piotrek
--
This SF.net email is sponsored by
Make an app they can't live without
Enter the BlackBerry Developer Challeng
On Mon, Aug 16, 2010 at 16:36, Piotr Dorobisz
wrote:
> I wanted to change string into erlang fun, either on java side or on erlang.
> I need it to create MatchSpecs from funs (there is dbg:fun2ms function). I'd
> like user to enter fun in text area and then, if it's correct, turn into
> MatchSp
I wanted to change string into erlang fun, either on java side or on erlang. I
need it to create MatchSpecs from funs (there is dbg:fun2ms function). I'd like
user to enter fun in text area and then, if it's correct, turn into MatchSpec.
How can I do it?
regards,
Piotrek
- "Vlad Dumitrescu"
On Mon, Aug 16, 2010 at 16:12, Piotr Dorobisz
wrote:
> Is it possible to change string into erlang fun? Let say I have sth like that:
> fun(X,Y)->X+Y end
> I'd like to change it into OtpErlangFun and send to erlang node so it could
> be executed there.
After creating the backend, you can do what
Is it possible to change string into erlang fun? Let say I have sth like that:
fun(X,Y)->X+Y end
I'd like to change it into OtpErlangFun and send to erlang node so it could be
executed there.
Piotrek
--
This SF.net email
On Mon, Aug 16, 2010 at 00:20, Piotr Dorobisz
wrote:
> Where/how can I see output of erlang function (for example if I call
> io:format) called using Backend.call?
That's a little tricky. Not all backends have a console visible in
Eclipse and the console is still not working 100% reliably. Bette
On Sun, Aug 15, 2010 at 23:42, Piotr Dorobisz
wrote:
> So could you explain me how can I create new node (what arguments should I
> pass to BackendManager.createBackend) on which I could start something (ttb
> in this case)?
Hi,
I think you should use ErlangLaunchConfigurationDelegate.doLaunch
Where/how can I see output of erlang function (for example if I call io:format)
called using Backend.call?
Piotrek
--
This SF.net email is sponsored by
Make an app they can't live without
Enter the BlackBerry Developer
Hi,
Thank you very much for this example with EventHandler. I didn't know about it
and wanted to implement asynchronous display refresh my way - I wanted to
create thread that would receive data from ttb and update view without freezing
all GUI. Tomorrow I'll try to use EventHandlers.
I wanted t
On Fri, Aug 13, 2010 at 12:34, Piotr Dorobisz
wrote:
> Now there shouldn't be this timeout issue - I spawn new erlang process to
> collect trace data so stop function returns immediately. But when tracing
> many traces will be generated by dbg. I think that they shouldn't be shown as
> they jus
n (especially launch parameter) to get node on
which I could start tracing?
regards,
Piotrek
- Original Message -
From: "Vlad Dumitrescu"
To: "Piotr Dorobisz"
Cc: "erlide-devel"
Sent: Wednesday, August 11, 2010 2:56:19 PM GMT +00:00 GMT Britain, Ireland,
Portug
On Wed, Aug 11, 2010 at 15:46, Piotr Dorobisz
wrote:
> It's really strange that you're still getting this problem. Can you write me
> what exactly have you done, what settings etc? I forgot to mention that if
> you want to trace function calls you should check "call" flag in "Processes"
> tab (
x27;s the issue?).
regards,
Piotrek
- Original Message -
From: "Vlad Dumitrescu"
To: "Piotr Dorobisz"
Cc: "erlide-devel"
Sent: Wednesday, August 11, 2010 2:27:58 PM GMT +00:00 GMT Britain, Ireland,
Portugal
Subject: Re: [Erlide-devel] Integrating tracing tool with erlid
On Wed, Aug 11, 2010 at 13:49, Piotr Dorobisz
wrote:
> Please take a look on my latest update to ttb branch.
Hi!
Please set the projects' requirements to Java 1.5 (both in project
properties and plugin.xml) We still have users that haven't upgraded.
This will mark all the unnecessary "@Override"
Hello,
Please take a look on my latest update to ttb branch. I added new options so
now its possible to set different flags on processes and in tree viewer you
will see events generated by processes. Simplest way to try is to set some
flags in "Processes" tab (e.g. call, procs, receive, send) a
On Tue, Aug 3, 2010 at 10:57, Piotr Dorobisz
wrote:
> First prepare erlang project with module containing few functions and then
> start erlang node ("run configuration..."). In "Erlang tracing control panel"
> view refresh list of available backends and select one you started. Add
> functions
Hello,
As I wrote few weeks ago I started working on integrating ttb tracing tool into
erlide. I spent some time on learning JFace, ttb etc so results aren't very
impressive;) You can get it from my git repository:
git://github.com/pdorobisz/erlide.git, ttb branch.
And few words about how it wo
On Tue, Jul 20, 2010 at 20:07, Piotr Dorobisz
wrote:
> Btw, where can I report bugs, create new issues etc?
I just sent you an invitation to our Assembla tools.
regards,
Vlad
--
This SF.net email is sponsored by Sprint
Hi,
I have some experience but rather small (once I worked a little with GEF
and GMF). I'm an intern in Erlang Solutions and was asked to work on
integrating tracing tools with erlide (I'm rather new to Erlang too).
Last week I worked with Gyorgy Orosz (he works on integrating Wrangler)
and he s
Seems reasonable! (Although I'm not sure that ttb offers that much for an
erlide integration.) Maybe Vlad already asked this, but do you have any
prior experience with Eclipse development? It's quite a lot, and takes a
while to get into...
Nice to see others working with Erlide in any case!
/Jakob
Hello,
Previously I mentioned that I'll be working on integrating dbg with erlide.
Actually I'll be working on integrating different tool - ttb
(http://www.erlang.org/doc/apps/observer/ttb_ug.html). It's also a tool for
tracing but built over dbg so way of integrating it will be the same.
Piotre
37 matches
Mail list logo