Search in sources :

Example 1 with SpagoBiServer

use of org.talend.core.model.properties.SpagoBiServer in project tdi-studio-se by Talend.

the class PublishOnSpagoExportWizardPage method finish.

/**
     * The Finish button was pressed. Try to do the required work now and answer a boolean indicating success. If false
     * is returned then the wizard will not close.
     * 
     * @returns boolean
     */
public boolean finish() {
    Map<ExportChoice, Object> exportChoiceMap = getExportChoiceMap();
    boolean canExport = false;
    for (ExportChoice choice : ExportChoice.values()) {
        if (exportChoiceMap.get(choice) != null && exportChoiceMap.get(choice) instanceof Boolean && (Boolean) exportChoiceMap.get(choice)) {
            canExport = true;
            break;
        }
    }
    if (!canExport) {
        MessageDialog.openInformation(getContainer().getShell(), //$NON-NLS-1$
        Messages.getString("PublishOnSpagoExportWizardPage.publishResourceError"), //$NON-NLS-1$
        Messages.getString("PublishOnSpagoExportWizardPage.chooseResource"));
        return false;
    }
    if (!ensureTargetIsValid()) {
        return false;
    }
    String topFolder = getRootFolderName();
    manager = new //$NON-NLS-1$
    JobJavaScriptsManager(//$NON-NLS-1$
    exportChoiceMap, //$NON-NLS-1$
    contextCombo.getText(), //$NON-NLS-1$
    "all", //$NON-NLS-1$
    IProcessor.NO_STATISTICS, IProcessor.NO_TRACES);
    List<ExportFileResource> resourcesToExport = null;
    try {
        resourcesToExport = getExportResources();
    } catch (ProcessorException e) {
        MessageBoxExceptionHandler.process(e);
        return false;
    }
    setTopFolder(resourcesToExport, topFolder);
    // Save dirty editors if possible but do not stop if not all are saved
    saveDirtyEditors();
    // about to invoke the operation so save our state
    saveWidgetValues();
    // boolean ok = executeExportOperation(new ArchiveFileExportOperationFullPath(process));
    ArchiveFileExportOperationFullPath exporterOperation = getExporterOperation(resourcesToExport);
    boolean ok = executeExportOperation(exporterOperation);
    // path can like name/name
    manager.deleteTempFiles();
    ProcessorUtilities.resetExportConfig();
    for (int i = 0; i < process.length; i++) {
        ProcessItem processItem = (ProcessItem) process[i].getItem();
        try {
            ProcessorUtilities.generateCode(processItem, processItem.getProcess().getDefaultContext(), false, false);
        } catch (ProcessorException e) {
            ExceptionHandler.process(e);
        }
    }
    // cantoine : connection to SpagoBiEngineClient to publish Job.
    try {
        Project project = ((RepositoryContext) CorePlugin.getContext().getProperty(Context.REPOSITORY_CONTEXT_KEY)).getProject();
        // retrieve user, password, host, port from selected SpagoBiServer
        String selectedSpagoBiEngineName = serverSpagoBi.getItem(serverSpagoBi.getSelectionIndex());
        SpagoBiServer spagoBiServer = null;
        List<SpagoBiServer> listServerSapgo = null;
        // ProxyRepositoryFactory proxyRepositoryFactory = ProxyRepositoryFactory.getInstance();
        // try {
        listServerSapgo = SpagoBiServerHelper.parse(new SpagoBiPreferencePage().getPreferenceStore().getString(SpagoBiServer.SPAGOBI_SERVER));
        if (listServerSapgo != null && !listServerSapgo.isEmpty()) {
            Iterator<SpagoBiServer> iterator = listServerSapgo.iterator();
            while (iterator.hasNext()) {
                spagoBiServer = iterator.next();
                if (spagoBiServer.getEngineName().equals(selectedSpagoBiEngineName)) {
                    break;
                }
            }
        }
        // } catch (PersistenceException e) {
        // displayErrorDialog(e.getMessage());
        // }
        // "biadmin";
        String user = spagoBiServer.getLogin();
        // "biadmin";
        String password = spagoBiServer.getPassword();
        String host = spagoBiServer.getHost();
        String port = spagoBiServer.getPort();
        // create the client
        //$NON-NLS-1$
        ISpagoBITalendEngineClient client = new SpagoBITalendEngineClient(user, password, host, port, "SpagoBITalendEngine");
        // get some informations about the engine instance referenced by the client
        //$NON-NLS-1$
        System.out.println("Engine version: " + client.getEngineVersion());
        //$NON-NLS-1$
        System.out.println("Engine fullname: " + client.getEngineName());
        // prepare parameters used during deployment
        JobDeploymentDescriptor jobDeploymentDescriptor = new JobDeploymentDescriptor(project.getLabel(), project.getLanguage().getName());
        File zipFile = new File(getDestinationValue());
        // deploy job on engine runtime
        boolean result = client.deployJob(jobDeploymentDescriptor, zipFile);
        if (result)
            //$NON-NLS-1$
            System.out.println("Jobs deployed succesfully");
        else
            //$NON-NLS-1$
            System.out.println("Jobs not deployed");
    } catch (EngineUnavailableException e) {
        //$NON-NLS-1$
        System.err.println("ERROR: " + e.getMessage());
    } catch (AuthenticationFailedException e) {
        //$NON-NLS-1$
        System.err.println("ERROR: " + e.getMessage());
    } catch (UnsupportedEngineVersionException e) {
        //$NON-NLS-1$
        System.err.println("ERROR: Unsupported engine version");
        System.err.println(//$NON-NLS-1$
        "You are using TalendEngineClientAPI version " + SpagoBITalendEngineClient.CLIENTAPI_VERSION_NUMBER + //$NON-NLS-1$
        ". " + //$NON-NLS-1$
        "The TalendEngine instance you are trying to connect to require TalendEngineClientAPI version " + e.getComplianceVersion() + //$NON-NLS-1$
        " or grater.");
    } catch (ServiceInvocationFailedException e) {
        //$NON-NLS-1$
        System.err.println("ERROR: " + e.getMessage());
        //$NON-NLS-1$ //$NON-NLS-2$
        System.err.println("StatusLine: " + e.getStatusLine() + "responseBody: " + e.getResponseBody());
    }
    return ok;
// return true;
}
Also used : SpagoBiServer(org.talend.core.model.properties.SpagoBiServer) ServiceInvocationFailedException(it.eng.spagobi.engines.talend.client.exception.ServiceInvocationFailedException) RepositoryContext(org.talend.core.context.RepositoryContext) JobDeploymentDescriptor(it.eng.spagobi.engines.talend.client.JobDeploymentDescriptor) AuthenticationFailedException(it.eng.spagobi.engines.talend.client.exception.AuthenticationFailedException) ISpagoBITalendEngineClient(it.eng.spagobi.engines.talend.client.ISpagoBITalendEngineClient) SpagoBITalendEngineClient(it.eng.spagobi.engines.talend.client.SpagoBITalendEngineClient) SpagoBiPreferencePage(org.talend.sbi.engines.client.ui.preferences.SpagoBiPreferencePage) ProcessorException(org.talend.designer.runprocess.ProcessorException) UnsupportedEngineVersionException(it.eng.spagobi.engines.talend.client.exception.UnsupportedEngineVersionException) ExportChoice(org.talend.repository.ui.wizards.exportjob.scriptsmanager.JobScriptsManager.ExportChoice) Project(org.talend.core.model.general.Project) EngineUnavailableException(it.eng.spagobi.engines.talend.client.exception.EngineUnavailableException) ProcessItem(org.talend.core.model.properties.ProcessItem) ExportFileResource(org.talend.repository.documentation.ExportFileResource) IRepositoryViewObject(org.talend.core.model.repository.IRepositoryViewObject) ISpagoBITalendEngineClient(it.eng.spagobi.engines.talend.client.ISpagoBITalendEngineClient) File(java.io.File) ArchiveFileExportOperationFullPath(org.talend.core.ui.export.ArchiveFileExportOperationFullPath)

Example 2 with SpagoBiServer

use of org.talend.core.model.properties.SpagoBiServer in project tdi-studio-se by Talend.

the class SpagoBiServerHelper method parse.

public static List<SpagoBiServer> parse(String stringList) {
    if (//$NON-NLS-1$
    stringList == null || "".equals(stringList))
        return EMPTY_SPAGOBISERVER_LIST;
    final List<String> strings = readString(stringList);
    List<SpagoBiServer> result = new ArrayList<SpagoBiServer>();
    for (String spagoBiServerStr : strings) {
        final SpagoBiServer spagoBiServer = PropertiesFactory.eINSTANCE.createSpagoBiServer();
        spagoBiServer.setEngineName(getEngineName(spagoBiServerStr));
        spagoBiServer.setShortDescription(getShortDescription(spagoBiServerStr));
        spagoBiServer.setHost(getHost(spagoBiServerStr));
        spagoBiServer.setPort(getPort(spagoBiServerStr));
        spagoBiServer.setLogin(getLogin(spagoBiServerStr));
        spagoBiServer.setPassword(getPassword(spagoBiServerStr));
        // spagoBiServer.setApplicationContext(getApplicationContext(spagoBiServerStr));
        result.add(spagoBiServer);
    }
    return Collections.unmodifiableList(result);
}
Also used : SpagoBiServer(org.talend.core.model.properties.SpagoBiServer) ArrayList(java.util.ArrayList)

