Skip to content

Commit

Permalink
add - doc - Added language information
Browse files Browse the repository at this point in the history
---

We've added language information

---

Type: add
Breaking: False
Doc Required: True
Part: 1/1
  • Loading branch information
AptiviCEO committed Mar 30, 2024
1 parent 593b21e commit c701062
Show file tree
Hide file tree
Showing 5 changed files with 185 additions and 0 deletions.
2 changes: 2 additions & 0 deletions VisualCard.ShowContacts/TestFiles/fourVCard4.vcf
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ TEL;TYPE=voice:078-494-6434
TEL;TYPE=home:348-404-8404
TITLE:Title
GENDER:M
LANG;TYPE=home:en
LANG;TYPE=work:de
X-ANDROID-CUSTOM:vnd.android.cursor.item/nickname;NVL.N;1
;;;;;;;;;;;;;
END:VCARD
Expand Down
2 changes: 2 additions & 0 deletions VisualCard/Parsers/VcardConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ internal static class VcardConstants
internal const string _kindSpecifier = "KIND";
internal const string _anniversarySpecifier = "ANNIVERSARY";
internal const string _genderSpecifier = "GENDER";
internal const string _langSpecifier = "LANG";
internal const string _altIdArgumentSpecifier = "ALTID=";
internal const string _prefArgumentSpecifier = "PREF=";
}
}
3 changes: 3 additions & 0 deletions VisualCard/Parsers/VcardParserTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ partsArrayEnum switch
PartsArrayEnum.Nicknames => cardVersion.Major >= 3,
PartsArrayEnum.Labels => cardVersion.Major != 4,
PartsArrayEnum.Agents => cardVersion.Major != 4,
PartsArrayEnum.Langs => cardVersion.Major >= 4,
_ =>
throw new InvalidOperationException("Invalid parts array enumeration type to get supported value"),
};
Expand Down Expand Up @@ -194,6 +195,7 @@ partsArrayEnum switch
PartsArrayEnum.Sounds => VcardConstants._soundSpecifier,
PartsArrayEnum.Impps => VcardConstants._imppSpecifier,
PartsArrayEnum.Categories => VcardConstants._categoriesSpecifier,
PartsArrayEnum.Langs => VcardConstants._langSpecifier,
PartsArrayEnum.NonstandardNames => VcardConstants._xSpecifier,
_ =>
throw new NotImplementedException($"String enumeration {partsArrayEnum} is not implemented.")
Expand All @@ -219,6 +221,7 @@ prefix switch
VcardConstants._soundSpecifier => (PartType.PartsArray, PartsArrayEnum.Sounds, typeof(SoundInfo), SoundInfo.FromStringVcardStatic, SoundInfo.FromStringVcardWithTypeStatic),
VcardConstants._imppSpecifier => (PartType.PartsArray, PartsArrayEnum.Impps, typeof(ImppInfo), ImppInfo.FromStringVcardStatic, ImppInfo.FromStringVcardWithTypeStatic),
VcardConstants._categoriesSpecifier => (PartType.PartsArray, PartsArrayEnum.Categories, typeof(CategoryInfo), CategoryInfo.FromStringVcardStatic, CategoryInfo.FromStringVcardWithTypeStatic),
VcardConstants._langSpecifier => (PartType.PartsArray, PartsArrayEnum.Langs, typeof(LangInfo), LangInfo.FromStringVcardStatic, LangInfo.FromStringVcardWithTypeStatic),
VcardConstants._xSpecifier => (PartType.PartsArray, PartsArrayEnum.NonstandardNames, typeof(XNameInfo), XNameInfo.FromStringVcardStatic, XNameInfo.FromStringVcardWithTypeStatic),
VcardConstants._revSpecifier => (PartType.Parts, PartsEnum.Revision, typeof(RevisionInfo), RevisionInfo.FromStringVcardStatic, RevisionInfo.FromStringVcardWithTypeStatic),
VcardConstants._birthSpecifier => (PartType.Parts, PartsEnum.Birthdate, typeof(BirthDateInfo), BirthDateInfo.FromStringVcardStatic, BirthDateInfo.FromStringVcardWithTypeStatic),
Expand Down
4 changes: 4 additions & 0 deletions VisualCard/Parts/Enums/PartsArrayEnum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ public enum PartsArrayEnum
/// </summary>
Impps,
/// <summary>
/// The contact's language list
/// </summary>
Langs,
/// <summary>
/// The contact's extended options (usually starts with X-SOMETHING:Value1;Value2...)
/// </summary>
NonstandardNames,
Expand Down
174 changes: 174 additions & 0 deletions VisualCard/Parts/Implementations/LangInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
//
// VisualCard Copyright (C) 2021-2024 Aptivi
//
// This file is part of VisualCard
//
// VisualCard is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// VisualCard is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY, without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using VisualCard.Parsers;

