You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cm...@apache.org on 2009/05/26 16:54:58 UTC

svn commit: r778729 - /camel/trunk/components/camel-quickfix/src/main/java/org/apache/camel/component/quickfix/QuickFixDataFormat.java

Author: cmoulliard
Date: Tue May 26 14:54:58 2009
New Revision: 778729

URL: http://svn.apache.org/viewvc?rev=778729&view=rev
Log:
CAMEL-1350: Add a quickfix/QuickFixDataFormat.java class 

Added:
    camel/trunk/components/camel-quickfix/src/main/java/org/apache/camel/component/quickfix/QuickFixDataFormat.java   (with props)

Added: camel/trunk/components/camel-quickfix/src/main/java/org/apache/camel/component/quickfix/QuickFixDataFormat.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-quickfix/src/main/java/org/apache/camel/component/quickfix/QuickFixDataFormat.java?rev=778729&view=auto
==============================================================================
--- camel/trunk/components/camel-quickfix/src/main/java/org/apache/camel/component/quickfix/QuickFixDataFormat.java (added)
+++ camel/trunk/components/camel-quickfix/src/main/java/org/apache/camel/component/quickfix/QuickFixDataFormat.java Tue May 26 14:54:58 2009
@@ -0,0 +1,56 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.component.quickfix;
+
+import java.io.InputStream;
+import java.io.OutputStream;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.component.quickfix.converter.QuickFixConverter;
+import org.apache.camel.spi.DataFormat;
+import org.apache.camel.util.ExchangeHelper;
+
+import quickfix.Message;
+
+/**
+ * 
+ * Quickfix DataFormat.
+ * <p/>
+ * This data format supports two operations:
+ * <ul>
+ *   <li>marshal = from quickfix.Message to String</li>
+ *   <li>unmarshal = from String to quickfix.Message</li>
+ * </ul>
+ * <p/>
+ *  
+ */
+public class QuickFixDataFormat implements DataFormat {
+
+    public void marshal(Exchange exchange, Object body, OutputStream outputStream) throws Exception {
+        Message message = ExchangeHelper.convertToMandatoryType(exchange, Message.class, body);
+        String fixMessage = QuickFixConverter.toString(message);
+        outputStream.write(fixMessage.getBytes());
+    }
+
+    public Object unmarshal(Exchange exchange, InputStream inputStream) throws Exception {
+        String body = ExchangeHelper.convertToMandatoryType(exchange, String.class, inputStream);
+        Message message = QuickFixConverter.toMessage(body);
+        return message;
+
+    }
+
+}

Propchange: camel/trunk/components/camel-quickfix/src/main/java/org/apache/camel/component/quickfix/QuickFixDataFormat.java
------------------------------------------------------------------------------
    svn:eol-style = native