Search in sources :

Example 16 with DataBase

use of org.obeonetwork.dsl.database.DataBase in project InformationSystem by ObeoNetwork.

the class MpdToMldBidiRules method createForeignKeys.

private void createForeignKeys(TableContainer sourceTableContainer) {
    // create all foreignkeys
    for (AbstractTable sourceAbstractTable : sourceTableContainer.getTables()) {
        if (sourceAbstractTable instanceof Table) {
            Table sourceTable = (Table) sourceAbstractTable;
            Table targetTable = getFromOutputTraceabilityMap(sourceTable, DatabasePackage.Literals.TABLE);
            for (ForeignKey foreignKey : sourceTable.getForeignKeys()) {
                createFK(foreignKey, targetTable);
            }
        }
    }
    if (sourceTableContainer instanceof DataBase) {
        DataBase sourceDataBase = (DataBase) sourceTableContainer;
        for (Schema sourceSchema : sourceDataBase.getSchemas()) {
            createForeignKeys(sourceSchema);
        }
    }
}
Also used : AbstractTable(org.obeonetwork.dsl.database.AbstractTable) Table(org.obeonetwork.dsl.database.Table) AbstractTable(org.obeonetwork.dsl.database.AbstractTable) Schema(org.obeonetwork.dsl.database.Schema) ForeignKey(org.obeonetwork.dsl.database.ForeignKey) DataBase(org.obeonetwork.dsl.database.DataBase)

Example 17 with DataBase

use of org.obeonetwork.dsl.database.DataBase in project InformationSystem by ObeoNetwork.

the class DatabaseModelWizard method performFinish.

/**
 * Do the work after everything is specified.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated NOT
 */
