os.linux: Rename the "kernelanalysis" package to just "kernel"
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / internal / analysis / os / linux / core / kernel / handlers / ProcessForkHandler.java
CommitLineData
c8f45ad2
MK
1/*******************************************************************************
2 * Copyright (c) 2015 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.tracecompass.internal.analysis.os.linux.core.kernel.handlers;
14
0f7a12d3
AM
15import org.eclipse.tracecompass.analysis.os.linux.core.kernel.Attributes;
16import org.eclipse.tracecompass.analysis.os.linux.core.kernel.StateValues;
c8f45ad2
MK
17import org.eclipse.tracecompass.analysis.os.linux.core.trace.IKernelAnalysisEventLayout;
18import org.eclipse.tracecompass.statesystem.core.ITmfStateSystemBuilder;
19import org.eclipse.tracecompass.statesystem.core.exceptions.AttributeNotFoundException;
20import org.eclipse.tracecompass.statesystem.core.statevalue.ITmfStateValue;
21import org.eclipse.tracecompass.statesystem.core.statevalue.TmfStateValue;
22import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
23import org.eclipse.tracecompass.tmf.core.event.ITmfEventField;
24
25/**
26 * Fork Handler
27 */
28public class ProcessForkHandler extends KernelEventHandler {
29
30 /**
31 * Constructor
32 *
33 * @param layout
34 * event layout
35 */
36 public ProcessForkHandler(IKernelAnalysisEventLayout layout) {
37 super(layout);
38 }
39
40 @Override
41 public void handleEvent(ITmfStateSystemBuilder ss, ITmfEvent event) throws AttributeNotFoundException {
42 ITmfEventField content = event.getContent();
43 String childProcessName = (String) content.getField(getLayout().fieldChildComm()).getValue();
44
45 Integer parentTid = ((Long) content.getField(getLayout().fieldParentTid()).getValue()).intValue();
46 Integer childTid = ((Long) content.getField(getLayout().fieldChildTid()).getValue()).intValue();
47
48 Integer parentTidNode = ss.getQuarkRelativeAndAdd(KernelEventHandlerUtils.getNodeThreads(ss), parentTid.toString());
49 Integer childTidNode = ss.getQuarkRelativeAndAdd(KernelEventHandlerUtils.getNodeThreads(ss), childTid.toString());
50
51 /* Assign the PPID to the new process */
52 int quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.PPID);
53 ITmfStateValue value = TmfStateValue.newValueInt(parentTid);
54 long timestamp = KernelEventHandlerUtils.getTimestamp(event);
55 ss.modifyAttribute(timestamp, value, quark);
56
57 /* Set the new process' exec_name */
58 quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.EXEC_NAME);
59 value = TmfStateValue.newValueString(childProcessName);
60 ss.modifyAttribute(timestamp, value, quark);
61
62 /* Set the new process' status */
63 quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.STATUS);
64 value = StateValues.PROCESS_STATUS_WAIT_FOR_CPU_VALUE;
65 ss.modifyAttribute(timestamp, value, quark);
66
67 /* Set the process' syscall name, to be the same as the parent's */
68 quark = ss.getQuarkRelativeAndAdd(parentTidNode, Attributes.SYSTEM_CALL);
69 value = ss.queryOngoingState(quark);
2e3a31c4
FG
70 if (!value.isNull()) {
71 quark = ss.getQuarkRelativeAndAdd(childTidNode, Attributes.SYSTEM_CALL);
72 ss.modifyAttribute(timestamp, value, quark);
c8f45ad2 73 }
2e3a31c4 74
c8f45ad2
MK
75 }
76}
This page took 0.042678 seconds and 5 git commands to generate.