/// <summary>
        /// Applies project settings to fields name
        /// </summary> 
        private string NaturalizeNames_ForeignTableFieldName(DbTable table, DbForeignKey foreignKey)
        {
            if (string.IsNullOrEmpty(foreignKey.ForeignTableNameInLocalTable))
                return foreignKey.ForeignTableNameInLocalTable;
            var newName = NaturalizeNames_TableName_Rename(foreignKey.ForeignTableNameInLocalTable);

            var stringCompare = StringComparison.InvariantCulture;
            if (_patternProject.LanguageSettings.KeywordsCaseSensitive == false)
                stringCompare = StringComparison.InvariantCultureIgnoreCase;

            // suppress pattern
            string replacement = _patternProject.LanguageSettings.LanguageKeywordsSuppress;

            int initReplacePartCount = 0;
            string initReplacePartStr = "";

            // column name should not be the same
            if (newName.Equals(table.TableNameSchema, stringCompare) ||
                newName.Equals(table.TableNameSchemaCS, stringCompare))
            {
                var renamedName = string.Format(replacement, newName, initReplacePartStr);
                initReplacePartCount++;
                initReplacePartStr = initReplacePartCount.ToString();

                // no duplicate
                while (table.FindColumnSchema(renamedName) != null ||
                    table.ForeignKeys.Any(x => x.ForeignTableNameInLocalTable.Equals(renamedName, stringCompare)))
                {
                    renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();
                }
                newName = renamedName;
            }

            // foreign name is not changed and is a member
            if (newName.Equals(foreignKey.ForeignTableNameInLocalTable, stringCompare))
            {
                var sameNameForeignKeys =
                    table.ForeignKeys.Where(x => x.ForeignTableNameInLocalTable.Equals(newName, stringCompare)).ToList();

                // no more than one occurrence, including itself
                if (table.FindColumnSchema(newName) != null ||
                    (sameNameForeignKeys.Count > 1 && sameNameForeignKeys.IndexOf(foreignKey) > 0))
                {
                    var renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();

                    // no duplicate
                    while (table.FindColumnSchema(renamedName) != null ||
                        table.ForeignKeys.Any(x => x.ForeignTableNameInLocalTable.Equals(renamedName, stringCompare)))
                    {
                        renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();
                    }
                    newName = renamedName;
                }
            }
            else
            {
                if (table.FindColumnSchema(newName) != null ||
                        table.ForeignKeys.Any(x => x.ForeignTableNameInLocalTable.Equals(newName, stringCompare)))
                {
                    var renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();

                    // no duplicate
                    while (table.FindColumnSchema(renamedName) != null ||
                           table.ForeignKeys.Any(x => x.ForeignTableNameInLocalTable.Equals(renamedName, stringCompare)))
                    {
                        renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();
                    }
                    newName = renamedName;
                }
            }

            // checking keyword match if only foreign name is not changed
            if (newName.Equals(foreignKey.ForeignTableNameInLocalTable, stringCompare))
            {
                // ignoring keywords
                foreach (var keyword in _patternProject.LanguageSettings.LanguageKeywords)
                {
                    // keyword match
                    if (newName.Equals(keyword, stringCompare))
                    {
                        var renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();

                        // no duplicate
                        while (table.FindColumnSchema(renamedName) != null ||
                            table.ForeignKeys.Any(x => x.ForeignTableNameInLocalTable.Equals(renamedName, stringCompare)))
                        {
                            renamedName = string.Format(replacement, newName, initReplacePartStr);
                            initReplacePartCount++;
                            initReplacePartStr = initReplacePartCount.ToString();
                        }

                        newName = renamedName;
                        // name is chaned and check is no longer required
                        break;
                    }
                }
            }

            // foreign name is ok to be used
            return newName;
        }
        /// <summary>
        /// </summary>
        private string NaturalizeNames_TableSchemaName_Duplicate(DbTable table, bool checkViews)
        {
            string newName = table.TableNameSchema;

            // suppress pattern
            string replacement = _patternProject.LanguageSettings.LanguageKeywordsSuppress;

            int initReplacePartCount = 0;
            string initReplacePartStr = "";

            if (checkViews)
            {
                var sameNameTables = _database.SchemaTables.Where(x => x.TableNameSchema == newName).ToList();
                sameNameTables.AddRange(_database.SchemaViews.Where(x => x.TableNameSchema == newName));

                if (sameNameTables.Count > 1 && sameNameTables.IndexOf(table) > 0)
                {
                    var renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();

                    while (_database.SchemaTables.Any(x => x.TableNameSchema == renamedName) ||
                        _database.SchemaViews.Any(x => x.TableNameSchema == renamedName))
                    {
                        renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();
                    }
                    newName = renamedName;
                }
            }
            else
            {
                var sameNameTables = _database.SchemaTables.Where(x => x.TableNameSchema == newName).ToList();

                if (sameNameTables.Count > 1 && sameNameTables.IndexOf(table) > 0)
                {
                    var renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();

                    while (_database.SchemaTables.Any(x => x.TableNameSchema == renamedName))
                    {
                        renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();
                    }
                    newName = renamedName;
                }
            }
            return newName;
        }
