Exemple #1
0
        public bool UpdateSheetValue(object source, ISpreadsheetData data, string sheetId = "", string sheetKeyField = "")
        {
            if (source == null)
            {
                return(false);
            }
            var type       = source.GetType();
            var syncScheme = type.CreateSheetScheme();

            var keyField = string.IsNullOrEmpty(sheetKeyField) ? syncScheme.keyField : syncScheme.GetFieldBySheetFieldName(sheetKeyField);

            if (keyField == null)
            {
                return(false);
            }

            var sheetValueInfo = new SheetValueInfo
            {
                Source          = source,
                SpreadsheetData = data,
                SyncScheme      = syncScheme,
                SyncFieldName   = sheetKeyField,
                SheetName       = sheetId
            };

            return(UpdateSheetValue(sheetValueInfo));
        }
Exemple #2
0
        public bool UpdateSheetValue(SheetValueInfo sheetValueInfo)
        {
            if (!ValidateSheetInfo(ref sheetValueInfo))
            {
                return(false);
            }

            var source          = sheetValueInfo.Source;
            var schemeValue     = sheetValueInfo.SyncScheme;
            var spreadsheetData = sheetValueInfo.SpreadsheetData;
            var sheetId         = sheetValueInfo.SheetName;

            var sheet = spreadsheetData[sheetId];
            var row   = sheet.GetRow(sheetValueInfo.SyncFieldName, sheetValueInfo.SyncFieldValue) ?? sheet.CreateRow();

            //var sheetFields = SelectSheetFields(schemaValue, data);
            var fields = schemeValue.fields;

            for (var i = 0; i < fields.Length; i++)
            {
                var field       = fields[i];
                var sourceValue = field.GetValue(source);
                sourceValue = sourceValue ?? string.Empty;
                sheet.UpdateValue(row, field.sheetField, sourceValue);

                if (field.IsSheetTarget)
                {
                }
            }

            return(true);
        }
Exemple #3
0
        private object ApplyData(SheetValueInfo valueInfo, DataRow row)
        {
            var syncScheme      = valueInfo.SyncScheme;
            var spreadsheetData = valueInfo.SpreadsheetData;
            var source          = valueInfo.Source;
            var rowValues       = row.ItemArray;
            var table           = row.Table;

            if (valueInfo.IsInIgnoreCache())
            {
                return(source);
            }

            for (var i = valueInfo.StartColumn; i < rowValues.Length; i++)
            {
                var columnName = table.Columns[i].ColumnName;
                var itemField  = syncScheme.fields.FirstOrDefault(x => SheetData.IsEquals(x.sheetField, columnName));

                if (itemField == null)
                {
                    continue;
                }

                //check for recurvice call
                var currentValue = itemField.GetValue(source);
                if (valueInfo.IsInIgnoreCache(currentValue))
                {
                    continue;
                }

                var rowValue    = rowValues[i];
                var resultValue = rowValue.ConvertType(itemField.targetType);

                itemField.ApplyValue(source, resultValue);

                if (itemField.IsSheetTarget)
                {
                    //initialize cache
                    valueInfo.IgnoreCache = valueInfo.IgnoreCache ?? new HashSet <object>();
                    valueInfo.IgnoreCache.Add(source);

                    ApplyData(new SheetValueInfo
                    {
                        Source          = resultValue,
                        SpreadsheetData = spreadsheetData,
                        SyncScheme      = itemField.targetType.CreateSheetScheme(),
                        IgnoreCache     = valueInfo.IgnoreCache
                    });
                }
            }

            if (_coProcessorHandle != null)
            {
                _coProcessorHandle.Apply(valueInfo, row);
            }

            return(source);
        }
Exemple #4
0
        public object ApplyData(object source, ISpreadsheetData spreadsheetData)
        {
            var syncScheme = source.CreateSheetScheme();

            var syncValue = new SheetValueInfo
            {
                Source          = source,
                SpreadsheetData = spreadsheetData,
                SheetName       = syncScheme.sheetId,
                SyncScheme      = syncScheme,
                SyncFieldName   = syncScheme.keyField.sheetField,
            };

            var result = ApplyData(syncValue);

            return(result);
        }