Example 3 with SpagoBiServer

use of org.talend.core.model.properties.SpagoBiServer in project tdi-studio-se by Talend.

the class SpagicServerHelper method parse.

public static List<SpagoBiServer> parse(String stringList) {
    if (//$NON-NLS-1$
    stringList == null || "".equals(stringList))
        return EMPTY_SPAGOBISERVER_LIST;
    final List<String> strings = readString(stringList);
    List<SpagoBiServer> result = new ArrayList<SpagoBiServer>();
    for (String spagoBiServerStr : strings) {
        final SpagoBiServer spagoBiServer = PropertiesFactory.eINSTANCE.createSpagoBiServer();
        spagoBiServer.setEngineName(getEngineName(spagoBiServerStr));
        spagoBiServer.setShortDescription(getShortDescription(spagoBiServerStr));
        spagoBiServer.setHost(getHost(spagoBiServerStr));
        spagoBiServer.setPort(getPort(spagoBiServerStr));
        spagoBiServer.setLogin(getLogin(spagoBiServerStr));
        spagoBiServer.setPassword(getPassword(spagoBiServerStr));
        // spagoBiServer.setApplicationContext(getApplicationContext(spagoBiServerStr));
        result.add(spagoBiServer);
    }
    return Collections.unmodifiableList(result);
}
Also used : SpagoBiServer(org.talend.core.model.properties.SpagoBiServer) ArrayList(java.util.ArrayList)

Example 4 with SpagoBiServer

use of org.talend.core.model.properties.SpagoBiServer in project tdi-studio-se by Talend.

the class PublishOnSpagoExportWizardPage method createOptions.

/**
     * Create the buttons for the group that determine if the entire or selected directory structure should be created.
     * 
     * @param optionsGroup
     * @param font
     */
