Ejemplo n.º 1
0
 public static SqlFormatProperties CreateOriginal()
 {
     var res = new SqlFormatProperties();
     res.IndentationLevel = SqlIndentationLevel.Original;
     res.SqlCommandCase = CharacterCase.Original;
     res.CleanupSpecificObjectCode = false;
     return res;
 }
Ejemplo n.º 2
0
 public static string GenerateScript(this IDatabaseFactory factory, Action<ISqlDumper> script, SqlFormatProperties props)
 {
     StringWriter sw = new StringWriter();
     ISqlDumper dmp;
     var so = new SqlOutputStream(factory.CreateDialect(), sw, props);
     dmp = factory.CreateDumper(so, props);
     script(dmp);
     return sw.ToString();
 }
Ejemplo n.º 3
0
        public static SqlFormatProperties CreateOriginal()
        {
            var res = new SqlFormatProperties();

            res.IndentationLevel          = SqlIndentationLevel.Original;
            res.SqlCommandCase            = CharacterCase.Original;
            res.CleanupSpecificObjectCode = false;
            return(res);
        }
Ejemplo n.º 4
0
 public SqlDumper(ISqlOutputStream stream, IDatabaseFactory factory, SqlFormatProperties props)
 {
     m_stream = stream;
     m_props = props;
     m_factory = factory;
     m_DDA = m_factory.CreateDataAdapter();
     m_formatterState.DDA = m_DDA;
     m_dialect = m_factory.CreateDialect();
 }
Ejemplo n.º 5
0
 private static void DumpSeparatorIfNeeded(StringBuilder sb, SqlFormatProperties props, SqlFormatterState state)
 {
     if (state == null) return;
     if (state.LineFeedNeeded)
     {
         DumpEoln(sb, props, state);
         state.LineFeedNeeded = false;
         state.SeparatorNeeded = false;
         state.WasDataOnCurrentLine = false;
     }
     if (state.SeparatorNeeded && state.WasDataOnCurrentLine)
     {
         sb.Append(' ');
         state.SeparatorNeeded = false;
     }
 }
Ejemplo n.º 6
0
 public static string GetSqlLiteral(SqlFormatProperties props, IDialectDataAdapter dda, SqlFormatterState state, ICdlValueReader reader, DbTypeBase dsttype)
 {
     if (props.BinaryStrings)
     {
         switch (reader.GetFieldType())
         {
             case TypeStorage.String:
                 if (props.BinaryStrings)
                 {
                     return dda.GetSqlLiteral(props.RealBinaryEncoding.GetBytes(reader.GetString()), dsttype);
                 }
                 break;
         }
     }
     return dda.GetSqlLiteral(reader, dsttype);
 }
Ejemplo n.º 7
0
 public static string GetSqlLiteral(SqlFormatProperties props, IDialectDataAdapter dda, SqlFormatterState state, ICdlValueReader reader)
 {
     return GetSqlLiteral(props, dda, state, reader, null);
 }
Ejemplo n.º 8
0
 public static string GetSqlLiteralAndRead(SqlFormatProperties props, IDialectDataAdapter dda, SqlFormatterState state, object val, DbTypeBase dsttype)
 {
     if (state == null) state = new SqlFormatterState();
     state._Holder.ReadFrom(val);
     return GetSqlLiteral(props, dda, state, state._Holder, dsttype);
 }
Ejemplo n.º 9
0
 public static string GetSqlLiteralAndRead(SqlFormatProperties props, IDialectDataAdapter dda, SqlFormatterState state, object val)
 {
     return GetSqlLiteralAndRead(props, dda, state, val, null);
 }
Ejemplo n.º 10
0
 public GenericDialectDataAdapter(IDatabaseFactory factory, SqlFormatProperties props)
     : base(factory)
 {
 }
Ejemplo n.º 11
0
 public SqlOutputStream(ISqlDialect dialect, TextWriter tw, SqlFormatProperties props)
 {
     m_dialect = dialect;
     m_props = props;
     m_tw = tw;
 }
Ejemplo n.º 12
0
 public override ISqlDumper CreateDumper(ISqlOutputStream stream, SqlFormatProperties props)
 {
     return new SqlServerSqlDumper(stream, this, props);
 }
