Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / util / CodeKeyMakerFactory.java
index 9b21226b629e042ac18f99993796907997dc7aef..7713e355e4d30a5ca6b0d297c51dbb400f0d583b 100644 (file)
@@ -1,90 +1,90 @@
-/*\r
- * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.openflowjava.protocol.impl.util;\r
-\r
-import io.netty.buffer.ByteBuf;\r
-\r
-import org.opendaylight.openflowjava.protocol.api.extensibility.MessageCodeKey;\r
-import org.opendaylight.openflowjava.protocol.api.keys.ActionDeserializerKey;\r
-import org.opendaylight.openflowjava.protocol.api.keys.InstructionDeserializerKey;\r
-import org.opendaylight.openflowjava.protocol.api.keys.MatchEntryDeserializerKey;\r
-import org.opendaylight.openflowjava.protocol.api.keys.experimenter.ExperimenterActionDeserializerKey;\r
-import org.opendaylight.openflowjava.protocol.api.keys.experimenter.ExperimenterInstructionDeserializerKey;\r
-import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public abstract class CodeKeyMakerFactory {\r
-\r
-    /**\r
-     * @param version\r
-     * @return\r
-     */\r
-    public static CodeKeyMaker createMatchEntriesKeyMaker(short version) {\r
-        return new AbstractCodeKeyMaker(version) {\r
-            @Override\r
-            public MessageCodeKey make(ByteBuf input) {\r
-                int oxmClass = input.getUnsignedShort(input.readerIndex());\r
-                int oxmField = input.getUnsignedByte(input.readerIndex()\r
-                        + EncodeConstants.SIZE_OF_SHORT_IN_BYTES) >>> 1;\r
-                MatchEntryDeserializerKey key = new MatchEntryDeserializerKey(getVersion(),\r
-                        oxmClass, oxmField);\r
-                if (oxmClass == EncodeConstants.EXPERIMENTER_VALUE) {\r
-                    long expId = input.getUnsignedInt(input.readerIndex() + EncodeConstants.SIZE_OF_SHORT_IN_BYTES\r
-                            + 2 * EncodeConstants.SIZE_OF_BYTE_IN_BYTES);\r
-                    key.setExperimenterId(expId);\r
-                    return key;\r
-                }\r
-                key.setExperimenterId(null);\r
-                return key;\r
-            }\r
-        };\r
-    }\r
-\r
-    /**\r
-     * @param version\r
-     * @return\r
-     */\r
-    public static CodeKeyMaker createActionsKeyMaker(short version) {\r
-        return new AbstractCodeKeyMaker(version) {\r
-            @Override\r
-            public MessageCodeKey make(ByteBuf input) {\r
-                int type = input.getUnsignedShort(input.readerIndex());\r
-                if (type == EncodeConstants.EXPERIMENTER_VALUE) {\r
-                    Long expId = input.getUnsignedInt(input.readerIndex()\r
-                            + 2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);\r
-                    return new ExperimenterActionDeserializerKey(getVersion(), expId);\r
-                }\r
-                ActionDeserializerKey actionDeserializerKey = new ActionDeserializerKey(getVersion(), type, null);\r
-                return actionDeserializerKey;\r
-            }\r
-        };\r
-    }\r
-\r
-    /**\r
-     * @param version\r
-     * @return\r
-     */\r
-    public static CodeKeyMaker createInstructionsKeyMaker(short version) {\r
-        return new AbstractCodeKeyMaker(version) {\r
-            @Override\r
-            public MessageCodeKey make(ByteBuf input) {\r
-                int type = input.getUnsignedShort(input.readerIndex());\r
-                if (type == EncodeConstants.EXPERIMENTER_VALUE) {\r
-                    Long expId = input.getUnsignedInt(input.readerIndex()\r
-                            + 2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);\r
-                    return new ExperimenterInstructionDeserializerKey(getVersion(), expId);\r
-                }\r
-                return new InstructionDeserializerKey(getVersion(), type, null);\r
-            }\r
-        };\r
-    }\r
-}\r
+/*
+ * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. 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
+ */
+
+package org.opendaylight.openflowjava.protocol.impl.util;
+
+import io.netty.buffer.ByteBuf;
+
+import org.opendaylight.openflowjava.protocol.api.extensibility.MessageCodeKey;
+import org.opendaylight.openflowjava.protocol.api.keys.ActionDeserializerKey;
+import org.opendaylight.openflowjava.protocol.api.keys.InstructionDeserializerKey;
+import org.opendaylight.openflowjava.protocol.api.keys.MatchEntryDeserializerKey;
+import org.opendaylight.openflowjava.protocol.api.keys.experimenter.ExperimenterActionDeserializerKey;
+import org.opendaylight.openflowjava.protocol.api.keys.experimenter.ExperimenterInstructionDeserializerKey;
+import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
+
+/**
+ * @author michal.polkorab
+ *
+ */
+public abstract class CodeKeyMakerFactory {
+
+    /**
+     * @param version
+     * @return
+     */
+    public static CodeKeyMaker createMatchEntriesKeyMaker(short version) {
+        return new AbstractCodeKeyMaker(version) {
+            @Override
+            public MessageCodeKey make(ByteBuf input) {
+                int oxmClass = input.getUnsignedShort(input.readerIndex());
+                int oxmField = input.getUnsignedByte(input.readerIndex()
+                        + EncodeConstants.SIZE_OF_SHORT_IN_BYTES) >>> 1;
+                MatchEntryDeserializerKey key = new MatchEntryDeserializerKey(getVersion(),
+                        oxmClass, oxmField);
+                if (oxmClass == EncodeConstants.EXPERIMENTER_VALUE) {
+                    long expId = input.getUnsignedInt(input.readerIndex() + EncodeConstants.SIZE_OF_SHORT_IN_BYTES
+                            + 2 * EncodeConstants.SIZE_OF_BYTE_IN_BYTES);
+                    key.setExperimenterId(expId);
+                    return key;
+                }
+                key.setExperimenterId(null);
+                return key;
+            }
+        };
+    }
+
+    /**
+     * @param version
+     * @return
+     */
+    public static CodeKeyMaker createActionsKeyMaker(short version) {
+        return new AbstractCodeKeyMaker(version) {
+            @Override
+            public MessageCodeKey make(ByteBuf input) {
+                int type = input.getUnsignedShort(input.readerIndex());
+                if (type == EncodeConstants.EXPERIMENTER_VALUE) {
+                    Long expId = input.getUnsignedInt(input.readerIndex()
+                            + 2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
+                    return new ExperimenterActionDeserializerKey(getVersion(), expId);
+                }
+                ActionDeserializerKey actionDeserializerKey = new ActionDeserializerKey(getVersion(), type, null);
+                return actionDeserializerKey;
+            }
+        };
+    }
+
+    /**
+     * @param version
+     * @return
+     */
+    public static CodeKeyMaker createInstructionsKeyMaker(short version) {
+        return new AbstractCodeKeyMaker(version) {
+            @Override
+            public MessageCodeKey make(ByteBuf input) {
+                int type = input.getUnsignedShort(input.readerIndex());
+                if (type == EncodeConstants.EXPERIMENTER_VALUE) {
+                    Long expId = input.getUnsignedInt(input.readerIndex()
+                            + 2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
+                    return new ExperimenterInstructionDeserializerKey(getVersion(), expId);
+                }
+                return new InstructionDeserializerKey(getVersion(), type, null);
+            }
+        };
+    }
+}