Repository URL to install this package:
|
Version:
2022.5.6 ▾
|
/*
* Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file 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.Text.RegularExpressions;
using Gs2.Core.Model;
using Gs2.Util.LitJson;
#if UNITY_2017_1_OR_NEWER
using UnityEngine.Scripting;
#endif
namespace Gs2.Gs2Exchange.Model
{
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public class Namespace : IComparable
{
public string NamespaceId { set; get; }
public string Name { set; get; }
public string Description { set; get; }
public bool? EnableDirectExchange { set; get; }
public bool? EnableAwaitExchange { set; get; }
public string QueueNamespaceId { set; get; }
public string KeyId { set; get; }
public Gs2.Gs2Exchange.Model.ScriptSetting ExchangeScript { set; get; }
public Gs2.Gs2Exchange.Model.LogSetting LogSetting { set; get; }
public long? CreatedAt { set; get; }
public long? UpdatedAt { set; get; }
public Namespace WithNamespaceId(string namespaceId) {
this.NamespaceId = namespaceId;
return this;
}
public Namespace WithName(string name) {
this.Name = name;
return this;
}
public Namespace WithDescription(string description) {
this.Description = description;
return this;
}
public Namespace WithEnableDirectExchange(bool? enableDirectExchange) {
this.EnableDirectExchange = enableDirectExchange;
return this;
}
public Namespace WithEnableAwaitExchange(bool? enableAwaitExchange) {
this.EnableAwaitExchange = enableAwaitExchange;
return this;
}
public Namespace WithQueueNamespaceId(string queueNamespaceId) {
this.QueueNamespaceId = queueNamespaceId;
return this;
}
public Namespace WithKeyId(string keyId) {
this.KeyId = keyId;
return this;
}
public Namespace WithExchangeScript(Gs2.Gs2Exchange.Model.ScriptSetting exchangeScript) {
this.ExchangeScript = exchangeScript;
return this;
}
public Namespace WithLogSetting(Gs2.Gs2Exchange.Model.LogSetting logSetting) {
this.LogSetting = logSetting;
return this;
}
public Namespace WithCreatedAt(long? createdAt) {
this.CreatedAt = createdAt;
return this;
}
public Namespace WithUpdatedAt(long? updatedAt) {
this.UpdatedAt = updatedAt;
return this;
}
private static System.Text.RegularExpressions.Regex _regionRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):exchange:(?<namespaceName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetRegionFromGrn(
string grn
)
{
var match = _regionRegex.Match(grn);
if (!match.Success || !match.Groups["region"].Success)
{
return null;
}
return match.Groups["region"].Value;
}
private static System.Text.RegularExpressions.Regex _ownerIdRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):exchange:(?<namespaceName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetOwnerIdFromGrn(
string grn
)
{
var match = _ownerIdRegex.Match(grn);
if (!match.Success || !match.Groups["ownerId"].Success)
{
return null;
}
return match.Groups["ownerId"].Value;
}
private static System.Text.RegularExpressions.Regex _namespaceNameRegex = new System.Text.RegularExpressions.Regex(
@"grn:gs2:(?<region>.+):(?<ownerId>.+):exchange:(?<namespaceName>.+)",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
);
public static string GetNamespaceNameFromGrn(
string grn
)
{
var match = _namespaceNameRegex.Match(grn);
if (!match.Success || !match.Groups["namespaceName"].Success)
{
return null;
}
return match.Groups["namespaceName"].Value;
}
#if UNITY_2017_1_OR_NEWER
[Preserve]
#endif
public static Namespace FromJson(JsonData data)
{
if (data == null) {
return null;
}
return new Namespace()
.WithNamespaceId(!data.Keys.Contains("namespaceId") || data["namespaceId"] == null ? null : data["namespaceId"].ToString())
.WithName(!data.Keys.Contains("name") || data["name"] == null ? null : data["name"].ToString())
.WithDescription(!data.Keys.Contains("description") || data["description"] == null ? null : data["description"].ToString())
.WithEnableDirectExchange(!data.Keys.Contains("enableDirectExchange") || data["enableDirectExchange"] == null ? null : (bool?)bool.Parse(data["enableDirectExchange"].ToString()))
.WithEnableAwaitExchange(!data.Keys.Contains("enableAwaitExchange") || data["enableAwaitExchange"] == null ? null : (bool?)bool.Parse(data["enableAwaitExchange"].ToString()))
.WithQueueNamespaceId(!data.Keys.Contains("queueNamespaceId") || data["queueNamespaceId"] == null ? null : data["queueNamespaceId"].ToString())
.WithKeyId(!data.Keys.Contains("keyId") || data["keyId"] == null ? null : data["keyId"].ToString())
.WithExchangeScript(!data.Keys.Contains("exchangeScript") || data["exchangeScript"] == null ? null : Gs2.Gs2Exchange.Model.ScriptSetting.FromJson(data["exchangeScript"]))
.WithLogSetting(!data.Keys.Contains("logSetting") || data["logSetting"] == null ? null : Gs2.Gs2Exchange.Model.LogSetting.FromJson(data["logSetting"]))
.WithCreatedAt(!data.Keys.Contains("createdAt") || data["createdAt"] == null ? null : (long?)long.Parse(data["createdAt"].ToString()))
.WithUpdatedAt(!data.Keys.Contains("updatedAt") || data["updatedAt"] == null ? null : (long?)long.Parse(data["updatedAt"].ToString()));
}
public JsonData ToJson()
{
return new JsonData {
["namespaceId"] = NamespaceId,
["name"] = Name,
["description"] = Description,
["enableDirectExchange"] = EnableDirectExchange,
["enableAwaitExchange"] = EnableAwaitExchange,
["queueNamespaceId"] = QueueNamespaceId,
["keyId"] = KeyId,
["exchangeScript"] = ExchangeScript?.ToJson(),
["logSetting"] = LogSetting?.ToJson(),
["createdAt"] = CreatedAt,
["updatedAt"] = UpdatedAt,
};
}
public void WriteJson(JsonWriter writer)
{
writer.WriteObjectStart();
if (NamespaceId != null) {
writer.WritePropertyName("namespaceId");
writer.Write(NamespaceId.ToString());
}
if (Name != null) {
writer.WritePropertyName("name");
writer.Write(Name.ToString());
}
if (Description != null) {
writer.WritePropertyName("description");
writer.Write(Description.ToString());
}
if (EnableDirectExchange != null) {
writer.WritePropertyName("enableDirectExchange");
writer.Write(bool.Parse(EnableDirectExchange.ToString()));
}
if (EnableAwaitExchange != null) {
writer.WritePropertyName("enableAwaitExchange");
writer.Write(bool.Parse(EnableAwaitExchange.ToString()));
}
if (QueueNamespaceId != null) {
writer.WritePropertyName("queueNamespaceId");
writer.Write(QueueNamespaceId.ToString());
}
if (KeyId != null) {
writer.WritePropertyName("keyId");
writer.Write(KeyId.ToString());
}
if (ExchangeScript != null) {
writer.WritePropertyName("exchangeScript");
ExchangeScript.WriteJson(writer);
}
if (LogSetting != null) {
writer.WritePropertyName("logSetting");
LogSetting.WriteJson(writer);
}
if (CreatedAt != null) {
writer.WritePropertyName("createdAt");
writer.Write(long.Parse(CreatedAt.ToString()));
}
if (UpdatedAt != null) {
writer.WritePropertyName("updatedAt");
writer.Write(long.Parse(UpdatedAt.ToString()));
}
writer.WriteObjectEnd();
}
public int CompareTo(object obj)
{
var other = obj as Namespace;
var diff = 0;
if (NamespaceId == null && NamespaceId == other.NamespaceId)
{
// null and null
}
else
{
diff += NamespaceId.CompareTo(other.NamespaceId);
}
if (Name == null && Name == other.Name)
{
// null and null
}
else
{
diff += Name.CompareTo(other.Name);
}
if (Description == null && Description == other.Description)
{
// null and null
}
else
{
diff += Description.CompareTo(other.Description);
}
if (EnableDirectExchange == null && EnableDirectExchange == other.EnableDirectExchange)
{
// null and null
}
else
{
diff += EnableDirectExchange == other.EnableDirectExchange ? 0 : 1;
}
if (EnableAwaitExchange == null && EnableAwaitExchange == other.EnableAwaitExchange)
{
// null and null
}
else
{
diff += EnableAwaitExchange == other.EnableAwaitExchange ? 0 : 1;
}
if (QueueNamespaceId == null && QueueNamespaceId == other.QueueNamespaceId)
{
// null and null
}
else
{
diff += QueueNamespaceId.CompareTo(other.QueueNamespaceId);
}
if (KeyId == null && KeyId == other.KeyId)
{
// null and null
}
else
{
diff += KeyId.CompareTo(other.KeyId);
}
if (ExchangeScript == null && ExchangeScript == other.ExchangeScript)
{
// null and null
}
else
{
diff += ExchangeScript.CompareTo(other.ExchangeScript);
}
if (LogSetting == null && LogSetting == other.LogSetting)
{
// null and null
}
else
{
diff += LogSetting.CompareTo(other.LogSetting);
}
if (CreatedAt == null && CreatedAt == other.CreatedAt)
{
// null and null
}
else
{
diff += (int)(CreatedAt - other.CreatedAt);
}
if (UpdatedAt == null && UpdatedAt == other.UpdatedAt)
{
// null and null
}
else
{
diff += (int)(UpdatedAt - other.UpdatedAt);
}
return diff;
}
}
}