@Override
public boolean performFinish() {
    try {
        // Remember the file.
        // 
        final IFile modelFile = getModelFile();
        // Do the work within an operation.
        // 
        WorkspaceModifyOperation operation = new WorkspaceModifyOperation() {

            @Override
            protected void execute(IProgressMonitor progressMonitor) {
                try {
                    // Create a resource set
                    // 
                    ResourceSet resourceSet = new ResourceSetImpl();
                    // Get the URI of the model file.
                    // 
                    URI fileURI = URI.createPlatformResourceURI(modelFile.getFullPath().toString(), true);
                    // Create a resource for this file.
                    // 
                    Resource resource = resourceSet.createResource(fileURI);
                    // Add the initial model object to the contents.
                    // 
                    EObject rootObject = createInitialModel();
                    // Set a default name on the root object
                    if (rootObject instanceof NamedElement) {
                        // Compute default name from model file path
                        String defaultName = modelFile.getName();
                        defaultName = defaultName.substring(0, defaultName.length() - modelFile.getFileExtension().length() - 1);
                        ((NamedElement) rootObject).setName(defaultName);
                    }
                    if (rootObject != null) {
                        resource.getContents().add(rootObject);
                    }
                    // Set the types library
                    if (rootObject instanceof DataBase) {
                        Resource typesLibraryResource = null;
                        // We set the types library
                        String dbVendor = initialObjectCreationPage.dbVendorField.getText();
                        if (DB_MYSQL_5.equals(dbVendor)) {
                            typesLibraryResource = resourceSet.getResource(URI.createURI(MYSQL_PATHMAP), true);
                        } else if (DB_ORACLE_11G.equals(dbVendor)) {
                            typesLibraryResource = resourceSet.getResource(URI.createURI(ORACLE_PATHMAP), true);
                        } else if (DB_H2_13.equals(dbVendor)) {
                            typesLibraryResource = resourceSet.getResource(URI.createURI(H2_PATHMAP), true);
                        } else if (DB_POSTGRES_9.equals(dbVendor)) {
                            typesLibraryResource = resourceSet.getResource(URI.createURI(POSTGRES_PATHMAP), true);
                        } else if (DB_SQLSERVER_2008.equals(dbVendor)) {
                            typesLibraryResource = resourceSet.getResource(URI.createURI(SQLSERVER_PATHMAP), true);
                        } else if (DB_LOGICAL_TYPES.equals(dbVendor)) {
                            typesLibraryResource = resourceSet.getResource(URI.createURI(LOGICAL_PATHMAP), true);
                        }
                        if (typesLibraryResource != null) {
                            EObject typesRoot = typesLibraryResource.getContents().get(0);
                            if (typesRoot instanceof TypesLibrary) {
                                ((DataBase) rootObject).getUsedLibraries().add((TypesLibrary) typesRoot);
                            }
                        }
                    }
                    // Save the contents of the resource to the file system.
                    // 
                    Map<Object, Object> options = new HashMap<Object, Object>();
                    options.put(XMLResource.OPTION_ENCODING, initialObjectCreationPage.getEncoding());
                    resource.save(options);
                } catch (Exception exception) {
                    DatabaseEditorPlugin.INSTANCE.log(exception);
                } finally {
                    progressMonitor.done();
                }
            }
        };
        getContainer().run(false, false, operation);
        // Select the new file resource in the current view.
        // 
        IWorkbenchWindow workbenchWindow = workbench.getActiveWorkbenchWindow();
        IWorkbenchPage page = workbenchWindow.getActivePage();
        final IWorkbenchPart activePart = page.getActivePart();
        if (activePart instanceof ISetSelectionTarget) {
            final ISelection targetSelection = new StructuredSelection(modelFile);
            getShell().getDisplay().asyncExec(new Runnable() {

                public void run() {
                    ((ISetSelectionTarget) activePart).selectReveal(targetSelection);
                }
            });
        }
        // 
        try {
            page.openEditor(new FileEditorInput(modelFile), workbench.getEditorRegistry().getDefaultEditor(modelFile.getFullPath().toString()).getId());
        } catch (PartInitException exception) {
            MessageDialog.openError(workbenchWindow.getShell(), DatabaseEditorPlugin.INSTANCE.getString("_UI_OpenEditorError_label"), exception.getMessage());
            return false;
        }
        return true;
    } catch (Exception exception) {
        DatabaseEditorPlugin.INSTANCE.log(exception);
        return false;
    }
}
Also used : IFile(org.eclipse.core.resources.IFile) HashMap(java.util.HashMap) WorkspaceModifyOperation(org.eclipse.ui.actions.WorkspaceModifyOperation) IStructuredSelection(org.eclipse.jface.viewers.IStructuredSelection) StructuredSelection(org.eclipse.jface.viewers.StructuredSelection) URI(org.eclipse.emf.common.util.URI) DataBase(org.obeonetwork.dsl.database.DataBase) IWorkbenchPart(org.eclipse.ui.IWorkbenchPart) EObject(org.eclipse.emf.ecore.EObject) ISelection(org.eclipse.jface.viewers.ISelection) ISetSelectionTarget(org.eclipse.ui.part.ISetSelectionTarget) PartInitException(org.eclipse.ui.PartInitException) IWorkbenchWindow(org.eclipse.ui.IWorkbenchWindow) ResourceSetImpl(org.eclipse.emf.ecore.resource.impl.ResourceSetImpl) Resource(org.eclipse.emf.ecore.resource.Resource) XMLResource(org.eclipse.emf.ecore.xmi.XMLResource) IResource(org.eclipse.core.resources.IResource) TypesLibrary(org.obeonetwork.dsl.typeslibrary.TypesLibrary) ResourceSet(org.eclipse.emf.ecore.resource.ResourceSet) PartInitException(org.eclipse.ui.PartInitException) MissingResourceException(java.util.MissingResourceException) IProgressMonitor(org.eclipse.core.runtime.IProgressMonitor) FileEditorInput(org.eclipse.ui.part.FileEditorInput) IWorkbenchPage(org.eclipse.ui.IWorkbenchPage) EObject(org.eclipse.emf.ecore.EObject) NamedElement(org.obeonetwork.dsl.database.NamedElement)

Example 18 with DataBase

use of org.obeonetwork.dsl.database.DataBase in project InformationSystem by ObeoNetwork.

the class DatabaseEditLabelServices method caseColumn.