protected void createOptions(Composite optionsGroup, Font font) {
    // create directory structure radios
    List<SpagoBiServer> listServerSapgo = null;
    List<String> listEngine = new ArrayList<String>();
    // TODO SML remove unused lines if this fabulous code works fine
    // ProxyRepositoryFactory proxyRepositoryFactory = ProxyRepositoryFactory.getInstance();
    // try {
    // listServerSapgo = proxyRepositoryFactory.getSpagoBiServer();
    listServerSapgo = SpagoBiServerHelper.parse(new SpagoBiPreferencePage().getPreferenceStore().getString(SpagoBiServer.SPAGOBI_SERVER));
    if (listServerSapgo != null && !listServerSapgo.isEmpty()) {
        Iterator<SpagoBiServer> iterator = listServerSapgo.iterator();
        while (iterator.hasNext()) {
            SpagoBiServer spagoBiServer = iterator.next();
            listEngine.add(spagoBiServer.getEngineName());
        }
    }
    // } catch (PersistenceException e) {
    // displayErrorDialog(e.getMessage());
    // }
    serverSpagoBi = new LabelledCombo(optionsGroup, Messages.getString("PublishOnSpagoExportWizardPage.SpagoBI.Server"), Messages.getString("PublishOnSpagoExportWizardPage.SpecifyServer.PublishJob"), //$NON-NLS-1$ //$NON-NLS-2$
    listEngine);
    serverSpagoBi.select(0);
    //$NON-NLS-1$
    jobLabel = new LabelledText(optionsGroup, Messages.getString("PublishOnSpagoExportWizardPage.jobLabel"), true);
    jobLabel.setText(jobLabelName);
    //$NON-NLS-1$
    jobName = new LabelledText(optionsGroup, Messages.getString("PublishOnSpagoExportWizardPage.jobName"), true);
    jobName.setText(jobLabelName);
    //$NON-NLS-1$
    jobDescription = new LabelledText(optionsGroup, Messages.getString("PublishOnSpagoExportWizardPage.jobDescription"), true);
    jobDescription.setText(jobPurposeDescription);
    contextButton = new Button(optionsGroup, SWT.CHECK | SWT.LEFT);
    //$NON-NLS-1$
    contextButton.setText(Messages.getString("JobScriptsExportWizardPage.contextPerlScripts"));
    contextButton.setSelection(true);
    contextButton.setFont(font);
    contextCombo = new Combo(optionsGroup, SWT.PUSH);
// spagoVisible = new Button(optionsGroup, SWT.CHECK | SWT.LEFT);
// spagoVisible.setText(Messages.getString("PublishOnSpagoExportWizardPage.spagoVisible")); //$NON-NLS-1$
// spagoVisible.setSelection(true);
// spagoVisible.setFont(font);
}
Also used : SpagoBiServer(org.talend.core.model.properties.SpagoBiServer) LabelledCombo(org.talend.commons.ui.swt.formtools.LabelledCombo) LabelledText(org.talend.commons.ui.swt.formtools.LabelledText) Button(org.eclipse.swt.widgets.Button) ArrayList(java.util.ArrayList) Combo(org.eclipse.swt.widgets.Combo) LabelledCombo(org.talend.commons.ui.swt.formtools.LabelledCombo) SpagoBiPreferencePage(org.talend.sbi.engines.client.ui.preferences.SpagoBiPreferencePage)

Aggregations

SpagoBiServer (org.talend.core.model.properties.SpagoBiServer)4 ArrayList (java.util.ArrayList)3 SpagoBiPreferencePage (org.talend.sbi.engines.client.ui.preferences.SpagoBiPreferencePage)2 ISpagoBITalendEngineClient (it.eng.spagobi.engines.talend.client.ISpagoBITalendEngineClient)1 JobDeploymentDescriptor (it.eng.spagobi.engines.talend.client.JobDeploymentDescriptor)1 SpagoBITalendEngineClient (it.eng.spagobi.engines.talend.client.SpagoBITalendEngineClient)1 AuthenticationFailedException (it.eng.spagobi.engines.talend.client.exception.AuthenticationFailedException)1 EngineUnavailableException (it.eng.spagobi.engines.talend.client.exception.EngineUnavailableException)1 ServiceInvocationFailedException (it.eng.spagobi.engines.talend.client.exception.ServiceInvocationFailedException)1 UnsupportedEngineVersionException (it.eng.spagobi.engines.talend.client.exception.UnsupportedEngineVersionException)1 File (java.io.File)1 Button (org.eclipse.swt.widgets.Button)1 Combo (org.eclipse.swt.widgets.Combo)1 LabelledCombo (org.talend.commons.ui.swt.formtools.LabelledCombo)1 LabelledText (org.talend.commons.ui.swt.formtools.LabelledText)1 RepositoryContext (org.talend.core.context.RepositoryContext)1 Project (org.talend.core.model.general.Project)1 ProcessItem (org.talend.core.model.properties.ProcessItem)1 IRepositoryViewObject (org.talend.core.model.repository.IRepositoryViewObject)1 ArchiveFileExportOperationFullPath (org.talend.core.ui.export.ArchiveFileExportOperationFullPath)1