using Pulsar.Server.Models;
using System.Collections;
using System.Windows.Forms;
namespace Pulsar.Server.Utilities
{
public class ListViewColumnSorter : IComparer
{
///
/// Specifies the column to be sorted
///
private int _columnToSort;
///
/// Specifies the order in which to sort (i.e. 'Ascending').
///
private SortOrder _orderOfSort;
///
/// Case insensitive comparer object
///
private readonly CaseInsensitiveComparer _objectCompare;
///
/// Specifies if number or text comparision is needed
///
private bool _needNumberCompare;
///
/// Class constructor. Initializes various elements
///
public ListViewColumnSorter()
{
// Initialize the column to '0'
_columnToSort = 0;
// Initialize the sort order to 'none'
_orderOfSort = SortOrder.None;
// Initialize the CaseInsensitiveComparer object
_objectCompare = new CaseInsensitiveComparer();
_needNumberCompare = false;
}
///
/// This method is inherited from the IComparer interface. It compares the two objects passed using a case insensitive comparison.
///
/// First object to be compared
/// Second object to be compared
/// The result of the comparison. "0" if equal, negative if 'x' is less than 'y' and positive if 'x' is greater than 'y'
public int Compare(object x, object y)
{
// Cast the objects to be compared to ListViewItem objects
var listviewX = (ListViewItem)x;
var listviewY = (ListViewItem)y;
if (listviewX.SubItems[0].Text == ".." || listviewY.SubItems[0].Text == "..")
return 0;
// Compare the two items
int compareResult;
if (_needNumberCompare)
{
long a, b;
if (listviewX.Tag is FileManagerListTag)
{
// fileSize to be compared
a = (listviewX.Tag as FileManagerListTag).FileSize;
b = (listviewY.Tag as FileManagerListTag).FileSize;
compareResult = a >= b ? (a == b ? 0 : 1) : -1;
}
else
{
if (long.TryParse(listviewX.SubItems[_columnToSort].Text, out a)
&& long.TryParse(listviewY.SubItems[_columnToSort].Text, out b))
{
compareResult = a >= b ? (a == b ? 0 : 1) : -1;
}
else
{
compareResult = _objectCompare.Compare(listviewX.SubItems[_columnToSort].Text,
listviewY.SubItems[_columnToSort].Text);
}
}
}
else
{
compareResult = _objectCompare.Compare(listviewX.SubItems[_columnToSort].Text,
listviewY.SubItems[_columnToSort].Text);
}
// Calculate correct return value based on object comparison
if (_orderOfSort == SortOrder.Ascending)
{
// Ascending sort is selected, return normal result of compare operation
return compareResult;
}
else if (_orderOfSort == SortOrder.Descending)
{
// Descending sort is selected, return negative result of compare operation
return (-compareResult);
}
else
{
// Return '0' to indicate they are equal
return 0;
}
}
///
/// Gets or sets the number of the column to which to apply the sorting operation (Defaults to '0').
///
public int SortColumn
{
set { _columnToSort = value; }
get { return _columnToSort; }
}
///
/// Gets or sets the order of sorting to apply (for example, 'Ascending' or 'Descending').
///
public SortOrder Order
{
set { _orderOfSort = value; }
get { return _orderOfSort; }
}
///
/// Specifies if number or text comparision is needed.
///
public bool NeedNumberCompare
{
set { _needNumberCompare = value; }
get { return _needNumberCompare; }
}
}
}