Coder Social home page Coder Social logo

deep_merge's Introduction

DeepMerge Overview
==================

Deep Merge is a simple set of utility functions for Hash. It permits
you to merge elements inside a hash together recursively. The manner
by which it does this is somewhat arbitrary (since there is no defining 
standard for this) but it should end up being pretty intuitive and do what
you expect.

You can learn a lot more about this by reading the test file. It's pretty
well documented and has many examples of various merges from very simple
to pretty complex.

The primary need that caused me to write this library is the merging of elements
coming from HTTP parameters and related stored parameters in session. This lets
a user build up a set of parameters over time, modifying individual items.

Deep Merge Core Documentation
=============================
 deep_merge! method permits merging of arbitrary child elements. The two top level
 elements must be hashes. These hashes can contain unlimited (to stack limit) levels
 of child elements. These child elements to not have to be of the same types.
 Where child elements are of the same type, deep_merge will attempt to merge them together.
 Where child elements are not of the same type, deep_merge will skip or optionally overwrite
 the destination element with the contents of the source element at that level.
 So if you have two hashes like this:
   source = {:x => [1,2,3], :y => 2}
   dest =   {:x => [4,5,'6'], :y => [7,8,9]}
   dest.deep_merge!(source)
   Results: {:x => [1,2,3,4,5,'6'], :y => 2}
 By default, "deep_merge!" will overwrite any unmergeables and merge everything else.
 To avoid this, use "deep_merge" (no bang/exclamation mark)
 
 Options:
   Options are specified in the last parameter passed, which should be in hash format:
   hash.deep_merge!({:x => [1,2]}, {:knockout_prefix => '--'})
   :preserve_unmergeables  DEFAULT: false
      Set to true to skip any unmergeable elements from source
   :knockout_prefix        DEFAULT: nil
      Set to string value to signify prefix which deletes elements from existing element
   :sort_merged_arrays     DEFAULT: false
      Set to true to sort all arrays that are merged together
   :unpack_arrays          DEFAULT: nil
      Set to string value to run "Array::join" then "String::split" against all arrays
   :merge_hash_arrays      DEFAULT: false
      Set to true to merge hashes within arrays
   :merge_debug            DEFAULT: false
      Set to true to get console output of merge process for debugging

 Selected Options Details:
 :knockout_prefix => The purpose of this is to provide a way to remove elements 
   from existing Hash by specifying them in a special way in incoming hash
    source = {:x => ['--1', '2']}
    dest   = {:x => ['1', '3']}
    dest.ko_deep_merge!(source)
    Results: {:x => ['2','3']}
   Additionally, if the knockout_prefix is passed alone as a string, it will cause
   the entire element to be removed:
    source = {:x => '--'}
    dest   = {:x => [1,2,3]}
    dest.ko_deep_merge!(source)
    Results: {:x => ""}
 :unpack_arrays => The purpose of this is to permit compound elements to be passed
   in as strings and to be converted into discrete array elements
   irsource = {:x => ['1,2,3', '4']}
   dest   = {:x => ['5','6','7,8']}
   dest.deep_merge!(source, {:unpack_arrays => ','})
   Results: {:x => ['1','2','3','4','5','6','7','8'}
   Why: If receiving data from an HTML form, this makes it easy for a checkbox 
    to pass multiple values from within a single HTML element
 :merge_hash_arrays => merge hashes within arrays
   source = {:x => [{:y => 1}]}
   dest   = {:x => [{:z => 2}]}
   dest.deep_merge!(source, {:merge_hash_arrays => true})
   Results: {:x => [{:y => 1, :z => 2}]}

 There are many tests for this library - and you can learn more about the features
 and usages of deep_merge! by just browsing the test examples

Using deep_merge in Rails
=========================
To avoid conflict with ActiveSupport, load deep_merge via:
  require 'deep_merge/rails_compat'

In a Gemfile:
  gem "deep_merge", :require => 'deep_merge/rails_compat'

The deep_merge methods will then be defined as
  Hash#deeper_merge
  Hash#deeper_merge!
  Hash#ko_deeper_merge!

Simple Example Code
===================

require 'deep_merge'
x = {:x => [3,4,5]}
y = {:x => [1,2,3]}
y.deep_merge!(x)
# results: y = {:x => [1,2,3,4,5]}

Availablility
=============
deep_merge was written by Steve Midgley, and is now maintained by Daniel DeLeo.
The official home of deep_merge on the internet is now
https://github.com/danielsdeleo/deep_merge

Copyright (c) 2008 Steve Midgley, released under the MIT license

deep_merge's People

Contributors

danielsdeleo avatar jweiss avatar rrottmann avatar sobakasu avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.