Skip to content

Commit cfa9916

Browse files
authored
Add .IsNullOrEmpty(this string) extension for static-typing efficiency (#336)
* Add `internal IsNullOrEmpty(this string)` extension for efficiency * Formatting * Use non-public methods too * Modify IssueJira0627_PocoClassPropertyRenitialization test * Fix string.IsNullOrEmpty() * Fix string.IsNullOrEmpty()
1 parent da22ea2 commit cfa9916

File tree

8 files changed

+30
-29
lines changed

8 files changed

+30
-29
lines changed

Extensions/Xtensive.Orm.Localization/Configuration/LocalizationConfiguration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public static LocalizationConfiguration Load(IConfiguration configuration, strin
146146
return new LocalizationConfigurationReader().Read(configurationRoot, sectionName ?? DefaultSectionName);
147147
}
148148
else if (configuration is IConfigurationSection configurationSection) {
149-
return sectionName.IsNullOrEmpty()
149+
return string.IsNullOrEmpty(sectionName)
150150
? new LocalizationConfigurationReader().Read(configurationSection)
151151
: new LocalizationConfigurationReader().Read(configurationSection.GetSection(sectionName));
152152
}

Extensions/Xtensive.Orm.Localization/Configuration/LocalizationConfigurationReader.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private LocalizationConfiguration ReadInternal(IConfigurationSection configurati
5252
}
5353
}
5454
}
55-
if(!cultureName.IsNullOrEmpty()) {
55+
if(!string.IsNullOrEmpty(cultureName)) {
5656
try {
5757
defaultCulture = CultureInfo.GetCultureInfo(cultureName);
5858
}
@@ -64,4 +64,4 @@ private LocalizationConfiguration ReadInternal(IConfigurationSection configurati
6464
return new LocalizationConfiguration() { DefaultCulture = defaultCulture };
6565
}
6666
}
67-
}
67+
}

Extensions/Xtensive.Orm.Security/Configuration/SecurityConfigurationReaders.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ protected override SecurityConfiguration ReadInternal(IConfigurationSection conf
6868
}
6969
if ((hashingServiceName ?? authenticationServiceName) != null) {
7070
var securityConfiguration = new SecurityConfiguration(true);
71-
if (!hashingServiceName.IsNullOrEmpty()) {
71+
if (!string.IsNullOrEmpty(hashingServiceName)) {
7272
securityConfiguration.HashingServiceName = hashingServiceName.ToLowerInvariant();
7373
}
7474

75-
if (!authenticationServiceName.IsNullOrEmpty()) {
75+
if (!string.IsNullOrEmpty(authenticationServiceName)) {
7676
securityConfiguration.AuthenticationServiceName = authenticationServiceName.ToLowerInvariant();
7777
}
7878

Orm/Xtensive.Orm.Oracle/Sql.Drivers.Oracle/v09/Compiler.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ public override void Visit(SqlFastFirstRowsHint node) =>
292292

293293
public override void Visit(SqlForceJoinOrderHint node)
294294
{
295-
if (node.Tables.IsNullOrEmpty()) {
295+
if (!(node.Tables?.Count > 0)) {
296296
_ = context.Output.Append("ORDERED");
297297
}
298298
else {
@@ -583,4 +583,4 @@ protected internal Compiler(SqlDriver driver)
583583
{
584584
}
585585
}
586-
}
586+
}

Orm/Xtensive.Orm.Tests/Issues/IssueJira0627_PocoClassPropertyRenitialization.cs

+15-15
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ public void AllByFieldOfPoco01Test()
11331133
using (var transaction = session.OpenTransaction()) {
11341134
_ = session.Query.All<TestEntity>()
11351135
.Select(e => new Poco { Name = e.Name })
1136-
.All(el => el.Name.IsNullOrEmpty());
1136+
.All(el => string.IsNullOrEmpty(el.Name));
11371137
}
11381138
}
11391139

@@ -1144,7 +1144,7 @@ public void AllByFieldOfPoco02Test()
11441144
using (var transaction = session.OpenTransaction()) {
11451145
_ = session.Query.All<TestEntity>()
11461146
.Select(e => new Poco { Name = e.Name, BaseName = e.Name })
1147-
.All(el => el.Name.IsNullOrEmpty());
1147+
.All(el => string.IsNullOrEmpty(el.Name));
11481148
}
11491149
}
11501150

@@ -1155,7 +1155,7 @@ public void AllByFieldOfPoco03Test()
11551155
using (var transaction = session.OpenTransaction()) {
11561156
_ = session.Query.All<TestEntity>()
11571157
.Select(e => new Poco { Name = e.Name, BaseName = e.Name })
1158-
.All(el => el.Name.IsNullOrEmpty());
1158+
.All(el => string.IsNullOrEmpty(el.Name));
11591159
}
11601160
}
11611161

