* scripting: added service and controller for scripting * scripting: have got prompts working Scripts are now running in a separate go-routine. When a prompt is encountered, the script is paused and the user is prompted for input. This means that the script no longer needs to worry about synchronisation issues. * scripting: started working on the session methods * scripting: added methods to get items and attributes * scripting: have got loading of scripts working These act more like plugins and allow defining new commands. * scripting: have got script scheduling working Scripts are now executed on a dedicated goroutine and only one script can run at any one time. * scripting: added session.set_result_set(rs) * scripting: upgraded tamarin to 0.14 * scripting: started working on set_value * tamarin: replaced ad-hoc path with query expressions * scripting: changed value() and set_value() to attr() and set_attr() Also added 'delete_attr()' * scripting: added os.exec() This method is controlled by permissions which govern whether shellouts are allowed Also fixed a resizing bug with the status window which was not properly handling status messages with newlines * scripting: added the session.current_item() method * scripting: added placeholders to query expressions * scripting: added support for setting and deleteing items with placeholders Also refactored the dot AST type so that it support placeholders. Placeholders are not yet supported for subrefs yet, they need to be identifiers. * scripting: made setting the result-set push the current result-set to the backstack * scripting: started working on byte encoding of attribute values * scripting: finished attrcodec * scripting: integrated codec into expression * scripting: added equals and hashcode to queryexpr This finally finishes the work required to store queries in the backstack * scripting: fixed some bugs with the back-stack * scripting: upgraded Tamarin * scripting: removed some commented out code
126 lines
2.6 KiB
Go
126 lines
2.6 KiB
Go
package models
|
|
|
|
import "sort"
|
|
|
|
type ResultSet struct {
|
|
TableInfo *TableInfo
|
|
Query Queryable
|
|
items []Item
|
|
attributes []ItemAttribute
|
|
|
|
columns []string
|
|
}
|
|
|
|
type Queryable interface {
|
|
String() string
|
|
SerializeToBytes() ([]byte, error)
|
|
HashCode() uint64
|
|
Plan(tableInfo *TableInfo) (*QueryExecutionPlan, error)
|
|
}
|
|
|
|
type ItemAttribute struct {
|
|
Marked bool
|
|
Hidden bool
|
|
Dirty bool
|
|
New bool
|
|
}
|
|
|
|
func (rs *ResultSet) Items() []Item {
|
|
return rs.items
|
|
}
|
|
|
|
func (rs *ResultSet) SetItems(items []Item) {
|
|
rs.items = items
|
|
rs.attributes = make([]ItemAttribute, len(items))
|
|
}
|
|
|
|
func (rs *ResultSet) AddNewItem(item Item, attrs ItemAttribute) {
|
|
rs.items = append(rs.items, item)
|
|
rs.attributes = append(rs.attributes, attrs)
|
|
}
|
|
|
|
func (rs *ResultSet) SetMark(idx int, marked bool) {
|
|
rs.attributes[idx].Marked = marked
|
|
}
|
|
|
|
func (rs *ResultSet) SetHidden(idx int, hidden bool) {
|
|
rs.attributes[idx].Hidden = hidden
|
|
}
|
|
|
|
func (rs *ResultSet) SetDirty(idx int, dirty bool) {
|
|
rs.attributes[idx].Dirty = dirty
|
|
}
|
|
|
|
func (rs *ResultSet) SetNew(idx int, isNew bool) {
|
|
rs.attributes[idx].New = isNew
|
|
}
|
|
|
|
func (rs *ResultSet) Marked(idx int) bool {
|
|
return rs.attributes[idx].Marked
|
|
}
|
|
|
|
func (rs *ResultSet) Hidden(idx int) bool {
|
|
return rs.attributes[idx].Hidden
|
|
}
|
|
|
|
func (rs *ResultSet) IsDirty(idx int) bool {
|
|
return rs.attributes[idx].Dirty
|
|
}
|
|
|
|
func (rs *ResultSet) IsNew(idx int) bool {
|
|
return rs.attributes[idx].New
|
|
}
|
|
|
|
func (rs *ResultSet) MarkedItems() []ItemIndex {
|
|
items := make([]ItemIndex, 0)
|
|
for i, itemAttr := range rs.attributes {
|
|
if itemAttr.Marked && !itemAttr.Hidden {
|
|
items = append(items, ItemIndex{Index: i, Item: rs.items[i]})
|
|
}
|
|
}
|
|
return items
|
|
}
|
|
|
|
func (rs *ResultSet) Columns() []string {
|
|
if rs.columns == nil {
|
|
rs.RefreshColumns()
|
|
}
|
|
return rs.columns
|
|
}
|
|
|
|
func (rs *ResultSet) RefreshColumns() {
|
|
seenColumns := make(map[string]int)
|
|
seenColumns[rs.TableInfo.Keys.PartitionKey] = 0
|
|
if rs.TableInfo.Keys.SortKey != "" {
|
|
seenColumns[rs.TableInfo.Keys.SortKey] = 1
|
|
}
|
|
|
|
for _, definedAttribute := range rs.TableInfo.DefinedAttributes {
|
|
if _, seen := seenColumns[definedAttribute]; !seen {
|
|
seenColumns[definedAttribute] = len(seenColumns)
|
|
}
|
|
}
|
|
|
|
otherColsRank := len(seenColumns)
|
|
for _, result := range rs.items {
|
|
for k := range result {
|
|
if _, isSeen := seenColumns[k]; !isSeen {
|
|
seenColumns[k] = otherColsRank
|
|
}
|
|
}
|
|
}
|
|
|
|
columns := make([]string, 0, len(seenColumns))
|
|
for k := range seenColumns {
|
|
columns = append(columns, k)
|
|
}
|
|
sort.Slice(columns, func(i, j int) bool {
|
|
if seenColumns[columns[i]] == seenColumns[columns[j]] {
|
|
return columns[i] < columns[j]
|
|
}
|
|
return seenColumns[columns[i]] < seenColumns[columns[j]]
|
|
})
|
|
|
|
rs.columns = columns
|
|
}
|