Пример #3
0
        string PatternContentAppliesTo_TablesAndViews(
			string baseContent,
			List<PatternContent> patternContent,
			DbTable[] tablesList,
			DbTable[] viewsList)
        {
            string appliedContent = "";

            // ---------------------------------
            // Here, all tables/views will apply

            foreach (var pattern in patternContent)
            {
                string replacementName = string.Format(ReplaceConsts.PatternContentReplacer, pattern.Name);
                int index = 0;

                // is there a pattern for that
                if (baseContent.IndexOf(replacementName) == -1)
                    continue;

                switch (pattern.ConditionKeyMode)
                {
                    //case PatternContentAppliesTo.General:
                    //    // general part
                    //    appliedContent = PatternContentAppliesTo_ProjectFileGeneral(pattern);

                    //    // replace the content
                    //    baseContent = baseContent.Replace(replacementName, appliedContent);

                    //    break;
                    case PatternConditionKeyMode.DatabaseProvider:
                        ConditionItem dbReplacer = null;
                        switch (this._database.Provider)
                        {
                            case DatabaseProvider.Oracle:
                                dbReplacer = pattern.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.Oracle);
                                break;

                            case DatabaseProvider.SQLServer:
                                dbReplacer = pattern.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SQLServer);
                                break;

                            case DatabaseProvider.SQLite:
                                dbReplacer = pattern.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SQLite);
                                break;

                            case DatabaseProvider.SqlCe4:
                                dbReplacer = pattern.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SqlCe4);
                                break;
                        }

                        if (dbReplacer != null)
                        {
                            appliedContent = Replacer_ConditionItem_AppliesToGeneral(dbReplacer.ContentText);

                            // replace the content
                            baseContent = baseContent.Replace(replacementName, appliedContent);
                        }
                        break;

                    case PatternConditionKeyMode.TablesAndViewsAll:
                        appliedContent = "";
                        index = 0;

                        // applying all the views
                        for (int i = 0; i < tablesList.Length; i++)
                        {
                            var tbl = tablesList[i];
                            if (!UserHasSelectedTable(tbl.TableName))
                                continue;

                            if (index > 0)
                                appliedContent += pattern.ItemsSeperator;
                            appliedContent += ConditionItem_AppliesToTableAndViewsAll(pattern, tbl);

                            // the seperator identicator
                            index++;

                            // internal pattern contents
                            if (pattern.ConditionContents.Count > 0)
                            {
                                // nested call
                                appliedContent = PatternContentAppliesTo_OneTable(
                                    appliedContent,
                                    pattern.ConditionContents,
                                    tbl,
                                    null, null);
                            }
                        }

                        // seperator between tables and views!
                        // we have views too
                        if (viewsList.Length > 0 && _projectDef.DbSettions.HasSelectedView())
                            appliedContent += pattern.ItemsSeperator;

                        index = 0;
                        // applying all the views
                        for (int i = 0; i < viewsList.Length; i++)
                        {
                            var view = viewsList[i];

                            // check if selected by user
                            if (!UserHasSelectedView(view.TableName))
                                continue;

                            if (index > 0)
                                appliedContent += pattern.ItemsSeperator;
                            appliedContent += ConditionItem_AppliesToTableAndViewsAll(pattern, view);

                            // the seperator identicator
                            index++;

                            // internal pattern contents
                            if (pattern.ConditionContents.Count > 0)
                            {
                                // nested call
                                appliedContent = PatternContentAppliesTo_OneTable(
                                    appliedContent,
                                    pattern.ConditionContents,
                                    view,
                                    null, null);
                            }
                        }

                        // base content
                        if (!string.IsNullOrEmpty(pattern.BaseContent))
                        {
                            appliedContent = pattern.BaseContent.Replace(ReplaceConsts.PatternContentInnerContents, appliedContent);
                        }

                        // replace the content
                        baseContent = baseContent.Replace(replacementName, appliedContent);
                        break;

                    case PatternConditionKeyMode.TablesAll:
                        appliedContent = "";
                        index = 0;

                        // applying all the views
                        for (int i = 0; i < tablesList.Length; i++)
                        {
                            var tbl = tablesList[i];
                            if (!UserHasSelectedTable(tbl.TableName))
                                continue;

                            if (index > 0)
                                appliedContent += pattern.ItemsSeperator;
                            appliedContent += ConditionItem_AppliesToTableAndViewsAll(pattern, tbl);

                            // the seperator identicator
                            index++;

                            // internal pattern contents
                            if (pattern.ConditionContents.Count > 0)
                            {
                                // nested call
                                appliedContent = PatternContentAppliesTo_OneTable(
                                    appliedContent, pattern.ConditionContents,
                                    tbl,
                                    null, null);
                            }
                        }

                        // base content
                        if (!string.IsNullOrEmpty(pattern.BaseContent))
                        {
                            appliedContent = pattern.BaseContent.Replace(ReplaceConsts.PatternContentInnerContents, appliedContent);
                        }

                        // replace the content
                        baseContent = baseContent.Replace(replacementName, appliedContent);
                        break;

                    case PatternConditionKeyMode.ViewsAll:
                        index = 0;
                        appliedContent = "";

                        // applying all the views
                        for (int i = 0; i < viewsList.Length; i++)
                        {
                            var view = viewsList[i];

                            // check if selected by user
                            if (!UserHasSelectedView(view.TableName))
                                continue;

                            if (index > 0)
                                appliedContent += pattern.ItemsSeperator;
                            appliedContent += ConditionItem_AppliesToTableAndViewsAll(pattern, view);

                            // the seperator identicator
                            index++;

                            // internal pattern contents
                            if (pattern.ConditionContents.Count > 0)
                            {
                                // nested call
                                appliedContent = PatternContentAppliesTo_OneTable(
                                    appliedContent, pattern.ConditionContents,
                                    view,
                                    null, null);
                            }
                        }

                        // base content
                        if (!string.IsNullOrEmpty(pattern.BaseContent))
                        {
                            appliedContent = pattern.BaseContent.Replace(ReplaceConsts.PatternContentInnerContents, appliedContent);
                        }

                        // replace the content
                        baseContent = baseContent.Replace(replacementName, appliedContent);
                        break;

                }
            }
            return baseContent;
        }
        ///// <summary>
        ///// Applies project settings to .NET data type
        ///// </summary>
        //private string NaturalizeNames_DotNetType(string dotNetTypeName)
        //{
        //    return dotNetTypeName.Replace(DbColumn.DotNetArrayIdenticator, _patternProject.LanguageSettings.ArrayIdenticator);
        //}
        /// <summary>
        /// Applies project settings to fields name
        /// </summary>
        /// <param name="table"></param>
        /// <param name="fieldName"></param>
        /// <param name="isAlreadyMember">is the field aready member of the table, or it is an external</param>
        /// <returns></returns>
        private string NaturalizeNames_FieldName(DbTable table, DbColumn column, string fieldName, bool isAlreadyMember)
        {
            if (string.IsNullOrEmpty(fieldName))
                return fieldName;
            var newName = fieldName;

            var stringCompare = StringComparison.InvariantCulture;
            if (_patternProject.LanguageSettings.KeywordsCaseSensitive == false)
                stringCompare = StringComparison.InvariantCultureIgnoreCase;

            // suppress pattern
            string replacement = _patternProject.LanguageSettings.LanguageKeywordsSuppress;

            // renaming options
            newName = NaturalizeNames_RenamingOptions(newName, _projectDef.RenamingOptions, false, true);

            // remove names
            newName = NaturalizeNames_Name_RemoveInvalidChars(newName);

            int initReplacePartCount = 0;
            string initReplacePartStr = "";

            // column name should not be same
            if (newName.Equals(table.TableNameSchema, stringCompare) ||
                newName.Equals(table.TableNameSchemaCS, stringCompare))
            {
                var renamedName = string.Format(replacement, newName, initReplacePartStr);
                initReplacePartCount++;
                initReplacePartStr = initReplacePartCount.ToString();

                // no duplicate
                while (table.FindColumnSchema(renamedName) != null)
                {
                    renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();
                }

                newName = renamedName;
            }

            // field name is not changed and is a member
            if (newName.Equals(fieldName, stringCompare) && isAlreadyMember)
            {
                var sameNameColumns =
                    table.SchemaColumns.Where(x => x.FieldNameSchema.Equals(newName, stringCompare)).ToList();

                // no more than one accurance, including itself
                if (sameNameColumns.Count > 1 &&
                    sameNameColumns.IndexOf(column) > 0)
                {
                    var renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();

                    // no duplicate
                    while (table.FindColumnSchema(renamedName) != null)
                    {
                        renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();
                    }
                    newName = renamedName;
                }
            }
            else
            {
                if (table.FindColumnSchema(newName) != null)
                {
                    var renamedName = string.Format(replacement, newName, initReplacePartStr);
                    initReplacePartCount++;
                    initReplacePartStr = initReplacePartCount.ToString();

                    // no duplicate
                    while (table.FindColumnSchema(renamedName) != null)
                    {
                        renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();
                    }
                    newName = renamedName;
                }
            }

            // checking keyword match if only not changed field name
            if (newName.Equals(fieldName, stringCompare))
            {
                // ignoring keywords
                foreach (var keyword in _patternProject.LanguageSettings.LanguageKeywords)
                {
                    // keyword match
                    if (newName.Equals(keyword, stringCompare))
                    {
                        var renamedName = string.Format(replacement, newName, initReplacePartStr);
                        initReplacePartCount++;
                        initReplacePartStr = initReplacePartCount.ToString();

                        // no duplicate
                        while (table.FindColumnSchema(renamedName) != null)
                        {
                            renamedName = string.Format(replacement, newName, initReplacePartStr);
                            initReplacePartCount++;
                            initReplacePartStr = initReplacePartCount.ToString();
                        }

                        newName = renamedName;
                        // name is chaned and check is no longer required
                        break;
                    }
                }
            }

            // field name is ok to be used
            return newName;
        }
