| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* Copyright 2010-present MongoDB 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.Collections.Generic;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Security;
- using System.Security.Principal;
- using System.Text;
- namespace MongoDB.Driver
- {
- /// <summary>
- /// Represents an identity in MongoDB.
- /// </summary>
- public abstract class MongoIdentity : IEquatable<MongoIdentity>
- {
- // private fields
- private readonly string _source;
- private readonly string _username;
- // constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="MongoIdentity" /> class.
- /// </summary>
- /// <param name="source">The source.</param>
- /// <param name="username">The username.</param>
- /// <param name="allowNullUsername">Whether to allow null usernames.</param>
- internal MongoIdentity(string source, string username, bool allowNullUsername = false)
- {
- if (source == null)
- {
- throw new ArgumentNullException("source");
- }
- if (username == null && !allowNullUsername)
- {
- throw new ArgumentNullException("username");
- }
- _source = source;
- _username = username;
- }
- // public properties
- /// <summary>
- /// Gets the source.
- /// </summary>
- public string Source
- {
- get { return _source; }
- }
- /// <summary>
- /// Gets the username.
- /// </summary>
- public string Username
- {
- get { return _username; }
- }
- // public operators
- /// <summary>
- /// Compares two MongoIdentity values.
- /// </summary>
- /// <param name="lhs">The first MongoIdentity.</param>
- /// <param name="rhs">The other MongoIdentity.</param>
- /// <returns>True if the two MongoIdentity values are equal (or both null).</returns>
- public static bool operator ==(MongoIdentity lhs, MongoIdentity rhs)
- {
- return object.Equals(lhs, rhs);
- }
- /// <summary>
- /// Compares two MongoIdentity values.
- /// </summary>
- /// <param name="lhs">The first MongoIdentity.</param>
- /// <param name="rhs">The other MongoIdentity.</param>
- /// <returns>True if the two MongoIdentity values are not equal (or one is null and the other is not).</returns>
- public static bool operator !=(MongoIdentity lhs, MongoIdentity rhs)
- {
- return !(lhs == rhs);
- }
- // public methods
- /// <summary>
- /// Determines whether the specified <see cref="System.Object" /> is equal to this instance.
- /// </summary>
- /// <param name="obj">The <see cref="System.Object" /> to compare with this instance.</param>
- /// <returns>
- /// <c>true</c> if the specified <see cref="System.Object" /> is equal to this instance; otherwise, <c>false</c>.
- /// </returns>
- public override bool Equals(object obj)
- {
- return Equals(obj as MongoIdentity);
- }
- /// <summary>
- /// Determines whether the specified instance is equal to this instance.
- /// </summary>
- /// <param name="rhs">The right-hand side.</param>
- /// <returns>
- /// <c>true</c> if the specified instance is equal to this instance; otherwise, <c>false</c>.
- /// </returns>
- public bool Equals(MongoIdentity rhs)
- {
- if (object.ReferenceEquals(rhs, null) || GetType() != rhs.GetType()) { return false; }
- return _username == rhs._username && _source == rhs._source;
- }
- /// <summary>
- /// Returns a hash code for this instance.
- /// </summary>
- /// <returns>
- /// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
- /// </returns>
- public override int GetHashCode()
- {
- var hash = 17;
- hash += 37 * (_username == null ? 0 :_username.GetHashCode());
- hash += 37 * _source.GetHashCode();
- return hash;
- }
- }
- }
|