Turn ISessiondCommand into an abstract class
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / SessiondEnableEventCommand.java
index 82204eb19b895af2d22eca200169769f40d59114..5b36ac5d10a006c0e2ed1365a83b628f7dd631fe 100644 (file)
@@ -21,6 +21,9 @@ package org.lttng.ust.agent.client;
 import java.nio.ByteBuffer;
 import java.nio.ByteOrder;
 
+import org.lttng.ust.agent.session.EventRule;
+import org.lttng.ust.agent.session.LogLevelSelector;
+
 /**
  * Session daemon command indicating to the Java agent that some events were
  * enabled in the tracing session.
@@ -28,29 +31,48 @@ import java.nio.ByteOrder;
  * @author Alexandre Montplaisir
  * @author David Goulet
  */
-class SessiondEnableEventCommand implements ISessiondCommand {
+class SessiondEnableEventCommand extends SessiondCommand {
+
+       /** Fixed event name length. Value defined by the lttng agent protocol. */
+       private static final int EVENT_NAME_LENGTH = 256;
 
-       private static final int INT_SIZE = 4;
+       private final boolean commandIsValid;
 
-       /** Event name to enable in the tracing session */
+       /* Parameters of the event rule being enabled */
        private final String eventName;
+       private final LogLevelSelector logLevelFilter;
+       private final String filterString;
 
        public SessiondEnableEventCommand(byte[] data) {
                if (data == null) {
                        throw new IllegalArgumentException();
                }
-               int dataOffset = INT_SIZE * 2;
-
                ByteBuffer buf = ByteBuffer.wrap(data);
-               buf.order(ByteOrder.LITTLE_ENDIAN);
-               buf.getInt(); // logLevel, currently unused
-               buf.getInt(); // logLevelType, currently unused
-               eventName = new String(data, dataOffset, data.length - dataOffset).trim();
+               buf.order(ByteOrder.BIG_ENDIAN);
+               int logLevel = buf.getInt();
+               int logLevelType = buf.getInt();
+               logLevelFilter = new LogLevelSelector(logLevel, logLevelType);
+
+               /* Read the event name */
+               byte[] eventNameBytes = new byte[EVENT_NAME_LENGTH];
+               buf.get(eventNameBytes);
+               eventName = new String(eventNameBytes).trim();
+
+               /* Read the filter string */
+               filterString = readNextString(buf);
+
+               /* The command was invalid if the string could not be read correctly */
+               commandIsValid = (filterString != null);
        }
 
        @Override
        public LttngAgentResponse execute(ILttngTcpClientListener agent) {
-               boolean success = agent.eventEnabled(this.eventName);
+               if (!commandIsValid) {
+                       return LttngAgentResponse.FAILURE_RESPONSE;
+               }
+
+               EventRule rule = new EventRule(eventName, logLevelFilter, filterString);
+               boolean success = agent.eventEnabled(rule);
                return (success ? LttngAgentResponse.SUCESS_RESPONSE : LttngAgentResponse.FAILURE_RESPONSE);
        }
 }
This page took 0.023845 seconds and 4 git commands to generate.