From a7780cc827c27f117fc775d061a1f221c0833749 Mon Sep 17 00:00:00 2001 From: Francois Chouinard Date: Fri, 9 Mar 2012 13:57:29 -0500 Subject: [PATCH] Add LTTng2 Kernel Analysis plug-ins --- .../ChangeLog | 72 ----- .../test.xml | 66 ---- org.eclipse.linuxtools.lttng2.core/ChangeLog | 167 ---------- .../.classpath | 7 + .../.gitignore | 5 + .../.project | 34 ++ .../.settings/org.eclipse.jdt.core.prefs | 12 + .../META-INF/MANIFEST.MF | 15 + .../build.properties | 5 + .../plugin.properties | 3 + .../pom.xml | 76 +++++ .../lttng2/kernel/core/tests/Activator.java | 86 +++++ .../kernel/core/tests/AllLTTngCoreTests.java | 33 ++ .../.classpath | 7 + .../.gitignore | 5 + .../.options | 3 + .../.project | 34 ++ .../.settings/org.eclipse.jdt.core.prefs | 12 + .../META-INF/MANIFEST.MF | 12 + .../about.html | 28 ++ .../build.properties | 6 + .../plugin.properties | 13 + .../pom.xml | 45 +++ .../lttng2/kernel/core/Activator.java | 86 +++++ .../.classpath | 7 + .../.gitignore | 5 + .../.project | 34 ++ .../.settings/org.eclipse.jdt.core.prefs | 12 + .../META-INF/MANIFEST.MF | 17 + .../build.properties | 5 + .../plugin.properties | 3 + .../pom.xml | 53 +++ .../lttng2/kernel/ui/tests/Activator.java | 82 +++++ .../kernel/ui/tests/AllLTTngUITests.java | 25 ++ .../.classpath | 7 + .../.gitignore | 5 + .../.options | 7 + .../.project | 34 ++ .../.settings/org.eclipse.jdt.core.prefs | 12 + .../META-INF/MANIFEST.MF | 16 + .../about.html | 28 ++ .../build.properties | 8 + .../icons/obj16/garland16.png | Bin 0 -> 631 bytes .../plugin.properties | 84 +++++ .../plugin.xml | 14 + .../pom.xml | 45 +++ .../kernel/ui/views/PerspectiveFactory.java | 103 ++++++ .../lttng2/kernel/ui/Activator.java | 113 +++++++ .../.gitignore | 5 + org.eclipse.linuxtools.lttng2.kernel/.project | 17 + .../build.properties | 5 + .../epl-v10.html | 256 +++++++++++++++ .../feature.properties | 145 +++++++++ .../feature.xml | 67 ++++ .../license.html | 164 ++++++++++ org.eclipse.linuxtools.lttng2.kernel/p2.inf | 3 + org.eclipse.linuxtools.lttng2.kernel/pom.xml | 64 ++++ .../sourceTemplateFeature/feature.properties | 1 + .../ChangeLog | 7 - .../test.xml | 55 ---- org.eclipse.linuxtools.lttng2.ui/ChangeLog | 301 ------------------ 61 files changed, 1973 insertions(+), 668 deletions(-) delete mode 100644 org.eclipse.linuxtools.lttng2.core.tests/ChangeLog delete mode 100644 org.eclipse.linuxtools.lttng2.core.tests/test.xml delete mode 100644 org.eclipse.linuxtools.lttng2.core/ChangeLog create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/.classpath create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/.gitignore create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/.project create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/.settings/org.eclipse.jdt.core.prefs create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/META-INF/MANIFEST.MF create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/build.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/plugin.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/pom.xml create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/Activator.java create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/AllLTTngCoreTests.java create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/.classpath create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/.gitignore create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/.options create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/.project create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/.settings/org.eclipse.jdt.core.prefs create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/META-INF/MANIFEST.MF create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/about.html create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/build.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/plugin.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/pom.xml create mode 100644 org.eclipse.linuxtools.lttng2.kernel.core/src/org/eclipse/linuxtools/lttng2/kernel/core/Activator.java create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/.classpath create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/.gitignore create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/.project create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/.settings/org.eclipse.jdt.core.prefs create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/META-INF/MANIFEST.MF create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/build.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/plugin.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/pom.xml create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/Activator.java create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/AllLTTngUITests.java create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/.classpath create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/.gitignore create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/.options create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/.project create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/.settings/org.eclipse.jdt.core.prefs create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/META-INF/MANIFEST.MF create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/about.html create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/build.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/icons/obj16/garland16.png create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/plugin.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/plugin.xml create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/pom.xml create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/kernel/ui/views/PerspectiveFactory.java create mode 100644 org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/ui/Activator.java create mode 100644 org.eclipse.linuxtools.lttng2.kernel/.gitignore create mode 100644 org.eclipse.linuxtools.lttng2.kernel/.project create mode 100644 org.eclipse.linuxtools.lttng2.kernel/build.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel/epl-v10.html create mode 100644 org.eclipse.linuxtools.lttng2.kernel/feature.properties create mode 100644 org.eclipse.linuxtools.lttng2.kernel/feature.xml create mode 100644 org.eclipse.linuxtools.lttng2.kernel/license.html create mode 100644 org.eclipse.linuxtools.lttng2.kernel/p2.inf create mode 100644 org.eclipse.linuxtools.lttng2.kernel/pom.xml create mode 100644 org.eclipse.linuxtools.lttng2.kernel/sourceTemplateFeature/feature.properties delete mode 100644 org.eclipse.linuxtools.lttng2.ui.tests/ChangeLog delete mode 100644 org.eclipse.linuxtools.lttng2.ui.tests/test.xml delete mode 100644 org.eclipse.linuxtools.lttng2.ui/ChangeLog diff --git a/org.eclipse.linuxtools.lttng2.core.tests/ChangeLog b/org.eclipse.linuxtools.lttng2.core.tests/ChangeLog deleted file mode 100644 index 4202a323aa..0000000000 --- a/org.eclipse.linuxtools.lttng2.core.tests/ChangeLog +++ /dev/null @@ -1,72 +0,0 @@ -2010-12-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/tests/event/LttngTimestampTest.java: Added a proper test for toString() - -2010-11-23 Francois Chouinard Adjusted tests to new API - - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManagerTextTest.java: - * src/org/eclipse/linuxtools/lttng/state/resource/LTTngStateResourceTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngEventTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngEventTypeTest.java: - * src/org/eclipse/linuxtools/lttng/tests/state/handlers/after/StateAfterUpdateHandlers.java: - * src/org/eclipse/linuxtools/lttng/tests/state/handlers/before/StateBeforeUpdateHandlers.java: - -2010-11-10 Francois Chouinard - - * src/org/eclipse/linuxxtools/lttng/tests/headless/JniTraceTest.java: New file. - * src/org/eclipse/linuxxtools/lttng/tests/headless/LttngTraceTest.java: New file. - * src/org/eclipse/linuxxtools/lttng/tests/headless/TmfTraceTest.java: New file. - -2010-11-09 Francois Chouinard - - Suppress warning for non-externalized strings - * src/org/eclipse/linuxtools/lttng/control/LTTngSyntheticEventProviderTest.java: - * src/org/eclipse/linuxtools/lttng/LttngTestPreparation.java: - * src/org/eclipse/linuxtools/lttng/model/LTTngTreeNodeTest.java: - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManagerTextTest.java: - * src/org/eclipse/linuxtools/lttng/state/resource/LTTngStateResourceTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/AllLttngTests.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngEventContentTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngEventFieldTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngEventReferenceTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngEventTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngEventTypeTest.java: - * src/org/eclipse/linuxtools/lttng/tests/event/LttngTimestampTest.java: - * src/org/eclipse/linuxtools/lttng/tests/jni/AllJniTests.java: - * src/org/eclipse/linuxtools/lttng/tests/jni/Combinations.java: - * src/org/eclipse/linuxtools/lttng/tests/jni/JniEventTest.java: - * src/org/eclipse/linuxtools/lttng/tests/jni/JniMarkerFieldTest.java: - * src/org/eclipse/linuxtools/lttng/tests/jni/JniMarkerTest.java: - * src/org/eclipse/linuxtools/lttng/tests/jni/JniTracefileTest.java: - * src/org/eclipse/linuxtools/lttng/tests/jni/JniTraceTest.java: - * src/org/eclipse/linuxtools/lttng/tests/LTTngCoreTestPlugin.java: - * src/org/eclipse/linuxtools/lttng/tests/state/handlers/AbsStateUpdate.java: - * src/org/eclipse/linuxtools/lttng/tests/state/handlers/after/StateAfterUpdateHandlers.java: - * src/org/eclipse/linuxtools/lttng/tests/state/handlers/before/StateBeforeUpdateHandlers.java: - * src/org/eclipse/linuxtools/lttng/tests/state/tests/handlers/AbsStateUpdate.java: - * src/org/eclipse/linuxtools/lttng/tests/state/TestStateManager.java: - * src/org/eclipse/linuxtools/lttng/tests/trace/LTTngExperimentTest.java: - * src/org/eclipse/linuxtools/lttng/tests/trace/LTTngTextTraceTest.java: - * src/org/eclipse/linuxtools/lttng/tests/trace/LTTngTraceTest.java: - -2010-10-27 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/LttngTestPreparation.java (prepareExperimentContext): Event provider adjustment - -2010-10-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/tests/trace/LTTngExperimentTest.java (fStartTime): Fixed unit test for updated start time -2010-09-17 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/control/LTTngSyntheticEventProviderTest.java: Adjusted unit test - * src/org/eclipse/linuxtools/lttng/LttngTestPreparation.java: Adjusted unit test - -2010-09-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/control/LTTngSyntheticEventProviderTest.java: Problematic test - * src/org/eclipse/linuxtools/lttng/LttngTestPreparation.java: Problematic test - -2010-09-09 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/tests/AllLTTngCoreTests.java: Invoke new test - * src/org/eclipse/linuxtools/lttng/tests/trace/LTTngExperimentTest.java: New test \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.core.tests/test.xml b/org.eclipse.linuxtools.lttng2.core.tests/test.xml deleted file mode 100644 index 6fc78e9206..0000000000 --- a/org.eclipse.linuxtools.lttng2.core.tests/test.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/org.eclipse.linuxtools.lttng2.core/ChangeLog b/org.eclipse.linuxtools.lttng2.core/ChangeLog deleted file mode 100644 index 242762bb86..0000000000 --- a/org.eclipse.linuxtools.lttng2.core/ChangeLog +++ /dev/null @@ -1,167 +0,0 @@ -2010-12-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/event/LttngTimestamp.java: Fixed a rounding error - -2010-12-13 Bernd Hufmann - - * src/org/eclipse/linuxtools/lttng/LttngConstants.java: Added file header. - -2010-11-25 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManager.java: Clear the checkpoint data when a new experiment is selected - -2010-11-23 Francois Chouinard Providing int IDs for the Stats HashMaps - - * src/org/eclipse/linuxtools/lttng/LttngConstants.java: - * src/org/eclipse/linuxtools/lttng/event/LttngEvent.java: - * src/org/eclipse/linuxtools/lttng/event/LttngEventType.java: - * src/org/eclipse/linuxtools/lttng/model/LTTngTreeNodeGeneric.java: - * src/org/eclipse/linuxtools/lttng/state/evProcessor/state/AbsStateUpdate.java: - * src/org/eclipse/linuxtools/lttng/state/evProcessor/state/StateUpdateHandlers.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngExecutionState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngProcessState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngTraceState.java: - * src/org/eclipse/linuxtools/lttng/state/resource/ILttngStateContext.java: - * src/org/eclipse/linuxtools/lttng/trace/LTTngTextTrace.java: - - * src/org/eclipse/linuxtools/lttng/state/trace/StateTraceManager.java: Adjusted buffering between checkpoints - * src/org/eclipse/linuxtools/lttng/trace/LTTngExperiment.java: Ditto - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java: Ditto - -2010-11-19 Francois Chouinard - - * build.properties: Cosmetic spacing - * src/org/eclipse/linuxtools/lttng/trace/LTTngTextTrace.java: Suppress warning for non-externalized strings - -2010-11-10 Francois Chouinard - - Suppress warning for non-externalized strings - * src/org/eclipse/linuxtools/lttng/control/LttngSyntheticEventProvider.java: - * src/org/eclipse/linuxtools/lttng/event/LttngEvent.java: - * src/org/eclipse/linuxtools/lttng/event/LttngEventContent.java: - * src/org/eclipse/linuxtools/lttng/event/LttngEventReference.java: - * src/org/eclipse/linuxtools/lttng/event/LttngEventType.java: - * src/org/eclipse/linuxtools/lttng/event/LttngLocation.java: - * src/org/eclipse/linuxtools/lttng/event/LttngTimestamp.java: - * src/org/eclipse/linuxtools/lttng/LTTngCorePlugin.java: - * src/org/eclipse/linuxtools/lttng/model/LTTngTreeNodeGeneric.java: - * src/org/eclipse/linuxtools/lttng/request/LttngSyntEventRequest.java: - * src/org/eclipse/linuxtools/lttng/state/evProcessor/state/StateUpdateHandlers.java: - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManager.java: - * src/org/eclipse/linuxtools/lttng/state/experiment/StateManagerFactory.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngBdevState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LTTngCPUState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngExecutionState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngIRQState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngProcessState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngSoftIRQState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngTraceState.java: - * src/org/eclipse/linuxtools/lttng/state/model/LttngTrapState.java: - * src/org/eclipse/linuxtools/lttng/state/resource/ILTTngStateResource.java: - * src/org/eclipse/linuxtools/lttng/state/resource/LTTngStateResource.java: - * src/org/eclipse/linuxtools/lttng/state/StateStrings.java: - * src/org/eclipse/linuxtools/lttng/state/trace/StateTraceManager.java: - * src/org/eclipse/linuxtools/lttng/trace/LTTngTextTrace.java: - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java: - * src/org/eclipse/linuxtools/lttng/trace/LTTngTraceVersion.java: - -2010-11-09 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/trace/LTTngExperiment.java (getNextEvent): Fix for NullPointerException - - Suppress warning for non-externalized strings - * src/org/eclipse/linuxtools/lttng/event/LttngEvent.java (toString): - * src/org/eclipse/linuxtools/lttng/event/LttngEventContent.java (toString): - * src/org/eclipse/linuxtools/lttng/event/LttngEventField.java (toString): - * src/org/eclipse/linuxtools/lttng/event/LttngEventType.java (toString): - * src/org/eclipse/linuxtools/lttng/event/LttngTimestamp.java (toString): - * src/org/eclipse/linuxtools/lttng/state/evProcessor/AbsEventToHandlerResolver.java (process): - * src/org/eclipse/linuxtools/lttng/state/evProcessor/state/AbsStateProcessing.java (getAFieldLong): - (getAFieldString): - (sendNoFieldFoundMsg): - * src/org/eclipse/linuxtools/lttng/state/evProcessor/state/AbsStateUpdate.java (pop_state): - (pop_function): - * src/org/eclipse/linuxtools/lttng/state/model/LttngExecutionState.java (toString): - * src/org/eclipse/linuxtools/lttng/state/model/LttngProcessState.java (toString): - * src/org/eclipse/linuxtools/lttng/state/model/LttngTraceState.java (toString): - * src/org/eclipse/linuxtools/lttng/state/model/LttngTrapState.java (toString): - * src/org/eclipse/linuxtools/lttng/state/trace/StateTraceManager.java (toString): - * src/org/eclipse/linuxtools/lttng/trace/LTTngExperiment.java (toString): - (LTTngExperiment): - (getNextEvent): Fix for Bug329764 - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java (toString): - * src/org/eclipse/linuxtools/lttng/trace/LTTngTraceVersion.java (toString): - * src/org/eclipse/linuxtools/lttng/TraceDebug.java: - -2010-10-29 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/event/LttngEventContent.java (getFields): Cosmetic change - * src/org/eclipse/linuxtools/lttng/trace/LTTngExperiment.java (getNextEvent): Oprimization when only 1 trace - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java: New hshing algorithm - -2010-10-27 Francois Chouinard - - * Implement enhanced request coalescing across providers, request cancellation, multiple synth data providers and cleanup - * src/org/eclipse/linuxtools/lttng/control/LttngCoreProviderFactory.java - * src/org/eclipse/linuxtools/lttng/control/LttngSyntheticEventProvider.java: - * src/org/eclipse/linuxtools/lttng/LttngFactory.java: - * src/org/eclipse/linuxtools/lttng/request/ILttngSyntEventRequest.java: - * src/org/eclipse/linuxtools/lttng/request/LttngSyntEventRequest.java: - * src/org/eclipse/linuxtools/lttng/state/evProcessor/AbsEventToHandlerResolver.java: - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManager.java: - * src/org/eclipse/linuxtools/lttng/state/trace/StateTraceManager.java - -2010-10-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/event/LttngEvent.java: Implement cloning - * src/org/eclipse/linuxtools/lttng/event/LttngEventContent.java: Implement cloning - * src/org/eclipse/linuxtools/lttng/event/LttngEventField.java: Implement cloning - * src/org/eclipse/linuxtools/lttng/event/LttngEventReference.java (clone): Implement cloning - * src/org/eclipse/linuxtools/lttng/event/LttngEventSource.java (clone): Implement cloning - * src/org/eclipse/linuxtools/lttng/event/LttngEventType.java (clone): Implement cloning - * src/org/eclipse/linuxtools/lttng/event/LttngTimestamp.java (clone): Implement cloning - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManager.java: (StateExperimentManager): Counter fix - (buildCheckPoints): Proper timestamp cloning - (.handleData): Per-trace event counter (bug...) - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java (currentLttngEvent): Make the event unique (single) - (LTTngTrace): Fix the trace time range to start at first event - -2010-10-14 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/control/LttngSyntheticEventProvider.java: Handle processing through a coalesced request - * src/org/eclipse/linuxtools/lttng/request/LttngBaseEventRequest.java: Removed references to trace and trace model - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManager.java: Replaced map key from trace path (String) to actual trace (ITmfTrace) - -2010-10-13 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/control/LttngSyntheticEventProvider.java: Removed unecessary ACK event - * src/org/eclipse/linuxtools/lttng/event/LttngSyntheticEvent.java: Removed unecessary ACK event - * src/org/eclipse/linuxtools/lttng/state/model/LttngExecutionState.java (toString): Added - * src/org/eclipse/linuxtools/lttng/state/model/LttngProcessState.java (toString): Added - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java: Cleanup comment - -2010-09-17 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/control/LttngSyntheticEventProvider.java: Adjusted to new handleData() API - * src/org/eclipse/linuxtools/lttng/event/LttngEvent.java: Adjusted to new handleData() API - * src/org/eclipse/linuxtools/lttng/request/LttngSyntEventRequest.java: Adjusted to new handleData() API - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManager.java: Adjusted to new handleData() API - * src/org/eclipse/linuxtools/lttng/state/trace/StateTraceManager.java: Adjusted to new handleData() API - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java: Adjusted to new handleData() API - -2010-09-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/trace/LTTngExperiment.java: ExecutionType update - * src/org/eclipse/linuxtools/lttng/state/experiment/StateExperimentManager.java: ExecutionType update - * src/org/eclipse/linuxtools/lttng/request/LttngSyntEventRequest.java: ExecutionType update - * src/org/eclipse/linuxtools/lttng/control/LttngSyntheticEventProvider.java: ExecutionType update - -2010-09-09 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/trace/LTTngTrace.java: Fixed a ranking problem on a seek() - * src/org/eclipse/linuxtools/lttng/trace/LTTngExperiment.java: New class - -2010-07-29 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/state/evProcessor/state/StateUpdateHandlers.java: Fixed state of running process - * src/org/eclipse/linuxtools/lttng/state/evProcessor/AbsEventToHandlerResolver.java: Optimized condition handling diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/.classpath b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/.gitignore b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.gitignore new file mode 100644 index 0000000000..8d94ef8deb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.gitignore @@ -0,0 +1,5 @@ +bin +@dot +javaCompiler...args +build.xml +target diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/.project b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.project new file mode 100644 index 0000000000..da6c23079b --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.project @@ -0,0 +1,34 @@ + + + org.eclipse.linuxtools.lttng2.kernel.core.tests + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + org.eclipse.pde.api.tools.apiAnalysisBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + org.eclipse.pde.api.tools.apiAnalysisNature + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/.settings/org.eclipse.jdt.core.prefs b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000000..1d817b7047 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +#Thu Nov 18 17:14:29 EST 2010 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/META-INF/MANIFEST.MF b/org.eclipse.linuxtools.lttng2.kernel.core.tests/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..2551e41901 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/META-INF/MANIFEST.MF @@ -0,0 +1,15 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %Bundle-Name +Bundle-SymbolicName: org.eclipse.linuxtools.lttng2.kernel.core.tests +Bundle-Version: 0.1.0.qualifier +Bundle-Vendor: %Bundle-Vendor +Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Require-Bundle: org.junit;bundle-version="3.8.2", + org.eclipse.core.runtime;bundle-version="3.7.0", + org.eclipse.core.resources;bundle-version="3.7.100", + org.eclipse.linuxtools.lttng.core;bundle-version="0.4.0" +Bundle-Localization: plugin +Bundle-Activator: org.eclipse.linuxtools.lttng2.kernel.core.tests.Activator +Bundle-ActivationPolicy: lazy + diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/build.properties b/org.eclipse.linuxtools.lttng2.kernel.core.tests/build.properties new file mode 100644 index 0000000000..303135f9af --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/build.properties @@ -0,0 +1,5 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + plugin.properties \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/plugin.properties b/org.eclipse.linuxtools.lttng2.kernel.core.tests/plugin.properties new file mode 100644 index 0000000000..eab88dc1ee --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/plugin.properties @@ -0,0 +1,3 @@ +#Properties file for org.eclipse.linuxtools.lttng.tests +Bundle-Vendor = Eclipse Linux Tools +Bundle-Name = LTTng Core Unit Test Suite \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/pom.xml b/org.eclipse.linuxtools.lttng2.kernel.core.tests/pom.xml new file mode 100644 index 0000000000..777eb673b0 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/pom.xml @@ -0,0 +1,76 @@ + + + + 4.0.0 + + + linuxtools-lttng-parent + org.eclipse.linuxtools.lttng + 0.10.0-SNAPSHOT + + + org.eclipse.linuxtools.lttng2.kernel.core.tests + 0.1.0-SNAPSHOT + eclipse-test-plugin + + Linux Tools LTTng Core Unit Test Suite + + + + + + src + + **/*.java + + + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.2 + + + prepare + validate + + + + + + + + + + + run + + + + + + org.eclipse.tycho + tycho-surefire-plugin + ${tycho-version} + + org.eclipse.linuxtools.lttng2.core.tests + org.eclipse.linuxtools.lttng2.core.tests.AllLTTngCoreTests + false + false + org.eclipse.sdk.ide + + + + + + org.eclipse.linuxtools.lttng + diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/Activator.java b/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/Activator.java new file mode 100644 index 0000000000..ec53cb32b7 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/Activator.java @@ -0,0 +1,86 @@ +/******************************************************************************* + * Copyright (c) 2012 Ericsson + * + * All rights reserved. This program and the accompanying materials are + * made available under the terms of the Eclipse Public License v1.0 which + * accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Francois Chouinard - Initial API and implementation + *******************************************************************************/ + +package org.eclipse.linuxtools.lttng2.kernel.core.tests; + +import org.eclipse.core.runtime.Plugin; +import org.osgi.framework.BundleContext; + +/** + * Activator + *