@@ -1166,7 +1166,7 @@ public void AllByFieldOfPoco04Test()
11661166
using (var transaction = session.OpenTransaction()) {
11671167
_ = Assert.Throws<QueryTranslationException>(() => session.Query.All<TestEntity>()
11681168
.Select(e => new Poco { BaseName = e.Name })
1169-
.All(el => el.Name.IsNullOrEmpty()));
1169+
.All(el => string.IsNullOrEmpty(el.Name)));
11701170
}
11711171
}
11721172

@@ -1177,7 +1177,7 @@ public void AllByFieldOfPoco05Test()
11771177
using (var transaction = session.OpenTransaction()) {
11781178
_ = session.Query.All<TestEntity>()
11791179
.Select(e => new Poco())
1180-
.All(el => el.Name.IsNullOrEmpty());
1180+
.All(el => string.IsNullOrEmpty(el.Name));
11811181
}
11821182
}
11831183

@@ -1189,7 +1189,7 @@ public void AnyByFieldOfPoco01Test()
11891189
using (var transaction = session.OpenTransaction()) {
11901190
_ = session.Query.All<TestEntity>()
11911191
.Select(e => new Poco { Name = e.Name })
1192-
.Any(el => el.Name.IsNullOrEmpty());
1192+
.Any(el => string.IsNullOrEmpty(el.Name));
11931193
}
11941194
}
11951195

@@ -1200,7 +1200,7 @@ public void AnyByFieldOfPoco02Test()
12001200
using (var transaction = session.OpenTransaction()) {
12011201
_ = session.Query.All<TestEntity>()
12021202
.Select(e => new Poco { Name = e.Name, BaseName = e.Name })
1203-
.Any(el => el.Name.IsNullOrEmpty());
1203+
.Any(el => string.IsNullOrEmpty(el.Name));
12041204
}
12051205
}
12061206

@@ -1211,7 +1211,7 @@ public void AnyByFieldOfPoco03Test()
12111211
using (var transaction = session.OpenTransaction()) {
12121212
_ = session.Query.All<TestEntity>()
12131213
.Select(e => new Poco { Name = e.Name, BaseName = e.Name })
1214-
.Any(el => el.BaseName.IsNullOrEmpty());
1214+
.Any(el => string.IsNullOrEmpty(el.BaseName));
12151215
}
12161216
}
12171217

@@ -1222,7 +1222,7 @@ public void AnyByFieldOfPoco04Test()
12221222
using (var transaction = session.OpenTransaction()) {
12231223
_ = session.Query.All<TestEntity>()
12241224
.Select(e => new Poco { BaseName = e.Name })
1225-
.Any(el => el.BaseName.IsNullOrEmpty());
1225+
.Any(el => string.IsNullOrEmpty(el.BaseName));
12261226
}
12271227
}
12281228

@@ -1233,7 +1233,7 @@ public void AnyByFieldOfPoco05Test()
12331233
using (var transaction = session.OpenTransaction()) {
12341234
_ = session.Query.All<TestEntity>()
12351235
.Select(e => new Poco())
1236-
.Any(el => el.Name.IsNullOrEmpty());
1236+
.Any(el => string.IsNullOrEmpty(el.Name));
12371237
}
12381238
}
12391239

@@ -1347,7 +1347,7 @@ public void CountByFieldOfPoco01Test()
13471347
using (var transaction = session.OpenTransaction()) {
13481348
_ = session.Query.All<TestEntity>()
13491349
.Select(e => new Poco { Name = e.Name })
1350-
.Count(el => el.Name.IsNullOrEmpty());
1350+
.Count(el => string.IsNullOrEmpty(el.Name));
13511351
}
13521352
}
13531353

@@ -1358,7 +1358,7 @@ public void CountByFieldOfPoco02Test()
13581358
using (var transaction = session.OpenTransaction()) {
13591359
_ = session.Query.All<TestEntity>()
13601360
.Select(e => new Poco { Name = e.Name, BaseName = e.Name })
1361-
.Count(el => el.Name.IsNullOrEmpty());
1361+
.Count(el => string.IsNullOrEmpty(el.Name));
13621362
}
13631363
}
13641364