Пример #5
0
 string ConditionItem_AppliesToTableAndViewsAll(PatternContent partialContent, DbTable table)
 {
     var conditionContent = partialContent.GetFirst();
     return Replacer_ConditionItem_AppliesToTable(conditionContent.ContentText, table);
 }
Пример #6
0
        /// <summary>
        /// One table, one column or one foreignKey in table!
        /// </summary>
        string PatternContentAppliesTo_OneTable(string baseContent,
			List<PatternContent> patternContent,
			DbTable table,
			DbColumn column,
			DbForeignKey foreignKey)
        {
            string appliedContent = "";

            // ---------------------------------
            // Only one table is applying here!

            // table can not be null here
            if (table == null)
            {
                return baseContent;
            }

            foreach (var pattern in patternContent)
            {
                string replacementName = string.Format(ReplaceConsts.PatternContentReplacer, pattern.Name);

                // is there a pattern for that
                if (baseContent.IndexOf(replacementName) == -1)
                    continue;

                switch (pattern.ConditionKeyMode)
                {
                    case PatternConditionKeyMode.General:
                        // nothing!
                        break;

                    case PatternConditionKeyMode.TablesAll:
                    case PatternConditionKeyMode.ViewsAll:
                    case PatternConditionKeyMode.TablesAndViewsAll:
                        // for one table? Meh, we do nothing!
                        break;

                    case PatternConditionKeyMode.TableAutoIncrement:
                    case PatternConditionKeyMode.TableIndexConstraint:
                    case PatternConditionKeyMode.TablePrimaryKey:
                    case PatternConditionKeyMode.TableUniqueConstraint:
                        appliedContent = ConditionItem_AppliesToTable(pattern, table);

                        // base content
                        if (!string.IsNullOrEmpty(pattern.BaseContent))
                        {
                            appliedContent = pattern.BaseContent.Replace(ReplaceConsts.PatternContentInnerContents, appliedContent);
                        }

                        // internal pattern contents
                        if (pattern.ConditionContents.Count > 0)
                        {
                            // nested call
                            appliedContent = PatternContentAppliesTo_OneTable(appliedContent, pattern.ConditionContents, table, null, null);
                        }

                        // replace the content
                        baseContent = baseContent.Replace(replacementName, appliedContent);
                        break;

                    case PatternConditionKeyMode.Field:
                    case PatternConditionKeyMode.FieldCondensedType:
                    case PatternConditionKeyMode.FieldKeyReadType:
                    case PatternConditionKeyMode.FieldKeyType:
                    case PatternConditionKeyMode.FieldPrimaryKey:
                    case PatternConditionKeyMode.FieldReferencedKeyType:
                        appliedContent = "";

                        // no special column is specified
                        if (column == null)
                        {
                            // replace in the main content
                            baseContent = Common.ReplaceEx(baseContent, replacementName, appliedContent, StringComparison.CurrentCulture);
                        }
                        else
                        {
                            // Apply the replacement to the pattern content
                            string columnReplace = ConditionItem_AppliesToColumn(pattern, table, column);

                            // The seperator
                            if (!string.IsNullOrEmpty(columnReplace))
                            {
                                // internal pattern contents
                                // FOR EACH column
                                if (pattern.ConditionContents.Count > 0)
                                {
                                    // nested call
                                    columnReplace = PatternContentAppliesTo_OneTable(
                                        columnReplace,
                                        pattern.ConditionContents,
                                        table,
                                        column,
                                        null);
                                }
                                appliedContent += columnReplace + pattern.ItemsSeperator;
                            }
                        }

                        // Remove additional ItemsSeperator
                        if (!string.IsNullOrEmpty(pattern.ItemsSeperator)
                            && appliedContent.EndsWith(pattern.ItemsSeperator))
                            appliedContent = appliedContent.Remove(appliedContent.Length - pattern.ItemsSeperator.Length, pattern.ItemsSeperator.Length);

                        // internal pattern contents
                        // FOR EACH column
                        if (pattern.ConditionContents.Count > 0)
                        {
                            // nested call
                            appliedContent = PatternContentAppliesTo_OneTable(appliedContent, pattern.ConditionContents, table, null, null);
                        }

                        // replace in the main content
                        baseContent = Common.ReplaceEx(baseContent, replacementName, appliedContent, StringComparison.CurrentCulture);
                        break;

                    case PatternConditionKeyMode.FieldsAll:
                    case PatternConditionKeyMode.FieldsCondensedTypeAll:
                    case PatternConditionKeyMode.FieldsKeyReadTypeAll:
                    case PatternConditionKeyMode.FieldsKeyTypeAll:
                    case PatternConditionKeyMode.FieldsPrimaryKeyAll:
                    case PatternConditionKeyMode.FieldsReferencedKeyTypeAll:
                        appliedContent = "";

                        // fetch the columns and apply the replacement operation
                        foreach (var tableColumn in table.SchemaColumns)
                        {
                            // Apply the replacement to the pattern content
                            string columnReplace = ConditionItem_AppliesToColumn(pattern, table, tableColumn);

                            // The seperator
                            if (!string.IsNullOrEmpty(columnReplace))
                            {
                                // internal pattern contents
                                // FOR EACH column
                                if (pattern.ConditionContents.Count > 0)
                                {
                                    // nested call
                                    columnReplace = PatternContentAppliesTo_OneTable(
                                        columnReplace,
                                        pattern.ConditionContents,
                                        table,
                                        tableColumn, null);
                                }
                                appliedContent += columnReplace + pattern.ItemsSeperator;
                            }
                        }

                        // Remove additional ItemsSeperator
                        if (!string.IsNullOrEmpty(pattern.ItemsSeperator)
                            && appliedContent.EndsWith(pattern.ItemsSeperator))
                            appliedContent = appliedContent.Remove(appliedContent.Length - pattern.ItemsSeperator.Length, pattern.ItemsSeperator.Length);

                        // internal pattern contents
                        // FOR EACH column
                        if (pattern.ConditionContents.Count > 0)
                        {
                            // nested call
                            appliedContent = PatternContentAppliesTo_OneTable(appliedContent, pattern.ConditionContents, table, null, null);
                        }

                        // replace in the main content
                        baseContent = Common.ReplaceEx(baseContent, replacementName, appliedContent, StringComparison.CurrentCulture);
                        break;

                    case PatternConditionKeyMode.ForeignKeyDeleteAction:
                    case PatternConditionKeyMode.ForeignKeyUpdateAction:
                    case PatternConditionKeyMode.FieldForeignKey:
                        appliedContent = "";

                        if (foreignKey == null)
                        {
                            // replace in the main content
                            baseContent = Common.ReplaceEx(baseContent, replacementName, appliedContent, StringComparison.CurrentCulture);
                        }
                        else
                        {
                            // Apply the replacement to the pattern content
                            string columnReplace = ConditionItem_AppliesToForeignKeyColumns(pattern, table, foreignKey);

                            // The seperator
                            if (!string.IsNullOrEmpty(columnReplace))
                            {
                                // internal pattern contents
                                if (pattern.ConditionContents.Count > 0)
                                {
                                    // nested call
                                    columnReplace = PatternContentAppliesTo_OneTable(
                                        columnReplace,
                                        pattern.ConditionContents,
                                        table,
                                        null,
                                        foreignKey);
                                }

                                appliedContent += columnReplace + pattern.ItemsSeperator;
                            }
                        }

                        // Remove additional ItemsSeperator
                        if (!string.IsNullOrEmpty(pattern.ItemsSeperator)
                            && appliedContent.EndsWith(pattern.ItemsSeperator))
                            appliedContent = appliedContent.Remove(appliedContent.Length - pattern.ItemsSeperator.Length, pattern.ItemsSeperator.Length);

                        // internal pattern contents
                        if (pattern.ConditionContents.Count > 0)
                        {
                            // nested call
                            appliedContent = PatternContentAppliesTo_OneTable(appliedContent, pattern.ConditionContents, table, null, null);
                        }

                        // replace in the main content
                        baseContent = Common.ReplaceEx(baseContent, replacementName, appliedContent, StringComparison.CurrentCulture);
                        break;

                    case PatternConditionKeyMode.FieldsForeignKeyAll:
                    case PatternConditionKeyMode.TableForeignKey:
                        appliedContent = "";

                        // fetch the columns and apply the replacement operation
                        foreach (var dbForeignKey in table.ForeignKeys)
                        {
                            // Apply the replacement to the pattern content
                            string columnReplace = ConditionItem_AppliesToForeignKeyColumns(pattern, table, dbForeignKey);

                            // The seperator
                            if (!string.IsNullOrEmpty(columnReplace))
                            {
                                // internal pattern contents
                                if (pattern.ConditionContents.Count > 0)
                                {
                                    // nested call
                                    columnReplace = PatternContentAppliesTo_OneTable(
                                        columnReplace,
                                        pattern.ConditionContents,
                                        table,
                                        null,
                                        dbForeignKey);
                                }

                                appliedContent += columnReplace + pattern.ItemsSeperator;
                            }
                        }

                        // Remove additional ItemsSeperator
                        if (!string.IsNullOrEmpty(pattern.ItemsSeperator)
                            && appliedContent.EndsWith(pattern.ItemsSeperator))
                            appliedContent = appliedContent.Remove(appliedContent.Length - pattern.ItemsSeperator.Length, pattern.ItemsSeperator.Length);

                        // internal pattern contents
                        if (pattern.ConditionContents.Count > 0)
                        {
                            // nested call
                            appliedContent = PatternContentAppliesTo_OneTable(appliedContent, pattern.ConditionContents, table, null, null);
                        }

                        // replace in the main content
                        baseContent = Common.ReplaceEx(baseContent, replacementName, appliedContent, StringComparison.CurrentCulture);
                        break;

                    default:
                        break;
                }
            }

            return baseContent;
        }