+ * The activator class controls the plug-in life cycle + */ +public class Activator extends Plugin { + + // ------------------------------------------------------------------------ + // Attributes + // ------------------------------------------------------------------------ + + /** + * The plug-in ID + */ + public static final String PLUGIN_ID = "org.eclipse.linuxtools.lttng2.core.tests"; //$NON-NLS-1$ + + /** + * The shared instance + */ + private static Activator plugin; + + // ------------------------------------------------------------------------ + // Constructors + // ------------------------------------------------------------------------ + + /** + * The constructor + */ + public Activator() { + } + + // ------------------------------------------------------------------------ + // Accessors + // ------------------------------------------------------------------------ + + /** + * Returns the shared instance + * + * @return the shared instance + */ + public static Activator getDefault() { + return plugin; + } + + // ------------------------------------------------------------------------ + // Operators + // ------------------------------------------------------------------------ + + /* + * (non-Javadoc) + * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) + */ + @Override + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + } + + /* + * (non-Javadoc) + * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) + */ + @Override + public void stop(BundleContext context) throws Exception { + plugin = null; + super.stop(context); + } + +} diff --git a/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/AllLTTngCoreTests.java b/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/AllLTTngCoreTests.java new file mode 100644 index 0000000000..21b7679dfb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core.tests/src/org/eclipse/linuxtools/lttng2/kernel/core/tests/AllLTTngCoreTests.java @@ -0,0 +1,33 @@ +/******************************************************************************* + * Copyright (c) 2012 Ericsson + * + * All rights reserved. This program and the accompanying materials are + * made available under the terms of the Eclipse Public License v1.0 which + * accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Francois Chouinard - Initial API and implementation + *******************************************************************************/ + +package org.eclipse.linuxtools.lttng2.kernel.core.tests; + +import junit.framework.Test; +import junit.framework.TestSuite; + +/** + * AllLTTngCoreTests + *

+ * LTTng Core test suite. + *

+ */ +public class AllLTTngCoreTests { + + public static Test suite() { + TestSuite suite = new TestSuite(AllLTTngCoreTests.class.getName()); + // $JUnit-BEGIN$ + // $JUnit-END$ + return suite; + } + +} diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/.classpath b/org.eclipse.linuxtools.lttng2.kernel.core/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/.gitignore b/org.eclipse.linuxtools.lttng2.kernel.core/.gitignore new file mode 100644 index 0000000000..8d94ef8deb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/.gitignore @@ -0,0 +1,5 @@ +bin +@dot +javaCompiler...args +build.xml +target diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/.options b/org.eclipse.linuxtools.lttng2.kernel.core/.options new file mode 100644 index 0000000000..eac992d7cb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/.options @@ -0,0 +1,3 @@ +org.eclipse.linuxtools.lttng.core/debug=false +org.eclipse.linuxtools.lttng.core/info=false +org.eclipse.linuxtools.lttng.core/warn=false diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/.project b/org.eclipse.linuxtools.lttng2.kernel.core/.project new file mode 100644 index 0000000000..c0a4660e9e --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/.project @@ -0,0 +1,34 @@ + + + org.eclipse.linuxtools.lttng2.kernel.core + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + org.eclipse.pde.api.tools.apiAnalysisBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + org.eclipse.pde.api.tools.apiAnalysisNature + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/.settings/org.eclipse.jdt.core.prefs b/org.eclipse.linuxtools.lttng2.kernel.core/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000000..a1a3cebfa2 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +#Thu Nov 18 17:13:39 EST 2010 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/META-INF/MANIFEST.MF b/org.eclipse.linuxtools.lttng2.kernel.core/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..22257cfa54 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/META-INF/MANIFEST.MF @@ -0,0 +1,12 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %Bundle-Name +Bundle-SymbolicName: org.eclipse.linuxtools.lttng2.kernel.core;singleton:=true +Bundle-Version: 0.1.0.qualifier +Bundle-Activator: org.eclipse.linuxtools.lttng2.kernel.core.Activator +Bundle-Vendor: %Bundle-Vendor +Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-ActivationPolicy: lazy +Export-Package: org.eclipse.linuxtools.lttng2.kernel.core +Bundle-Localization: plugin +Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0" diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/about.html b/org.eclipse.linuxtools.lttng2.kernel.core/about.html new file mode 100644 index 0000000000..c258ef55d8 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/about.html @@ -0,0 +1,28 @@ + + + + +About + + +

About This Content

+ +

June 5, 2006

+

License

+ +

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise +indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +at http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

If you did not receive this Content directly from the Eclipse Foundation, the Content is +being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was +provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content +and such source code may be obtained at http://www.eclipse.org.

+ + + \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/build.properties b/org.eclipse.linuxtools.lttng2.kernel.core/build.properties new file mode 100644 index 0000000000..d944674ba0 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/build.properties @@ -0,0 +1,6 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + about.html,\ + plugin.properties diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/plugin.properties b/org.eclipse.linuxtools.lttng2.kernel.core/plugin.properties new file mode 100644 index 0000000000..b5e23b500e --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/plugin.properties @@ -0,0 +1,13 @@ +#******************************************************************************* +# Copyright (c) 2012 Ericsson +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# Ericsson - initial API and implementation +#******************************************************************************** + +Bundle-Vendor = Eclipse Linux Tools +Bundle-Name = LTTng Core \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/pom.xml b/org.eclipse.linuxtools.lttng2.kernel.core/pom.xml new file mode 100644 index 0000000000..788f993493 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/pom.xml @@ -0,0 +1,45 @@ + + + + 4.0.0 + + + linuxtools-lttng-parent + org.eclipse.linuxtools.lttng + 0.10.0-SNAPSHOT + + + org.eclipse.linuxtools.lttng2.kernel.core + 0.1.0-SNAPSHOT + eclipse-plugin + + Linux Tools LTTng Core Plug-in + + + + + + src + + **/*.java + + + + + + org.eclipse.tycho + tycho-source-plugin + + + + + org.eclipse.linuxtools.lttng2 + diff --git a/org.eclipse.linuxtools.lttng2.kernel.core/src/org/eclipse/linuxtools/lttng2/kernel/core/Activator.java b/org.eclipse.linuxtools.lttng2.kernel.core/src/org/eclipse/linuxtools/lttng2/kernel/core/Activator.java new file mode 100644 index 0000000000..898878d120 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.core/src/org/eclipse/linuxtools/lttng2/kernel/core/Activator.java @@ -0,0 +1,86 @@ +/******************************************************************************* + * Copyright (c) 2012 Ericsson + * + * All rights reserved. This program and the accompanying materials are + * made available under the terms of the Eclipse Public License v1.0 which + * accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Francois Chouinard - Initial API and implementation + *******************************************************************************/ + +package org.eclipse.linuxtools.lttng2.kernel.core; + +import org.eclipse.core.runtime.Plugin; +import org.osgi.framework.BundleContext; + +/** + * Activator + *

+ * The activator class controls the plug-in life cycle + */ +public class Activator extends Plugin { + + // ------------------------------------------------------------------------ + // Attributes + // ------------------------------------------------------------------------ + + /** + * The plug-in ID + */ + public static final String PLUGIN_ID = "org.eclipse.linuxtools.lttng2.core"; //$NON-NLS-1$ + + /** + * The shared instance + */ + private static Activator plugin; + + // ------------------------------------------------------------------------ + // Constructors + // ------------------------------------------------------------------------ + + /** + * The constructor + */ + public Activator() { + } + + // ------------------------------------------------------------------------ + // Accessors + // ------------------------------------------------------------------------ + + /** + * Returns the shared instance + * + * @return the shared instance + */ + public static Activator getDefault() { + return plugin; + } + + // ------------------------------------------------------------------------ + // Operators + // ------------------------------------------------------------------------ + + /* + * (non-Javadoc) + * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) + */ + @Override + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + } + + /* + * (non-Javadoc) + * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) + */ + @Override + public void stop(BundleContext context) throws Exception { + plugin = null; + super.stop(context); + } + +} diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.classpath b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.gitignore b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.gitignore new file mode 100644 index 0000000000..8d94ef8deb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.gitignore @@ -0,0 +1,5 @@ +bin +@dot +javaCompiler...args +build.xml +target diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.project b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.project new file mode 100644 index 0000000000..9c8b15bddb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.project @@ -0,0 +1,34 @@ + + + org.eclipse.linuxtools.lttng2.kernel.ui.tests + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + org.eclipse.pde.api.tools.apiAnalysisBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + org.eclipse.pde.api.tools.apiAnalysisNature + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.settings/org.eclipse.jdt.core.prefs b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000000..2d9698ae2c --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +#Thu Nov 18 17:14:55 EST 2010 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/META-INF/MANIFEST.MF b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..a2220e88c5 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/META-INF/MANIFEST.MF @@ -0,0 +1,17 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %Bundle-Name +Bundle-SymbolicName: org.eclipse.linuxtools.lttng2.kernel.ui.tests +Bundle-Version: 0.5.0.qualifier +Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-Vendor: %Bundle-Vendor +Require-Bundle: org.junit;bundle-version="3.8.2", + org.eclipse.linuxtools.lttng2.core;bundle-version="0.1.0", + org.eclipse.linuxtools.lttng2.ui;bundle-version="0.1.0", + org.eclipse.core.resources;bundle-version="3.7.0", + org.eclipse.core.runtime;bundle-version="3.7.0" +Bundle-Localization: plugin +Bundle-Activator: org.eclipse.linuxtools.lttng2.kernel.ui.tests.Activator +Bundle-ActivationPolicy: lazy +Import-Package: org.eclipse.ui.plugin + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/build.properties b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/build.properties new file mode 100644 index 0000000000..aa1a008269 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/build.properties @@ -0,0 +1,5 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + plugin.properties diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/plugin.properties b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/plugin.properties new file mode 100644 index 0000000000..671a585cef --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/plugin.properties @@ -0,0 +1,3 @@ +#Properties file for org.eclipse.linuxtools.lttng.ui.tests +Bundle-Vendor = Eclipse Linux Tools +Bundle-Name = LTTng UI Unit Test Suite \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/pom.xml b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/pom.xml new file mode 100644 index 0000000000..34a3cfe28e --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/pom.xml @@ -0,0 +1,53 @@ + + + + 4.0.0 + + + linuxtools-lttng-parent + org.eclipse.linuxtools.lttng + 0.10.0-SNAPSHOT + + + org.eclipse.linuxtools.lttng2.kernel.ui.tests + 0.1.0-SNAPSHOT + eclipse-test-plugin + + Linux Tools LTTng UI Unit Test Suite + + + + + + src + + **/*.java + + + + + + org.eclipse.tycho + tycho-surefire-plugin + ${tycho-version} + + org.eclipse.linuxtools.lttng.ui.tests + org.eclipse.linuxtools.lttng.ui.tests.AllLTTngUITests + true + true + org.eclipse.sdk.ide + + + + + + org.eclipse.linuxtools.lttng2 + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/Activator.java b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/Activator.java new file mode 100644 index 0000000000..b9801688f1 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/Activator.java @@ -0,0 +1,82 @@ +/******************************************************************************* + * Copyright (c) 2012 Ericsson + * + * All rights reserved. This program and the accompanying materials are + * made available under the terms of the Eclipse Public License v1.0 which + * accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Francois Chouinard - Initial API and implementation + *******************************************************************************/ + +package org.eclipse.linuxtools.lttng2.kernel.ui.tests; + +import org.eclipse.ui.plugin.AbstractUIPlugin; +import org.osgi.framework.BundleContext; + +/** + * The activator class controls the plug-in life cycle + */ +public class Activator extends AbstractUIPlugin { + + // ------------------------------------------------------------------------ + // Attributes + // ------------------------------------------------------------------------ + + /** + * The plug-in ID + */ + public static final String PLUGIN_ID = "org.eclipse.linuxtools.lttng2.ui.tests"; //$NON-NLS-1$ + + /** + * The shared instance + */ + private static Activator plugin; + + // ------------------------------------------------------------------------ + // Constructors + // ------------------------------------------------------------------------ + + /** + * The constructor + */ + public Activator() { + } + + // ------------------------------------------------------------------------ + // Accessors + // ------------------------------------------------------------------------ + + /** + * Returns the shared instance + * + * @return the shared instance + */ + public static Activator getDefault() { + return plugin; + } + + // ------------------------------------------------------------------------ + // AbstractUIPlugin + // ------------------------------------------------------------------------ + + /* (non-Javadoc) + * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) + */ + @Override + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + } + + /* (non-Javadoc) + * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) + */ + @Override + public void stop(BundleContext context) throws Exception { + plugin = null; + super.stop(context); + } + +} \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/AllLTTngUITests.java b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/AllLTTngUITests.java new file mode 100644 index 0000000000..a351506d87 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui.tests/src/org/eclipse/linuxtools/lttng2/kernel/ui/tests/AllLTTngUITests.java @@ -0,0 +1,25 @@ +/******************************************************************************* + * Copyright (c) 2012 Ericsson + * + * All rights reserved. This program and the accompanying materials are + * made available under the terms of the Eclipse Public License v1.0 which + * accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Francois Chouinard - Initial API and implementation + *******************************************************************************/ + +package org.eclipse.linuxtools.lttng2.kernel.ui.tests; + +import junit.framework.Test; +import junit.framework.TestSuite; + +public class AllLTTngUITests { + public static Test suite() { + TestSuite suite = new TestSuite(AllLTTngUITests.class.getName()); + //$JUnit-BEGIN$ + //$JUnit-END$ + return suite; + } +} diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/.classpath b/org.eclipse.linuxtools.lttng2.kernel.ui/.classpath new file mode 100644 index 0000000000..1fa3e6803d --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/.gitignore b/org.eclipse.linuxtools.lttng2.kernel.ui/.gitignore new file mode 100644 index 0000000000..8d94ef8deb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/.gitignore @@ -0,0 +1,5 @@ +bin +@dot +javaCompiler...args +build.xml +target diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/.options b/org.eclipse.linuxtools.lttng2.kernel.ui/.options new file mode 100644 index 0000000000..07483358d1 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/.options @@ -0,0 +1,7 @@ +org.eclipse.linuxtools.lttng.ui/debug=false +org.eclipse.linuxtools.lttng.ui/info=false +org.eclipse.linuxtools.lttng.ui/warn=false + +org.eclipse.linuxtools.lttng.ui/cfv=false +org.eclipse.linuxtools.lttng.ui/rv=false +org.eclipse.linuxtools.lttng.ui/sv=false diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/.project b/org.eclipse.linuxtools.lttng2.kernel.ui/.project new file mode 100644 index 0000000000..fd77c51cac --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/.project @@ -0,0 +1,34 @@ + + + org.eclipse.linuxtools.lttng2.kernel.ui + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + org.eclipse.pde.api.tools.apiAnalysisBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + org.eclipse.pde.api.tools.apiAnalysisNature + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/.settings/org.eclipse.jdt.core.prefs b/org.eclipse.linuxtools.lttng2.kernel.ui/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000000..ce8bc95bf2 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +#Thu Nov 18 17:14:44 EST 2010 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/META-INF/MANIFEST.MF b/org.eclipse.linuxtools.lttng2.kernel.ui/META-INF/MANIFEST.MF new file mode 100644 index 0000000000..603cdbb4b8 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/META-INF/MANIFEST.MF @@ -0,0 +1,16 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %Bundle-Name +Bundle-SymbolicName: org.eclipse.linuxtools.lttng2.kernel.ui;singleton:=true +Bundle-Version: 0.1.0.qualifier +Bundle-Activator: org.eclipse.linuxtools.lttng2.kernel.ui.Activator +Bundle-Vendor: %Bundle-Vendor +Require-Bundle: org.eclipse.ui;bundle-version="3.7.0", + org.eclipse.ui.ide;bundle-version="3.7.0", + org.eclipse.core.runtime;bundle-version="3.7.0", + org.eclipse.linuxtools.lttng2.core;bundle-version="0.1.0", + org.eclipse.linuxtools.tmf.ui;bundle-version="0.5.0" +Bundle-RequiredExecutionEnvironment: JavaSE-1.6 +Bundle-ActivationPolicy: lazy +Bundle-Localization: plugin + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/about.html b/org.eclipse.linuxtools.lttng2.kernel.ui/about.html new file mode 100644 index 0000000000..c258ef55d8 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/about.html @@ -0,0 +1,28 @@ + + + + +About + + +

About This Content

+ +

June 5, 2006

+

License

+ +

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise +indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +at http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

If you did not receive this Content directly from the Eclipse Foundation, the Content is +being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was +provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content +and such source code may be obtained at http://www.eclipse.org.

+ + + \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/build.properties b/org.eclipse.linuxtools.lttng2.kernel.ui/build.properties new file mode 100644 index 0000000000..864e9f8762 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/build.properties @@ -0,0 +1,8 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + plugin.xml,\ + icons/,\ + about.html,\ + plugin.properties diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/icons/obj16/garland16.png b/org.eclipse.linuxtools.lttng2.kernel.ui/icons/obj16/garland16.png new file mode 100644 index 0000000000000000000000000000000000000000..74f975163831c5753da2a69b1cb04eed2342d700 GIT binary patch literal 631 zcmV--0*L*IP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L00F}Q00F}RI(wh600007bV*G`2iXW7 z5hD*up)Z{P00H+&L_t(I%cYV}NYh~)ho9g0xxYziI2Rd-GIAZV;beHBR$7QWw`->crrrx{ZjwJ^M?U8KnTIrtxwYq*{RcE^e00AUZ zF&bp`rY(j}4~x1Hip8%0$g&JT;zyf}P|~^eH)Vj2xeoxCjBRz{Om>y#T`d5-3caMM zMUPb0^Dgq1MZX_wM@Orw7EGlT@?So!hZCtN#Zmzw1Rxk58A8{n;?Dh>EXTv#otwj8 zHlw=GuEBS8geUi=aQ2#6tCY#+G63lHT9T_Vs?{nB&mN%D8qjGCT=ZTi@c1dOJ)Q$n zJ`@rFxnPi;HXHHTSw35P>FV6i4vR%PYC93^G9T`#Rw^_%8PRF=-{qprnZ1>)1h6tc zFGRJ9#$=)pjndfNO~mJ$GP&KOy9Wj&MN!V3a=C9GI%t;w_89kZ`TWWH%`Q()W|qdr z!ue20C^IvKTC*ClSgfsfwp;s4f$3>+ + + + + + + + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/pom.xml b/org.eclipse.linuxtools.lttng2.kernel.ui/pom.xml new file mode 100644 index 0000000000..d72ae1c632 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/pom.xml @@ -0,0 +1,45 @@ + + + + 4.0.0 + + + linuxtools-lttng-parent + org.eclipse.linuxtools.lttng + 0.10.0-SNAPSHOT + + + org.eclipse.linuxtools.lttng2.kernel.ui + 0.1.0-SNAPSHOT + eclipse-plugin + + Linux Tools LTTng UI Plug-in + + + + + + src + + **/*.java + + + + + + org.eclipse.tycho + tycho-source-plugin + + + + + org.eclipse.linuxtools.lttng2 + diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/kernel/ui/views/PerspectiveFactory.java b/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/kernel/ui/views/PerspectiveFactory.java new file mode 100644 index 0000000000..f19220b5d2 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/kernel/ui/views/PerspectiveFactory.java @@ -0,0 +1,103 @@ +/******************************************************************************* + * Copyright (c) 2012 Ericsson + * + * All rights reserved. This program and the accompanying materials are + * made available under the terms of the Eclipse Public License v1.0 which + * accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Francois Chouinard - Initial API and implementation + *******************************************************************************/ + +package org.eclipse.linuxtools.lttng2.kernel.kernel.ui.views; + +import org.eclipse.linuxtools.tmf.ui.views.events.TmfEventsView; +import org.eclipse.linuxtools.tmf.ui.views.histogram.HistogramView; +import org.eclipse.ui.IFolderLayout; +import org.eclipse.ui.IPageLayout; +import org.eclipse.ui.IPerspectiveFactory; + +/** + * PerspectiveFactory + *

+ * The default LTTng perspective. + */ +public class PerspectiveFactory implements IPerspectiveFactory { + + // Perspective ID + public static final String ID = "org.eclipse.linuxtools.lttng2.ui.perspective"; //$NON-NLS-1$ + + // LTTng views + private static final String EVENTS_VIEW_ID = TmfEventsView.ID; + private static final String HISTOGRAM_VIEW_ID = HistogramView.ID; + + // Standard Eclipse views + private static final String PROJECT_VIEW_ID = IPageLayout.ID_PROJECT_EXPLORER; + private static final String PROPERTIES_VIEW_ID = IPageLayout.ID_PROP_SHEET; + private static final String BOOKMARKS_VIEW_ID = IPageLayout.ID_BOOKMARKS; + + /* + * (non-Javadoc) + * + * @see org.eclipse.ui.IPerspectiveFactory#createInitialLayout(org.eclipse.ui.IPageLayout) + */ + @Override + public void createInitialLayout(IPageLayout layout) { + + layout.setEditorAreaVisible(false); + + addFastViews(layout); + addViewShortcuts(layout); + addPerspectiveShortcuts(layout); + + // Create the top left folder + IFolderLayout topLeftFolder = layout.createFolder( + "topLeftFolder", IPageLayout.LEFT, 0.15f, IPageLayout.ID_EDITOR_AREA); //$NON-NLS-1$ + topLeftFolder.addView(PROJECT_VIEW_ID); + +// // Create the top right folder +// IFolderLayout topRightFolder = layout.createFolder( +// "topRightFolder", IPageLayout.TOP, 0.40f, IPageLayout.ID_EDITOR_AREA); //$NON-NLS-1$ + + // Create the middle right folder + IFolderLayout middleRightFolder = layout.createFolder( + "middleRightFolder", IPageLayout.BOTTOM, 0.40f, IPageLayout.ID_EDITOR_AREA); //$NON-NLS-1$ + middleRightFolder.addView(EVENTS_VIEW_ID); + + // Create the bottom right folder + IFolderLayout bottomRightFolder = layout.createFolder( + "bottomRightFolder", IPageLayout.BOTTOM, 0.50f, "middleRightFolder"); //$NON-NLS-1$ //$NON-NLS-2$ + bottomRightFolder.addView(HISTOGRAM_VIEW_ID); + bottomRightFolder.addView(PROPERTIES_VIEW_ID); + bottomRightFolder.addView(BOOKMARKS_VIEW_ID); + } + + /** + * Add fast views to the perspective + * + * @param layout + */ + private void addFastViews(IPageLayout layout) { + // TODO Auto-generated method stub + } + + /** + * Add view shortcuts to the perspective + * + * @param layout + */ + private void addViewShortcuts(IPageLayout layout) { + // TODO Auto-generated method stub + } + + /** + * Add perspective shortcuts to the perspective + * + * @param layout + */ + private void addPerspectiveShortcuts(IPageLayout layout) { + // TODO Auto-generated method stub + } + +} diff --git a/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/ui/Activator.java b/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/ui/Activator.java new file mode 100644 index 0000000000..0df2b6f446 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel.ui/src/org/eclipse/linuxtools/lttng2/kernel/ui/Activator.java @@ -0,0 +1,113 @@ +/******************************************************************************* + * Copyright (c) 2012 Ericsson + * + * All rights reserved. This program and the accompanying materials are + * made available under the terms of the Eclipse Public License v1.0 which + * accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Francois Chouinard - Initial API and implementation + *******************************************************************************/ + +package org.eclipse.linuxtools.lttng2.kernel.ui; + +import org.eclipse.jface.resource.ImageDescriptor; +import org.eclipse.jface.resource.ImageRegistry; +import org.eclipse.swt.graphics.Image; +import org.eclipse.ui.plugin.AbstractUIPlugin; +import org.osgi.framework.BundleContext; + +/** + * The activator class controls the plug-in life cycle + */ +public class Activator extends AbstractUIPlugin { + + // ------------------------------------------------------------------------ + // Attributes + // ------------------------------------------------------------------------ + + /** + * The plug-in ID + */ + public static final String PLUGIN_ID = "org.eclipse.linuxtools.lttng2.ui"; //$NON-NLS-1$ + + /** + * The shared instance + */ + private static Activator plugin; + + // ------------------------------------------------------------------------ + // Constructors + // ------------------------------------------------------------------------ + + /** + * The constructor + */ + public Activator() { + } + + // ------------------------------------------------------------------------ + // Accessors + // ------------------------------------------------------------------------ + + /** + * Returns the shared instance + * + * @return the shared instance + */ + public static Activator getDefault() { + return plugin; + } + + // ------------------------------------------------------------------------ + // AbstractUIPlugin + // ------------------------------------------------------------------------ + + /* (non-Javadoc) + * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) + */ + @Override + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + } + + /* (non-Javadoc) + * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) + */ + @Override + public void stop(BundleContext context) throws Exception { + plugin = null; + super.stop(context); + } + + /* (non-Javadoc) + * @see org.eclipse.ui.plugin.AbstractUIPlugin#initializeImageRegistry(org.eclipse.jface.resource.ImageRegistry) + */ + @Override + protected void initializeImageRegistry(ImageRegistry reg) { + } + + // ------------------------------------------------------------------------ + // Operations + // ------------------------------------------------------------------------ + + public Image getImageFromPath(String path) { + return getImageDescripterFromPath(path).createImage(); + } + + public ImageDescriptor getImageDescripterFromPath(String path) { + return AbstractUIPlugin.imageDescriptorFromPlugin(PLUGIN_ID, path); + } + + public Image getImageFromImageRegistry(String path) { + Image icon = getImageRegistry().get(path); + if (icon == null) { + icon = getImageDescripterFromPath(path).createImage(); + plugin.getImageRegistry().put(path, icon); + } + return icon; + } + +} diff --git a/org.eclipse.linuxtools.lttng2.kernel/.gitignore b/org.eclipse.linuxtools.lttng2.kernel/.gitignore new file mode 100644 index 0000000000..8d94ef8deb --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/.gitignore @@ -0,0 +1,5 @@ +bin +@dot +javaCompiler...args +build.xml +target diff --git a/org.eclipse.linuxtools.lttng2.kernel/.project b/org.eclipse.linuxtools.lttng2.kernel/.project new file mode 100644 index 0000000000..145c653648 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/.project @@ -0,0 +1,17 @@ + + + org.eclipse.linuxtools.lttng2.kernel + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/org.eclipse.linuxtools.lttng2.kernel/build.properties b/org.eclipse.linuxtools.lttng2.kernel/build.properties new file mode 100644 index 0000000000..42a39fdf46 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/build.properties @@ -0,0 +1,5 @@ +bin.includes = feature.xml,\ + epl-v10.html,\ + feature.properties,\ + p2.inf,\ + license.html diff --git a/org.eclipse.linuxtools.lttng2.kernel/epl-v10.html b/org.eclipse.linuxtools.lttng2.kernel/epl-v10.html new file mode 100644 index 0000000000..9321f4082e --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/epl-v10.html @@ -0,0 +1,256 @@ + + + + + + +Eclipse Public License - Version 1.0 + + + +

Eclipse Public License - v 1.0

+ +

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR +DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS +AGREEMENT.

+ +

1. DEFINITIONS

+ +

"Contribution" means:

+ +

a) in the case of the initial Contributor, the initial +code and documentation distributed under this Agreement, and

+

b) in the case of each subsequent Contributor:

+

i) changes to the Program, and

+

ii) additions to the Program;

+

where such changes and/or additions to the Program +originate from and are distributed by that particular Contributor. A +Contribution 'originates' from a Contributor if it was added to the +Program by such Contributor itself or anyone acting on such +Contributor's behalf. Contributions do not include additions to the +Program which: (i) are separate modules of software distributed in +conjunction with the Program under their own license agreement, and (ii) +are not derivative works of the Program.

+ +

"Contributor" means any person or entity that distributes +the Program.

+ +

"Licensed Patents" mean patent claims licensable by a +Contributor which are necessarily infringed by the use or sale of its +Contribution alone or when combined with the Program.

+ +

"Program" means the Contributions distributed in accordance +with this Agreement.

+ +

"Recipient" means anyone who receives the Program under +this Agreement, including all Contributors.

+ +

2. GRANT OF RIGHTS

+ +

a) Subject to the terms of this Agreement, each +Contributor hereby grants Recipient a non-exclusive, worldwide, +royalty-free copyright license to reproduce, prepare derivative works +of, publicly display, publicly perform, distribute and sublicense the +Contribution of such Contributor, if any, and such derivative works, in +source code and object code form.

+ +

b) Subject to the terms of this Agreement, each +Contributor hereby grants Recipient a non-exclusive, worldwide, +royalty-free patent license under Licensed Patents to make, use, sell, +offer to sell, import and otherwise transfer the Contribution of such +Contributor, if any, in source code and object code form. This patent +license shall apply to the combination of the Contribution and the +Program if, at the time the Contribution is added by the Contributor, +such addition of the Contribution causes such combination to be covered +by the Licensed Patents. The patent license shall not apply to any other +combinations which include the Contribution. No hardware per se is +licensed hereunder.

