com.ponysdk.spring.servlet.SpringHttpServlet.java Source code

Java tutorial

Introduction

Here is the source code for com.ponysdk.spring.servlet.SpringHttpServlet.java

Source

package com.ponysdk.spring.servlet;

/*
 * Copyright (c) 2011 PonySDK
 *  Owners:
 *  Luciano Broussal  <luciano.broussal AT gmail.com>
 *  Mathieu Barbier   <mathieu.barbier AT gmail.com>
 *  Nicolas Ciaravola <nicolas.ciaravola.pro AT gmail.com>
 *  
 *  WebSite:
 *  http://code.google.com/p/pony-sdk/
 * 
 * Licensed 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.
 */

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.ponysdk.core.AbstractApplicationManager;
import com.ponysdk.core.ApplicationManagerOption;
import com.ponysdk.core.UIContext;
import com.ponysdk.core.event.EventBus;
import com.ponysdk.core.main.EntryPoint;
import com.ponysdk.core.servlet.AbstractHttpServlet;
import com.ponysdk.impl.webapplication.page.InitializingActivity;
import com.ponysdk.ui.server.basic.PHistory;

/**
 * The server side implementation of the RPC service.
 */
@SuppressWarnings("serial")
public class SpringHttpServlet extends AbstractHttpServlet {

    private final List<String> clientConfigurations = new ArrayList<String>();

    public SpringHttpServlet() {
    }

    public SpringHttpServlet(final ApplicationManagerOption options) {
        super(options);
    }

    @Override
    protected AbstractApplicationManager createApplicationManager() {
        return new AbstractApplicationManager(options) {

            @Override
            protected EntryPoint initializePonySession(final UIContext ponySession) {
                return newPonySession(ponySession);
            }

        };
    }

    protected EntryPoint newPonySession(final UIContext ponySession) {
        if (clientConfigurations.isEmpty())
            clientConfigurations.addAll(Arrays.asList("conf/client_application.inc.xml", "client_application.xml"));

        final ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext(
                clientConfigurations.toArray(new String[0]));

        final EventBus rootEventBus = applicationContext.getBean(EventBus.class);
        final EntryPoint entryPoint = applicationContext.getBean(EntryPoint.class);
        final PHistory history = applicationContext.getBean(PHistory.class);

        ponySession.setRootEventBus(rootEventBus);
        ponySession.setHistory(history);

        final Map<String, InitializingActivity> initializingPages = applicationContext
                .getBeansOfType(InitializingActivity.class);
        if (initializingPages != null && !initializingPages.isEmpty()) {
            for (final InitializingActivity p : initializingPages.values()) {
                p.afterContextInitialized();
            }
        }

        return entryPoint;
    }

    public void addClientConfiguration(final String conf) {
        clientConfigurations.add(conf);
    }
}