Пример #7
0
        /// <summary>
        /// Partial content replacer.
        /// </summary>
        string ConditionItem_AppliesToForeignKeyColumns(PatternContent partialContent, DbTable table, DbForeignKey foreignKey)
        {
            switch (partialContent.ConditionKeyMode)
            {
                case PatternConditionKeyMode.FieldsForeignKeyAll:
                    ConditionItem theReplacer;

                    switch (foreignKey.Multiplicity)
                    {
                        case DbForeignKey.ForeignKeyMultiplicity.OneToMany:
                            theReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldForeignKey.MultiplicityOne);
                            break;
                        case DbForeignKey.ForeignKeyMultiplicity.ManyToOne:
                            theReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldForeignKey.MultiplicityMany);
                            break;

                        default:
                            // not defined Multiplicity
                            return string.Empty;
                    }

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToForeignKey(theReplacer.ContentText, table, foreignKey);

                case PatternConditionKeyMode.ForeignKeyUpdateAction:
                    theReplacer = partialContent.GetReplacement(foreignKey.UpdateAction.ToString());
                    if (theReplacer == null)
                        return string.Empty;
                    return Replacer_ConditionItem_AppliesToForeignKey(theReplacer.ContentText, table, foreignKey);

                case PatternConditionKeyMode.ForeignKeyDeleteAction:
                    theReplacer = partialContent.GetReplacement(foreignKey.DeleteAction.ToString());
                    if (theReplacer == null)
                        return string.Empty;
                    return Replacer_ConditionItem_AppliesToForeignKey(theReplacer.ContentText, table, foreignKey);

                default:
                    // Ignored
                    return string.Empty;
            }
        }
