Click here to Skip to main content
15,885,366 members
Articles / Web Development / IIS

Introducing the Rabbit Framework and its Dynamic Idea

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
23 Mar 2011CPOL9 min read 24.4K   163   14  
Rabbit Framework is a new lightweight framework for building web sites using ASP.NET Web Pages / WebMatrix. This article describes one interesting idea out of many found in the framework.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Dynamic;
using WebMatrix.Data;
using System.Collections.Specialized;
using System.IO;
using System.Collections;
using System.Text;
using System.Web.Script.Serialization;

/// <summary>
/// Summary description for Extensions
/// </summary>
public static class Extensions
{
    public static dynamic ToDynamic(this DynamicRecord record)
    {
        if (record == null) return null;

        var obj = new ExpandoObject();
        foreach (var col in record.Columns)
        {
            ((IDictionary<string, Object>)obj)[col] = record[col];
        }
        return obj;
    }

    public static dynamic ToDynamic(this NameValueCollection form)
    {
        var obj = new ExpandoObject();
        foreach (var key in form.AllKeys)
        {
            ((IDictionary<string, Object>)obj)[key] = form[key];
        }
        return obj;
    }

    public static void EnsureProperty(this ExpandoObject obj, string propertyName, object propertyValue)
    {
        if (obj == null) return;
        if (!((IDictionary<string, object>)obj).ContainsKey(propertyName))
        {
            ((IDictionary<string, object>)obj)[propertyName] = propertyValue;
        }
    }

    public static bool HasProperty(this ExpandoObject obj, string propertyName, object propertyValue = null)
    {
        if (obj == null || !((IDictionary<string, object>)obj).ContainsKey(propertyName)) return false;
        return propertyValue == null || propertyValue.Equals(((IDictionary<string, object>)obj)[propertyName]);
    }

    public static string ToJson(this ExpandoObject expando)
    {
        JavaScriptSerializer serializer = new JavaScriptSerializer();
        StringBuilder sb = new StringBuilder(); 

        List<string> contents = new List<string>(); 
        var d = expando as IDictionary<string, object>; 
        
        sb.Append("{");
        foreach (KeyValuePair<string, object> kvp in d)
        {
            if (kvp.Value is ExpandoObject)
            {
                contents.Add(String.Format("\"{0}\":{1}", kvp.Key, ((ExpandoObject) kvp.Value).ToJson()));
            }
            else
            {
                contents.Add(String.Format("\"{0}\":{1}", kvp.Key, serializer.Serialize(kvp.Value)));
            }
        } 

        sb.Append(String.Join(",", contents.ToArray())); 
        sb.Append("}"); 
        return sb.ToString();
    }

    public static ExpandoObject ToDynamic(this string text)
    {
        JavaScriptSerializer serializer = new JavaScriptSerializer();
        var dictionary = serializer.Deserialize<IDictionary<string, object>>(text);
        return dictionary.ToExpando();
    }

    /// <summary>
    /// http://coderjournal.com/2010/07/turning-json-into-a-expandoobject/
    /// </summary>
    /// <param name="dictionary"></param>
    /// <returns></returns>
    public static ExpandoObject ToExpando(this IDictionary<string, object> dictionary)
    {
        var expando = new ExpandoObject();
        var expandoDic = (IDictionary<string, object>)expando;
        foreach (var item in dictionary)
        {
            bool alreadyProcessed = false; 
            if (item.Value is IDictionary<string, object>)
            {
                expandoDic.Add(item.Key, ToExpando((IDictionary<string, object>)item.Value));
                alreadyProcessed = true;
            }
            else if (item.Value is ICollection)
            {
                var itemList = new List<object>();
                foreach (var item2 in (ICollection)item.Value)
                {
                    if (item2 is IDictionary<string, object>)
                        itemList.Add(ToExpando((IDictionary<string, object>)item2));
                    else
                    {
                        //itemList.Add(ToExpando(new Dictionary<string, object> { { "Unknown", item2 } }));
                        expandoDic.Add(item.Key, item.Value);
                        alreadyProcessed = true;
                        break;
                    }
                }
                if (itemList.Count > 0)
                {
                    expandoDic.Add(item.Key, itemList.ToArray()); 
                    alreadyProcessed = true;
                }
            }
            else if (item.Value is DateTime)
            {
                expandoDic.Add(item.Key, ((DateTime)item.Value).ToLocalTime());
                alreadyProcessed = true;
            }
            if (!alreadyProcessed) expandoDic.Add(item);
        } 
        return expando;
    }
}

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 Code Project Open License (CPOL)


Written By
Architect
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions