mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-16 04:59:34 +08:00
143 lines
5.1 KiB
C#
143 lines
5.1 KiB
C#
using System;
|
||
using System.Data.Common;
|
||
using System.Data;
|
||
using MongoDB.Bson;
|
||
using MongoDB.Driver;
|
||
using System.Linq;
|
||
using MongoDB.Bson.Serialization;
|
||
using System.Collections.Generic;
|
||
using System.Xml.Linq;
|
||
using System.Threading.Tasks;
|
||
using System.Threading;
|
||
|
||
namespace MongoDb.Ado.data
|
||
{
|
||
public class MongoDbCommand : DbCommand
|
||
{
|
||
private string _commandText;
|
||
private MongoDbConnection _connection;
|
||
private int _commandTimeout;
|
||
|
||
public MongoDbCommand() { }
|
||
|
||
public MongoDbCommand(string commandText, MongoDbConnection connection)
|
||
{
|
||
_commandText = commandText;
|
||
_connection = connection;
|
||
}
|
||
|
||
public override string CommandText
|
||
{
|
||
get => _commandText;
|
||
set => _commandText = value;
|
||
}
|
||
|
||
public override int CommandTimeout
|
||
{
|
||
get => _commandTimeout;
|
||
set => _commandTimeout = value;
|
||
}
|
||
|
||
public override CommandType CommandType { get; set; } = CommandType.Text;
|
||
|
||
protected override DbConnection DbConnection
|
||
{
|
||
get => _connection;
|
||
set => _connection = (MongoDbConnection)value;
|
||
}
|
||
|
||
protected override DbParameterCollection DbParameterCollection
|
||
{ get { return new EmptyDbParameterCollection(); } }
|
||
|
||
protected override DbTransaction DbTransaction { get; set; }
|
||
|
||
public override bool DesignTimeVisible { get; set; }
|
||
|
||
public override UpdateRowSource UpdatedRowSource { get; set; }
|
||
|
||
public override void Cancel() { }
|
||
|
||
public override int ExecuteNonQuery()
|
||
{
|
||
var (operation, collectionName, json) = ParseCommand(_commandText);
|
||
var collection = GetCollection(collectionName);
|
||
var context = new HandlerContext();
|
||
var result= ExecuteHandlerFactory.Handler(operation, json, collection, context);
|
||
((MongoDbConnection)this.Connection).ObjectIds = context.ids;
|
||
return result;
|
||
}
|
||
public override object ExecuteScalar()
|
||
{
|
||
var (operation, collectionName, json) = ParseCommand(_commandText);
|
||
var collection = GetCollection(collectionName);
|
||
return new ExecuteScalarHandler().Handle(operation,collection, json);
|
||
}
|
||
protected override DbDataReader ExecuteDbDataReader(CommandBehavior behavior)
|
||
{
|
||
var (operation, collectionName, json) = ParseCommand(_commandText);
|
||
var collection = GetCollection(collectionName);
|
||
return new DbDataReaderFactory().Handle(operation, collection, json);
|
||
}
|
||
|
||
public override Task<int> ExecuteNonQueryAsync(CancellationToken cancellationToken)
|
||
{
|
||
var (operation, collectionName, json) = ParseCommand(_commandText);
|
||
var collection = GetCollection(collectionName);
|
||
return ExecuteHandlerFactoryAsync.HandlerAsync(operation, json, collection);
|
||
}
|
||
public override Task<object> ExecuteScalarAsync(CancellationToken cancellationToken)
|
||
{
|
||
var (operation, collectionName, json) = ParseCommand(_commandText);
|
||
var collection = GetCollection(collectionName);
|
||
return new ExecuteScalarHandlerAsync().HandleAsync(operation, collection, json);
|
||
}
|
||
public override Task<DbDataReader> ExecuteReaderAsync(CancellationToken cancellationToken)
|
||
{
|
||
var (operation, collectionName, json) = ParseCommand(_commandText);
|
||
var collection = GetCollection(collectionName);
|
||
return new DbDataReaderFactoryAsync().HandleAsync(operation, collection, json);
|
||
}
|
||
protected override Task<DbDataReader> ExecuteDbDataReaderAsync(CommandBehavior behavior,CancellationToken cancellationToken)
|
||
{
|
||
return ExecuteReaderAsync();
|
||
}
|
||
|
||
|
||
public override void Prepare() { }
|
||
|
||
protected override DbParameter CreateDbParameter()
|
||
{
|
||
throw new NotImplementedException();
|
||
}
|
||
|
||
private IMongoCollection<BsonDocument> GetCollection(string name)
|
||
{
|
||
if (_connection == null || _connection.State != ConnectionState.Open)
|
||
throw new InvalidOperationException("连接尚未打开。");
|
||
|
||
return _connection.GetDatabase().GetCollection<BsonDocument>(name);
|
||
}
|
||
|
||
// 示例:find users {age:{$gt:20}} 或 insert users {"name":"Tom"}
|
||
private (string op, string collection, string json) ParseCommand(string cmd)
|
||
{
|
||
if (string.IsNullOrWhiteSpace(cmd))
|
||
throw new InvalidOperationException("CommandText 不能为空。");
|
||
|
||
var parts = cmd.Trim().Split(new[] { ' ' }, 3, StringSplitOptions.RemoveEmptyEntries);
|
||
if (parts.Length < 2)
|
||
throw new InvalidOperationException("命令格式错误,应为:操作 集合名 JSON过滤");
|
||
|
||
string op = parts[0].ToLowerInvariant();
|
||
string collection = parts[1];
|
||
string json = parts.Length >= 3 ? parts[2] : "";
|
||
|
||
return (op, collection, json);
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
|
||
|