Пример #8
0
        /// <summary>
        /// Partial content replacer.
        /// </summary>
        string ConditionItem_AppliesToTable(PatternContent partialContent, DbTable table)
        {
            // Find suitable replacement type
            switch (partialContent.ConditionKeyMode)
            {
                //case PatternConditionKeyMode.DatabaseProvider:

                //    ConditionItem dbReplacer = null;

                //    switch (this._database.Provider)
                //    {
                //        case DatabaseProvider.Oracle:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.Oracle);
                //            break;

                //        case DatabaseProvider.SQLServer:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SQLServer);
                //            break;

                //        case DatabaseProvider.SQLite:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SQLite);
                //            break;

                //        case DatabaseProvider.SqlCe4:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SqlCe4);
                //            break;
                //    }

                //    if (dbReplacer == null)
                //        return "";

                //    // Replace the contents
                //    return Replacer_ConditionItem_AppliesToTable(dbReplacer.ContentText, table);

                case PatternConditionKeyMode.TableForeignKey:

                    var normalKeyReplacer = partialContent.GetFirst();

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToForeignKeys(normalKeyReplacer.ContentText, table);

                case PatternConditionKeyMode.TableIndexConstraint:

                    var indexConstraintReplacer = partialContent.GetFirst();

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToIndexConstraints(indexConstraintReplacer.ContentText, table, false);

                case PatternConditionKeyMode.TableUniqueConstraint:

                    var uniqueConstraintReplacer = partialContent.GetFirst();

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToIndexConstraints(uniqueConstraintReplacer.ContentText, table, true);

                case PatternConditionKeyMode.TablePrimaryKey:

                    ConditionItem primaryReplacer;

                    if (table.ReadOnly)
                    {
                        // Table is marked as read only, like views
                        primaryReplacer = partialContent.GetReplacement(
                            ConditionKeyModeConsts.TablePrimaryKey.ReadOnlyTable);
                    }
                    else if (table.HasPrimaryKey())
                    {
                        // Table has a primary key
                        primaryReplacer = partialContent.GetReplacement(
                            ConditionKeyModeConsts.TablePrimaryKey.WithPrimaryKey);
                    }
                    else
                    {
                        // There is no primary key, default
                        primaryReplacer = partialContent.GetReplacement(
                            ConditionKeyModeConsts.TablePrimaryKey.NoPrimaryKey);
                    }

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToTable(primaryReplacer.ContentText, table);

                case PatternConditionKeyMode.TableAutoIncrement:

                    int autoCount = table.GetAutoIncrementCount();
                    ConditionItem autoReplacer;

                    if (autoCount == 0)
                    {
                        autoReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.TableAutoIncrement.NoAutoIncrement);
                    }
                    else if (autoCount == 1)
                    {
                        autoReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.TableAutoIncrement.OneAutoIncrement);
                    }
                    else
                    {
                        autoReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.TableAutoIncrement.MoreAutoIncrement);
                    }

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToTable(autoReplacer.ContentText, table);

                default:
                    // Ignored
                    return "";
            }
        }
