QuickfixAcceptor.java :  » Library » camel » org » apache » camel » component » quickfix » Java Open Source

Java Open Source » Library » camel 
camel » org » apache » camel » component » quickfix » QuickfixAcceptor.java
/**
 * 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.util.Map;

import org.apache.camel.CamelContext;
import org.apache.camel.impl.DefaultComponent;
import org.apache.commons.logging.Log;
import quickfix.Application;
import quickfix.ConfigError;
import quickfix.DefaultMessageFactory;
import quickfix.LogFactory;
import quickfix.MessageStoreFactory;
import quickfix.SessionSettings;
import quickfix.SocketAcceptor;

/**
 * QuickfixAcceptor is the endpoint for QuickFIX/J's server instance, e.g. FIX
 * client. The class is referenced in
 * META-INF/services/org/apache/camel/quickfix-server
 */
public class QuickfixAcceptor extends DefaultComponent {
    private static final Log LOG = org.apache.commons.logging.LogFactory.getLog(QuickfixAcceptorEndpoint.class);
    
    protected QuickfixEndpoint createEndpoint(String uri, String remaining, Map parameters) throws Exception {
        return new QuickfixAcceptorEndpoint(uri, getCamelContext(), remaining);
    }

    class QuickfixAcceptorEndpoint extends QuickfixEndpoint {        

        private/* Threaded */SocketAcceptor acceptor;

        public QuickfixAcceptorEndpoint(String uri, CamelContext context, String configuration) {
            super(uri, context, configuration);
        }

        protected void start(Application application, MessageStoreFactory storeFactory,
                             SessionSettings settings, LogFactory logFactory) throws ConfigError {
                        // To avoid this exception in OSGi platform
            // java.lang.NoClassDefFoundError: quickfix/fix41/MessageFactory
            ClassLoader ccl = Thread.currentThread().getContextClassLoader();
            try {
                Thread.currentThread().setContextClassLoader(getClass().getClassLoader());

                acceptor = new SocketAcceptor(application, storeFactory, settings, logFactory,
                                              new DefaultMessageFactory());

                acceptor.start();
                if (LOG.isDebugEnabled()) {
                    LOG.debug("Start the accetpor endpoint");
                }
            } finally {
                Thread.currentThread().setContextClassLoader(ccl);
            }

        }

        public void stop() throws Exception {
            super.stop();
            if (acceptor != null) {
                acceptor.stop();
                if (LOG.isDebugEnabled()) {
                    LOG.debug("Stop the accetpor endpoint");
                }
                acceptor = null;
            }
        }
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.