Close trace and improve error handling on delete and rename commands
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / model / TmfExperimentElement.java
1 /*******************************************************************************
2 * Copyright (c) 2010, 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.project.model;
14
15 import java.io.ByteArrayInputStream;
16 import java.io.InputStream;
17 import java.util.ArrayList;
18 import java.util.Arrays;
19 import java.util.List;
20
21 import org.eclipse.core.resources.IFile;
22 import org.eclipse.core.resources.IFolder;
23 import org.eclipse.core.resources.IResource;
24 import org.eclipse.core.runtime.CoreException;
25 import org.eclipse.linuxtools.tmf.core.TmfCommonConstants;
26 import org.eclipse.linuxtools.tmf.core.trace.TmfExperiment;
27 import org.eclipse.ui.views.properties.IPropertyDescriptor;
28 import org.eclipse.ui.views.properties.IPropertySource2;
29 import org.eclipse.ui.views.properties.TextPropertyDescriptor;
30
31 /**
32 * Implementation of TMF Experiment Model Element.
33 * <p>
34 * @version 1.0
35 * @author Francois Chouinard
36 *
37 */
38 public class TmfExperimentElement extends TmfProjectModelElement implements IPropertySource2 {
39
40 // ------------------------------------------------------------------------
41 // Constants
42 // ------------------------------------------------------------------------
43
44 // Property View stuff
45 private static final String sfInfoCategory = "Info"; //$NON-NLS-1$
46 private static final String sfName = "name"; //$NON-NLS-1$
47 private static final String sfPath = "path"; //$NON-NLS-1$
48 private static final String sfLocation = "location"; //$NON-NLS-1$
49
50 private static final TextPropertyDescriptor sfNameDescriptor = new TextPropertyDescriptor(sfName, sfName);
51 private static final TextPropertyDescriptor sfPathDescriptor = new TextPropertyDescriptor(sfPath, sfPath);
52 private static final TextPropertyDescriptor sfLocationDescriptor = new TextPropertyDescriptor(sfLocation,
53 sfLocation);
54
55 private static final IPropertyDescriptor[] sfDescriptors = { sfNameDescriptor, sfPathDescriptor,
56 sfLocationDescriptor };
57
58 static {
59 sfNameDescriptor.setCategory(sfInfoCategory);
60 sfPathDescriptor.setCategory(sfInfoCategory);
61 sfLocationDescriptor.setCategory(sfInfoCategory);
62 }
63
64 private static final String BOOKMARKS_HIDDEN_FILE = ".bookmarks"; //$NON-NLS-1$
65
66 // ------------------------------------------------------------------------
67 // Constructors
68 // ------------------------------------------------------------------------
69 /**
70 * Constructor
71 * @param name The name of the experiment
72 * @param folder The folder reference
73 * @param parent The experiment folder reference.
74 */
75 public TmfExperimentElement(String name, IFolder folder, TmfExperimentFolder parent) {
76 super(name, folder, parent);
77 parent.addChild(this);
78 }
79
80 // ------------------------------------------------------------------------
81 // TmfProjectModelElement
82 // ------------------------------------------------------------------------
83
84 /*
85 * (non-Javadoc)
86 * @see org.eclipse.linuxtools.tmf.ui.project.model.TmfProjectModelElement#getResource()
87 */
88 @Override
89 public IFolder getResource() {
90 return (IFolder) fResource;
91 }
92
93 /*
94 * (non-Javadoc)
95 * @see org.eclipse.linuxtools.tmf.ui.project.model.ITmfProjectModelElement#getProject()
96 */
97 @Override
98 public TmfProjectElement getProject() {
99 return (TmfProjectElement) getParent().getParent();
100 }
101
102 // ------------------------------------------------------------------------
103 // Operations
104 // ------------------------------------------------------------------------
105 /**
106 * Returns a list of TmfTraceElements contained in this experiment.
107 * @return a list of TmfTraceElements
108 */
109 public List<TmfTraceElement> getTraces() {
110 List<ITmfProjectModelElement> children = getChildren();
111 List<TmfTraceElement> traces = new ArrayList<TmfTraceElement>();
112 for (ITmfProjectModelElement child : children) {
113 if (child instanceof TmfTraceElement) {
114 traces.add((TmfTraceElement) child);
115 }
116 }
117 return traces;
118 }
119
120 /**
121 * Returns the file resource used to store bookmarks.
122 * The linked file will be created if it doesn't exist.
123 * @return the bookmarks file
124 * @throws CoreException if the bookmarks file cannot be created
125 * @since 2.0
126 */
127 public IFile getBookmarksFile() throws CoreException {
128 IFile file = null;
129 final IFile bookmarksFile = getProject().getExperimentsFolder().getResource().getFile(BOOKMARKS_HIDDEN_FILE);
130 if (!bookmarksFile.exists()) {
131 final InputStream source = new ByteArrayInputStream(new byte[0]);
132 bookmarksFile.create(source, true, null);
133 }
134 bookmarksFile.setHidden(true);
135
136 final IFolder folder = (IFolder) fResource;
137 file = folder.getFile(getName() + '_');
138 if (!file.exists()) {
139 file.createLink(bookmarksFile.getLocation(), IResource.REPLACE, null);
140 }
141 file.setHidden(true);
142 file.setPersistentProperty(TmfCommonConstants.TRACETYPE, TmfExperiment.class.getCanonicalName());
143 return file;
144 }
145
146 // ------------------------------------------------------------------------
147 // IPropertySource2
148 // ------------------------------------------------------------------------
149
150 /*
151 * (non-Javadoc)
152 * @see org.eclipse.ui.views.properties.IPropertySource#getEditableValue()
153 */
154 @Override
155 public Object getEditableValue() {
156 return null;
157 }
158
159 /*
160 * (non-Javadoc)
161 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyDescriptors()
162 */
163 @Override
164 public IPropertyDescriptor[] getPropertyDescriptors() {
165 return (sfDescriptors != null) ? Arrays.copyOf(sfDescriptors, sfDescriptors.length) : null;
166 }
167
168 /*
169 * (non-Javadoc)
170 * @see org.eclipse.ui.views.properties.IPropertySource#getPropertyValue(java.lang.Object)
171 */
172 @Override
173 public Object getPropertyValue(Object id) {
174
175 if (sfName.equals(id)) {
176 return getName();
177 }
178
179 if (sfPath.equals(id)) {
180 return getPath().toString();
181 }
182
183 if (sfLocation.equals(id)) {
184 return getLocation().toString();
185 }
186
187 return null;
188 }
189
190 /*
191 * (non-Javadoc)
192 * @see org.eclipse.ui.views.properties.IPropertySource#resetPropertyValue(java.lang.Object)
193 */
194 @Override
195 public void resetPropertyValue(Object id) {
196 }
197
198 /*
199 * (non-Javadoc)
200 * @see org.eclipse.ui.views.properties.IPropertySource#setPropertyValue(java.lang.Object, java.lang.Object)
201 */
202 @Override
203 public void setPropertyValue(Object id, Object value) {
204 }
205
206 /*
207 * (non-Javadoc)
208 * @see org.eclipse.ui.views.properties.IPropertySource2#isPropertyResettable(java.lang.Object)
209 */
210 @Override
211 public boolean isPropertyResettable(Object id) {
212 return false;
213 }
214
215 /*
216 * (non-Javadoc)
217 * @see org.eclipse.ui.views.properties.IPropertySource2#isPropertySet(java.lang.Object)
218 */
219 @Override
220 public boolean isPropertySet(Object id) {
221 return false;
222 }
223
224 }
This page took 0.036698 seconds and 6 git commands to generate.