コード例 #1
0
        /// <summary>
        /// Insert a new database record, or updates one if it already exists from the supplied data transfer object.
        /// This is typically used during the import of existing data to the Database.
        /// </summary>
        /// <param name="transaction">
        /// The current <see cref="NpgsqlTransaction"/> to the database.
        /// </param>
        /// <param name="partition">
        /// The database partition (schema) where the requested resource will be stored.
        /// </param>
        /// <param name="simpleUnit">
        /// The simpleUnit DTO that is to be persisted.
        /// </param>
        /// <param name="container">
        /// The container of the DTO to be persisted.
        /// </param>
        /// <returns>
        /// True if the concept was successfully persisted.
        /// </returns>
        public virtual bool Upsert(NpgsqlTransaction transaction, string partition, CDP4Common.DTO.SimpleUnit simpleUnit, CDP4Common.DTO.Thing container = null)
        {
            var valueTypeDictionaryAdditions = new Dictionary <string, string>();

            base.Upsert(transaction, partition, simpleUnit, container);

            using (var command = new NpgsqlCommand())
            {
                var sqlBuilder = new System.Text.StringBuilder();

                sqlBuilder.AppendFormat("INSERT INTO \"{0}\".\"SimpleUnit\"", partition);
                sqlBuilder.AppendFormat(" (\"Iid\")");
                sqlBuilder.AppendFormat(" VALUES (:iid)");

                command.Parameters.Add("iid", NpgsqlDbType.Uuid).Value = simpleUnit.Iid;
                sqlBuilder.Append(" ON CONFLICT (\"Iid\")");
                sqlBuilder.Append(" DO NOTHING; ");

                command.CommandText = sqlBuilder.ToString();
                command.Connection  = transaction.Connection;
                command.Transaction = transaction;

                this.ExecuteAndLogCommand(command);
            }

            return(true);
        }
コード例 #2
0
        /// <summary>
        /// Insert a new database record from the supplied data transfer object.
        /// </summary>
        /// <param name="transaction">
        /// The current transaction to the database.
        /// </param>
        /// <param name="partition">
        /// The database partition (schema) where the requested resource will be stored.
        /// </param>
        /// <param name="simpleUnit">
        /// The simpleUnit DTO that is to be persisted.
        /// </param>
        /// <param name="container">
        /// The container of the DTO to be persisted.
        /// </param>
        /// <returns>
        /// True if the concept was successfully persisted.
        /// </returns>
        public virtual bool Write(NpgsqlTransaction transaction, string partition, CDP4Common.DTO.SimpleUnit simpleUnit, CDP4Common.DTO.Thing container = null)
        {
            bool isHandled;
            var  valueTypeDictionaryAdditions = new Dictionary <string, string>();
            var  beforeWrite = this.BeforeWrite(transaction, partition, simpleUnit, container, out isHandled, valueTypeDictionaryAdditions);

            if (!isHandled)
            {
                beforeWrite = beforeWrite && base.Write(transaction, partition, simpleUnit, container);

                using (var command = new NpgsqlCommand())
                {
                    var sqlBuilder = new System.Text.StringBuilder();

                    sqlBuilder.AppendFormat("INSERT INTO \"{0}\".\"SimpleUnit\"", partition);
                    sqlBuilder.AppendFormat(" (\"Iid\")");
                    sqlBuilder.AppendFormat(" VALUES (:iid);");
                    command.Parameters.Add("iid", NpgsqlDbType.Uuid).Value = simpleUnit.Iid;

                    command.CommandText = sqlBuilder.ToString();
                    command.Connection  = transaction.Connection;
                    command.Transaction = transaction;
                    this.ExecuteAndLogCommand(command);
                }
            }

            return(this.AfterWrite(beforeWrite, transaction, partition, simpleUnit, container));
        }
コード例 #3
0
        /// <summary>
        /// Update a database record from the supplied data transfer object.
        /// </summary>
        /// <param name="transaction">
        /// The current transaction to the database.
        /// </param>
        /// <param name="partition">
        /// The database partition (schema) where the requested resource will be updated.
        /// </param>
        /// <param name="simpleUnit">
        /// The simpleUnit DTO that is to be updated.
        /// </param>
        /// <param name="container">
        /// The container of the DTO to be updated.
        /// </param>
        /// <returns>
        /// True if the concept was successfully updated.
        /// </returns>
        public virtual bool Update(NpgsqlTransaction transaction, string partition, CDP4Common.DTO.SimpleUnit simpleUnit, CDP4Common.DTO.Thing container = null)
        {
            bool isHandled;
            var  valueTypeDictionaryAdditions = new Dictionary <string, string>();
            var  beforeUpdate = this.BeforeUpdate(transaction, partition, simpleUnit, container, out isHandled, valueTypeDictionaryAdditions);

            if (!isHandled)
            {
                beforeUpdate = beforeUpdate && base.Update(transaction, partition, simpleUnit, container);
            }

            return(this.AfterUpdate(beforeUpdate, transaction, partition, simpleUnit, container));
        }