+ +

c) Recipient understands that although each Contributor +grants the licenses to its Contributions set forth herein, no assurances +are provided by any Contributor that the Program does not infringe the +patent or other intellectual property rights of any other entity. Each +Contributor disclaims any liability to Recipient for claims brought by +any other entity based on infringement of intellectual property rights +or otherwise. As a condition to exercising the rights and licenses +granted hereunder, each Recipient hereby assumes sole responsibility to +secure any other intellectual property rights needed, if any. For +example, if a third party patent license is required to allow Recipient +to distribute the Program, it is Recipient's responsibility to acquire +that license before distributing the Program.

+ +

d) Each Contributor represents that to its knowledge it +has sufficient copyright rights in its Contribution, if any, to grant +the copyright license set forth in this Agreement.

+ +

3. REQUIREMENTS

+ +

A Contributor may choose to distribute the Program in object code +form under its own license agreement, provided that:

+ +

a) it complies with the terms and conditions of this +Agreement; and

+ +

b) its license agreement:

+ +

i) effectively disclaims on behalf of all Contributors +all warranties and conditions, express and implied, including warranties +or conditions of title and non-infringement, and implied warranties or +conditions of merchantability and fitness for a particular purpose;

+ +

ii) effectively excludes on behalf of all Contributors +all liability for damages, including direct, indirect, special, +incidental and consequential damages, such as lost profits;

