io.inversion.query.Order Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2015-2018 Rocket Partners, LLC
* https://github.com/inversion-api
*
* Licensed 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.
*/
package io.inversion.query;
import io.inversion.rql.Term;
import java.util.ArrayList;
import java.util.List;
public class Order extends Builder {
List sorts = new ArrayList();
public Order(P query) {
super(query);
withFunctions("order", "sort");
}
/**
* @param index the sort term to check
* @return true if the indexed sort is ascending or if the index is out of bounds
*/
public boolean isAsc(int index) {
List sorts = getSorts();
return sorts.size() <= index || sorts.get(index).isAsc();
}
public String getProperty(int index) {
List sorts = getSorts();
return sorts.size() <= index ? null : sorts.get(index).getProperty();
}
public List getSorts() {
if(sorts.size() == 0) {
for (Term term : getTerms()) {
if (term.hasToken("sort", "order")) {
for (Term child : term.getTerms()) {
String property = child.token;
boolean asc = true;
if (property.startsWith("-")) {
asc = false;
property = property.substring(1);
} else if (property.startsWith("+")) {
property = property.substring(1);
}
sorts.add(new Sort(property, asc));
}
}
}
// if(sorts.size() == 0){
// List sorts = new ArrayList<>();
// boolean wildcard = false;
// List columns = getParent().getSelect().getProjection();
// if (columns.size() == 0) //this is a "select *"
// wildcard = true;
//
// boolean aggregate = getParent().getSelect().findAggregateTerms().size() > 0;
// if (aggregate)
// return sorts;
//
// Collection collection = getParent().getCollection();
// boolean hasPkCols = collection != null && collection.getResourceIndex() != null;
//
// if(collection != null){
// //-- make sure we have all pk cols before adding them as sorts
// for (String pkCol : collection.getResourceIndex().getColumnNames()) {
// if (!wildcard && !parts.select.contains(quoteCol(pkCol))) {
// hasPkCols = false;
// break;
// }
// }
// if (hasPkCols) {
// for (String pkCol : collection.getResourceIndex().getColumnNames()) {
// Sort sort = new Sort(pkCol, true);
// sorts.add(sort);
// }
// return sorts;
// }
// }
//
// for (String col : getParent().getSelect().getIncludeColumns()) {
// sorts.add(new Sort(col, true));
// }
//
// return sorts;
// }
}
return sorts;
}
public Order withSorts(List sorts){
this.sorts.addAll(sorts);
return this;
}
public static class Sort {
String property;
boolean asc;
public Sort(String property, boolean asc) {
super();
this.property = property;
this.asc = asc;
}
public String getProperty() {
return property;
}
public void setProperty(String property) {
this.property = property;
}
public boolean isAsc() {
return asc;
}
public void setAsc(boolean asc) {
this.asc = asc;
}
}
}