コード例 #4
0
        /// <summary>
        /// The mapping from a database record to data transfer object.
        /// </summary>
        /// <param name="reader">
        /// An instance of the SQL reader.
        /// </param>
        /// <returns>
        /// A deserialized instance of <see cref="CDP4Common.DTO.SimpleUnit"/>.
        /// </returns>
        public virtual CDP4Common.DTO.SimpleUnit MapToDto(NpgsqlDataReader reader)
        {
            string tempIsDeprecated;
            string tempModifiedOn;
            string tempName;
            string tempShortName;
            string tempThingPreference;

            var valueDict      = (Dictionary <string, string>)reader["ValueTypeSet"];
            var iid            = Guid.Parse(reader["Iid"].ToString());
            var revisionNumber = int.Parse(valueDict["RevisionNumber"]);

            var dto = new CDP4Common.DTO.SimpleUnit(iid, revisionNumber);

            dto.Alias.AddRange(Array.ConvertAll((string[])reader["Alias"], Guid.Parse));
            dto.Definition.AddRange(Array.ConvertAll((string[])reader["Definition"], Guid.Parse));
            dto.ExcludedDomain.AddRange(Array.ConvertAll((string[])reader["ExcludedDomain"], Guid.Parse));
            dto.ExcludedPerson.AddRange(Array.ConvertAll((string[])reader["ExcludedPerson"], Guid.Parse));
            dto.HyperLink.AddRange(Array.ConvertAll((string[])reader["HyperLink"], Guid.Parse));

            if (valueDict.TryGetValue("IsDeprecated", out tempIsDeprecated))
            {
                dto.IsDeprecated = bool.Parse(tempIsDeprecated);
            }

            if (valueDict.TryGetValue("ModifiedOn", out tempModifiedOn))
            {
                dto.ModifiedOn = Utils.ParseUtcDate(tempModifiedOn);
            }

            if (valueDict.TryGetValue("Name", out tempName))
            {
                dto.Name = tempName.UnEscape();
            }

            if (valueDict.TryGetValue("ShortName", out tempShortName))
            {
                dto.ShortName = tempShortName.UnEscape();
            }

            if (valueDict.TryGetValue("ThingPreference", out tempThingPreference) && tempThingPreference != null)
            {
                dto.ThingPreference = tempThingPreference.UnEscape();
            }

            return(dto);
        }
コード例 #5
0
        public async Task VerifyThatSynchronizationPreservesKeysOfOrderedItemList()
        {
            var assembler = new Assembler(this.uri);

            var simpleUnit = new Dto.SimpleUnit(Guid.NewGuid(), 1)
            {
                Name = "Unit", ShortName = "unit"
            };
            var ratioScale = new Dto.RatioScale(Guid.NewGuid(), 1)
            {
                Name = "Ration", ShortName = "ratio", NumberSet = NumberSetKind.INTEGER_NUMBER_SET
            };

            ratioScale.Unit = simpleUnit.Iid;

            var simpleQuantityKind1 = new Dto.SimpleQuantityKind(Guid.NewGuid(), 1)
            {
                Name = "Kind1", ShortName = "kind1", Symbol = "symbol"
            };

            simpleQuantityKind1.DefaultScale = ratioScale.Iid;
            var orderedItem1 = new OrderedItem()
            {
                K = 1, V = simpleQuantityKind1.Iid
            };

            var simpleQuantityKind2 = new Dto.SimpleQuantityKind(Guid.NewGuid(), 1)
            {
                Name = "Kind2", ShortName = "kind2", Symbol = "symbol"
            };

            simpleQuantityKind2.DefaultScale = ratioScale.Iid;
            var orderedItem2 = new OrderedItem()
            {
                K = 2, V = simpleQuantityKind2.Iid
            };

            this.siteRdl.Unit.Add(simpleUnit.Iid);
            this.siteRdl.Scale.Add(ratioScale.Iid);
            this.siteRdl.BaseQuantityKind.Add(orderedItem1);
            this.siteRdl.BaseQuantityKind.Add(orderedItem2);

            this.testInput.Add(simpleUnit);
            this.testInput.Add(ratioScale);
            this.testInput.Add(simpleQuantityKind1);
            this.testInput.Add(simpleQuantityKind2);

            await assembler.Synchronize(this.testInput);

            Lazy <Thing> lazySiteRdl;

            assembler.Cache.TryGetValue(new CacheKey(this.siteRdl.Iid, null), out lazySiteRdl);
            var siteRdl         = lazySiteRdl.Value as SiteReferenceDataLibrary;
            var orderedItemList = siteRdl.BaseQuantityKind.ToDtoOrderedItemList();

            Assert.AreEqual(1, orderedItemList.ToList()[0].K);
            Assert.AreEqual(simpleQuantityKind1.Iid, orderedItemList.ToList()[0].V);

            Assert.AreEqual(2, orderedItemList.ToList()[1].K);
            Assert.AreEqual(simpleQuantityKind2.Iid, orderedItemList.ToList()[1].V);
        }