+ +

iii) states that any provisions which differ from this +Agreement are offered by that Contributor alone and not by any other +party; and

+ +

iv) states that source code for the Program is available +from such Contributor, and informs licensees how to obtain it in a +reasonable manner on or through a medium customarily used for software +exchange.

+ +

When the Program is made available in source code form:

+ +

a) it must be made available under this Agreement; and

+ +

b) a copy of this Agreement must be included with each +copy of the Program.

+ +

Contributors may not remove or alter any copyright notices contained +within the Program.

+ +

Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution.

+ +

4. COMMERCIAL DISTRIBUTION

+ +

Commercial distributors of software may accept certain +responsibilities with respect to end users, business partners and the +like. While this license is intended to facilitate the commercial use of +the Program, the Contributor who includes the Program in a commercial +product offering should do so in a manner which does not create +potential liability for other Contributors. Therefore, if a Contributor +includes the Program in a commercial product offering, such Contributor +("Commercial Contributor") hereby agrees to defend and +indemnify every other Contributor ("Indemnified Contributor") +against any losses, damages and costs (collectively "Losses") +arising from claims, lawsuits and other legal actions brought by a third +party against the Indemnified Contributor to the extent caused by the +acts or omissions of such Commercial Contributor in connection with its +distribution of the Program in a commercial product offering. The +obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. In +order to qualify, an Indemnified Contributor must: a) promptly notify +the Commercial Contributor in writing of such claim, and b) allow the +Commercial Contributor to control, and cooperate with the Commercial +Contributor in, the defense and any related settlement negotiations. The +Indemnified Contributor may participate in any such claim at its own +expense.