Ejemplo n.º 13
0
 public virtual ISqlDumper CreateDumper(ISqlOutputStream stream, SqlFormatProperties props)
 {
     return new SqlDumper(stream, this, props);
 }
Ejemplo n.º 14
0
 public GenericDialectDataAdapter(IDatabaseFactory factory, SqlFormatProperties props)
     : base(factory)
 {
 }
Ejemplo n.º 15
0
        private static string QuoteIdentifier(ISqlDialect dialect, SqlFormatProperties props, string ident)
        {
            if (ident != null && ident.StartsWith(NameWithSchema.NoQuotePrefix))
            {
                return ident.Substring(NameWithSchema.NoQuotePrefix.Length);
            }
            switch (props.IdentifierQuoteMode)
            {
                case SqlIdentifierQuoteMode.Plain:
                    if (MustBeQuoted(ident, dialect)) return dialect.QuoteIdentifier(GetCasedString(ident, props.IdentifierCase));
                    return GetCasedString(ident, props.IdentifierCase);

                //case SqlIdentifierQuoteMode.Quoted:
                default :
                    return dialect.QuoteIdentifier(GetCasedString(ident, props.IdentifierCase));
            }
            //throw new InternalError("DBSH-00049 Unexpected idquote mode");
        }
Ejemplo n.º 16
0
 private static string QuoteFullName(ISqlDialect dialect, SqlFormatProperties props, SqlFormatterState state, NameWithSchema name)
 {
     bool omitSchema = !props.UseSchema || name.Schema == null;
     if (state != null && state.ForceFullName)
     {
         state.ForceFullName = false;
         omitSchema = false;
     }
     if (omitSchema)
     {
         return QuoteIdentifier(dialect, props, name.Name);
     }
     return QuoteIdentifier(dialect, props, name.Schema) + "." + QuoteIdentifier(dialect, props, name.Name);
 }
Ejemplo n.º 17
0
 public SqlServerSqlDumper(ISqlOutputStream stream, IDatabaseFactory factory, SqlFormatProperties props)
     : base(stream, factory, props)
 {
 }
Ejemplo n.º 18
0
 private static void DumpEoln(StringBuilder sb, SqlFormatProperties props, SqlFormatterState state)
 {
     if (props.IndentationLevel != SqlIndentationLevel.SingleLine)
     {
         sb.Append("\n");
         if (state != null)
         {
             for (int j = 0; j < state.IndentLevel * props.Indentation; j++) sb.Append(" ");
         }
     }
     else
     {
         sb.Append(" ");
     }
 }
