In my online searches I found the best way to sort an array of records is by using Ada.Containers.Generic_Array_Sort and then defining the “<” operator as follows:
type Order_Entry is record
Order_Name : Ada.Strings.Wide_Unbounded.Unbounded_Wide_String;
Order_Status : Ada.Strings.Wide_Unbounded.Unbounded_Wide_String;
end record;
type Order_Type is array (Natural range <>) of Order_Entry;
function “<” (L, R : Order_Entry) return Boolean;
procedure Sort is new Ada.Containers.Generic_Array_Sort (Natural, Order_Entry, Order_Type);
This uses some Ada concepts that are still vague to me, like the fact that you can redefine the “<” operator. Because of my lack of understanding, I am not sure how to modify this sorting function to sort on different entry values in the record like this:
function “<” (L, R : Order_Entry) return Boolean is
begin
return L.Order_Name < R.Order_Name;
–return L.Order_Status < R.Order_Status;
end “<”;
As you can see, if I want to sort the array of records based on “Order_Status,” I have to comment out that line and then recompile. Is there a better way to switch between sorting based on different entry values within an array of records?