Re: [linuxtools-dev] Linux Tools 7.5.1 move to org.eclipse.swtchart

2020-02-12 Thread Patrick Tasse
e (in LinuxTools or SWTChart). Then the old PieChart can be removed in a later major version of Linux Tools. Thanks, Patrick On Tue, Feb 11, 2020 at 2:51 PM Aleksandar Kurtakov wrote: > > > On Tue, Feb 11, 2020 at 9:11 PM Patrick Tasse > wrote: > >> Hi, >> >

[linuxtools-dev] Linux Tools 7.5.1 move to org.eclipse.swtchart

2020-02-11 Thread Patrick Tasse
Hi, In the Linux Tools 7.5.1 release the project has moved from org.swtchart 0.10.0 to org.eclipse.swtchart 0.7.0 [1]. In our project we depend on the org.eclipse.linuxtools.dataviewers feature. More specifically we use PieChart and invoke API from its parent class Chart. Due to the change from

[linuxtools-dev] Problem with archived update site for Neon

2018-10-31 Thread Patrick Tasse
Hi, I am getting errors trying to load our Neon target platform: http://git.eclipse.org/c/tracecompass/org.eclipse.tracecompass.git/tree/releng/org.eclipse.tracecompass.target/tracecompass-e4.6.target?id=25b5ce145c8d40b1b07dfd3c35222316f192e121 This causes the Eclipse error described in https://

Re: [linuxtools-dev] stable-3.0 branch created

2014-05-26 Thread Patrick Tasse
ipse.org:29418/linuxtools/org.eclipse.linuxtools.git > fetch = refs/notes/*:refs/notes/* > > -- Jeff J. > > - Original Message - > > From: "Patrick Tasse" > > To: "Linux Tools developer discussions" > > Sent: Monday, May 26, 2014 3:23

Re: [linuxtools-dev] stable-3.0 branch created

2014-05-26 Thread Patrick Tasse
Hi Jeff, I'm unable to push to the stable-3.0 branch. remote: error: insufficient permission for adding an object to repository database ./objects Patrick On Mon, May 26, 2014 at 12:06 PM, Jeff Johnston wrote: > Please be advised that I have created the stable-3.0 branch. Any > subsequent >

Re: [linuxtools-dev] Tracing TMF for debugging

2014-04-07 Thread Patrick Tasse
Hi Francis, Usually I turn this on in Run/Debug Configurations, select your JUnit Plug-in Test configuration, then under the Tracing tab, enable tracing for org.eclipse.linuxtools.tmf.core plug-in and select the four check boxes. On Mon, Apr 7, 2014 at 4:55 PM, Francis Giraldeau < francis.girald

Re: [linuxtools-dev] TMF : createExecutableExtension in instantiateTrace() of TmfTraceElement.java

2014-04-07 Thread Patrick Tasse
re any way that can make the INJECT got chance to work in the class > extends TmfTrace for a new trace type ? > > Or maybe I got misunderstand for the spirit of TMF framework = =!! > > Thank you again for the quick response. > > The TMF is very amazing ! > > Ran-How > > &

Re: [linuxtools-dev] TMF : createExecutableExtension in instantiateTrace() of TmfTraceElement.java

2014-04-04 Thread Patrick Tasse
Hi Ran-How, The reason we can't use the ITmfTrace instance owned by the trace type helper is that we need a different instance for each opened trace (they have different resources, paths, indexers, etc.). The instance in the trace type helper is a dummy trace instance that is only used for trace

Re: [linuxtools-dev] [PATCH] TMF: Add get parent to state system

2014-03-27 Thread Patrick Tasse
Just some ideas: -Make sure that the email for Author and Committer in the commit message is the same email that has signed the CLA -Make sure there is no line wrapping for those fields in the commit message On Wed, Mar 26, 2014 at 11:57 AM, Francis Giraldeau < francis.girald...@gmail.com> wrote:

Re: [linuxtools-dev] TMF: Bookmarks, Experiments and Traces

2014-02-05 Thread Patrick Tasse
Hi Xavier, 1) I had to go back far to remember when TmfExperiment.getBookmarksFile() was introduced. It is a leftover from when we had an Events view that needed to get the file from its experiment to pass it to the embedded events table. The Events view did not support traces, only experiments, t

Re: [linuxtools-dev] TMF: histogram

2013-11-27 Thread Patrick Tasse
Sounds like a good idea, we just have to figure out what is the best way to show this to the user without taking up too much valuable window space. Here's a proposal: We could put a [+]/[-] widget next to the full trace histogram (when it is an experiment/trace set), and expanding it would show th

Re: [linuxtools-dev] TMF: drawing bookmarks on Timegraphs

2013-10-25 Thread Patrick Tasse
Hi Xavier, I'm a bit confused, is this for the TimeChartView from the framework, or a modified one you use? Because the Time Chart view already does show bookmarks as a little banner above the corresponding events (see the code in TimeChartView$DecorateThread). It also doesn't have a getExperimen

Re: [linuxtools-dev] TMF and pluggable state providers

2013-03-18 Thread Patrick Tasse
Hi Aaron, Nice work! You might want to try this on your time graph combo since your time stamps seem to be epoch-based: timeGraphCombo.getTimeGraphViewer().setTimeFormat(TimeFormat.CALENDAR); Patrick On Fri, Mar 15, 2013 at 6:46 PM, Aaron Spear wrote: > > > I think that I can see your point

Re: [linuxtools-dev] extending TMF time chart viewer tooltips

2013-01-25 Thread Patrick Tasse
Hi Aaron, The Time Chart view was initially designed only to show punctual event distribution over time, with a model that has a low memory footprint at zoomed-out level but that can self-itemize itself with more detail as the user zooms in to a particular time. It was not designed to have any kno

Re: [linuxtools-dev] Hudson job hanging on AllTmfUITests

2013-01-17 Thread Patrick Tasse
Hi Roland, I'm able to reproduce the hanging intermittently, there seems to be a timing-dependent deadlock in our code. I'll try to submit a fix asap. Patrick On Thu, Jan 17, 2013 at 2:12 PM, Roland Grunberg wrote: > The build seems to have progressed beyond AllTmfUITests. Did the commit > for

Re: [linuxtools-dev] Juno SR2 RC1 is approaching

2013-01-08 Thread Patrick Tasse
Hi Jeff, That LTTng bug just happened to be reported in bugzilla today. Should there be a "1.2.1" option in the "Target Milestones" field? Thanks On Tue, Jan 8, 2013 at 2:04 PM, Jeff Johnston wrote: > This is a reminder that next week I will be building the Juno SR2 RC1 > build from the stable-1

Re: [linuxtools-dev] TMF question: ITmfEventsFilterProvider

2012-12-03 Thread Patrick Tasse
r) { > if (IGotoMarker.class.equals(adapter) || > ITmfEventsFilterProvider.class.equals(adapter)) { > return fEventsTable; > } > return super.getAdapter(adapter); > } > > Xavier > > > On 12/03/2012 05:31 PM, Patrick Tasse wrote: > > Hi Xavier, >

Re: [linuxtools-dev] TMF question: ITmfEventsFilterProvider

2012-12-03 Thread Patrick Tasse
Hi Xavier, I didn't think it would be even possible so your code is not crappy but rather ingenious ;) In 2.0 this is being refactored because the listener/provider solution wasn't working well: if your listener was created after the trace was already opened, it would be too late to receive the T

Re: [linuxtools-dev] lttng getting started : Sample "Custom Text Parser" config & files ?

2012-11-22 Thread Patrick Tasse
tin > > -- > > *Martin Oberhuber*, SMTS / Product Architect – Development Tools, *Wind > River* > > direct +43.662.457915.85 fax +43.662.457915.6 > > ** ** > > *From:* linuxtools-dev-boun...@eclipse.org [mailto: > linuxtools-dev-boun...@ec

Re: [linuxtools-dev] lttng getting started : Sample "Custom Text Parser" config & files ?

2012-11-21 Thread Patrick Tasse
erl or similar). > > ** ** > > ** ** > > Thanks, > > Martin > > -- > > *Martin Oberhuber*, SMTS / Product Architect – Development Tools, *Wind > River* > > direct +43.662.457915.85 fax +43.662.457915.6 > > ** ** > > *From:

Re: [linuxtools-dev] lttng getting started : Sample "Custom Text Parser" config & files ?

2012-11-20 Thread Patrick Tasse
Hi Martin, If you're creating a text parser, you can paste your input text (or just a few sample lines) in the "Preview input" text box. Then you will see if your lines are parsed properly (you want your important text to be green -- see the preview legend). Make sure you create 'groups' under eac

[linuxtools-dev] +1 for Camilo Bernal on technology.linux-distros by Patrick Tasse

2012-07-24 Thread portal on behalf of Patrick Tasse
Patrick Tasse voted: +1 Welcome! Voting summary: http://portal.eclipse.org/ ___ linuxtools-dev mailing list linuxtools-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/linuxtools-dev

Re: [linuxtools-dev] Lttng2 issue

2012-07-19 Thread Patrick Tasse
> > When I remove TCF from my Eclipse configuration, everything works fine on > all the combinations I tried (except we lose the tracer control for the > legacy LTTng - a pretty deprecated feature anyway). > > > > I will work further on it tomorrow when I come in. > &g

Re: [linuxtools-dev] Lttng2 issue

2012-07-18 Thread Patrick Tasse
Patrick On Wed, Jul 18, 2012 at 4:02 PM, Zhang, Jessica wrote: > I believe I’m using the Project Explorer and on Tracing perspective. > I’m attaching the screenshot > > ** ** > > ** ** > > ** ** > > *From:* linuxtools-dev-boun...@eclipse.org [mailto: > linuxto

Re: [linuxtools-dev] Lttng2 issue

2012-07-18 Thread Patrick Tasse
Hi Jessica, The TMF navigator content binding is only applied to the Project Explorer. Are you using that view and not Package Explorer or Navigator? Patrick On Wed, Jul 18, 2012 at 3:33 PM, Zhang, Jessica wrote: > Hi, > > I'm playing with lttng2 on Juno, what I've installed is Lttng-Linux > Tr

Re: [linuxtools-dev] Gerrit merge strategy

2012-07-18 Thread Patrick Tasse
Hi, If you agree to go for cherry-pick option, could you comment on the bug 383898, Denis Roy is waiting for confirmation. Thanks, Patrick On Tue, Jul 17, 2012 at 10:55 AM, Marc Khouzam wrote: > > > > -Original Message- > > From: linuxtools-dev-boun...@eclipse.org > > [mailto:linuxtools

Re: [linuxtools-dev] Linux Tools 1.1 release

2012-07-17 Thread Patrick Tasse
Hi Otávio, I thought we had until July 20th? We have quite a few more bug fix commits incoming for stable-1.1. Patrick On Tue, Jul 17, 2012 at 9:06 AM, Otávio Pontes wrote: > Hi folks, > I intend to build the Linux Tools 1.1 and create the tarballs today. If > anyone intends to send any commit

Re: [linuxtools-dev] TMF: thanks a lot

2012-06-19 Thread Patrick Tasse
Hi Xavier, Thanks for the thanks, some comments below: On Tue, Jun 19, 2012 at 11:11 AM, xraynaud wrote: > o TimeGraphViewer: > It's not easy for the developer to add a mouse listener on the time > graph. > (My users want to interact with ITimeEvent and ITimeGraphEntry objects). > My intenti

Re: [linuxtools-dev] TMF & TmfTimeAnalysisViewer

2012-05-04 Thread Patrick Tasse
Hi Xavier, The TmfTimeAnalysisViewer is moved to internal lttng because it is used by the legacy LTTng kernel views. It has been replaced by TimeGraphViewer and TimeGraphCombo which are exposed by tmf.ui. These widgets are under development and planned to be ready for Juno. Working, but not final

[linuxtools-dev] +1 for Alexandre Montplaisir on technology.linux-distros by Patrick Tasse

2012-04-17 Thread portal on behalf of Patrick Tasse
Patrick Tasse voted: +1 Welcome! Voting summary: http://portal.eclipse.org/ ___ linuxtools-dev mailing list linuxtools-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/linuxtools-dev

[linuxtools-dev] +1 for Matthew Khouzam on technology.linux-distros by Patrick Tasse

2012-04-16 Thread portal on behalf of Patrick Tasse
Patrick Tasse voted: +1 Welcome! Voting summary: http://portal.eclipse.org/ ___ linuxtools-dev mailing list linuxtools-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/linuxtools-dev

Re: [linuxtools-dev] Linux Tools 0.10.0 release

2012-03-21 Thread Patrick Tasse
Ok for me now. On Wed, Mar 21, 2012 at 11:32 AM, Patrick Tasse wrote: > Hi Octávio, > > I'm working on a last patch right now, should be pushed within the hour. > > Patrick > > > On Wed, Mar 21, 2012 at 11:27 AM, Jeff Johnston wrote: > >> On 03/21/2012 11

Re: [linuxtools-dev] Linux Tools 0.10.0 release

2012-03-21 Thread Patrick Tasse
Hi Octávio, I'm working on a last patch right now, should be pushed within the hour. Patrick On Wed, Mar 21, 2012 at 11:27 AM, Jeff Johnston wrote: > On 03/21/2012 11:17 AM, Otávio Pontes wrote: > >> Hi folks, >> I intend to build the 0.10.0 release today. So, no more patches will be >> added.

[linuxtools-dev] +1 for Daniel Henrique Barboza on technology.linux-distros by Patrick Tasse

2012-01-11 Thread portal on behalf of Patrick Tasse
Patrick Tasse voted: +1 Welcome Voting summary: http://portal.eclipse.org/ ___ linuxtools-dev mailing list linuxtools-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/linuxtools-dev

[linuxtools-dev] +1 for Krzysztof Daniel on technology.linux-distros by Patrick Tasse

2012-01-11 Thread portal on behalf of Patrick Tasse
Patrick Tasse voted: +1 Welcome Voting summary: http://portal.eclipse.org/ ___ linuxtools-dev mailing list linuxtools-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/linuxtools-dev

Re: [linuxtools-dev] Trying to get the eclipse linuxtools to work - New problem

2011-10-17 Thread Patrick Tasse
Hi Daniel, Are you using the latest lttng-agent code (dated 2011-08-12)? This one has a fix for corrupted traces when streaming through the network in overload conditions. And it is very possible that the kernel traces produce more events than the network connection can handle. Even without corrup

Re: [linuxtools-dev] Trying to get the eclipse linuxtools to work

2011-10-14 Thread Patrick Tasse
when we switch to lttng 2.0... Best regards, Patrick On Thu, Oct 13, 2011 at 4:40 PM, Thibault, Daniel < daniel.thiba...@drdc-rddc.gc.ca> wrote: > ---------- > Date: Tue, 11 Oct 2011 14:01:40 -0400 > From: Patrick Ta

Re: [linuxtools-dev] Trying to get the eclipse linuxtools to work

2011-10-11 Thread Patrick Tasse
Hi Daniel, For the Files subsystem, I see the same behavior. This is untouched functionality provided by the Target Management / Remote Systems Explorer plugins. I tried to debug a little to see what is happening, it seems that when you expand the "Home" filter, the filter string is "." which gets