Ejemplo n.º 1
0
        private static PSObject PopulateConfonObject(ConfonValue jv, ConfonContext context, string path, out ErrorRecord error)
        {
            if (jv == null)
                throw new ArgumentNullException(nameof(jv));

            error = null;

            if (!jv.IsObject())
                throw new ArgumentException("Internal error: Non-container object has entered `PopulateConfonObject`.");

            PSObject psObject = new PSObject();
            ConfonObject confonObject = jv.GetObject();

            foreach (string key in confonObject.Items.Keys)
            {
                ConfonValue child = confonObject.Items[key];

                // escape quotes in key
                string safeKey = key;
                if (key.Contains(".") || key.Contains("[") || key.Contains("]"))
                    safeKey = "'" + key.Replace("'", "\\'") + "'";

                string childPath = (path == null) 
                    ? safeKey 
                    : (path + "." + safeKey);

                if (child.IsEmpty)
                {
                    psObject.Properties.Add(new PSNoteProperty(key, null));
                }
                else if (child.IsString())
                {
                    // populate a leaf
                    psObject.Properties.Add(new PSNoteProperty(key, PopulateConfonLeaf(child, childPath, out error)));
                }
                else if (child.IsObject())
                {
                    // populate an object. recurse!
                    psObject.Properties.Add(new PSNoteProperty(key, PopulateConfonObject(child, context, childPath, out error)));
                }
                else if (child.IsArray())
                {
                    // quote the safeKey

                    psObject.Properties.Add(new PSNoteProperty(key, PopulateConfonArray(child, context, path, safeKey, out error)));
                }
                else
                {
                    error = new ErrorRecord(new NotImplementedException(string.Format("Unable to determine object type at {0}", childPath)), "UnhandledDataType", ErrorCategory.ParserError, null);
                }

                if (error != null)
                    return null;
            }

            return psObject;
        }
Ejemplo n.º 2
0
        private static object[] PopulateConfonArray(ConfonValue jv, ConfonContext context, string parentPath, string childName, out ErrorRecord error)
        {
            if (jv == null)
                throw new ArgumentNullException(nameof(jv));

            error = null;

            if (!jv.IsArray())
                throw new ArgumentException("Internal error: Non-array object has entered `PopulateConfonObject`.");

            IList<ConfonValue> values = jv.GetArray();
            List<object> results = new List<object>();

            int indexPosition = 0;
            foreach (ConfonValue current in values)
            {
                string indexedItemPath = string.Format("{0}.'{1}[{2}]'", parentPath, childName, indexPosition);

                if (current.IsEmpty)
                {
                    results.Add(null);
                }
                else if (current.IsString())
                {
                    results.Add(PopulateConfonLeaf(current, indexedItemPath, out error));
                }
                else if (current.IsObject())
                {
                    results.Add(PopulateConfonObject(current, context, indexedItemPath, out error));
                }
                else if (current.IsArray())
                {
                    // array in array...
                    results.Add(PopulateConfonArray(current, context, parentPath, indexPosition.ToString(), out error));
                }
                else
                {
                    error = new ErrorRecord(new NotImplementedException(string.Format("Unable to determine object type at {0}", indexedItemPath)), "UnhandledDataType", ErrorCategory.ParserError, null);
                }

                if (error != null)
                    return null;

                indexPosition += 1;
            }

            return results.ToArray();
        }
Ejemplo n.º 3
0
        private static object PopulateConfonLeaf(ConfonValue jv, string path, out ErrorRecord error)
        {
            if (jv == null)
                throw new ArgumentNullException(nameof(jv));

            error = null;

            if (!jv.IsString())
                throw new ArgumentException("Internal error: Non-leaf object has entered `PopulateConfonLeaf`.");

            try { return jv.GetBoolean(); }
            catch {}

            try { return jv.GetInt32(); }
            catch {}

            try { return jv.GetInt64(); }
            catch {}

            try { return jv.GetSingle(); }
            catch {}
            
            try { return jv.GetDouble(); }
            catch {}

            try { return jv.GetDecimal(); }
            catch {}

            try { return jv.GetTimeSpan(); }
            catch {}

            try { return jv.GetByteSize(); }
            catch {}

            try
            {
                return jv.GetString();
            }
            catch
            {
                error = new ErrorRecord(new FormatException(string.Format("Err_UnrecognizedLeafValue: {0}", path)), "BadBsdValue", ErrorCategory.ParserError, null);
                return null;
            }
        }