// Copyright 2009-2022 Josh Close
// This file is a part of CsvHelper and is dual licensed under MS-PL and Apache 2.0.
// See LICENSE.txt for details or visit http://www.opensource.org/licenses/ms-pl.html for MS-PL and http://opensource.org/licenses/Apache-2.0 for Apache 2.0.
// https://github.com/JoshClose/CsvHelper
using System;
using System.Reflection;
namespace CsvHelper.Configuration
{
///
/// Mapping info for a reference parameter mapping to a class.
///
public class ParameterReferenceMap
{
private readonly ParameterReferenceMapData data;
///
/// Gets the parameter reference map data.
///
public ParameterReferenceMapData Data => data;
///
/// Initializes a new instance of the class.
///
/// The parameter.
/// The to use for the reference map.
public ParameterReferenceMap(ParameterInfo parameter, ClassMap mapping)
{
if (mapping == null)
{
throw new ArgumentNullException(nameof(mapping));
}
data = new ParameterReferenceMapData(parameter, mapping);
}
///
/// Appends a prefix to the header of each field of the reference parameter.
///
/// The prefix to be prepended to headers of each reference parameter.
/// Inherit parent prefixes.
/// The current
public ParameterReferenceMap Prefix(string prefix = null, bool inherit = false)
{
if (string.IsNullOrEmpty(prefix))
{
prefix = data.Parameter.Name + ".";
}
data.Inherit = inherit;
data.Prefix = prefix;
return this;
}
///
/// Get the largest index for the
/// members and references.
///
/// The max index.
internal int GetMaxIndex()
{
return data.Mapping.GetMaxIndex();
}
}
}