@Override
public DatabaseElement caseColumn(Column column) {
    // the label can be in the form "attributeName : typeName (precision, length)"
    int pos = editedLabelContent.indexOf(':');
    if (pos != -1) {
        String attributeName = editedLabelContent.substring(0, pos).trim();
        column.setName(attributeName);
        String typeDef = editedLabelContent.substring(pos + 1).trim();
        // Retrieve types libraries
        DataBase database = getDataBase(column);
        if (database != null) {
            Collection<NativeTypesLibrary> nativeTypesLibraries = new ArrayList<NativeTypesLibrary>();
            for (TypesLibrary library : database.getUsedLibraries()) {
                if (library instanceof NativeTypesLibrary) {
                    nativeTypesLibraries.add((NativeTypesLibrary) library);
                }
            }
            setType(column, typeDef, nativeTypesLibraries);
        }
    } else {
        // there is only a name
        return super.caseNamedElement(column);
    }
    return column;
}
Also used : NativeTypesLibrary(org.obeonetwork.dsl.typeslibrary.NativeTypesLibrary) ArrayList(java.util.ArrayList) NativeTypesLibrary(org.obeonetwork.dsl.typeslibrary.NativeTypesLibrary) TypesLibrary(org.obeonetwork.dsl.typeslibrary.TypesLibrary) DataBase(org.obeonetwork.dsl.database.DataBase)

Example 19 with DataBase

use of org.obeonetwork.dsl.database.DataBase in project InformationSystem by ObeoNetwork.

the class ScaffoldingUtils method isValidInputForMpd.

public static boolean isValidInputForMpd(Object element) {
    if (element instanceof EObject) {
        EObject eltAsEObject = (EObject) element;
        DataBase database = getDatabaseFromObject(eltAsEObject);
        return usesLibraryOfKind(database, TypesLibraryKind.PHYSICAL_TYPES);
    }
    return false;
}
Also used : DAnalysisSessionEObject(org.eclipse.sirius.viewpoint.DAnalysisSessionEObject) EObject(org.eclipse.emf.ecore.EObject) DataBase(org.obeonetwork.dsl.database.DataBase)

Example 20 with DataBase

use of org.obeonetwork.dsl.database.DataBase in project InformationSystem by ObeoNetwork.

the class ScaffoldingUtils method isValidInputForMld.

public static boolean isValidInputForMld(Object element) {
    if (element instanceof EObject) {
        EObject eltAsEObject = (EObject) element;
        DataBase database = getDatabaseFromObject(eltAsEObject);
        return usesLibraryOfKind(database, TypesLibraryKind.LOGICAL_TYPES);
    }
    return false;
}
Also used : DAnalysisSessionEObject(org.eclipse.sirius.viewpoint.DAnalysisSessionEObject) EObject(org.eclipse.emf.ecore.EObject) DataBase(org.obeonetwork.dsl.database.DataBase)

Aggregations

DataBase (org.obeonetwork.dsl.database.DataBase)26 Schema (org.obeonetwork.dsl.database.Schema)8 Resource (org.eclipse.emf.ecore.resource.Resource)6 Test (org.junit.Test)6 DataSource (org.obeonetwork.dsl.database.reverse.source.DataSource)6 MultiDataBaseQueries (org.obeonetwork.dsl.database.reverse.utils.MultiDataBaseQueries)6 EObject (org.eclipse.emf.ecore.EObject)5 URI (org.eclipse.emf.common.util.URI)3 ResourceSet (org.eclipse.emf.ecore.resource.ResourceSet)3 ResourceSetImpl (org.eclipse.emf.ecore.resource.impl.ResourceSetImpl)3 TypesLibrary (org.obeonetwork.dsl.typeslibrary.TypesLibrary)3 ArrayList (java.util.ArrayList)2 IResource (org.eclipse.core.resources.IResource)2 Comparison (org.eclipse.emf.compare.Comparison)2 ISelection (org.eclipse.jface.viewers.ISelection)2 DAnalysisSessionEObject (org.eclipse.sirius.viewpoint.DAnalysisSessionEObject)2 AbstractTable (org.obeonetwork.dsl.database.AbstractTable)2 Table (org.obeonetwork.dsl.database.Table)2 File (java.io.File)1 IOException (java.io.IOException)1