2015-10-27 20:59:15 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
2015-08-13 16:28:53 +00:00
|
|
|
|
|
|
|
#ifndef REALM_RESULTS_HPP
|
|
|
|
#define REALM_RESULTS_HPP
|
|
|
|
|
|
|
|
#import "shared_realm.hpp"
|
|
|
|
#import <realm/table_view.hpp>
|
|
|
|
|
|
|
|
namespace realm {
|
2015-09-03 22:46:31 +00:00
|
|
|
struct SortOrder {
|
|
|
|
std::vector<size_t> columnIndices;
|
|
|
|
std::vector<bool> ascending;
|
|
|
|
|
|
|
|
explicit operator bool() const {
|
|
|
|
return !columnIndices.empty();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static SortOrder s_defaultSort = {{}, {}};
|
|
|
|
|
2015-08-13 16:28:53 +00:00
|
|
|
struct Results {
|
2015-09-03 22:46:31 +00:00
|
|
|
Results(SharedRealm &r, ObjectSchema &o, Query q, SortOrder s = s_defaultSort);
|
2015-08-13 16:28:53 +00:00
|
|
|
size_t size();
|
|
|
|
Row get(std::size_t row_ndx);
|
|
|
|
void verify_attached();
|
|
|
|
|
|
|
|
SharedRealm realm;
|
|
|
|
ObjectSchema &object_schema;
|
|
|
|
Query backing_query;
|
|
|
|
TableView table_view;
|
2015-09-03 22:46:31 +00:00
|
|
|
std::unique_ptr<SortOrder> sort_order;
|
|
|
|
|
|
|
|
void setSort(SortOrder s);
|
2015-08-13 16:28:53 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* REALM_RESULTS_HPP */
|