示例#1
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="ownedStyle">
        /// The ownedStyle 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.OwnedStyle ownedStyle, CDP4Common.DTO.Thing container = null)
        {
            bool isHandled;
            var  valueTypeDictionaryAdditions = new Dictionary <string, string>();
            var  beforeUpdate = this.BeforeUpdate(transaction, partition, ownedStyle, container, out isHandled, valueTypeDictionaryAdditions);

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

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

                    sqlBuilder.AppendFormat("UPDATE \"{0}\".\"OwnedStyle\"", partition);
                    sqlBuilder.AppendFormat(" SET (\"Container\")");
                    sqlBuilder.AppendFormat(" = (:container)");
                    sqlBuilder.AppendFormat(" WHERE \"Iid\" = :iid;");
                    command.Parameters.Add("iid", NpgsqlDbType.Uuid).Value       = ownedStyle.Iid;
                    command.Parameters.Add("container", NpgsqlDbType.Uuid).Value = container.Iid;

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

            return(this.AfterUpdate(beforeUpdate, transaction, partition, ownedStyle, container));
        }
示例#2
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="ownedStyle">
        /// The ownedStyle 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.OwnedStyle ownedStyle, CDP4Common.DTO.Thing container = null)
        {
            var valueTypeDictionaryAdditions = new Dictionary <string, string>();

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

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

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

                command.Parameters.Add("iid", NpgsqlDbType.Uuid).Value       = ownedStyle.Iid;
                command.Parameters.Add("container", NpgsqlDbType.Uuid).Value = container.Iid;
                sqlBuilder.Append(" ON CONFLICT (\"Iid\")");
                sqlBuilder.Append(" DO UPDATE ");
                sqlBuilder.Append(" SET \"Container\"");
                sqlBuilder.Append(" = :container;");

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

                this.ExecuteAndLogCommand(command);
            }

            return(true);
        }
示例#3
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.OwnedStyle"/>.
        /// </returns>
        public virtual CDP4Common.DTO.OwnedStyle MapToDto(NpgsqlDataReader reader)
        {
            string tempModifiedOn;
            string tempName;
            string tempFillOpacity;
            string tempStrokeWidth;
            string tempStrokeOpacity;
            string tempFontSize;
            string tempFontName;
            string tempFontItalic;
            string tempFontBold;
            string tempFontUnderline;
            string tempFontStrokeThrough;

            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.OwnedStyle(iid, revisionNumber);

            dto.ExcludedPerson.AddRange(Array.ConvertAll((string[])reader["ExcludedPerson"], Guid.Parse));
            dto.ExcludedDomain.AddRange(Array.ConvertAll((string[])reader["ExcludedDomain"], Guid.Parse));
            dto.FillColor   = reader["FillColor"] is DBNull ? (Guid?)null : Guid.Parse(reader["FillColor"].ToString());
            dto.StrokeColor = reader["StrokeColor"] is DBNull ? (Guid?)null : Guid.Parse(reader["StrokeColor"].ToString());
            dto.FontColor   = reader["FontColor"] is DBNull ? (Guid?)null : Guid.Parse(reader["FontColor"].ToString());
            dto.UsedColor.AddRange(Array.ConvertAll((string[])reader["UsedColor"], Guid.Parse));

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

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

            if (valueDict.TryGetValue("FillOpacity", out tempFillOpacity) && tempFillOpacity != null)
            {
                dto.FillOpacity = float.Parse(tempFillOpacity);
            }

            if (valueDict.TryGetValue("StrokeWidth", out tempStrokeWidth) && tempStrokeWidth != null)
            {
                dto.StrokeWidth = float.Parse(tempStrokeWidth);
            }

            if (valueDict.TryGetValue("StrokeOpacity", out tempStrokeOpacity) && tempStrokeOpacity != null)
            {
                dto.StrokeOpacity = float.Parse(tempStrokeOpacity);
            }

            if (valueDict.TryGetValue("FontSize", out tempFontSize) && tempFontSize != null)
            {
                dto.FontSize = float.Parse(tempFontSize);
            }

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

            if (valueDict.TryGetValue("FontItalic", out tempFontItalic) && tempFontItalic != null)
            {
                dto.FontItalic = bool.Parse(tempFontItalic);
            }

            if (valueDict.TryGetValue("FontBold", out tempFontBold) && tempFontBold != null)
            {
                dto.FontBold = bool.Parse(tempFontBold);
            }

            if (valueDict.TryGetValue("FontUnderline", out tempFontUnderline) && tempFontUnderline != null)
            {
                dto.FontUnderline = bool.Parse(tempFontUnderline);
            }

            if (valueDict.TryGetValue("FontStrokeThrough", out tempFontStrokeThrough) && tempFontStrokeThrough != null)
            {
                dto.FontStrokeThrough = bool.Parse(tempFontStrokeThrough);
            }

            return(dto);
        }