+ +

For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages.

+ +

5. NO WARRANTY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS +PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS +OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, +ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY +OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely +responsible for determining the appropriateness of using and +distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement , including but not limited to +the risks and costs of program errors, compliance with applicable laws, +damage to or loss of data, programs or equipment, and unavailability or +interruption of operations.

+ +

6. DISCLAIMER OF LIABILITY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT +NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

+ +

7. GENERAL

+ +

If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable.

+ +

If Recipient institutes patent litigation against any entity +(including a cross-claim or counterclaim in a lawsuit) alleging that the +Program itself (excluding combinations of the Program with other +software or hardware) infringes such Recipient's patent(s), then such +Recipient's rights granted under Section 2(b) shall terminate as of the +date such litigation is filed.

+ +

All Recipient's rights under this Agreement shall terminate if it +fails to comply with any of the material terms or conditions of this +Agreement and does not cure such failure in a reasonable period of time +after becoming aware of such noncompliance. If all Recipient's rights +under this Agreement terminate, Recipient agrees to cease use and +distribution of the Program as soon as reasonably practicable. However, +Recipient's obligations under this Agreement and any licenses granted by +Recipient relating to the Program shall continue and survive.

+ +

Everyone is permitted to copy and distribute copies of this +Agreement, but in order to avoid inconsistency the Agreement is +copyrighted and may only be modified in the following manner. The +Agreement Steward reserves the right to publish new versions (including +revisions) of this Agreement from time to time. No one other than the +Agreement Steward has the right to modify this Agreement. The Eclipse +Foundation is the initial Agreement Steward. The Eclipse Foundation may +assign the responsibility to serve as the Agreement Steward to a +suitable separate entity. Each new version of the Agreement will be +given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version of the +Agreement under which it was received. In addition, after a new version +of the Agreement is published, Contributor may elect to distribute the +Program (including its Contributions) under the new version. Except as +expressly stated in Sections 2(a) and 2(b) above, Recipient receives no +rights or licenses to the intellectual property of any Contributor under +this Agreement, whether expressly, by implication, estoppel or +otherwise. All rights in the Program not expressly granted under this +Agreement are reserved.