Ejemplo n.º 19
0
        public static string Format(IDatabaseFactory factory, SqlFormatProperties props, SqlFormatterState state, string format, params object[] args)
        {
            IDialectDataAdapter dda = null;
            if (state != null) dda = state.DDA;
            if (dda == null) dda = factory.CreateDataAdapter();
            var dialect = factory.CreateDialect();

            int argindex = 0;
            StringBuilder sb = new StringBuilder();
            int i = 0;
            while (i < format.Length)
            {
                char c = format[i];
                switch (c)
                {
                    case '^': // SQL keyword
                        {
                            i++;
                            DumpSeparatorIfNeeded(sb, props, state);
                            while (i < format.Length && (Char.IsLetter(format, i) || format[i] == '_'))
                            {
                                sb.Append(GetCasedChar(format[i], props.SqlCommandCase));
                                i++;
                            }
                            DataDumped(state);
                        }
                        break;
                    case '&': // indentation & spacing
                        {
                            i++;
                            c = format[i];
                            i++;
                            char level = '0';
                            if (c == '1' || c == '2' || c == '3' || c == '5')
                            {
                                level = c;
                                c = format[i];
                                i++;
                            }
                            if (level != '0')
                            {
                                // indentation levels
                                if (props.IndentationLevel == SqlIndentationLevel.Original || props.IndentationLevel == SqlIndentationLevel.SingleLine)
                                {
                                    if (c == 'n' || c == 's')
                                    {
                                        if (state != null)
                                        {
                                            state.SeparatorNeeded = true;
                                        }
                                        else
                                        {
                                            sb.Append(" ");
                                        }
                                    }
                                    // when original indentation is used, don't use our separators
                                    break;
                                }
                                bool valid = (props.IndentationLevel == SqlIndentationLevel.Compact && (level == '2' || level == '5'))
                                    || (props.IndentationLevel == SqlIndentationLevel.Large && (level == '3' || level == '5'));
                                if (!valid)
                                {
                                    break; // mark is not for this indentation level
                                }
                            }
                            switch (c)
                            {
                                case '&':
                                    sb.Append("&");
                                    break;
                                case 'n':
                                    if (state == null) DumpEoln(sb, props, state);
                                    else state.LineFeedNeeded = true;
                                    break;
                                case '>':
                                    if (state != null) state.IndentLevel++;
                                    break;
                                case '<':
                                    if (state != null) state.IndentLevel--;
                                    break;
                                case 's':
                                    if (state != null) state.SeparatorNeeded = true;
                                    else sb.Append(" ");
                                    break;
                                case 'r':
                                    DumpSeparatorIfNeeded(sb, props, state);
                                    break;
                                case 'd':
                                    DataDumped(state);
                                    break;
                                default:
                                    throw new InternalError("DBSH-00042 Unknown & formatting instruction:" + c);
                            }
                        }
                        break;
                    case '%': // format parameter
                        {
                            i++;
                            c = format[i];

                            if (c == '%')
                            {
                                sb.Append('%');
                                i++;
                            }
                            else if (c == ',' || c == ';') // comma separated list
                            {
                                i++;
                                bool lining = c == ';';
                                c = format[i];
                                bool ok = false;
                                if (args[argindex] is IEnumerable) ok = true;
                                if (args[argindex] is ICdlRecord && c == 'v') ok = true;
                                if (!ok) throw new InternalError("DBSH-00043 List must be of type Enumerable");

                                bool was = false;
                                if (args[argindex] is IEnumerable)
                                {
                                    if (lining)
                                    {
                                        state.IndentLevel++;
                                        DumpEoln(sb, props, state);
                                    }
                                    foreach (object item in (IEnumerable)args[argindex])
                                    {
                                        if (was)
                                        {
                                            if (lining)
                                            {
                                                DumpEoln(sb, props, state);
                                                sb.Append(",");
                                            }
                                            else
                                            {
                                                sb.Append(", ");
                                            }
                                        }
                                        WriteFormattedValue(dialect, props, sb, item, c, state, dda);
                                        was = true;
                                    }
                                    if (lining)
                                    {
                                        state.IndentLevel--;
                                    }
                                }
                                else
                                {
                                    var rec = (ICdlRecord)args[argindex];
                                    if (lining)
                                    {
                                        state.IndentLevel++;
                                        DumpEoln(sb, props, state);
                                    }
                                    for (int x = 0; x < rec.FieldCount; x++)
                                    {
                                        if (lining)
                                        {
                                            DumpEoln(sb, props, state);
                                            sb.Append(",");
                                        }
                                        else
                                        {
                                            sb.Append(", ");
                                        }
                                        rec.ReadValue(x);
                                        sb.Append(GetSqlLiteral(props, dda, state, rec));
                                        was = true;
                                    }
                                    if (lining)
                                    {
                                        state.IndentLevel--;
                                    }
                                }

                                argindex++;
                                i++;
                            }
                            else if (c == ':')
                            {
                                object orig = args[argindex];
                                argindex++;
                                i++;
                                c = format[i];
                                object arg = args[argindex];
                                argindex++;
                                i++;
                                WriteFormattedValue(dialect, props, sb, arg, c, state, dda);
                            }
                            else
                            {
                                WriteFormattedValue(dialect, props, sb, args[argindex], c, state, dda);
                                argindex++;
                                i++;
                            }
                        }
                        break;
                    default:
                        {
                            if (Char.IsWhiteSpace(c))
                            {
                                if (state != null) state.SeparatorNeeded = false;
                            }
                            else
                            {
                                DumpSeparatorIfNeeded(sb, props, state);
                            }
                            sb.Append(c);
                            i++;
                        }
                        break;
                }
            }
            return sb.ToString();
        }
