コード例 #1
0
        Database.Table FilterTable(Database.Table table, long row, List <Database.View.Where.Builder> tableFilterWhere)
        {
            var tableFilterWhereUnion = new WhereUnion(tableFilterWhere, null, null, null, null, m_UIState.snapshotMode.SchemaToDisplay, table, null);
            var indices = tableFilterWhereUnion.GetMatchingIndices(row);

            return(new Database.Operation.IndexedTable(table, new ArrayRange(indices)));
        }
コード例 #2
0
        void OpenLinkRequest(Database.LinkRequestTable link, bool focus, string tableTypeFilter = null, bool select = true)
        {
            List <Where.Builder> tableFilterWhere = null;

            m_CurrentTableTypeFilter = tableTypeFilter;
            if (tableTypeFilter != null)
            {
                tableFilterWhere = new List <Where.Builder>();
                tableFilterWhere.Add(new Where.Builder("Type", Database.Operation.Operator.Equal, new Database.Operation.Expression.MetaExpression(tableTypeFilter, true)));
            }
            //TODO this code is the same as the one inSpreadsheetPane, should be put together
            using (ScopeDebugContext.String("OpenLinkRequest"))
            {
                var tableRef = new Database.TableReference(link.LinkToOpen.TableName, link.Parameters);
                var table    = m_UIState.snapshotMode.SchemaToDisplay.GetTableByReference(tableRef);
                if (table == null)
                {
                    UnityEngine.Debug.LogError("No table named '" + link.LinkToOpen.TableName + "' found.");
                    return;
                }
                if (link.LinkToOpen.RowWhere != null && link.LinkToOpen.RowWhere.Count > 0)
                {
                    if (table.GetMetaData().defaultFilter != null)
                    {
                        table = table.GetMetaData().defaultFilter.CreateFilter(table);
                    }
                    Database.Operation.ExpressionParsingContext expressionParsingContext = null;
                    if (link.SourceView != null)
                    {
                        expressionParsingContext = link.SourceView.ExpressionParsingContext;
                    }
                    if (tableFilterWhere != null && tableFilterWhere.Count > 0)
                    {
                        table = FilterTable(table, link.SourceRow, tableFilterWhere);
                    }
                    var  whereUnion  = new WhereUnion(link.LinkToOpen.RowWhere, null, null, null, null, m_UIState.snapshotMode.SchemaToDisplay, table, expressionParsingContext);
                    long rowToSelect = whereUnion.GetIndexFirstMatch(link.SourceRow);
                    if (rowToSelect < 0)
                    {
                        UnityEngine.Debug.LogError("Could not find entry in target table '" + link.LinkToOpen.TableName + "'");
                        return;
                    }
                    OpenTable(tableRef, table, new Database.CellPosition(rowToSelect, 0), focus, select);
                }
                else if (tableFilterWhere != null && tableFilterWhere.Count > 0)
                {
                    table = FilterTable(table, link.SourceRow, tableFilterWhere);
                    OpenTable(tableRef, table, new Database.CellPosition(0, 0), focus, select);
                }
                else
                {
                    OpenTable(tableRef, table, new Database.CellPosition(0, 0), focus, select);
                }
            }
        }