+ +

This Agreement is governed by the laws of the State of New York and +the intellectual property laws of the United States of America. No party +to this Agreement will bring a legal action under this Agreement more +than one year after the cause of action arose. Each party waives its +rights to a jury trial in any resulting litigation.

+ + \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel/feature.properties b/org.eclipse.linuxtools.lttng2.kernel/feature.properties new file mode 100644 index 0000000000..99363fa7fd --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/feature.properties @@ -0,0 +1,145 @@ +#******************************************************************************* +# Copyright (c) 2009 Ericsson +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# Ericsson - initial API and implementation +#******************************************************************************** + +featureName=LTTng Kernel Analysis + +description=Plugins to integrate LTTng tools into the workbench. + +featureProvider=Eclipse Linux Tools + +copyright=Copyright 2012 Ericsson + +licenseURL=license.html + +license=\ +Eclipse Foundation Software User Agreement\n\ +February 1, 2011\n\ +\n\ +Usage Of Content\n\ +\n\ +THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR\n\ +OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY "CONTENT").\n\ +USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS\n\ +AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR\n\ +NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU\n\ +AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT\n\ +AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS\n\ +OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE\n\ +TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS\n\ +OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED\n\ +BELOW, THEN YOU MAY NOT USE THE CONTENT.\n\ +\n\ +Applicable Licenses\n\ +\n\ +Unless otherwise indicated, all Content made available by the\n\ +Eclipse Foundation is provided to you under the terms and conditions of\n\ +the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is\n\ +provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.\n\ +For purposes of the EPL, "Program" will mean the Content.\n\ +\n\ +Content includes, but is not limited to, source code, object code,\n\ +documentation and other files maintained in the Eclipse Foundation source code\n\ +repository ("Repository") in software modules ("Modules") and made available\n\ +as downloadable archives ("Downloads").\n\ +\n\ + - Content may be structured and packaged into modules to facilitate delivering,\n\ + extending, and upgrading the Content. Typical modules may include plug-ins ("Plug-ins"),\n\ + plug-in fragments ("Fragments"), and features ("Features").\n\ + - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)\n\ + in a directory named "plugins".\n\ + - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.\n\ + Each Feature may be packaged as a sub-directory in a directory named "features".\n\ + Within a Feature, files named "feature.xml" may contain a list of the names and version\n\ + numbers of the Plug-ins and/or Fragments associated with that Feature.\n\ + - Features may also include other Features ("Included Features"). Within a Feature, files\n\ + named "feature.xml" may contain a list of the names and version numbers of Included Features.\n\ +\n\ +The terms and conditions governing Plug-ins and Fragments should be\n\ +contained in files named "about.html" ("Abouts"). The terms and\n\ +conditions governing Features and Included Features should be contained\n\ +in files named "license.html" ("Feature Licenses"). Abouts and Feature\n\ +Licenses may be located in any directory of a Download or Module\n\ +including, but not limited to the following locations:\n\ +\n\ + - The top-level (root) directory\n\ + - Plug-in and Fragment directories\n\ + - Inside Plug-ins and Fragments packaged as JARs\n\ + - Sub-directories of the directory named "src" of certain Plug-ins\n\ + - Feature directories\n\ +\n\ +Note: if a Feature made available by the Eclipse Foundation is installed using the\n\ +Provisioning Technology (as defined below), you must agree to a license ("Feature \n\ +Update License") during the installation process. If the Feature contains\n\ +Included Features, the Feature Update License should either provide you\n\ +with the terms and conditions governing the Included Features or inform\n\ +you where you can locate them. Feature Update Licenses may be found in\n\ +the "license" property of files named "feature.properties" found within a Feature.\n\ +Such Abouts, Feature Licenses, and Feature Update Licenses contain the\n\ +terms and conditions (or references to such terms and conditions) that\n\ +govern your use of the associated Content in that directory.\n\ +\n\ +THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER\n\ +TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.\n\ +SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):\n\ +\n\ + - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)\n\ + - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)\n\ + - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)\n\ + - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)\n\ + - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)\n\ + - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)\n\ +\n\ +IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR\n\ +TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License\n\ +is provided, please contact the Eclipse Foundation to determine what terms and conditions\n\ +govern that particular Content.\n\ +\n\ +\n\Use of Provisioning Technology\n\ +\n\ +The Eclipse Foundation makes available provisioning software, examples of which include,\n\ +but are not limited to, p2 and the Eclipse Update Manager ("Provisioning Technology") for\n\ +the purpose of allowing users to install software, documentation, information and/or\n\ +other materials (collectively "Installable Software"). This capability is provided with\n\ +the intent of allowing such users to install, extend and update Eclipse-based products.\n\ +Information about packaging Installable Software is available at\n\ +http://eclipse.org/equinox/p2/repository_packaging.html ("Specification").\n\ +\n\ +You may use Provisioning Technology to allow other parties to install Installable Software.\n\ +You shall be responsible for enabling the applicable license agreements relating to the\n\ +Installable Software to be presented to, and accepted by, the users of the Provisioning Technology\n\ +in accordance with the Specification. By using Provisioning Technology in such a manner and\n\ +making it available in accordance with the Specification, you further acknowledge your\n\ +agreement to, and the acquisition of all necessary rights to permit the following:\n\ +\n\ + 1. A series of actions may occur ("Provisioning Process") in which a user may execute\n\ + the Provisioning Technology on a machine ("Target Machine") with the intent of installing,\n\ + extending or updating the functionality of an Eclipse-based product.\n\ + 2. During the Provisioning Process, the Provisioning Technology may cause third party\n\ + Installable Software or a portion thereof to be accessed and copied to the Target Machine.\n\ + 3. Pursuant to the Specification, you will provide to the user the terms and conditions that\n\ + govern the use of the Installable Software ("Installable Software Agreement") and such\n\ + Installable Software Agreement shall be accessed from the Target Machine in accordance\n\ + with the Specification. Such Installable Software Agreement must inform the user of the\n\ + terms and conditions that govern the Installable Software and must solicit acceptance by\n\ + the end user in the manner prescribed in such Installable Software Agreement. Upon such\n\ + indication of agreement by the user, the provisioning Technology will complete installation\n\ + of the Installable Software.\n\ +\n\ +Cryptography\n\ +\n\ +Content may contain encryption software. The country in which you are\n\ +currently may have restrictions on the import, possession, and use,\n\ +and/or re-export to another country, of encryption software. BEFORE\n\ +using any encryption software, please check the country's laws,\n\ +regulations and policies concerning the import, possession, or use, and\n\ +re-export of encryption software, to see if this is permitted.\n\ +\n\ +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.\n diff --git a/org.eclipse.linuxtools.lttng2.kernel/feature.xml b/org.eclipse.linuxtools.lttng2.kernel/feature.xml new file mode 100644 index 0000000000..aba142ee9b --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/feature.xml @@ -0,0 +1,67 @@ + + + + + + %description + + + + %copyright + + + + %license + + + + + + + + + + + + + + + + + + + + + diff --git a/org.eclipse.linuxtools.lttng2.kernel/license.html b/org.eclipse.linuxtools.lttng2.kernel/license.html new file mode 100644 index 0000000000..6e579a585b --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/license.html @@ -0,0 +1,164 @@ + + + + +Eclipse Foundation Software User Agreement + + + +