Ejemplo n.º 20
0
 private static void WriteFormattedValue(ISqlDialect dialect, SqlFormatProperties props, StringBuilder sb, object val, char fmt, SqlFormatterState state, IDialectDataAdapter dda)
 {
     switch (fmt)
     {
         case 'i': // quote identifier
             DumpSeparatorIfNeeded(sb, props, state);
             if (val is string)
             {
                 sb.Append(QuoteIdentifier(dialect, props, (string) val));
             }
             else if (val is ColumnReference)
             {
                 sb.Append(QuoteIdentifier(dialect, props, ((ColumnReference) val).RefColumn.Name));
             }
             else
             {
                 throw new InternalError("DBSH-00044 Identifier must be of type string or IColumnReference");
             }
             DataDumped(state);
             break;
         case 'f': // quote full name
             DumpSeparatorIfNeeded(sb, props, state);
             if (val is NameWithSchema) sb.Append(QuoteFullName(dialect, props, state, (NameWithSchema) val));
             else if (val is IFullNamedObject) sb.Append(QuoteFullName(dialect, props, state, ((IFullNamedObject)val).FullName));
             else throw new InternalError("DBSH-00045 Full name must be of type NameWithSchema or IFullNamedObject");
             DataDumped(state);
             break;
         case 'l': // quote linked server name
             DumpSeparatorIfNeeded(sb, props, state);
             var linked = val as LinkedDatabaseInfo;
             if (linked == null && val != null)
             {
                 throw new InternalError("DBSH-00162 Linked name must be LinkedDatabaseInfo or null");
             }
             if (linked != null && linked.LinkedServerName != null)
             {
                 sb.Append(QuoteIdentifier(dialect, props, linked.LinkedServerName));
                 sb.Append(".");
                 sb.Append(QuoteIdentifier(dialect, props, linked.LinkedDatabaseName));
                 sb.Append(".");
                 state.ForceFullName = true;
             }
             if (linked != null && linked.ExplicitDatabaseName != null)
             {
                 sb.Append(QuoteIdentifier(dialect, props, linked.ExplicitDatabaseName));
                 sb.Append(".");
                 state.ForceFullName = true;
             }
             break;
         case 's': // string - copy character data
             if (val != null)
             {
                 DumpSeparatorIfNeeded(sb, props, state);
                 sb.Append(val.ToString());
                 DataDumped(state);
             }
             break;
         case 'k': // keyword
             DumpSeparatorIfNeeded(sb, props, state);
             if (!(val is string)) throw new InternalError("DBSH-00046 Identifier must be of type string");
             foreach (char c2 in (string) val) sb.Append(GetCasedChar(c2, props.SqlCommandCase));
             DataDumped(state);
             break;
         case 'K': // multi-word keyword
             if (!(val is IEnumerable<string>)) throw new InternalError("DBSH-00047 Identifier must be of type string");
             foreach (string s in ((IEnumerable<string>) val))
             {
                 DumpSeparatorIfNeeded(sb, props, state);
                 sb.Append(GetCasedString(s, props.SqlCommandCase));
                 if (state != null) state.SeparatorNeeded = true;
                 else sb.Append(" ");
                 DataDumped(state);
             }
             break;
         case 'v': // value - copy character data
             DumpSeparatorIfNeeded(sb, props, state);
             var vth = val as ValueTypeHolder;
             if (vth != null)
             {
                 sb.Append(GetSqlLiteralAndRead(props, dda, state, vth.Value, vth.DbType));
             }
             else
             {
                 sb.Append(GetSqlLiteralAndRead(props, dda, state, val));
             }
             DataDumped(state);
             break;
         case 't': // version test
             if (val != null && !props.OmitVersionTests) sb.Append(val.ToString());
             break;
         default:
             throw new InternalError("DBSH-00048 Unknown format character: " + fmt);
     }
 }
Ejemplo n.º 21
0
 public virtual ISqlDumper CreateDumper(ISqlOutputStream stream, SqlFormatProperties props)
 {
     return(new SqlDumper(stream, this, props));
 }