Пример #9
0
        /// <summary>
        /// Applies table data to pattern content replacement
        /// </summary>
        string Replacer_ConditionItem_AppliesToTable(string content, DbTable table)
        {
            if (string.IsNullOrWhiteSpace(content))
            {
                return content;
            }

            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableName, table.TableNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableNameDb, table.TableName);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableOwnerName, table.OwnerName);

            // general
            content = Replacer_GeneratorGeneral(content);

            // database provider class
            content = Replacer_DatabaseProvider(content);

            var autoKey = table.GetFirstAutoIncrementField();
            var primaryKey = table.GetPrimaryKey();

            if (autoKey == null)
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.AutoIncrementDataType, _patternProject.LanguageSettings.VoidDataType);
            else
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.AutoIncrementDataType, autoKey.DataTypeDotNet);

            if (primaryKey == null)
            {
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbType, "");
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbTypeSize, "");
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDataType, _patternProject.LanguageSettings.VoidDataType);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyName, "");
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyNameDb, "");
            }
            else
            {
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbType, primaryKey.DataTypeDb);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbTypeSize, FieldType_ColumnDataTypeSize(primaryKey));
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDataType, primaryKey.DataTypeDotNet);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyName, primaryKey.FieldNameSchema);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyNameDb, primaryKey.FieldNameDb);
            }
            return content;
        }
Пример #10
0
        /// <summary>
        /// Partial content replacer.
        /// </summary>
        string ConditionItem_AppliesToColumn(PatternContent partialContent, DbTable table, DbColumn column)
        {
            switch (partialContent.ConditionKeyMode)
            {
                //case PatternConditionKeyMode.DatabaseProvider:
                //    ConditionItem dbReplacer = null;

                //    switch (this._database.Provider)
                //    {
                //        case DatabaseProvider.Oracle:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider._Oracle);
                //            break;

                //        case DatabaseProvider.SQLServer:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SQLServer);
                //            break;

                //        case DatabaseProvider.SQLite:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SQLite);
                //            break;

                //        case DatabaseProvider.SqlCe4:
                //            dbReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.DatabaseProvider.SqlCe4);
                //            break;
                //    }

                //    if (dbReplacer == null)
                //        return "";

                //    // Replace the contents
                //    return Replacer_ConditionItem_AppliesToColumn(dbReplacer.Content, table, column);

                case PatternConditionKeyMode.FieldsAll:
                case PatternConditionKeyMode.Field:
                    var replacer = partialContent.GetFirst();

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToColumn(replacer.ContentText, table, column);

                case PatternConditionKeyMode.FieldsCondensedTypeAll:
                case PatternConditionKeyMode.FieldCondensedType:
                    ConditionItem replacerCondensedType = null;

                    switch (column.DataCondensedType)
                    {
                        case DbColumn.ColumnCondensedType.None:
                            replacerCondensedType = partialContent.GetReplacement(ConditionKeyModeConsts.FieldCondensedType.None);
                            break;

                        case DbColumn.ColumnCondensedType.String:
                            replacerCondensedType = partialContent.GetReplacement(ConditionKeyModeConsts.FieldCondensedType.String);
                            break;

                        case DbColumn.ColumnCondensedType.Decimal:
                            replacerCondensedType = partialContent.GetReplacement(ConditionKeyModeConsts.FieldCondensedType.Decimal);
                            break;

                        case DbColumn.ColumnCondensedType.Integer:
                            replacerCondensedType = partialContent.GetReplacement(ConditionKeyModeConsts.FieldCondensedType.Integer);
                            break;
                    }

                    // Replace the contents
                    if (replacerCondensedType != null)
                        return Replacer_ConditionItem_AppliesToColumn(replacerCondensedType.ContentText, table, column);
                    return string.Empty;

                case PatternConditionKeyMode.FieldsPrimaryKeyAll:
                case PatternConditionKeyMode.FieldPrimaryKey:
                    ConditionItem primaryReplacer;

                    if (column.PrimaryKey)
                        primaryReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldPrimaryKey.PrimaryKey);
                    else
                        primaryReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldPrimaryKey.NormalField);

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToColumn(primaryReplacer.ContentText, table, column);

                case PatternConditionKeyMode.FieldReferencedKeyType:
                case PatternConditionKeyMode.FieldKeyType:
                case PatternConditionKeyMode.FieldsReferencedKeyTypeAll:
                case PatternConditionKeyMode.FieldsKeyTypeAll:
                    ConditionItem keyTypeReplacer;

                    // this key is not reference type
                    if (_patternProject.SeperateReferenceColumns)
                    {
                        if (column.IsReferenceKey && partialContent.ConditionKeyMode == PatternConditionKeyMode.FieldsKeyTypeAll)
                            return "";
                        if (!column.IsReferenceKey && partialContent.ConditionKeyMode == PatternConditionKeyMode.FieldsReferencedKeyTypeAll)
                            return "";
                    }

                    // Key type
                    bool dataTypeNotNullable = !column.DataTypeNullable;

                    if (column.AutoIncrement && column.PrimaryKey)
                    {
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.AutoInrcementPrimaryKey);
                    }
                    else if (column.AutoIncrement && column.AllowNull && !dataTypeNotNullable)
                    {
                        // AutoIncrement
                        // Nullable column
                        // Nullable object
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.AutoIncNativeNullable);
                    }
                    else if (column.AutoIncrement && column.AllowNull && dataTypeNotNullable)
                    {
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.AutoIncNullableType);
                    }
                    else if (column.AutoIncrement)
                    {
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.AutoInrcement);
                    }
                    else if (column.PrimaryKey)
                    {
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.PrimaryKey);
                    }
                    else if (column.AllowNull && !dataTypeNotNullable)
                    {
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.NativeNullable);
                    }
                    else if (column.AllowNull && dataTypeNotNullable)
                    {
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.NullableType);
                    }
                    else
                    {
                        keyTypeReplacer = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyType.NormalField);
                    }

                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToColumn(keyTypeReplacer.ContentText, table, column);

                case PatternConditionKeyMode.FieldsKeyReadTypeAll:
                case PatternConditionKeyMode.FieldKeyReadType:
                    ConditionItem keyRead;

                    bool canConvert = !column.ExplicitCastDataType; // TODO

                    // how to read key type

                    if (!column.AllowNull && canConvert)
                    {
                        keyRead = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyReadType.NormalField_Convert);
                    }
                    else if (!column.AllowNull && !canConvert)
                    {
                        keyRead = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyReadType.NormalField_Cast);
                    }
                    else if (column.AllowNull && canConvert)
                    {
                        keyRead = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyReadType.Nullable_Convert);
                    }
                    else
                    {
                        keyRead = partialContent.GetReplacement(ConditionKeyModeConsts.FieldKeyReadType.Nullable_Cast);
                    }
                    // Replace the contents
                    return Replacer_ConditionItem_AppliesToColumn(keyRead.ContentText, table, column);

                default:
                    // Ignored
                    return "";
            }
        }