Eclipse Foundation Software User Agreement

+

February 1, 2011

+ +

Usage Of Content

+ +

THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR OTHER MATERIALS FOR OPEN SOURCE PROJECTS + (COLLECTIVELY "CONTENT"). USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS AGREEMENT AND/OR THE TERMS AND + CONDITIONS OF LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU AGREE THAT YOUR USE + OF THE CONTENT IS GOVERNED BY THIS AGREEMENT AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR + NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND + CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED BELOW, THEN YOU MAY NOT USE THE CONTENT.

+ +

Applicable Licenses

+ +

Unless otherwise indicated, all Content made available by the Eclipse + Foundation is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 + ("EPL"). A copy of the EPL is provided with this Content and is also + available at http://www.eclipse.org/legal/epl-v10.html. + For purposes of the EPL, "Program" will mean the Content.

+ +

Content includes, but is not limited to, source code, object code, +documentation and other files maintained in the Eclipse Foundation +source code + repository ("Repository") in software modules ("Modules") and made +available as downloadable archives ("Downloads").

+ +
    +
  • Content may be structured and packaged into modules to +facilitate delivering, extending, and upgrading the Content. Typical +modules may include plug-ins ("Plug-ins"), plug-in fragments +("Fragments"), and features ("Features").
  • +
  • Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java™ ARchive) in a directory named "plugins".
  • +
  • A Feature is a bundle of one or more Plug-ins and/or +Fragments and associated material. Each Feature may be packaged as a +sub-directory in a directory named "features". Within a Feature, files +named "feature.xml" may contain a list of the names and version numbers +of the Plug-ins + and/or Fragments associated with that Feature.
  • +
  • Features may also include other Features ("Included +Features"). Within a Feature, files named "feature.xml" may contain a +list of the names and version numbers of Included Features.
  • +
+ +

The terms and conditions governing Plug-ins and Fragments should be +contained in files named "about.html" ("Abouts"). The terms and +conditions governing Features and +Included Features should be contained in files named "license.html" +("Feature Licenses"). Abouts and Feature Licenses may be located in any + directory of a Download or Module +including, but not limited to the following locations:

+ +
    +
  • The top-level (root) directory
  • +
  • Plug-in and Fragment directories
  • +
  • Inside Plug-ins and Fragments packaged as JARs
  • +
  • Sub-directories of the directory named "src" of certain Plug-ins
  • +
  • Feature directories
  • +
+ +

Note: if a Feature made available by the Eclipse Foundation is +installed using the Provisioning Technology (as defined below), you must + agree to a license ("Feature Update License") during the +installation process. If the Feature contains Included Features, the +Feature Update License should either provide you with the terms and +conditions governing the Included Features or +inform you where you can locate them. Feature Update Licenses may be +found in the "license" property of files named "feature.properties" +found within a Feature. +Such Abouts, Feature Licenses, and Feature Update Licenses contain the +terms and conditions (or references to such terms and conditions) that +govern your use of the associated Content in +that directory.

+ +

THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER +TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS. + SOME OF THESE +OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):

+ + + +

IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND +CONDITIONS PRIOR TO USE OF THE CONTENT. If no About, Feature License, +or Feature Update License is provided, please +contact the Eclipse Foundation to determine what terms and conditions +govern that particular Content.

+ + +

Use of Provisioning Technology

+ +

The Eclipse Foundation makes available provisioning software, +examples of which include, but are not limited to, p2 and the Eclipse + Update Manager ("Provisioning Technology") for the purpose of +allowing users to install software, documentation, information and/or + other materials (collectively "Installable Software"). This +capability is provided with the intent of allowing such users to + install, extend and update Eclipse-based products. Information about +packaging Installable Software is available at http://eclipse.org/equinox/p2/repository_packaging.html + ("Specification").

+ +

You may use Provisioning Technology to allow other parties to install + Installable Software. You shall be responsible for enabling the + applicable license agreements relating to the Installable Software to + be presented to, and accepted by, the users of the Provisioning +Technology + in accordance with the Specification. By using Provisioning +Technology in such a manner and making it available in accordance with +the + Specification, you further acknowledge your agreement to, and the +acquisition of all necessary rights to permit the following:

+ +
    +
  1. A series of actions may occur ("Provisioning Process") in +which a user may execute the Provisioning Technology + on a machine ("Target Machine") with the intent of installing, +extending or updating the functionality of an Eclipse-based + product.
  2. +
  3. During the Provisioning Process, the Provisioning Technology +may cause third party Installable Software or a portion thereof to be + accessed and copied to the Target Machine.
  4. +
  5. Pursuant to the Specification, you will provide to the user +the terms and conditions that govern the use of the Installable + Software ("Installable Software Agreement") and such Installable +Software Agreement shall be accessed from the Target + Machine in accordance with the Specification. Such Installable +Software Agreement must inform the user of the terms and conditions that + govern + the Installable Software and must solicit acceptance by the end +user in the manner prescribed in such Installable Software Agreement. +Upon such + indication of agreement by the user, the provisioning Technology +will complete installation of the Installable Software.
  6. +
+ +

Cryptography

+ +

Content may contain encryption software. The country in which you are + currently may have restrictions on the import, possession, and use, +and/or re-export to + another country, of encryption software. BEFORE using any encryption +software, please check the country's laws, regulations and policies +concerning the import, + possession, or use, and re-export of encryption software, to see if +this is permitted.

+ +

Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.

