Ejemplo n.º 1
0
        public IEnumerable <string> GetAllEntityName(string groupName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            ReflectConfigurationSection section = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (section == null)
            {
                throw new InvalidOperationException(string.Format("Fail to Get ReflectConfigurationSection:{0}", groupName));
            }

            // Create
            List <string> entityNameList = new List <string>();
            foreach (ReflectConfigurationElement element in section.ElementCollection)
            {
                entityNameList.Add(element.EntityName);
            }
            return(entityNameList);
        }
Ejemplo n.º 2
0
        private void CreateAllSectionName(ref List <string> sectionNameList, ConfigurationSectionGroup sectionGroup)
        {
            #region Contracts

            if (sectionGroup == null)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            foreach (ConfigurationSection childSection in sectionGroup.Sections)
            {
                ReflectConfigurationSection section = childSection as ReflectConfigurationSection;
                if (section != null)
                {
                    sectionNameList.Add(section.SectionInformation.SectionName);
                }
            }

            // SectionGroup
            foreach (ConfigurationSectionGroup childSectionGroup in sectionGroup.SectionGroups)
            {
                this.CreateAllSectionName(ref sectionNameList, childSectionGroup);
            }
        }
Ejemplo n.º 3
0
        public bool ContainsSetting(string groupName, string entityName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }
            if (string.IsNullOrEmpty(entityName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            ReflectConfigurationSection section = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (section == null)
            {
                throw new InvalidOperationException(string.Format("Fail to Get ReflectConfigurationSection:{0}", groupName));
            }

            // Element
            ReflectConfigurationElement element = section.ElementCollection.GetByName(entityName);
            if (element == null)
            {
                return(false);
            }

            // Return
            return(true);
        }
Ejemplo n.º 4
0
        public void RemoveSetting(string groupName, string entityName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }
            if (string.IsNullOrEmpty(entityName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            ReflectConfigurationSection section = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (section == null)
            {
                throw new InvalidOperationException(string.Format("Fail to Get ReflectConfigurationSection:{0}", groupName));
            }

            // Remove
            section.ElementCollection.Remove(entityName);

            // Save
            section.CurrentConfiguration.Save();
        }
Ejemplo n.º 5
0
        public string GetDefaultEntityName(string groupName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            ReflectConfigurationSection section = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (section == null)
            {
                throw new InvalidOperationException(string.Format("Fail to Get ReflectConfigurationSection:{0}", groupName));
            }

            // EntityName
            if (string.IsNullOrEmpty(section.DefaultEntityName) == false)
            {
                return(section.DefaultEntityName);
            }
            return(string.Empty);
        }
Ejemplo n.º 6
0
        // Methods
        public void AddGroup(string groupName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Require
            ReflectConfigurationSection existSection = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (existSection != null)
            {
                return;
            }

            // Variables
            string[] sectionNameChain = groupName.Split('/');
            ConfigurationSectionGroup parentSectionGroup = _configuration.RootSectionGroup;

            // Add
            for (int i = 0; i < sectionNameChain.Length; i++)
            {
                // SectionGroup
                if (i < sectionNameChain.Length - 1)
                {
                    ConfigurationSectionGroup sectionGroup = parentSectionGroup.SectionGroups.Get(sectionNameChain[i]);
                    if (sectionGroup == null)
                    {
                        sectionGroup = new ConfigurationSectionGroup();
                        parentSectionGroup.SectionGroups.Add(sectionNameChain[i], sectionGroup);
                    }
                    parentSectionGroup = sectionGroup;
                    continue;
                }

                // Section
                if (i >= sectionNameChain.Length - 1)
                {
                    ConfigurationSection section = parentSectionGroup.Sections.Get(sectionNameChain[i]);
                    if (section == null)
                    {
                        section = new ReflectConfigurationSection();
                        parentSectionGroup.Sections.Add(sectionNameChain[i], section);
                    }
                    continue;
                }
            }

            // Save
            _configuration.Save();
        }
Ejemplo n.º 7
0
        public void AddSetting(string groupName, string entityName, ReflectSetting setting)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }
            if (string.IsNullOrEmpty(entityName) == true)
            {
                throw new ArgumentNullException();
            }
            if (setting == null)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            ReflectConfigurationSection section = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (section == null)
            {
                throw new InvalidOperationException(string.Format("Fail to Get ReflectConfigurationSection:{0}", groupName));
            }

            // Element
            ReflectConfigurationElement element = new ReflectConfigurationElement();
            element.EntityName  = entityName;
            element.BuilderType = setting.BuilderType;
            foreach (string parameterKey in setting.Parameters.Keys)
            {
                element.FreeAttributes.Add(parameterKey, setting.Parameters[parameterKey]);
            }

            // Add
            section.ElementCollection.Add(element);

            // Save
            section.CurrentConfiguration.Save();
        }
