#region PDFsharp - A .NET library for processing PDF // // Authors: // Stefan Lange // // Copyright (c) 2005-20165 empira Software GmbH, Cologne Area (Germany) // // http://www.pdfsharp.com // http://sourceforge.net/projects/pdfsharp // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. #endregion using System; using System.Collections.Generic; using System.Diagnostics; using PdfSharp.Pdf.IO; namespace PdfSharp.Pdf { /// /// Represents a PDF name value. /// [DebuggerDisplay("({Value})")] public sealed class PdfName : PdfItem { /// /// Initializes a new instance of the class. /// public PdfName() { _value = "/"; // Empty name. } /// /// Initializes a new instance of the class. /// Parameter value always must start with a '/'. /// public PdfName(string value) { if (value == null) throw new ArgumentNullException("value"); if (value.Length == 0 || value[0] != '/') throw new ArgumentException(PSSR.NameMustStartWithSlash); _value = value; } /// /// Determines whether the specified object is equal to this name. /// public override bool Equals(object obj) { return _value.Equals(obj); } /// /// Returns the hash code for this instance. /// public override int GetHashCode() { return _value.GetHashCode(); } /// /// Gets the name as a string. /// public string Value { // This class must behave like a value type. Therefore it cannot be changed (like System.String). get { return _value; } } readonly string _value; /// /// Returns the name. The string always begins with a slash. /// public override string ToString() { return _value; } /// /// Determines whether the specified name and string are equal. /// public static bool operator ==(PdfName name, string str) { if (ReferenceEquals(name, null)) return str == null; return name._value == str; } /// /// Determines whether the specified name and string are not equal. /// public static bool operator !=(PdfName name, string str) { if (ReferenceEquals(name, null)) return str != null; return name._value != str; } /// /// Represents the empty name. /// public static readonly PdfName Empty = new PdfName("/"); /// /// Writes the name including the leading slash. /// internal override void WriteObject(PdfWriter writer) { // TODO: what if unicode character are part of the name? writer.Write(this); } /// /// Gets the comparer for this type. /// public static PdfXNameComparer Comparer { get { return new PdfXNameComparer(); } } /// /// Implements a comparer that compares PdfName objects. /// public class PdfXNameComparer : IComparer { /// /// Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. /// /// The first object to compare. /// The second object to compare. public int Compare(PdfName l, PdfName r) { #if true_ #else if (l != null) { if (r != null) return String.Compare(l._value, r._value, StringComparison.Ordinal); return -1; } if (r != null) return 1; return 0; #endif } } } }