Click here to Skip to main content
15,895,283 members
Articles / Web Development / HTML

Transformalizing NorthWind

Rate me:
Please Sign up or sign in to vote.
4.95/5 (29 votes)
24 Jul 2014GPL37 min read 57.8K   341   53  
Combining de-normalization, transformation, replication, and awesome-ness.
#region License

// /*
// Transformalize - Replicate, Transform, and Denormalize Your Data...
// Copyright (C) 2013 Dale Newman
// 
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
// */

#endregion

using System.Configuration;

namespace Transformalize.Configuration {
    public class ProcessConfigurationElement : ConfigurationElement {

        private const string TEMPLATE_CONTENT_TYPE = "template-content-type";
        private const string NAME = "name";
        private const string STAR = "star";
        private const string BCP = "bcp";
        private const string ENABLED = "enabled";
        private const string INHERIT = "inherit";
        private const string TIMEZONE = "time-zone";

        [ConfigurationProperty(NAME, IsRequired = true)]
        public string Name {
            get { return this[NAME] as string; }
            set { this[NAME] = value; }
        }

        [ConfigurationProperty(INHERIT, IsRequired = false, DefaultValue = "")]
        public string Inherit {
            get { return this[INHERIT] as string; }
            set { this[INHERIT] = value; }
        }

        [ConfigurationProperty(TIMEZONE, IsRequired = false, DefaultValue = "")]
        public string TimeZone {
            get { return this[TIMEZONE] as string; }
            set { this[TIMEZONE] = value; }
        }

        [ConfigurationProperty(ENABLED, IsRequired = false, DefaultValue = true)]
        public bool Enabled {
            get { return (bool)this[ENABLED]; }
            set { this[ENABLED] = value; }
        }

        [ConfigurationProperty(STAR, IsRequired = false, DefaultValue = "")]
        public string Star {
            get { return this[STAR] as string; }
            set { this[STAR] = value; }
        }

        [ConfigurationProperty(TEMPLATE_CONTENT_TYPE, IsRequired = false, DefaultValue = "raw")]
        public string TemplateContentType {
            get { return this[TEMPLATE_CONTENT_TYPE] as string; }
            set { this[TEMPLATE_CONTENT_TYPE] = value; }
        }


        [ConfigurationProperty("connections")]
        public ConnectionElementCollection Connections {
            get { return this["connections"] as ConnectionElementCollection; }
        }

        [ConfigurationProperty("providers")]
        public ProviderElementCollection Providers {
            get { return this["providers"] as ProviderElementCollection; }
        }

        [ConfigurationProperty("search-types")]
        public SearchTypeElementCollection SearchTypes {
            get { return this["search-types"] as SearchTypeElementCollection; }
        }

        [ConfigurationProperty("maps")]
        public MapElementCollection Maps {
            get { return this["maps"] as MapElementCollection; }
        }

        [ConfigurationProperty("scripts")]
        public ScriptElementCollection Scripts {
            get { return this["scripts"] as ScriptElementCollection; }
        }

        [ConfigurationProperty("entities")]
        public EntityElementCollection Entities {
            get { return this["entities"] as EntityElementCollection; }
        }

        [ConfigurationProperty("relationships")]
        public RelationshipElementCollection Relationships {
            get { return this["relationships"] as RelationshipElementCollection; }
        }

        [ConfigurationProperty("calculated-fields")]
        public FieldElementCollection CalculatedFields {
            get { return this["calculated-fields"] as FieldElementCollection; }
        }

        [ConfigurationProperty("templates")]
        public TemplateElementCollection Templates {
            get { return this["templates"] as TemplateElementCollection; }
        }

        [ConfigurationProperty(BCP, IsRequired = false, DefaultValue = "")]
        public string Bcp {
            get { return this[BCP] as string; }
            set { this[BCP] = value; }
        }

        public override bool IsReadOnly() {
            return false;
        }

        public string Serialize() {
            var config = new TransformalizeConfiguration();
            config.Processes.Add(this);
            return config.Serialize(null, "transformalize", ConfigurationSaveMode.Minimal);
        }

        public void Merge(ProcessConfigurationElement child) {
            //properties
            Name = child.Name;
            Star = child.Star;
            TimeZone = child.TimeZone;
            Enabled = child.Enabled;

            //collections
            CalculatedFields.Merge(child.CalculatedFields);
            Connections.Merge(child.Connections);
            Entities.Merge(child.Entities);
            Maps.Merge(child.Maps);
            Providers.Merge(child.Providers);
            Relationships.Merge(child.Relationships);
            Scripts.Merge(child.Scripts);
            SearchTypes.Merge(child.SearchTypes);
            Templates.Merge(child.Templates);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions