mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 01:25:41 -05:00
Adding a new setting to query execution setting that will change the display value we generate for `BIT` columns. The new setting is `DefaultDisplayBitAsNumber`. If true, bit columns will be displayed as 1 or 0. If false, they'll be displayed as true or false. The default value is true, to keep parity with SSMS behavior. Enables us to solve https://github.com/Microsoft/vscode-mssql/issues/690 and https://github.com/Microsoft/vscode-mssql/issues/513
559 lines
22 KiB
C#
559 lines
22 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.SqlTypes;
|
|
using System.IO;
|
|
using System.Text;
|
|
using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
|
|
using Microsoft.SqlTools.ServiceLayer.SqlContext;
|
|
using Microsoft.SqlTools.ServiceLayer.Utility;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.DataStorage
|
|
{
|
|
/// <summary>
|
|
/// Reader for service buffer formatted file streams
|
|
/// </summary>
|
|
public class ServiceBufferFileStreamReader : IFileStreamReader
|
|
{
|
|
|
|
#region Constants
|
|
|
|
private const int DefaultBufferSize = 8192;
|
|
private const string DateFormatString = "yyyy-MM-dd";
|
|
private const string TimeFormatString = "HH:mm:ss";
|
|
|
|
#endregion
|
|
|
|
#region Member Variables
|
|
|
|
private byte[] buffer;
|
|
|
|
private readonly QueryExecutionSettings executionSettings;
|
|
|
|
private readonly Stream fileStream;
|
|
|
|
private readonly Dictionary<Type, Func<long, DbColumnWrapper, FileStreamReadResult>> readMethods;
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Constructs a new ServiceBufferFileStreamReader and initializes its state
|
|
/// </summary>
|
|
/// <param name="stream">The filestream to read from</param>
|
|
/// <param name="settings">The query execution settings</param>
|
|
public ServiceBufferFileStreamReader(Stream stream, QueryExecutionSettings settings)
|
|
{
|
|
Validate.IsNotNull(nameof(stream), stream);
|
|
Validate.IsNotNull(nameof(settings), settings);
|
|
|
|
// Open file for reading/writing
|
|
if (!stream.CanRead || !stream.CanSeek)
|
|
{
|
|
throw new InvalidOperationException("Stream must be readable and seekable");
|
|
}
|
|
fileStream = stream;
|
|
|
|
executionSettings = settings;
|
|
|
|
// Create internal buffer
|
|
buffer = new byte[DefaultBufferSize];
|
|
|
|
// Create the methods that will be used to read back
|
|
readMethods = new Dictionary<Type, Func<long, DbColumnWrapper, FileStreamReadResult>>
|
|
{
|
|
{typeof(string), (o, col) => ReadString(o)},
|
|
{typeof(short), (o, col) => ReadInt16(o)},
|
|
{typeof(int), (o, col) => ReadInt32(o)},
|
|
{typeof(long), (o, col) => ReadInt64(o)},
|
|
{typeof(byte), (o, col) => ReadByte(o)},
|
|
{typeof(char), (o, col) => ReadChar(o)},
|
|
{typeof(bool), (o, col) => ReadBoolean(o)},
|
|
{typeof(double), (o, col) => ReadDouble(o)},
|
|
{typeof(float), (o, col) => ReadSingle(o)},
|
|
{typeof(decimal), (o, col) => ReadDecimal(o)},
|
|
{typeof(DateTime), ReadDateTime},
|
|
{typeof(DateTimeOffset), (o, col) => ReadDateTimeOffset(o)},
|
|
{typeof(TimeSpan), (o, col) => ReadTimeSpan(o)},
|
|
{typeof(byte[]), (o, col) => ReadBytes(o)},
|
|
|
|
{typeof(SqlString), (o, col) => ReadString(o)},
|
|
{typeof(SqlInt16), (o, col) => ReadInt16(o)},
|
|
{typeof(SqlInt32), (o, col) => ReadInt32(o)},
|
|
{typeof(SqlInt64), (o, col) => ReadInt64(o)},
|
|
{typeof(SqlByte), (o, col) => ReadByte(o)},
|
|
{typeof(SqlBoolean), (o, col) => ReadBoolean(o)},
|
|
{typeof(SqlDouble), (o, col) => ReadDouble(o)},
|
|
{typeof(SqlSingle), (o, col) => ReadSingle(o)},
|
|
{typeof(SqlDecimal), (o, col) => ReadSqlDecimal(o)},
|
|
{typeof(SqlDateTime), ReadDateTime},
|
|
{typeof(SqlBytes), (o, col) => ReadBytes(o)},
|
|
{typeof(SqlBinary), (o, col) => ReadBytes(o)},
|
|
{typeof(SqlGuid), (o, col) => ReadGuid(o)},
|
|
{typeof(SqlMoney), (o, col) => ReadMoney(o)},
|
|
};
|
|
}
|
|
|
|
#region IFileStreamStorage Implementation
|
|
|
|
/// <summary>
|
|
/// Reads a row from the file, based on the columns provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file where the row starts</param>
|
|
/// <param name="columns">The columns that were encoded</param>
|
|
/// <returns>The objects from the row, ready for output to the client</returns>
|
|
public IList<DbCellValue> ReadRow(long fileOffset, IEnumerable<DbColumnWrapper> columns)
|
|
{
|
|
// Initialize for the loop
|
|
long currentFileOffset = fileOffset;
|
|
List<DbCellValue> results = new List<DbCellValue>();
|
|
|
|
// Iterate over the columns
|
|
foreach (DbColumnWrapper column in columns)
|
|
{
|
|
// We will pivot based on the type of the column
|
|
Type colType;
|
|
if (column.IsSqlVariant)
|
|
{
|
|
// For SQL Variant columns, the type is written first in string format
|
|
FileStreamReadResult sqlVariantTypeResult = ReadString(currentFileOffset);
|
|
currentFileOffset += sqlVariantTypeResult.TotalLength;
|
|
string sqlVariantType = (string)sqlVariantTypeResult.Value.RawObject;
|
|
|
|
// If the typename is null, then the whole value is null
|
|
if (sqlVariantTypeResult.Value == null || string.IsNullOrEmpty(sqlVariantType))
|
|
{
|
|
results.Add(sqlVariantTypeResult.Value);
|
|
continue;
|
|
}
|
|
|
|
// The typename is stored in the string
|
|
colType = Type.GetType(sqlVariantType);
|
|
|
|
// Workaround .NET bug, see sqlbu# 440643 and vswhidbey# 599834
|
|
// TODO: Is this workaround necessary for .NET Core?
|
|
if (colType == null && sqlVariantType == "System.Data.SqlTypes.SqlSingle")
|
|
{
|
|
colType = typeof(SqlSingle);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
colType = column.DataType;
|
|
}
|
|
|
|
// Use the right read function for the type to read the data from the file
|
|
Func<long, DbColumnWrapper, FileStreamReadResult> readFunc;
|
|
if(!readMethods.TryGetValue(colType, out readFunc))
|
|
{
|
|
// Treat everything else as a string
|
|
readFunc = readMethods[typeof(string)];
|
|
}
|
|
FileStreamReadResult result = readFunc(currentFileOffset, column);
|
|
currentFileOffset += result.TotalLength;
|
|
results.Add(result.Value);
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Private Helpers
|
|
|
|
/// <summary>
|
|
/// Creates a new buffer that is of the specified length if the buffer is not already
|
|
/// at least as long as specified.
|
|
/// </summary>
|
|
/// <param name="newBufferLength">The minimum buffer size</param>
|
|
private void AssureBufferLength(int newBufferLength)
|
|
{
|
|
if (buffer.Length < newBufferLength)
|
|
{
|
|
buffer = new byte[newBufferLength];
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads the value of a cell from the file wrapper, checks to see if it null using
|
|
/// <paramref name="isNullFunc"/>, and converts it to the proper output type using
|
|
/// <paramref name="convertFunc"/>.
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read from</param>
|
|
/// <param name="convertFunc">Function to use to convert the buffer to the target type</param>
|
|
/// <param name="isNullFunc">
|
|
/// If provided, this function will be used to determine if the value is null
|
|
/// </param>
|
|
/// <param name="toStringFunc">Optional function to use to convert the object to a string.</param>
|
|
/// <typeparam name="T">The expected type of the cell. Used to keep the code honest</typeparam>
|
|
/// <returns>The object, a display value, and the length of the value + its length</returns>
|
|
private FileStreamReadResult ReadCellHelper<T>(long offset, Func<int, T> convertFunc, Func<int, bool> isNullFunc = null, Func<T, string> toStringFunc = null)
|
|
{
|
|
LengthResult length = ReadLength(offset);
|
|
DbCellValue result = new DbCellValue();
|
|
|
|
if (isNullFunc == null ? length.ValueLength == 0 : isNullFunc(length.TotalLength))
|
|
{
|
|
result.RawObject = null;
|
|
result.DisplayValue = null;
|
|
}
|
|
else
|
|
{
|
|
AssureBufferLength(length.ValueLength);
|
|
fileStream.Read(buffer, 0, length.ValueLength);
|
|
T resultObject = convertFunc(length.ValueLength);
|
|
result.RawObject = resultObject;
|
|
result.DisplayValue = toStringFunc == null ? result.RawObject.ToString() : toStringFunc(resultObject);
|
|
}
|
|
|
|
return new FileStreamReadResult(result, length.TotalLength);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a short from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the short from</param>
|
|
/// <returns>A short</returns>
|
|
internal FileStreamReadResult ReadInt16(long fileOffset)
|
|
{
|
|
return ReadCellHelper(fileOffset, length => BitConverter.ToInt16(buffer, 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a int from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the int from</param>
|
|
/// <returns>An int</returns>
|
|
internal FileStreamReadResult ReadInt32(long fileOffset)
|
|
{
|
|
return ReadCellHelper(fileOffset, length => BitConverter.ToInt32(buffer, 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a long from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the long from</param>
|
|
/// <returns>A long</returns>
|
|
internal FileStreamReadResult ReadInt64(long fileOffset)
|
|
{
|
|
return ReadCellHelper(fileOffset, length => BitConverter.ToInt64(buffer, 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a byte from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the byte from</param>
|
|
/// <returns>A byte</returns>
|
|
internal FileStreamReadResult ReadByte(long fileOffset)
|
|
{
|
|
return ReadCellHelper(fileOffset, length => buffer[0]);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a char from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the char from</param>
|
|
/// <returns>A char</returns>
|
|
internal FileStreamReadResult ReadChar(long fileOffset)
|
|
{
|
|
return ReadCellHelper(fileOffset, length => BitConverter.ToChar(buffer, 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a bool from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the bool from</param>
|
|
/// <returns>A bool</returns>
|
|
internal FileStreamReadResult ReadBoolean(long fileOffset)
|
|
{
|
|
// Override the stringifier with numeric values if the user prefers that
|
|
return ReadCellHelper(fileOffset, length => buffer[0] == 0x1,
|
|
toStringFunc: val => executionSettings.DisplayBitAsNumber
|
|
? val ? "1" : "0"
|
|
: val.ToString());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a single from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the single from</param>
|
|
/// <returns>A single</returns>
|
|
internal FileStreamReadResult ReadSingle(long fileOffset)
|
|
{
|
|
return ReadCellHelper(fileOffset, length => BitConverter.ToSingle(buffer, 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a double from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="fileOffset">Offset into the file to read the double from</param>
|
|
/// <returns>A double</returns>
|
|
internal FileStreamReadResult ReadDouble(long fileOffset)
|
|
{
|
|
return ReadCellHelper(fileOffset, length => BitConverter.ToDouble(buffer, 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a SqlDecimal from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the SqlDecimal from</param>
|
|
/// <returns>A SqlDecimal</returns>
|
|
internal FileStreamReadResult ReadSqlDecimal(long offset)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
{
|
|
int[] arrInt32 = new int[(length - 3) / 4];
|
|
Buffer.BlockCopy(buffer, 3, arrInt32, 0, length - 3);
|
|
return new SqlDecimal(buffer[0], buffer[1], buffer[2] == 1, arrInt32);
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a decimal from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the decimal from</param>
|
|
/// <returns>A decimal</returns>
|
|
internal FileStreamReadResult ReadDecimal(long offset)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
{
|
|
int[] arrInt32 = new int[length / 4];
|
|
Buffer.BlockCopy(buffer, 0, arrInt32, 0, length);
|
|
return new decimal(arrInt32);
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a DateTime from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the DateTime from</param>
|
|
/// <param name="col">Column metadata, used for determining what precision to output</param>
|
|
/// <returns>A DateTime</returns>
|
|
internal FileStreamReadResult ReadDateTime(long offset, DbColumnWrapper col)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
{
|
|
long ticks = BitConverter.ToInt64(buffer, 0);
|
|
return new DateTime(ticks);
|
|
|
|
}, null, dt =>
|
|
{
|
|
// Switch based on the type of column
|
|
string formatString;
|
|
if (col.DataTypeName.Equals("DATE", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
// DATE columns should only show the date
|
|
formatString = DateFormatString;
|
|
}
|
|
else if (col.DataTypeName.StartsWith("DATETIME", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
// DATETIME and DATETIME2 columns should show date, time, and a variable number
|
|
// of milliseconds (for DATETIME, it is fixed at 3, but returned as null)
|
|
// If for some strange reason a scale > 7 is sent, we will cap it at 7 to avoid
|
|
// an exception from invalid date/time formatting
|
|
int scale = Math.Min(col.NumericScale ?? 3, 7);
|
|
formatString = $"{DateFormatString} {TimeFormatString}";
|
|
if (scale > 0)
|
|
{
|
|
string millisecondString = new string('f', scale);
|
|
formatString += $".{millisecondString}";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// For anything else that returns as a CLR DateTime, just show date and time
|
|
formatString = $"{DateFormatString} {TimeFormatString}";
|
|
}
|
|
|
|
return dt.ToString(formatString);
|
|
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a DateTimeOffset from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the DateTimeOffset from</param>
|
|
/// <returns>A DateTimeOffset</returns>
|
|
internal FileStreamReadResult ReadDateTimeOffset(long offset)
|
|
{
|
|
// DateTimeOffset is represented by DateTime.Ticks followed by TimeSpan.Ticks
|
|
// both as Int64 values
|
|
return ReadCellHelper(offset, length => {
|
|
long dtTicks = BitConverter.ToInt64(buffer, 0);
|
|
long dtOffset = BitConverter.ToInt64(buffer, 8);
|
|
return new DateTimeOffset(new DateTime(dtTicks), new TimeSpan(dtOffset));
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a TimeSpan from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the TimeSpan from</param>
|
|
/// <returns>A TimeSpan</returns>
|
|
internal FileStreamReadResult ReadTimeSpan(long offset)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
{
|
|
long ticks = BitConverter.ToInt64(buffer, 0);
|
|
return new TimeSpan(ticks);
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a string from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the string from</param>
|
|
/// <returns>A string</returns>
|
|
internal FileStreamReadResult ReadString(long offset)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
length > 0
|
|
? Encoding.Unicode.GetString(buffer, 0, length)
|
|
: string.Empty, totalLength => totalLength == 1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads bytes from the file at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the bytes from</param>
|
|
/// <returns>A byte array</returns>
|
|
internal FileStreamReadResult ReadBytes(long offset)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
{
|
|
byte[] output = new byte[length];
|
|
Buffer.BlockCopy(buffer, 0, output, 0, length);
|
|
return output;
|
|
}, totalLength => totalLength == 1,
|
|
bytes =>
|
|
{
|
|
StringBuilder sb = new StringBuilder("0x");
|
|
foreach (byte b in bytes)
|
|
{
|
|
sb.AppendFormat("{0:X2}", b);
|
|
}
|
|
return sb.ToString();
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads the bytes that make up a GUID at the offset provided
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the bytes from</param>
|
|
/// <returns>A guid type object</returns>
|
|
internal FileStreamReadResult ReadGuid(long offset)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
{
|
|
byte[] output = new byte[length];
|
|
Buffer.BlockCopy(buffer, 0, output, 0, length);
|
|
return new SqlGuid(output);
|
|
}, totalLength => totalLength == 1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads a SqlMoney type from the offset provided
|
|
/// into a
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the value</param>
|
|
/// <returns>A sql money type object</returns>
|
|
internal FileStreamReadResult ReadMoney(long offset)
|
|
{
|
|
return ReadCellHelper(offset, length =>
|
|
{
|
|
int[] arrInt32 = new int[length / 4];
|
|
Buffer.BlockCopy(buffer, 0, arrInt32, 0, length);
|
|
return new SqlMoney(new decimal(arrInt32));
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads the length of a field at the specified offset in the file
|
|
/// </summary>
|
|
/// <param name="offset">Offset into the file to read the field length from</param>
|
|
/// <returns>A LengthResult</returns>
|
|
private LengthResult ReadLength(long offset)
|
|
{
|
|
// read in length information
|
|
int lengthValue;
|
|
fileStream.Seek(offset, SeekOrigin.Begin);
|
|
int lengthLength = fileStream.Read(buffer, 0, 1);
|
|
if (buffer[0] != 0xFF)
|
|
{
|
|
// one byte is enough
|
|
lengthValue = Convert.ToInt32(buffer[0]);
|
|
}
|
|
else
|
|
{
|
|
// read in next 4 bytes
|
|
lengthLength += fileStream.Read(buffer, 0, 4);
|
|
|
|
// reconstruct the length
|
|
lengthValue = BitConverter.ToInt32(buffer, 0);
|
|
}
|
|
|
|
return new LengthResult { LengthLength = lengthLength, ValueLength = lengthValue };
|
|
}
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Internal struct used for representing the length of a field from the file
|
|
/// </summary>
|
|
internal struct LengthResult
|
|
{
|
|
/// <summary>
|
|
/// How many bytes the length takes up
|
|
/// </summary>
|
|
public int LengthLength { get; set; }
|
|
|
|
/// <summary>
|
|
/// How many bytes the value takes up
|
|
/// </summary>
|
|
public int ValueLength { get; set; }
|
|
|
|
/// <summary>
|
|
/// <see cref="LengthLength"/> + <see cref="ValueLength"/>
|
|
/// </summary>
|
|
public int TotalLength => LengthLength + ValueLength;
|
|
}
|
|
|
|
#region IDisposable Implementation
|
|
|
|
private bool disposed;
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (disposed)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (disposing)
|
|
{
|
|
fileStream.Dispose();
|
|
}
|
|
|
|
disposed = true;
|
|
}
|
|
|
|
~ServiceBufferFileStreamReader()
|
|
{
|
|
Dispose(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|