eu.learnpad.core.impl.me.XwikiController.java Source code

Java tutorial

Introduction

Here is the source code for eu.learnpad.core.impl.me.XwikiController.java

Source

/*
 * See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package eu.learnpad.core.impl.me;

import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;
import javax.ws.rs.Path;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.PutMethod;
import org.slf4j.Logger;
import org.xwiki.component.annotation.Component;
import org.xwiki.component.phase.Initializable;
import org.xwiki.component.phase.InitializationException;
import org.xwiki.rest.XWikiRestComponent;

import eu.learnpad.core.impl.me.XwikiBridgeInterfaceRestResource;
import eu.learnpad.core.rest.RestResource;
import eu.learnpad.core.rest.XWikiRestUtils;
import eu.learnpad.cw.rest.data.Feedbacks;
import eu.learnpad.exception.impl.LpRestExceptionImpl;
import eu.learnpad.me.Controller;
import eu.learnpad.mv.rest.data.MVResults;
import eu.learnpad.me.BridgeInterface;

/*
 * It is not clear yet who is responsible for the instantiation
 * of this class. From what I read from Jean it is supposed to be done
 * automatically when registering the Java component into the XWiki Platform.
 * Thus I do not know how may instances we may actually have. Thus, for the
 * moment I marked it as Singleton.
 *  
 */
@Component
@Singleton
@Named("eu.learnpad.core.impl.me.XwikiController")
@Path("/learnpad/me/corefacade")
public class XwikiController extends Controller implements XWikiRestComponent, Initializable {

    /** Set to true once the inherited BridgeInterface has been initialized. */
    private boolean initialized = false;

    /*
     * Note that in this solution the Controllers do not interact
     * each-others, but each controller directly invokes the BridgesInterfaces
     * (from the other controllers) it needs. This is not actually what was
     * originally planned, thus in the future it may change.
     *
     * Also, not sure if this is the correct way to proceed.
     * I would like to decide in a configuration file
     * the implementation to bind, and not into the source
     * code. In fact, this second case implies to rebuild the
     * whole platform at each change.   
     */
    private eu.learnpad.mv.BridgeInterface mv;
    private eu.learnpad.cw.BridgeInterface cw;
    private eu.learnpad.sim.BridgeInterface sim;
    private eu.learnpad.qm.BridgeInterface qm;
    private eu.learnpad.or.BridgeInterface or;

    private Map<String, MVResults> mvResults;

    @Inject
    Logger logger;

    public synchronized void updateBridgeInterface(BridgeInterface bi) {
        this.bridge = bi;
    }

    @Override
    public synchronized void initialize() throws InitializationException {
        if (!this.initialized) {
            this.bridge = new XwikiBridgeInterfaceRestResource();

            this.mv = new eu.learnpad.core.impl.mv.XwikiBridgeInterfaceRestResource();
            this.cw = new eu.learnpad.core.impl.cw.XwikiBridgeInterfaceRestResource();
            this.sim = new eu.learnpad.core.impl.sim.XwikiBridgeInterfaceRestResource();
            this.qm = new eu.learnpad.core.impl.qm.XwikiBridgeInterfaceRestResource();
            this.or = new eu.learnpad.core.impl.or.XwikiBridgeInterfaceRestResource();

            this.mvResults = new HashMap<String, MVResults>();

            this.initialized = true;
        }
    }

    @Override
    public void putModelSet(String modelSetId, String type, byte[] modelSetFile) throws LpRestExceptionImpl {
        if (XWikiRestUtils.isPage(RestResource.CORE_REPOSITORY_WIKI, RestResource.CORE_REPOSITORY_SPACE,
                modelSetId) == false) {
            XWikiRestUtils.createEmptyPage(RestResource.CORE_REPOSITORY_WIKI, RestResource.CORE_REPOSITORY_SPACE,
                    modelSetId);
        }
        String attachmentName = String.format("%s.%s", modelSetId, type);
        XWikiRestUtils.putAttachment(RestResource.CORE_REPOSITORY_WIKI, RestResource.CORE_REPOSITORY_SPACE,
                modelSetId, attachmentName, modelSetFile);
    }

    @Override
    public String startModelSetVerification(String modelSetId, String type, String verification)
            throws LpRestExceptionImpl {
        String verificationProcessId = UUID.randomUUID().toString();
        mvResults.put(verificationProcessId, new MVResults(modelSetId, type));
        return verificationProcessId;
    }

    @Override
    public MVResults checkModelSetVerification(String verificationProcessId) throws LpRestExceptionImpl {
        MVResults result = mvResults.get(verificationProcessId);
        if (result != null) {
            MVResults toReturn = new MVResults(result);
            if (result.getStatus().equals("inprogress")) {
                mvResults.get(verificationProcessId).terminate();
            } else {
                mvResults.remove(verificationProcessId);
            }
            if (toReturn.getStatus().equals("finished")) {
                // Notify CW about a new model set imported
                HttpClient httpClient = RestResource.getClient();
                String uri = String.format("%s/learnpad/cw/bridge/modelsetimported/%s", RestResource.REST_URI,
                        toReturn.getModelSetId());
                PutMethod putMethod = new PutMethod(uri);
                putMethod.addRequestHeader("Accept", "application/xml");
                NameValuePair[] queryString = new NameValuePair[1];
                queryString[0] = new NameValuePair("type", toReturn.getType());
                putMethod.setQueryString(queryString);
                try {
                    httpClient.executeMethod(putMethod);
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                // Notify OR about a new model set imported
                httpClient = RestResource.getClient();
                uri = String.format("%s/learnpad/or/bridge/modelsetimported/%s", RestResource.REST_URI,
                        toReturn.getModelSetId());
                PostMethod postMethod = new PostMethod(uri);
                postMethod.addRequestHeader("Accept", "application/xml");
                queryString = new NameValuePair[1];
                queryString[0] = new NameValuePair("type", toReturn.getType());
                postMethod.setQueryString(queryString);
                try {
                    httpClient.executeMethod(postMethod);
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
            return toReturn;
        } else {
            return null;
        }
    }

    @Override
    public Feedbacks getFeedbacks(String modelSetId) throws LpRestExceptionImpl {
        // Now send the package's path to the importer for XWiki
        HttpClient httpClient = RestResource.getClient();
        String uri = String.format("%s/learnpad/cw/bridge/%s/feedbacks", RestResource.REST_URI, modelSetId);
        GetMethod getMethod = new GetMethod(uri);
        getMethod.addRequestHeader("Accept", "application/xml");

        try {
            httpClient.executeMethod(getMethod);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        InputStream feedbacksStream = null;
        try {
            feedbacksStream = getMethod.getResponseBodyAsStream();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        Feedbacks feedbacks = null;
        try {
            JAXBContext jc = JAXBContext.newInstance(Feedbacks.class);
            Unmarshaller unmarshaller = jc.createUnmarshaller();
            feedbacks = (Feedbacks) unmarshaller.unmarshal(feedbacksStream);
        } catch (JAXBException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return feedbacks;
    }
}