Exemple #5
0
        public bool ValidateSheetInfo(ref SheetValueInfo sheetValueInfo)
        {
            var source          = sheetValueInfo.Source;
            var syncScheme      = sheetValueInfo.SyncScheme;
            var spreadsheetData = sheetValueInfo.SpreadsheetData;
            var sheetId         = sheetValueInfo.SheetName;

            syncScheme = syncScheme ?? source?.GetType().CreateSheetScheme();

            if (source == null || syncScheme == null)
            {
                return(false);
            }

            sheetId = string.IsNullOrEmpty(sheetValueInfo.SheetName) ? syncScheme.sheetId : sheetId;
            sheetValueInfo.SheetName = sheetId;

            if (!spreadsheetData.HasSheet(sheetId))
            {
                return(false);
            }

            var keyField = string.IsNullOrEmpty(sheetValueInfo.SyncFieldName) ? syncScheme.keyField?.sheetField : sheetValueInfo.SyncFieldName;

            if (string.IsNullOrEmpty(keyField) || !spreadsheetData.HasSheet(sheetId))
            {
                return(false);
            }

            sheetValueInfo.SyncFieldName = keyField;

            var syncKeyField = syncScheme.GetFieldBySheetFieldName(keyField);
            var keyValue     = sheetValueInfo.SyncFieldValue ?? syncKeyField?.GetValue(source);

            if (keyValue == null)
            {
                return(false);
            }

            sheetValueInfo.SyncFieldValue = keyValue;

            return(true);
        }
Exemple #6
0
        public object ApplyData(SheetValueInfo sheetValueInfo)
        {
            if (!ValidateSheetInfo(ref sheetValueInfo))
            {
                return(sheetValueInfo.Source);
            }

            var spreadsheetData = sheetValueInfo.SpreadsheetData;
            var sheetName       = sheetValueInfo.SheetName;

            var sheet = spreadsheetData[sheetName];
            var row   = sheet.GetRow(sheetValueInfo.SyncFieldName, sheetValueInfo.SyncFieldValue);

            if (row == null)
            {
                Debug.LogError($"Can't find in Sheet {sheetName} row with ID {sheetValueInfo.SyncFieldName} == {sheetValueInfo.SyncFieldValue}");
                return(sheetValueInfo.Source);
            }

            var result = ApplyData(sheetValueInfo, row);

            return(result);
        }
Exemple #7
0
        public IEnumerable <Object> ApplyAssets(
            Type filterType,
            string sheetId,
            string folder,
            SheetSyncScheme syncScheme,
            ISpreadsheetData spreadsheetData,
            object[] keys,
            Object[] assets     = null,
            int count           = -1,
            bool createMissing  = true,
            string keyFieldName = "")
        {
            count = count < 0 ? keys.Length : count;
            count = Math.Min(keys.Length, count);

            var keyField = string.IsNullOrEmpty(keyFieldName) ? syncScheme.keyField : syncScheme.GetFieldBySheetFieldName(keyFieldName);

            try {
                for (var i = 0; i < count; i++)
                {
                    var keyValue    = keys[i];
                    var key         = keyValue.TryConvert <string>();
                    var targetAsset = assets?.FirstOrDefault(x => string.Equals(keyField.GetValue(x).TryConvert <string>(),
                                                                                key, StringComparison.OrdinalIgnoreCase));

                    //create asset if missing
                    if (targetAsset == null)
                    {
                        //skip asset creation step
                        if (createMissing == false)
                        {
                            continue;
                        }

                        targetAsset = filterType.CreateAsset();
                        targetAsset.SaveAsset($"{filterType.Name}_{i + 1}", folder, false);
                        Debug.Log($"Create Asset [{targetAsset}] for path {folder}", targetAsset);
                    }

                    //show assets progression
                    AssetEditorTools.ShowProgress(new ProgressData()
                    {
                        IsDone   = false,
                        Progress = i / (float)count,
                        Content  = $"{i}:{count}  {targetAsset.name}",
                        Title    = "Spreadsheet Importing"
                    });

                    var spreadsheetValueInfo = new SheetValueInfo()
                    {
                        Source          = targetAsset,
                        SheetName       = sheetId,
                        SpreadsheetData = spreadsheetData,
                        SyncScheme      = syncScheme,
                        SyncFieldName   = keyField.sheetField,
                        SyncFieldValue  = keyValue,
                    };
                    ApplyData(spreadsheetValueInfo);

                    yield return(targetAsset);
                }
            }
            finally {
                AssetEditorTools.ShowProgress(new ProgressData()
                {
                    IsDone = true,
                });
                AssetDatabase.SaveAssets();
            }
        }