Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 01c4a6ef11c9b6692ddc65eae3ee93e7797517ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*******************************************************************************
 * Copyright (c) 2008, 2009 Red Hat, Inc.
 * 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:
 *    Kent Sebastian <ksebasti@redhat.com> - initial API and implementation 
 *******************************************************************************/ 

package org.eclipse.linuxtools.internal.oprofile.core.model;

import org.eclipse.linuxtools.internal.oprofile.core.Oprofile;

/**
 * A root node for the data model. Only one instance exists at any time,
 * although the contents will change. On instantiation the events and
 * sessions are gathered. 
 * 
 * Note that this data model does not map 1:1 to the oprofile data model.
 * This model is for use in profiling one application compiled with debug
 * info, from within eclipse. 
 */

public class OpModelRoot {
	//single instance
	private static OpModelRoot _modelRoot = new OpModelRoot();

	private OpModelEvent[] _events;
//	private String _printTabs = "\t";		//for nice output

	protected OpModelRoot() {
//		refreshModel();
		_events = null;
//		_modelRoot = this;
	}

	public static OpModelRoot getDefault() {
		return _modelRoot;
	}

	public void refreshModel() {
		//TODO-performance/interactivity: some persistence for events/sessions
		// that dont change from run to run (non default sessions) 
		
		_events = getNewEvents();
		if (_events != null) {
			for (int i = 0; i < _events.length; i++) {
				if (_events[i] != null)
					_events[i].refreshModel();
			}
		}
	}
	
	protected OpModelEvent[] getNewEvents() {
		//launch `opxml sessions`, gather up events & the sessions under them
		return Oprofile.getEvents(); 
	}
	
	public OpModelEvent[] getEvents() {
		return _events;
	}
	
	@Override
	public String toString() {
		String s = ""; //$NON-NLS-1$
		if (_events != null) {
			for (int i = 0; i < _events.length; i++) {
				if (_events[i] != null) {
					s += "Event: "; //$NON-NLS-1$
					s += _events[i].toString("\t"); //$NON-NLS-1$
				}
			}
		}
		return s;
	}
}

Back to the top