Ejemplo n.º 8
0
        public bool ContainsGroup(string groupName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            ReflectConfigurationSection section = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (section == null)
            {
                return(false);
            }

            // Return
            return(true);
        }
Ejemplo n.º 9
0
        public ReflectSetting GetSetting(string groupName, string entityName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }
            if (string.IsNullOrEmpty(entityName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Section
            ReflectConfigurationSection section = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (section == null)
            {
                throw new InvalidOperationException(string.Format("Fail to Get ReflectConfigurationSection:{0}", groupName));
            }

            // Element
            ReflectConfigurationElement element = section.ElementCollection.GetByName(entityName);
            if (element == null)
            {
                return(null);
            }

            // Setting
            ReflectSetting setting = new ReflectSetting(element.BuilderType);
            foreach (string parameterKey in element.FreeAttributes.Keys)
            {
                setting.Parameters.Add(parameterKey, element.FreeAttributes[parameterKey]);
            }

            // Return
            return(setting);
        }
Ejemplo n.º 10
0
        // Methods
        public void AddGroup(string groupName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true) throw new ArgumentNullException();

            #endregion

            // Require
            ReflectConfigurationSection existSection = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (existSection != null) return;

            // Variables
            string[] sectionNameChain = groupName.Split('/');
            ConfigurationSectionGroup parentSectionGroup = _configuration.RootSectionGroup;

            // Add
            for (int i = 0; i < sectionNameChain.Length; i++)
            {
                // SectionGroup
                if (i < sectionNameChain.Length - 1)
                {
                    ConfigurationSectionGroup sectionGroup = parentSectionGroup.SectionGroups.Get(sectionNameChain[i]);
                    if (sectionGroup == null)
                    {
                        sectionGroup = new ConfigurationSectionGroup();
                        parentSectionGroup.SectionGroups.Add(sectionNameChain[i], sectionGroup);
                    }
                    parentSectionGroup = sectionGroup;
                    continue;
                }

                // Section
                if (i >= sectionNameChain.Length - 1)
                {
                    ConfigurationSection section = parentSectionGroup.Sections.Get(sectionNameChain[i]);
                    if (section == null)
                    {
                        section = new ReflectConfigurationSection();
                        parentSectionGroup.Sections.Add(sectionNameChain[i], section);
                    }
                    continue;
                }
            }

            // Save
            _configuration.Save();
        }
Ejemplo n.º 11
0
        public void RemoveGroup(string groupName)
        {
            #region Contracts

            if (string.IsNullOrEmpty(groupName) == true)
            {
                throw new ArgumentNullException();
            }

            #endregion

            // Require
            ReflectConfigurationSection existSection = _configuration.GetSection(groupName) as ReflectConfigurationSection;
            if (existSection == null)
            {
                return;
            }

            // Variables
            string[] sectionNameChain = groupName.Split('/');
            ConfigurationSectionGroup parentSectionGroup = _configuration.RootSectionGroup;

            // Remove
            for (int i = sectionNameChain.Length - 1; i >= 0; i--)
            {
                // TargetName
                string targetName = string.Join("/", sectionNameChain, 0, i + 1);
                string parentName = string.Join("/", sectionNameChain, 0, i);

                // ParentSectionGroup
                parentSectionGroup = _configuration.RootSectionGroup;
                if (string.IsNullOrEmpty(parentName) == false)
                {
                    parentSectionGroup = _configuration.GetSectionGroup(parentName);
                }
                if (parentSectionGroup == null)
                {
                    throw new InvalidOperationException(string.Format("Fail to Get ParentSectionGroup:{0}", parentName));
                }

                // SectionGroup
                if (i < sectionNameChain.Length - 1)
                {
                    ConfigurationSectionGroup sectionGroup = parentSectionGroup.SectionGroups.Get(sectionNameChain[i]);
                    if (sectionGroup != null)
                    {
                        if (sectionGroup.SectionGroups.Count == 0)
                        {
                            if (sectionGroup.Sections.Count == 0)
                            {
                                parentSectionGroup.SectionGroups.Remove(sectionNameChain[i]);
                            }
                        }
                    }
                    continue;
                }

                // Section
                if (i >= sectionNameChain.Length - 1)
                {
                    parentSectionGroup.Sections.Remove(sectionNameChain[i]);
                    continue;
                }
            }

            // Save
            _configuration.Save();
        }