Пример #11
0
        /// <summary>
        /// Applies table index constraintsto pattern content replacement
        /// </summary>
        string Replacer_ConditionItem_AppliesToIndexConstraints(string content, DbTable table, bool uniqueKeys)
        {
            // check if there is no constraints
            if (table.ConstraintKeys.Count == 0)
            {
                return "";
            }

            content = Replacer_PatternBaseContent(content, table.TableNameSchema, table.TableName);

            // the result
            string result = "";

            // fetch constraints keys
            foreach (var indexKey in table.ConstraintKeys)
            {
                if (!indexKey.IsUnique && uniqueKeys)
                {
                    // the key is not unique and it is requested, then go away
                    continue;
                }
                if (indexKey.IsUnique && !uniqueKeys)
                {
                    // the key is unique and it is not requested, then go away
                    continue;
                }

                // the content copy for each foreign key
                string indexContent = content;

                // the column general replacer
                indexContent = Replacer_ConditionItem_AppliesToColumn(indexContent, table, indexKey.KeyColumn);

                // ===================================
                indexContent = Common.ReplaceExIgnoreCase(indexContent, ReplaceConsts.IndexKeyDbType, indexKey.KeyColumn.DataTypeDb);
                indexContent = Common.ReplaceExIgnoreCase(indexContent, ReplaceConsts.IndexKeyDbTypeSize, FieldType_ColumnDataTypeSize(indexKey.KeyColumn));
                indexContent = Common.ReplaceExIgnoreCase(indexContent, ReplaceConsts.IndexKeyDataType, indexKey.KeyColumn.DataTypeDotNet);
                indexContent = Common.ReplaceExIgnoreCase(indexContent, ReplaceConsts.IndexKeyName, indexKey.KeyColumn.FieldNameSchema);
                indexContent = Common.ReplaceExIgnoreCase(indexContent, ReplaceConsts.IndexKeyNameDb, indexKey.KeyColumn.FieldNameDb);
                indexContent = Common.ReplaceExIgnoreCase(indexContent, ReplaceConsts.IndexName, indexKey.KeyName);

                // add it to the result
                result += ReplaceConsts.NewLine + indexContent;
            }

            return result;
        }
Пример #12
0
        /// <summary>
        /// Applies table foreign keys to pattern content replacement
        /// </summary>
        string Replacer_ConditionItem_AppliesToForeignKeys(string content, DbTable table)
        {
            // this section should be ignored if there is no foreign keys!
            if (table.ForeignKeys.Count == 0)
            {
                // No foreign keys! go away
                return "";
            }

            // local table
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalTableName, table.TableNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalTableNameDb, table.TableName);

            // the result
            string result = "";

            // fetch foreign keys
            foreach (var foreignKey in table.ForeignKeys)
            {
                // the content copy for each foreign key
                string foreignContent = content;

                // naturalize names
                foreignContent = Replacer_ConditionItem_AppliesToForeignKey(foreignContent, table, foreignKey);

                if (!string.IsNullOrEmpty(foreignContent))
                    // add it to the result
                    result += ReplaceConsts.NewLine + foreignContent;
            }

            // the result
            return result;
        }
Пример #13
0
        /// <summary>
        /// Applies foreign key column data to pattern content replacement
        /// </summary>
        string Replacer_ConditionItem_AppliesToForeignKey(string content, DbTable table, DbForeignKey foreignKey)
        {
            // NOTE: foreign keys are always for TABLEs
            // Checking if user has selected this table
            // Also checking the option!
            if (!_optionGenerateUnselectedForeigns && !UserHasSelectedTable(foreignKey.ForeignTableName))
            {
                // User has not selected this foreign table
                return string.Empty;
            }

            // general
            content = Replacer_GeneratorGeneral(content);

            // database provider class
            content = Replacer_DatabaseProvider(content);

            // local table
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalTableName, table.TableNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalTableNameDb, table.TableName);

            // foreign table
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignTableNameAsField, foreignKey.ForeignTableNameInLocalTable);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignTableName, foreignKey.ForeignTable.TableNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignTableNameDb, foreignKey.ForeignTable.TableName);

            // ===================================
            // local field
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalFieldDataType, foreignKey.LocalColumn.DataTypeDotNet);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalFieldName, foreignKey.LocalColumn.FieldNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalFieldNameDb, foreignKey.LocalColumn.FieldNameDb);
            // no oridianl, foreignContent = ReplaceExIgnoreCase(foreignContent, ReplaceConsts.LocalFieldOrdinalValue, foreignKey.LocalColumn.ColumnOrdinal.ToString());
            // column description
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalFieldDescription, foreignKey.LocalColumn.UserDescription);
            // Database field type
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.LocalFieldDbTypeSize, FieldType_ColumnDataTypeSize(foreignKey.LocalColumn));

            // ===================================
            // Foreign field
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignFieldDataType, foreignKey.ForeignColumn.DataTypeDotNet);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignFieldName, foreignKey.ForeignColumn.FieldNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignFieldNameDb, foreignKey.ForeignColumn.FieldNameDb);
            // no oridianl, foreignContent = ReplaceExIgnoreCase(foreignContent, ReplaceConsts.ForeignFieldOrdinalValue, foreignKey.ForeignColumn.ColumnOrdinal.ToString());
            // column description
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignFieldDescription, foreignKey.ForeignColumn.UserDescription);
            // Database field type
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.ForeignFieldDbTypeSize, FieldType_ColumnDataTypeSize(foreignKey.ForeignColumn));
            return content;
        }