@@ -1369,7 +1369,7 @@ public void CountByFieldOfPoco03Test()
13691369
using (var transaction = session.OpenTransaction()) {
13701370
_ = session.Query.All<TestEntity>()
13711371
.Select(e => new Poco { Name = e.Name, BaseName = e.Name })
1372-
.Count(el => el.BaseName.IsNullOrEmpty());
1372+
.Count(el => string.IsNullOrEmpty(el.BaseName));
13731373
}
13741374
}
13751375

@@ -1380,7 +1380,7 @@ public void CountByFieldOfPoco04Test()
13801380
using (var transaction = session.OpenTransaction()) {
13811381
_ = session.Query.All<TestEntity>()
13821382
.Select(e => new Poco { BaseName = e.Name })
1383-
.Count(el => el.BaseName.IsNullOrEmpty());
1383+
.Count(el => string.IsNullOrEmpty(el.BaseName));
13841384
}
13851385
}
13861386

@@ -1391,7 +1391,7 @@ public void CountByFieldOfPoco05Test()
13911391
using (var transaction = session.OpenTransaction()) {
13921392
_ = session.Query.All<TestEntity>()
13931393
.Select(e => new Poco())
1394-
.Count(el => el.Name.IsNullOrEmpty());
1394+
.Count(el => string.IsNullOrEmpty(el.Name));
13951395
}
13961396
}
13971397

Orm/Xtensive.Orm/Core/Extensions/EnumerableExtensions.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ public static class EnumerableExtensions
2525
private const int defaultMaximalBatchSize = 1024;
2626
private const int defaultFirstFastCount = 0;
2727

28+
[Obsolete("Use string.IsNullOrEmpty()")]
29+
internal static bool IsNullOrEmpty(this string s) => string.IsNullOrEmpty(s);
30+
2831
/// <summary>
2932
/// Indicates whether enumerable is empty or not
3033
/// by attempting to cast it to <see cref="ICollection{T}"/> and <see cref="IQueryable{T}"/>.
@@ -35,7 +38,7 @@ public static class EnumerableExtensions
3538
/// <returns><see langword="True"/> if collection is definitely <see langword="null"/> or empty;
3639
/// otherwise, <see langword="false"/>.</returns>
3740
[Obsolete("Don't use Xtensive.Core for 'collection is empty' checking")]
38-
public static bool IsNullOrEmpty<TItem>(this IEnumerable<TItem> items)
41+
internal static bool IsNullOrEmpty<TItem>(this IEnumerable<TItem> items)
3942
{
4043
if (items==null)
4144
return true;

Orm/Xtensive.Orm/Orm/Linq/MemberCompilation/MemberCompilerProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ private static (MemberInfo targetMember, Delegate compilerInvoker) ProcessCompil
184184
Strings.ExCompilerXHasInvalidTargetType, compiler.GetFullName(true)));
185185

186186
var parameterTypes = ValidateCompilerParametersAndExtractTargetSignature(compiler, isGeneric);
187-
var bindingFlags = BindingFlags.Public;
187+
var bindingFlags = BindingFlags.Public | BindingFlags.NonPublic;
188188

189189
if (isCtor)
190190
bindingFlags |= BindingFlags.Instance;

Orm/Xtensive.Orm/Sql/Dml/Hints/SqlForceJoinOrderHint.cs

+3-5
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ namespace Xtensive.Sql.Dml
1212
[Serializable]
1313
public class SqlForceJoinOrderHint : SqlHint
1414
{
15-
private SqlTable[] tables;
16-
1715
/// <summary>
1816
/// Gets the corresponding tables.
1917
/// </summary>
20-
public IEnumerable<SqlTable> Tables { get { return tables; } }
18+
public IReadOnlyList<SqlTable> Tables { get; }
2119

2220
internal override SqlForceJoinOrderHint Clone(SqlNodeCloneContext? context = null) =>
2321
context.GetOrAdd(this, static (t, c) =>
24-
new(t.tables?.Select(table => table.Clone()).ToArray(t.tables.Length)));
22+
new(t.Tables?.Select(table => table.Clone()).ToArray(t.Tables.Count)));
2523

2624
public override void AcceptVisitor(ISqlVisitor visitor)
2725
{
@@ -36,7 +34,7 @@ internal SqlForceJoinOrderHint()
3634

3735
internal SqlForceJoinOrderHint(SqlTable[] tables)
3836
{
39-
this.tables = tables;
37+
Tables = tables;
4038
}
4139
}
4240
}

0 commit comments

Comments
 (0)