+ + + \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.kernel/p2.inf b/org.eclipse.linuxtools.lttng2.kernel/p2.inf new file mode 100644 index 0000000000..030d966679 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/p2.inf @@ -0,0 +1,3 @@ +instructions.configure=\ +org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(location:http${#58}//download.eclipse.org/technology/linuxtools/updates-nightly,type:0,name:Linux Tools,enabled:false); \ +org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(location:http${#58}//download.eclipse.org/technology/linuxtools/updates-nightly,type:1,name:Linux Tools,enabled:false); diff --git a/org.eclipse.linuxtools.lttng2.kernel/pom.xml b/org.eclipse.linuxtools.lttng2.kernel/pom.xml new file mode 100644 index 0000000000..1db38c9b71 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/pom.xml @@ -0,0 +1,64 @@ + + + + 4.0.0 + + + linuxtools-lttng-parent + org.eclipse.linuxtools.lttng + 0.10.0-SNAPSHOT + + + org.eclipse.linuxtools.lttng2.kernel + 0.1.0-SNAPSHOT + eclipse-feature + + Linux Tools LTTng Kernal Analysis + + org.eclipse.linuxtools.lttng + + + + + org.eclipse.tycho.extras + tycho-source-feature-plugin + + + source-feature + package + + source-feature + + + + + + + + + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho-version} + + + attached-p2-metadata + package + + p2-metadata + + + + + + + diff --git a/org.eclipse.linuxtools.lttng2.kernel/sourceTemplateFeature/feature.properties b/org.eclipse.linuxtools.lttng2.kernel/sourceTemplateFeature/feature.properties new file mode 100644 index 0000000000..8d1c8b69c3 --- /dev/null +++ b/org.eclipse.linuxtools.lttng2.kernel/sourceTemplateFeature/feature.properties @@ -0,0 +1 @@ + diff --git a/org.eclipse.linuxtools.lttng2.ui.tests/ChangeLog b/org.eclipse.linuxtools.lttng2.ui.tests/ChangeLog deleted file mode 100644 index 8e86580ec0..0000000000 --- a/org.eclipse.linuxtools.lttng2.ui.tests/ChangeLog +++ /dev/null @@ -1,7 +0,0 @@ -2010-11-09 Francois Chouinard - - Suppress warning for non-externalized strings - * stubs/org/eclipse/linuxtools/lttng/stubs/LTTngTimestampStub.java: - * stubs/org/eclipse/linuxtools/lttng/stubs/LTTngTraceStub.java: - - \ No newline at end of file diff --git a/org.eclipse.linuxtools.lttng2.ui.tests/test.xml b/org.eclipse.linuxtools.lttng2.ui.tests/test.xml deleted file mode 100644 index 6023af7c3f..0000000000 --- a/org.eclipse.linuxtools.lttng2.ui.tests/test.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/org.eclipse.linuxtools.lttng2.ui/ChangeLog b/org.eclipse.linuxtools.lttng2.ui/ChangeLog deleted file mode 100644 index efe7abac14..0000000000 --- a/org.eclipse.linuxtools.lttng2.ui/ChangeLog +++ /dev/null @@ -1,301 +0,0 @@ -2011-02-22 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java: Fix for Bug337859 (check for NPE) - -2011-01-12 Bernd Hufmann Fix for Bug 333114 - - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/KernelStatisticsData.java: Update statistic handling for processes that change name at event of type "exec" and after fork - -2011-01-12 Bernd Hufmann Fix or Bug 333486 - - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTimeUpdateView.java (synchToTime): Added missing update of ParamsUpdater - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java (createPartControl): Removed duplicate "add listeners"-calls - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramView.java (currentTimeUpdated): Changed setting of center position - (currentEventChangeNotification): Added time range validation - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvas.java (setWindowCenterPosition): Fixed time range validation - -2010-12-13 Bernd Hufmann - - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/KernelStatisticsData.java (KeyHelper): Updated comment - -2010-12-10 Bernd Hufmann - - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/FixedArray.java (hashCode): Better hashing algorithm - -2010-12-08 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java: Fix the icon path - * src/org/eclipse/linuxtools/lttng/ui/views/resources/ResourcesView.java: Fix the icon path - -2010-11-25 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/PerspectiveFactory.java: Removed TimeFrame View and the default LTTng perspective - -2010-11-23 Francois Chouinard Added support for Stats tracing (in java) - no bug - - * .options: Added the SV tracing option - * src/org/eclipse/linuxtools/lttng/ui/TraceDebug.java: Handling of the SV trace file - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/StatisticsTreeNode.java: Comparable + getContent() for improved tracing - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/StatisticsView.java: SV tracing points - -2010-11-22 Francois Chouinard - - * plugin.xml: Fixed the LTTng project nature ID - * src/org/eclipse/linuxtools/lttng/ui/views/project/LTTngProjectNature.java: Ditto. - -2010-11-10 Francois Chouinard - - Suppress warning for non-externalized strings - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeComponent.java: - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeComposite.java: - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeEvent.java: - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeEventProcess.java: - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeEventResource.java: - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeResourceFactory.java: - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeViewerProvider.java: - * src/org/eclipse/linuxtools/lttng/ui/views/common/ParamsUpdater.java: - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/evProcessor/FlowAfterUpdateHandlers.java: - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/evProcessor/FlowBeforeUpdateHandlers.java: - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/model/FlowProcessContainer.java: - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/ImportTraceWizardPage.java: - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/NewExperimentDialog.java: - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/TraceErrorDialog.java: - * src/org/eclipse/linuxtools/lttng/ui/views/resources/evProcessor/ResourcesFinishUpdateHandler.java: - * src/org/eclipse/linuxtools/lttng/ui/views/resources/ResourcesView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/timeframe/SpinnerGroup.java: - -2010-11-09 Francois Chouinard - - Externalized Strings - * src/org/eclipse/linuxtools/lttng/ui/views/events/Messages.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/events/messages.properties: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/Messages.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/messages.properties: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/Messages.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/messages.properties: New file. - - Suppress warning for non-externalized strings - * src/org/eclipse/linuxtools/lttng/ui/LTTngUiPlugin.java (PLUGIN_ID): - * src/org/eclipse/linuxtools/lttng/ui/TraceDebug.java: - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTimeUpdateView.java (processingCompleted): - (synchToTimeRange): - (tsfTmProcessSelEvent): - (processDataRequest): - (.handleData): - (.handleCompleted): - (modelInputChanged): - * src/org/eclipse/linuxtools/lttng/ui/views/control/ControlView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java (PROCESS_COLUMN): - (ViewContentProvider.inputChanged): - (ViewProcessFilter.select): - (createPartControl): - (makeActions): - (initialExperimentDataRequest): - (checkForSWTBugItemHeightAdjustement): - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/evProcessor/AbsFlowTRangeUpdate.java (addLocalProcess): - (makeDraw): - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/evProcessor/FlowFinishUpdateHandler.java (process): - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/messages.properties: - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/model/FlowProcessContainer.java (toString): - * src/org/eclipse/linuxtools/lttng/ui/views/events/EventsTable.java (TIMESTAMP_COLUMN): - * src/org/eclipse/linuxtools/lttng/ui/views/events/EventsView.java (toString): - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasPaintListener.java (DATA_KEY): - (paintControl): - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramConstant.java (formatNanoSecondsTime): - (convertStringToNanoseconds): - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramContent.java (printContentInfo): - (printTable): - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramView.java (ID): - (WINDOW_TIMESPAN_LABEL_TEXT): - (createPartControl): - (resetControlsContent): - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvasPaintListener.java (DATA_KEY): - (paintControl): - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/TimeTextGroup.java (LONGEST_STRING_VALUE): - (TimeTextGroup): - * src/org/eclipse/linuxtools/lttng/ui/views/PerspectiveFactory.java (ID): - (createInitialLayout): - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/AddTraceWizard.java (init): - (addPages): - (performFinish): - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/AddTraceWizardPage.java (AddTraceWizardPage): - (createControl): - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/ImportTraceWizard.java (IMPORT_WIZARD): - (ImportTraceWizard): - (init): - * src/org/eclipse/linuxtools/lttng/ui/views/project/dialogs/ImportTraceWizardPage.java (getTraceDirectory): - (getTracepath): - * src/org/eclipse/linuxtools/lttng/ui/views/project/handlers/OpenTraceHandler.java (execute): - * src/org/eclipse/linuxtools/lttng/ui/views/project/handlers/RenameExperimentHandler.java (execute): - * src/org/eclipse/linuxtools/lttng/ui/views/project/handlers/RenameProjectHandler.java (execute): - * src/org/eclipse/linuxtools/lttng/ui/views/project/handlers/RenameTraceHandler.java (execute): - * src/org/eclipse/linuxtools/lttng/ui/views/project/LTTngProjectNature.java: - * src/org/eclipse/linuxtools/lttng/ui/views/project/model/LTTngProjectLabelProvider.java (fOpenedProjectIcon): - (getText): - * src/org/eclipse/linuxtools/lttng/ui/views/project/model/LTTngProjectNode.java: - * src/org/eclipse/linuxtools/lttng/ui/views/project/ProjectView.java (ProjectView): - (toString): - (createContextMenu): - * src/org/eclipse/linuxtools/lttng/ui/views/resources/evProcessor/AbsResourcesTRangeUpdate.java (addLocalResource): - (makeDraw): - * src/org/eclipse/linuxtools/lttng/ui/views/resources/model/ResourceContainer.java (equals): - (toString): - * src/org/eclipse/linuxtools/lttng/ui/views/resources/ResourcesView.java (ID): - (makeActions): - (initialExperimentDataRequest): - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/StatisticsData.java (ROOT): - (getProcessName): - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/StatisticsView.java (.getText): - (StatisticsView): - (createPartControl): - (requestData): - * src/org/eclipse/linuxtools/lttng/ui/views/timeframe/TimeFrameView.java (toString): - -2010-11-05 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java: Made the call to updateScroll() asynchronous - -2010-11-04 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/project/ProjectView.java: Create an ad hoc experiment when a trace is selected - -2010-10-29 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvasPaintListener.java (paintControl): Temporary refresh fix - -2010-10-27 Francois Chouinard - - * Implement enhanced request coalescing across providers, request cancellation, multiple synth data providers and cleanup - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeResourceFactory.java: - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTimeUpdateView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramConstant.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/TimeTextGroup.java: - * src/org/eclipse/linuxtools/lttng/ui/views/project/ProjectView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/resources/ResourcesView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/StatisticsView.java: - -2010-10-26 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvas.java: Double-buffering - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasPaintListener.java: Double-buffering - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramConstant.java: Fixed a few constants for the selected window display - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvasPaintListener.java: Double-buffering - -2010-10-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvas.java (asynchronousNotifyParentUpdatedInformation): Fixed typo - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasControlListener.java (controlMoved): Check for NPE - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramView.java: Cosmetic adjustemnts - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/TimeTextGroup.java: Cosmetic adjustemnts - -2010-10-13 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java: Added checks for disposed widget - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvas.java: Added checks for disposed widget - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvas.java: Added checks for disposed widget - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/TimeTextGroup.java : Added checks for disposed widget - * src/org/eclipse/linuxtools/lttng/ui/views/project/ProjectView.java: Added checks for disposed widget - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/StatisticsView.java: Added checks for disposed widget - * src/org/eclipse/linuxtools/lttng/ui/views/timeframe/SpinnerGroup.java: Added checks for disposed widget - * src/org/eclipse/linuxtools/lttng/ui/views/timeframe/TimeFrameView.java : Added checks for disposed widget - * .options: TraceDebug options file - * src/org/eclipse/linuxtools/lttng/ui/LTTngUiPlugin.java (stop): Closes the trace log file - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeComponent.java (toString): Added - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeComposite.java (toString): Added - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeEventProcess.java (toString): Added - * src/org/eclipse/linuxtools/lttng/ui/model/trange/TimeRangeEventResource.java (toString): Added - * src/org/eclipse/linuxtools/lttng/ui/TraceDebug.java: Support for new traces (CFV/RV) - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTimeUpdateView.java: Fixed a few constants - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTRangeUpdate.java (getPixelsPerNs): Adjusted field type - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/evProcessor/AbsFlowTRangeUpdate.java: Added debug tracing - * src/org/eclipse/linuxtools/lttng/ui/views/resources/evProcessor/AbsResourcesTRangeUpdate.java: Added debug tracing - * src/org/eclipse/linuxtools/lttng/ui/views/resources/ResourcesView.java: Use default pixels/ns - -2010-10-06 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTimeUpdateView.java: Fixed initial time window size (0.1s) - -2010-09-17 Francois Chouinard - - * plugin.xml: Fixed perspective ID - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTimeUpdateView.java: Adjusted to new handleData() API - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramRequest.java: Adjusted to new handleData() API - * src/org/eclipse/linuxtools/lttng/ui/views/PerspectiveFactory.java: Fixed perspective ID - -2010-09-15 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/StatisticsView.java: ExecutionType update - * src/org/eclipse/linuxtools/lttng/ui/views/resources/ResourcesView.java: ExecutionType update - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramView.java: ExecutionType update - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java: ExecutionType update - * src/org/eclipse/linuxtools/lttng/ui/views/common/AbsTimeUpdateView.java: ExecutionType update - -2010-09-12 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/events/EventsView.java: Fixed the events cache size - -2010-09-09 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/project/ProjectView.java: Hook to LTTngExperiment - -2010-07-30 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ChildrenHistogramCanvas.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvas.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasControlListener.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasFocusListener.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasKeyListener.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasMouseListener.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasPaintListener.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramConstant.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramContent.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramRequest.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramSelectedWindow.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramView.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvas.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvasControlListener.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvasPaintListener.java: - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/TimeTextGroup.java: - -2010-07-29 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/evProcessor/StatsProcessExitHandler.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/evProcessor/StatsTracesetEndHandler.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/FixedArray.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/KernelStatisticsData.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/StatisticsData.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/evProcessor/AbstractStatsEventHandler.java: Adjusted for new stats internal structure - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/evProcessor/StatsModeChangeHandler.java: Adjusted for new stats internal structure - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/evProcessor/StatsModeEndHandler.java: Adjusted for new stats internal structure - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/evProcessor/StatsTimeCountHandlerFactory.java: Hooked to ProcessExitHandler - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/evProcessor/StatsTimeCountHandlers.java: Hooked to ProcessExitHandler and TracesetEndHandler - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/Statistics.java: Added comments - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/StatisticsTreeNode.java: Adapted to new stats structure - * src/org/eclipse/linuxtools/lttng/ui/views/statistics/model/StatisticsTreeRootFactory.java: Adapted to new stats structure - -2010-07-28 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/events/EventsTable.java: Cleanup - -2010-07-14 Francois Chouinard - - * plugin.xml: Point to the 16x16 LTTng icon for the perspective - -2010-07-13 Francois Chouinard - - * src/org/eclipse/linuxtools/lttng/ui/views/events/EventsTable.java: New file. - * src/org/eclipse/linuxtools/lttng/ui/views/events/EventsView.java: Separated the Events Table (widget) from the View - - * src/org/eclipse/linuxtools/lttng/ui/views/controlflow/ControlFlowView.java: Added null pointer checks - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ChildrenHistogramCanvas.java: Displaced funtionality from parent class - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasControlListener.java: Displaced the recentering code - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramCanvasMouseListener.java: Added null pointer checks - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramContent.java: Removed a duplicate function call - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/HistogramView.java: GUI reorganisation, simplification and some related code improvements - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvas.java: Added event listeners - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvasControlListener.java: New file - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/ParentHistogramCanvasPaintListener.java: Cosmetic change. - * src/org/eclipse/linuxtools/lttng/ui/views/histogram/TimeTextGroup.java: Updates of text parts of the view - \ No newline at end of file -- 2.34.1