Пример #14
0
        /// <summary>
        /// Applies column data to pattern content replacement
        /// </summary>
        string Replacer_ConditionItem_AppliesToColumn(string content, DbTable table, DbColumn column)
        {
            // table of the column
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableName, table.TableNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableNameDb, table.TableName);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableOwnerName, table.OwnerName);

            // general
            content = Replacer_GeneratorGeneral(content);

            // database provider class
            content = Replacer_DatabaseProvider(content);

            // referenced table of the column
            if (column.IsReferenceKey && column.IsReferenceKeyTable != null)
            {
                var refTable = column.IsReferenceKeyTable;

                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableNameRefField, refTable.TableNameSchema);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.TableNameDbRefField, refTable.TableName);
            }

            // column information
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldDataType, column.DataTypeDotNet);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldName, column.FieldNameSchema);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldNameDb, column.FieldNameDb);

            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldOrdinalValue, column.ColumnOrdinal.ToString());
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldIsPrimaryKey, column.PrimaryKey.ToString().ToLower());
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldCanBeNull, column.AllowNull.ToString().ToLower());

            // column description
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldDescription, column.UserDescription);

            // Database field type
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldDbType, column.DataTypeDb);
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldDbTypeSize, FieldType_ColumnDataTypeSize(column));
            content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.FieldDbSize, FieldType_ColumnDataSize(column));

            if (column.AutoIncrement)
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.AutoIncrementDataType, column.DataTypeDotNet);
            else
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.AutoIncrementDataType, _patternProject.LanguageSettings.VoidDataType);

            if (column.PrimaryKey)
            {
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbType, column.DataTypeDb);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbTypeSize, FieldType_ColumnDataTypeSize(column));
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDataType, column.DataTypeDotNet);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyName, column.FieldNameSchema);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyNameDb, column.FieldNameDb);
            }
            else
            {
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbType, "");
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDbTypeSize, "");
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyDataType, _patternProject.LanguageSettings.VoidDataType);
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyName, "");
                content = Common.ReplaceExIgnoreCase(content, ReplaceConsts.PrimaryKeyNameDb, "");
            }

            return content;
        }
Пример #15
0
        /// <summary>
        /// Pattern file - AppliesTo - TablesAndViews
        /// </summary>
        private void PatternFileAppliesTo_TablesAndViewsApplier(DbTable[] tablesList,
			DbTable[] viewsList,
			PatternFileWhereToApply whatListToUse,
			PatternFile patternFile)
        {
            if (patternFile.IsAllToOne)
            {
                var genPath = _projectDef.GenerationPath;
                genPath = Common.ProjectPathMakeAbsolute(genPath, _projectDef.ProjectFileName);

                // the destination filename
                string fileName = Replacer_PatternFileName(patternFile.Options.FilePath, null, null, null);
                fileName = Path.Combine(genPath, fileName);

                // don't overwrite if exists and overwriting is not requested
                if (patternFile.Options.Overwrite == false && File.Exists(fileName))
                    return;

                // create directory
                Directory.CreateDirectory(Path.GetDirectoryName(fileName));

                // generated file content
                string genContent = patternFile.BaseContent;

                // BaseContent Replacements
                genContent = Replacer_PatternBaseContent(genContent, null, null);

                // for each pattern content
                genContent = PatternContentAppliesTo_TablesAndViews(genContent,
                    patternFile.PatternContents,
                    tablesList,
                    viewsList);

                // all is done! Write to file
                File.WriteAllText(fileName, genContent);
            }
            else
            {
                // combine the list
                var tablesAndViews = new List<DbTable>();
                if (whatListToUse == PatternFileWhereToApply.Both ||
                    whatListToUse == PatternFileWhereToApply.Tables)
                    tablesAndViews.AddRange(tablesList);
                if (whatListToUse == PatternFileWhereToApply.Both ||
                    whatListToUse == PatternFileWhereToApply.Views)
                    tablesAndViews.AddRange(viewsList);

                // surf in the tables/views
                tablesAndViews.ForEach(table =>
                {
                    if (table.TableType == DbTable.TableTypeInfo.Table)
                    {
                        // check if selected by user
                        if (!UserHasSelectedTable(table.TableName))
                            //continue;
                            return;
                    }
                    else if (table.TableType == DbTable.TableTypeInfo.View)
                    {
                        // check if selected by user
                        if (!UserHasSelectedView(table.TableName))
                            //continue;
                            return;
                    }
                    else
                    {
                        // What?! Invalid table type!
                        return;
                    }

                    var genPath = _projectDef.GenerationPath;
                    genPath = Common.ProjectPathMakeAbsolute(genPath, _projectDef.ProjectFileName);

                    // the destination filename
                    string fileName = Replacer_PatternFileName(patternFile.Options.FilePath,
                                          table.TableNameSchema,
                                          table.TableName,
                                          table.TableNameSchemaCS);
                    fileName = Path.Combine(genPath, fileName);

                    // don't overwrite if exists an overwriting is not requested
                    if (patternFile.Options.Overwrite == false && File.Exists(fileName))
                        //continue;
                        return;

                    // create directory
                    Directory.CreateDirectory(Path.GetDirectoryName(fileName));

                    // generated file content
                    string genContent = patternFile.BaseContent;

                    // BaseContent Replacements
                    genContent = Replacer_PatternBaseContent(genContent,
                                          table.TableNameSchema,
                                          table.TableName);

                    // for each pattern content
                    genContent = PatternContentAppliesTo_OneTable(
                        genContent,
                        patternFile.PatternContents,
                        table,
                        null,
                        null);

                    // all is done! Write to file
                    File.WriteAllText(fileName, genContent);
                });
            }
        }