| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 | <!DOCTYPE html><html><head>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <title>The source code</title>  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>  <style type="text/css">    .highlight { display: block; background-color: #ddd; }  </style>  <script type="text/javascript">    function highlight() {      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";    }  </script></head><body onload="prettyPrint(); highlight();">  <pre class="prettyprint lang-js"><span id='Ext-util-HashMap'>/**</span> * @class Ext.util.HashMap * <p> * Represents a collection of a set of key and value pairs. Each key in the HashMap * must be unique, the same key cannot exist twice. Access to items is provided via * the key only. Sample usage: * <pre><code>var map = new Ext.util.HashMap();map.add('key1', 1);map.add('key2', 2);map.add('key3', 3);map.each(function(key, value, length){    console.log(key, value, length);}); * </code></pre> * </p> * * <p>The HashMap is an unordered class, * there is no guarantee when iterating over the items that they will be in any particular * order. If this is required, then use a {@link Ext.util.MixedCollection}. * </p> */Ext.define('Ext.util.HashMap', {    mixins: {        observable: 'Ext.util.Observable'    },<span id='Ext-util-HashMap-cfg-keyFn'>    /**</span>     * @cfg {Function} keyFn A function that is used to retrieve a default key for a passed object.     * A default is provided that returns the <b>id</b> property on the object. This function is only used     * if the add method is called with a single argument.     */<span id='Ext-util-HashMap-method-constructor'>    /**</span>     * Creates new HashMap.     * @param {Object} config (optional) Config object.     */    constructor: function(config) {        config = config || {};        var me = this,            keyFn = config.keyFn;        me.addEvents(<span id='Ext-util-HashMap-event-add'>            /**</span>             * @event add             * Fires when a new item is added to the hash             * @param {Ext.util.HashMap} this.             * @param {String} key The key of the added item.             * @param {Object} value The value of the added item.             */            'add',<span id='Ext-util-HashMap-event-clear'>            /**</span>             * @event clear             * Fires when the hash is cleared.             * @param {Ext.util.HashMap} this.             */            'clear',<span id='Ext-util-HashMap-event-remove'>            /**</span>             * @event remove             * Fires when an item is removed from the hash.             * @param {Ext.util.HashMap} this.             * @param {String} key The key of the removed item.             * @param {Object} value The value of the removed item.             */            'remove',<span id='Ext-util-HashMap-event-replace'>            /**</span>             * @event replace             * Fires when an item is replaced in the hash.             * @param {Ext.util.HashMap} this.             * @param {String} key The key of the replaced item.             * @param {Object} value The new value for the item.             * @param {Object} old The old value for the item.             */            'replace'        );        me.mixins.observable.constructor.call(me, config);        me.clear(true);        if (keyFn) {            me.getKey = keyFn;        }    },<span id='Ext-util-HashMap-method-getCount'>    /**</span>     * Gets the number of items in the hash.     * @return {Number} The number of items in the hash.     */    getCount: function() {        return this.length;    },<span id='Ext-util-HashMap-method-getData'>    /**</span>     * Implementation for being able to extract the key from an object if only     * a single argument is passed.     * @private     * @param {String} key The key     * @param {Object} value The value     * @return {Array} [key, value]     */    getData: function(key, value) {        // if we have no value, it means we need to get the key from the object        if (value === undefined) {            value = key;            key = this.getKey(value);        }        return [key, value];    },<span id='Ext-util-HashMap-method-getKey'>    /**</span>     * Extracts the key from an object. This is a default implementation, it may be overridden     * @param {Object} o The object to get the key from     * @return {String} The key to use.     */    getKey: function(o) {        return o.id;    },<span id='Ext-util-HashMap-method-add'>    /**</span>     * Adds an item to the collection. Fires the {@link #event-add} event when complete.     *     * @param {String/Object} key The key to associate with the item, or the new item.     *     * If a {@link #getKey} implementation was specified for this HashMap,     * or if the key of the stored items is in a property called `id`,     * the HashMap will be able to *derive* the key for the new item.     * In this case just pass the new item in this parameter.     *     * @param {Object} [o] The item to add.     *     * @return {Object} The item added.     */    add: function(key, value) {        var me = this;        if (value === undefined) {            value = key;            key = me.getKey(value);        }        if (me.containsKey(key)) {            return me.replace(key, value);        }        me.map[key] = value;        ++me.length;        if (me.hasListeners.add) {            me.fireEvent('add', me, key, value);        }        return value;    },<span id='Ext-util-HashMap-method-replace'>    /**</span>     * Replaces an item in the hash. If the key doesn't exist, the     * {@link #method-add} method will be used.     * @param {String} key The key of the item.     * @param {Object} value The new value for the item.     * @return {Object} The new value of the item.     */    replace: function(key, value) {        var me = this,            map = me.map,            old;        if (value === undefined) {            value = key;            key = me.getKey(value);        }        if (!me.containsKey(key)) {            me.add(key, value);        }        old = map[key];        map[key] = value;        if (me.hasListeners.replace) {            me.fireEvent('replace', me, key, value, old);        }        return value;    },<span id='Ext-util-HashMap-method-remove'>    /**</span>     * Remove an item from the hash.     * @param {Object} o The value of the item to remove.     * @return {Boolean} True if the item was successfully removed.     */    remove: function(o) {        var key = this.findKey(o);        if (key !== undefined) {            return this.removeAtKey(key);        }        return false;    },<span id='Ext-util-HashMap-method-removeAtKey'>    /**</span>     * Remove an item from the hash.     * @param {String} key The key to remove.     * @return {Boolean} True if the item was successfully removed.     */    removeAtKey: function(key) {        var me = this,            value;        if (me.containsKey(key)) {            value = me.map[key];            delete me.map[key];            --me.length;            if (me.hasListeners.remove) {                me.fireEvent('remove', me, key, value);            }            return true;        }        return false;    },<span id='Ext-util-HashMap-method-get'>    /**</span>     * Retrieves an item with a particular key.     * @param {String} key The key to lookup.     * @return {Object} The value at that key. If it doesn't exist, <tt>undefined</tt> is returned.     */    get: function(key) {        return this.map[key];    },<span id='Ext-util-HashMap-method-clear'>    /**</span>     * Removes all items from the hash.     * @return {Ext.util.HashMap} this     */    clear: function(/* private */ initial) {        var me = this;        me.map = {};        me.length = 0;        if (initial !== true && me.hasListeners.clear) {            me.fireEvent('clear', me);        }        return me;    },<span id='Ext-util-HashMap-method-containsKey'>    /**</span>     * Checks whether a key exists in the hash.     * @param {String} key The key to check for.     * @return {Boolean} True if they key exists in the hash.     */    containsKey: function(key) {        return this.map[key] !== undefined;    },<span id='Ext-util-HashMap-method-contains'>    /**</span>     * Checks whether a value exists in the hash.     * @param {Object} value The value to check for.     * @return {Boolean} True if the value exists in the dictionary.     */    contains: function(value) {        return this.containsKey(this.findKey(value));    },<span id='Ext-util-HashMap-method-getKeys'>    /**</span>     * Return all of the keys in the hash.     * @return {Array} An array of keys.     */    getKeys: function() {        return this.getArray(true);    },<span id='Ext-util-HashMap-method-getValues'>    /**</span>     * Return all of the values in the hash.     * @return {Array} An array of values.     */    getValues: function() {        return this.getArray(false);    },<span id='Ext-util-HashMap-method-getArray'>    /**</span>     * Gets either the keys/values in an array from the hash.     * @private     * @param {Boolean} isKey True to extract the keys, otherwise, the value     * @return {Array} An array of either keys/values from the hash.     */    getArray: function(isKey) {        var arr = [],            key,            map = this.map;        for (key in map) {            if (map.hasOwnProperty(key)) {                arr.push(isKey ? key: map[key]);            }        }        return arr;    },<span id='Ext-util-HashMap-method-each'>    /**</span>     * Executes the specified function once for each item in the hash.     * Returning false from the function will cease iteration.     *     * The paramaters passed to the function are:     * <div class="mdetail-params"><ul>     * <li><b>key</b> : String<p class="sub-desc">The key of the item</p></li>     * <li><b>value</b> : Number<p class="sub-desc">The value of the item</p></li>     * <li><b>length</b> : Number<p class="sub-desc">The total number of items in the hash</p></li>     * </ul></div>     * @param {Function} fn The function to execute.     * @param {Object} scope The scope to execute in. Defaults to <tt>this</tt>.     * @return {Ext.util.HashMap} this     */    each: function(fn, scope) {        // copy items so they may be removed during iteration.        var items = Ext.apply({}, this.map),            key,            length = this.length;        scope = scope || this;        for (key in items) {            if (items.hasOwnProperty(key)) {                if (fn.call(scope, key, items[key], length) === false) {                    break;                }            }        }        return this;    },<span id='Ext-util-HashMap-method-clone'>    /**</span>     * Performs a shallow copy on this hash.     * @return {Ext.util.HashMap} The new hash object.     */    clone: function() {        var hash = new this.self(),            map = this.map,            key;        hash.suspendEvents();        for (key in map) {            if (map.hasOwnProperty(key)) {                hash.add(key, map[key]);            }        }        hash.resumeEvents();        return hash;    },<span id='Ext-util-HashMap-method-findKey'>    /**</span>     * @private     * Find the key for a value.     * @param {Object} value The value to find.     * @return {Object} The value of the item. Returns <tt>undefined</tt> if not found.     */    findKey: function(value) {        var key,            map = this.map;        for (key in map) {            if (map.hasOwnProperty(key) && map[key] === value) {                return key;            }        }        return undefined;    }});</pre></body></html>
 |