changed the scope of TaskResourceNames and SortCriteria to be package private.
This commit is contained in:
parent
c2c7a2c090
commit
3c65bdf02e
2 changed files with 8 additions and 8 deletions
|
@ -1,21 +1,21 @@
|
||||||
package def
|
package def
|
||||||
|
|
||||||
// Creating an enumeration of the resources in def.Task.
|
// Creating an enumeration of the resources in def.Task.
|
||||||
var TaskResourceNames []string
|
var taskResourceNames []string
|
||||||
|
|
||||||
type SortCriteria int
|
type sortCriteria int
|
||||||
|
|
||||||
// Map a task's resource name to the sorting criteria (an integer corresponding to the enumeration).
|
// Map a task's resource name to the sorting criteria (an integer corresponding to the enumeration).
|
||||||
func resourceToSortCriteria(resourceName string) SortCriteria {
|
func resourceToSortCriteria(resourceName string) sortCriteria {
|
||||||
// Appending resourceName to TaskResourceNames.
|
// Appending resourceName to TaskResourceNames.
|
||||||
TaskResourceNames = append(TaskResourceNames, resourceName)
|
taskResourceNames = append(taskResourceNames, resourceName)
|
||||||
|
|
||||||
// Considering index of resource in TaskResourceNames to be the int mapping.
|
// Considering index of resource in TaskResourceNames to be the int mapping.
|
||||||
return SortCriteria(len(TaskResourceNames) - 1)
|
return sortCriteria(len(taskResourceNames) - 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sc SortCriteria) String() string {
|
func (sc sortCriteria) String() string {
|
||||||
return TaskResourceNames[int(sc)]
|
return taskResourceNames[int(sc)]
|
||||||
}
|
}
|
||||||
|
|
||||||
// Possible Sorting Criteria
|
// Possible Sorting Criteria
|
||||||
|
|
|
@ -120,7 +120,7 @@ func labelAndOrder(clusters map[int][]Task, numberOfClusters int, taskObservatio
|
||||||
// Be able to sort an array of tasks based on any of the tasks' resources.
|
// Be able to sort an array of tasks based on any of the tasks' resources.
|
||||||
|
|
||||||
// Retrieve a sorter (same signature as 'Less' function in sort.Interface) for the given sorting criteria.
|
// Retrieve a sorter (same signature as 'Less' function in sort.Interface) for the given sorting criteria.
|
||||||
func TaskSorter(sc SortCriteria, tasks []Task) func (i, j int) bool {
|
func TaskSorter(sc sortCriteria, tasks []Task) func (i, j int) bool {
|
||||||
return func (i, j int) bool {
|
return func (i, j int) bool {
|
||||||
taskIFields := reflect.Indirect(reflect.ValueOf(tasks[i]))
|
taskIFields := reflect.Indirect(reflect.ValueOf(tasks[i]))
|
||||||
tasksJFields := reflect.Indirect(reflect.ValueOf(tasks[j]))
|
tasksJFields := reflect.Indirect(reflect.ValueOf(tasks[j]))
|
||||||
|
|
Reference in a new issue