-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathCqlConditionalCommand.cs
More file actions
143 lines (128 loc) · 5.28 KB
/
CqlConditionalCommand.cs
File metadata and controls
143 lines (128 loc) · 5.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
//
// Copyright (C) DataStax Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
using System;
using System.Threading.Tasks;
using Cassandra.Mapping;
namespace Cassandra.Data.Linq
{
/// <summary>
/// Represents an INSERT/UPDATE/DELETE command with support for Lightweight transactions.
/// </summary>
public class CqlConditionalCommand<TEntity>: CqlCommand
{
private readonly MapperFactory _mapperFactory;
private readonly CqlCommand _origin;
internal CqlConditionalCommand(CqlCommand origin, MapperFactory mapperFactory)
: base(origin.Expression, origin.Table, origin.InternalRef.StatementFactory, origin.PocoData)
{
_mapperFactory = mapperFactory;
_origin = origin;
//Copy the Statement properties from origin
_origin.CopyQueryPropertiesTo(this);
}
protected internal override string GetCql(out object[] values)
{
return _origin.GetCql(out values);
}
/// <summary>
/// Asynchronously executes a conditional query and returns information whether it was applied.
/// </summary>
public new Task<AppliedInfo<TEntity>> ExecuteAsync()
{
return ExecuteAsync(Configuration.DefaultExecutionProfileName);
}
/// <summary>
/// Executes a conditional query and returns information whether it was applied.
/// </summary>
/// <returns>An instance of AppliedInfo{TEntity}</returns>
public new AppliedInfo<TEntity> Execute()
{
return Execute(Configuration.DefaultExecutionProfileName);
}
/// <summary>
/// Asynchronously executes a conditional query with the provided execution profile and returns information whether it was applied.
/// </summary>
public new async Task<AppliedInfo<TEntity>> ExecuteAsync(string executionProfile)
{
if (executionProfile == null)
{
throw new ArgumentNullException(nameof(executionProfile));
}
var cql = GetCql(out object[] values);
var session = GetTable().GetSession();
var stmt = await InternalRef.StatementFactory.GetStatementAsync(
session,
Cql.New(cql, values).WithExecutionProfile(executionProfile)).ConfigureAwait(false);
this.CopyQueryPropertiesTo(stmt);
var rs = await session.ExecuteAsync(stmt, executionProfile).ConfigureAwait(false);
#if !NETFRAMEWORK
return await AppliedInfo<TEntity>.FromRowSetAsync(_mapperFactory, cql, rs).ConfigureAwait(false);
#else
return AppliedInfo<TEntity>.FromRowSet(_mapperFactory, cql, rs);
#endif
}
/// <summary>
/// Executes a conditional query with the provided execution profile and returns information whether it was applied.
/// </summary>
/// <returns>An instance of AppliedInfo{TEntity}</returns>
public new AppliedInfo<TEntity> Execute(string executionProfile)
{
if (executionProfile == null)
{
throw new ArgumentNullException(nameof(executionProfile));
}
var queryAbortTimeout = GetTable().GetSession().Cluster.Configuration.ClientOptions.QueryAbortTimeout;
return WaitToCompleteWithMetrics(ExecuteAsync(executionProfile), queryAbortTimeout);
}
public new CqlConditionalCommand<TEntity> SetConsistencyLevel(ConsistencyLevel? consistencyLevel)
{
base.SetConsistencyLevel(consistencyLevel);
return this;
}
public new CqlConditionalCommand<TEntity> SetSerialConsistencyLevel(ConsistencyLevel consistencyLevel)
{
base.SetSerialConsistencyLevel(consistencyLevel);
return this;
}
/// <summary>
/// Sets the time for data in a column to expire (TTL) for INSERT and UPDATE commands.
/// </summary>
/// <param name="seconds">Amount of seconds.</param>
/// <returns>This instance.</returns>
public new CqlConditionalCommand<TEntity> SetTTL(int seconds)
{
_origin.SetTTL(seconds);
return this;
}
/// <summary>
/// Sets the timestamp associated with this statement execution.
/// </summary>
/// <returns>This instance.</returns>
public new CqlConditionalCommand<TEntity> SetTimestamp(DateTimeOffset timestamp)
{
_origin.SetTimestamp(timestamp);
return this;
}
/// <summary>
/// Generates and returns the Cql query
/// </summary>
public override string ToString()
{
object[] _;
return GetCql(out _);
}
}
}