namespace VisualCard.Parts.Implementations
{
/// <summary>
/// Contact language information
/// </summary>
[DebuggerDisplay("Language = {ContactLang}")]
public class LangInfo : BaseCardPartInfo, IEquatable<LangInfo>
{
/// <summary>
/// The contact's language types
/// </summary>
public string[] ContactLangTypes { get; }
/// <summary>
/// The contact's preference order
/// </summary>
public int ContactLangPreference { get; }
/// <summary>
/// The contact's language code
/// </summary>
public string ContactLang { get; }

internal static BaseCardPartInfo FromStringVcardStatic(string value, int altId, Version cardVersion) =>
new LangInfo().FromStringVcardInternal(value, altId, cardVersion);

internal static BaseCardPartInfo FromStringVcardWithTypeStatic(string value, string[] finalArgs, int altId, Version cardVersion) =>
new LangInfo().FromStringVcardWithTypeInternal(value, finalArgs, altId, cardVersion);

internal override string ToStringVcardInternal(Version cardVersion)
{
bool altIdSupported = cardVersion.Major >= 4;
if (altIdSupported)
{
bool installAltId = AltId >= 0 && AltArguments.Length > 0;
return
$"{VcardConstants._langSpecifier};" +
$"{(installAltId ? VcardConstants._altIdArgumentSpecifier + AltId + VcardConstants._fieldDelimiter : "")}" +
$"{VcardConstants._typeArgumentSpecifier}{string.Join(",", ContactLangTypes)}{VcardConstants._fieldDelimiter}" +
$"{VcardConstants._prefArgumentSpecifier}{ContactLangPreference}{VcardConstants._argumentDelimiter}" +
$"{ContactLang}";
}
else
{
return
$"{VcardConstants._langSpecifier};" +
$"{VcardConstants._typeArgumentSpecifier}{string.Join(",", ContactLangTypes)}{VcardConstants._fieldDelimiter}" +
$"{VcardConstants._prefArgumentSpecifier}{ContactLangPreference}{VcardConstants._argumentDelimiter}" +
$"{ContactLang}";
}
}

internal override BaseCardPartInfo FromStringVcardInternal(string value, int altId, Version cardVersion)
{
// Get the value
string langValue = value.Substring(VcardConstants._langSpecifier.Length + 1);
string[] splitLang = langValue.Split(VcardConstants._argumentDelimiter);

// Populate the fields
return InstallInfo(splitLang, altId);
}

internal override BaseCardPartInfo FromStringVcardWithTypeInternal(string value, string[] finalArgs, int altId, Version cardVersion)
{
// Get the value
string langValue = value.Substring(VcardConstants._langSpecifier.Length + 1);
string[] splitLang = langValue.Split(VcardConstants._argumentDelimiter);
if (splitLang.Length < 2)
throw new InvalidDataException("Language field must specify exactly two values (Type (must be prepended with TYPE=), and a valid language code)");

// Populate the fields
return InstallInfo(splitLang, finalArgs, altId);
}

private LangInfo InstallInfo(string[] splitLang, int altId) =>
InstallInfo(splitLang, [], altId);

private LangInfo InstallInfo(string[] splitLang, string[] finalArgs, int altId)
{
bool installType = splitLang.Length > 1;

// Populate the fields
string[] _langTypes = installType ? VcardParserTools.GetTypes(splitLang, "HOME", true) : ["HOME"];
string _langCode = installType ? splitLang[1] : splitLang[0];
LangInfo _lang = new(altId, finalArgs, _langTypes, _langCode);
return _lang;
}

/// <inheritdoc/>
public override bool Equals(object obj) =>
base.Equals(obj);

/// <summary>
/// Checks to see if both the parts are equal
/// </summary>
/// <param name="other">The target <see cref="LangInfo"/> instance to check to see if they equal</param>
/// <returns>True if all the part elements are equal. Otherwise, false.</returns>
public bool Equals(LangInfo other) =>
Equals(this, other);

/// <summary>
/// Checks to see if both the parts are equal
/// </summary>
/// <param name="source">The source <see cref="LangInfo"/> instance to check to see if they equal</param>
/// <param name="target">The target <see cref="LangInfo"/> instance to check to see if they equal</param>
/// <returns>True if all the part elements are equal. Otherwise, false.</returns>
public bool Equals(LangInfo source, LangInfo target)
{
// We can't perform this operation on null.
if (source is null)
return false;

// Check all the properties
return
source.ContactLangTypes.SequenceEqual(target.ContactLangTypes) &&
source.AltId == target.AltId &&
source.ContactLang == target.ContactLang
;
}

/// <inheritdoc/>
public override int GetHashCode()
{
int hashCode = 2091849342;
hashCode = hashCode * -1521134295 + AltId.GetHashCode();
hashCode = hashCode * -1521134295 + EqualityComparer<string[]>.Default.GetHashCode(AltArguments);
hashCode = hashCode * -1521134295 + EqualityComparer<string[]>.Default.GetHashCode(ContactLangTypes);
hashCode = hashCode * -1521134295 + EqualityComparer<string>.Default.GetHashCode(ContactLang);
return hashCode;
}

/// <inheritdoc/>
public static bool operator ==(LangInfo left, LangInfo right) =>
EqualityComparer<LangInfo>.Default.Equals(left, right);

/// <inheritdoc/>
public static bool operator !=(LangInfo left, LangInfo right) =>
!(left == right);

internal LangInfo() { }

internal LangInfo(int altId, string[] altArguments, string[] contactLangTypes, string contactLangCode)
{
AltId = altId;
AltArguments = altArguments;
ContactLangTypes = contactLangTypes;
ContactLang = contactLangCode;
}
}
}

0 comments on commit c701062

Please sign in to comment.