blob: d346ecf2576522c234e47e4d21b82aeb1233abcf [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.Text;
using Newtonsoft.Json.Linq;
namespace Avro
{
/// <summary>
/// Class for enum type schemas
/// </summary>
public class EnumSchema : NamedSchema
{
/// <summary>
/// List of strings representing the enum symbols
/// </summary>
public IList<string> Symbols { get; private set; }
/// <summary>
/// Map of enum symbols and it's corresponding ordinal number
/// </summary>
private readonly IDictionary<string, int> symbolMap;
/// <summary>
/// Count of enum symbols
/// </summary>
public int Count { get { return Symbols.Count; } }
/// <summary>
/// Static function to return new instance of EnumSchema
/// </summary>
/// <param name="jtok">JSON object for enum schema</param>
/// <param name="names">list of named schema already parsed in</param>
/// <param name="encspace">enclosing namespace for the enum schema</param>
/// <returns>new instance of enum schema</returns>
internal static EnumSchema NewInstance(JToken jtok, PropertyMap props, SchemaNames names, string encspace)
{
SchemaName name = NamedSchema.GetName(jtok, encspace);
var aliases = NamedSchema.GetAliases(jtok, name.Space, name.EncSpace);
JArray jsymbols = jtok["symbols"] as JArray;
if (null == jsymbols)
throw new SchemaParseException("Enum has no symbols: " + name);
List<string> symbols = new List<string>();
IDictionary<string, int> symbolMap = new Dictionary<string, int>();
int i = 0;
foreach (JValue jsymbol in jsymbols)
{
string s = (string)jsymbol.Value;
if (symbolMap.ContainsKey(s))
throw new SchemaParseException("Duplicate symbol: " + s);
symbolMap[s] = i++;
symbols.Add(s);
}
return new EnumSchema(name, aliases, symbols, symbolMap, props, names);
}
/// <summary>
/// Constructor for enum schema
/// </summary>
/// <param name="name">name of enum</param>
/// <param name="aliases">list of aliases for the name</param>
/// <param name="symbols">list of enum symbols</param>
/// <param name="symbolMap">map of enum symbols and value</param>
/// <param name="names">list of named schema already read</param>
private EnumSchema(SchemaName name, IList<SchemaName> aliases, List<string> symbols,
IDictionary<String, int> symbolMap, PropertyMap props, SchemaNames names)
: base(Type.Enumeration, name, aliases, props, names)
{
if (null == name.Name) throw new SchemaParseException("name cannot be null for enum schema.");
this.Symbols = symbols;
this.symbolMap = symbolMap;
}
/// <summary>
/// Writes enum schema in JSON format
/// </summary>
/// <param name="writer">JSON writer</param>
/// <param name="names">list of named schema already written</param>
/// <param name="encspace">enclosing namespace of the enum schema</param>
protected internal override void WriteJsonFields(Newtonsoft.Json.JsonTextWriter writer,
SchemaNames names, string encspace)
{
base.WriteJsonFields(writer, names, encspace);
writer.WritePropertyName("symbols");
writer.WriteStartArray();
foreach (string s in this.Symbols)
writer.WriteValue(s);
writer.WriteEndArray();
}
/// <summary>
/// Returns the position of the given symbol within this enum.
/// Throws AvroException if the symbol is not found in this enum.
/// </summary>
/// <param name="symbol">name of the symbol to find</param>
/// <returns>position of the given symbol in this enum schema</returns>
public int Ordinal(string symbol)
{
int result;
if (symbolMap.TryGetValue(symbol, out result)) return result;
throw new AvroException("No such symbol: " + symbol);
}
/// <summary>
/// Returns the enum symbol of the given index to the list
/// </summary>
/// <param name="index">symbol index</param>
/// <returns>symbol name</returns>
public string this[int index]
{
get
{
if (index < Symbols.Count) return Symbols[index];
throw new AvroException("Enumeration out of range. Must be less than " + Symbols.Count + ", but is " + index);
}
}
/// <summary>
/// Checks if given symbol is in the list of enum symbols
/// </summary>
/// <param name="symbol">symbol to check</param>
/// <returns>true if symbol exist, false otherwise</returns>
public bool Contains(string symbol)
{
return symbolMap.ContainsKey(symbol);
}
/// <summary>
/// Returns an enumerator that enumerates the symbols in this enum schema in the order of their definition.
/// </summary>
/// <returns>Enumeration over the symbols of this enum schema</returns>
public IEnumerator<string> GetEnumerator()
{
return Symbols.GetEnumerator();
}
/// <summary>
/// Checks equality of two enum schema
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
public override bool Equals(object obj)
{
if (obj == this) return true;
if (obj != null && obj is EnumSchema)
{
EnumSchema that = obj as EnumSchema;
if (SchemaName.Equals(that.SchemaName) && Count == that.Count)
{
for (int i = 0; i < Count; i++) if (!Symbols[i].Equals(that.Symbols[i])) return false;
return areEqual(that.Props, this.Props);
}
}
return false;
}
/// <summary>
/// Hashcode function
/// </summary>
/// <returns></returns>
public override int GetHashCode()
{
int result = SchemaName.GetHashCode() + getHashCode(Props);
foreach (string s in Symbols) result += 23 * s.GetHashCode();
return result;
}
/// <summary>
/// Checks if this schema can read data written by the given schema. Used for decoding data.
/// </summary>
/// <param name="writerSchema">writer schema</param>
/// <returns>true if this and writer schema are compatible based on the AVRO specification, false otherwise</returns>
public override bool CanRead(Schema writerSchema)
{
if (writerSchema.Tag != Tag) return false;
EnumSchema that = writerSchema as EnumSchema;
if (!that.SchemaName.Equals(SchemaName))
if (!InAliases(that.SchemaName)) return false;
// we defer checking of symbols. Writer may have a symbol missing from the reader,
// but if writer never used the missing symbol, then reader should still be able to read the data
return true;
}
}
}