joomla-platform / libraries / joomla / registry / registry.php

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
<?php
/**
 * @package     Joomla.Platform
 * @subpackage  Registry
 *
 * @copyright   Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE
 */

defined('JPATH_PLATFORM') or die;

JLoader::register('JRegistryFormat', dirname(__FILE__).'/format.php');

/**
 * JRegistry class
 *
 * @package     Joomla.Platform
 * @subpackage  Registry
 * @since       11.1
 */
class JRegistry
{
    /**
     * Registry Object
     *
     * @var object
     */
    protected $data;

    /**
     * Constructor
     *
     * @return  void
     * @since   11.1
     */
    public function __construct($data = null)
    {
        // Instantiate the internal data object.
        $this->data = new stdClass();

        // Optionally load supplied data.
        if (is_array($data) || is_object($data)) {
            $this->bindData($this->data, $data);
        }
        elseif (!empty($data) && is_string($data)) {
            $this->loadString($data);
        }
    }

    /**
     * Magic function to clone the registry object.
     */
    public function __clone()
    {
        $this->data = unserialize(serialize($this->data));
    }

    /**
     * Magic function to render this object as a string using default args of toString method.
     */
    public function __toString()
    {
        return $this->toString();
    }

    /**
     * Sets a default value if not alreay assigned.
     *
     * @param   string  The name of the parameter.
     * @param   string  An optional value for the parameter.
     * @param   string  An optional group for the parameter.
     * @return  string  The value set, or the default if the value was not previously set (or null).
     * @since   11.1
     */
    public function def($key, $default = '')
    {
        $value = $this->get($key, (string) $default);
        $this->set($key, $value);
        return $value;
    }

    /**
     * Check if a registry path exists.
     *
     * @param   string  Registry path (e.g. joomla.content.showauthor)
     * @return  boolean
     * @since   11.1
     */
    public function exists($path)
    {
        // Explode the registry path into an array
        if ($nodes = explode('.', $path)) {
            // Initialize the current node to be the registry root.
            $node = $this->data;

            // Traverse the registry to find the correct node for the result.
            for ($i = 0,$n = count($nodes); $i < $n; $i++) {
                if (isset($node->$nodes[$i])) {
                    $node = $node->$nodes[$i];
                } else {
                    break;
                }

                if ($i+1 == $n) {
                    return true;
                }
            }
        }

        return false;
    }

    /**
     * Get a registry value.
     *
     * @param   string  Registry path (e.g. joomla.content.showauthor)
     * @param   mixed   Optional default value, returned if the internal value is null.
     * @return  mixed   Value of entry or null
     * @since   11.1
     */
    public function get($path, $default = null)
    {
        // Initialise variables.
        $result = $default;

        if(!strpos($path, '.'))
        {
            return (isset($this->data->$path) && $this->data->$path !== null && $this->data->$path !== '') ? $this->data->$path : $default;
        }
        // Explode the registry path into an array
        $nodes = explode('.', $path);

        // Initialize the current node to be the registry root.
        $node = $this->data;
        $found = false;
        // Traverse the registry to find the correct node for the result.
        foreach ($nodes as $n) {
            if (isset($node->$n)) {
                $node = $node->$n;
                $found = true;
            } else {
                $found = false;
                break;
            }
        }
        if ($found && $node !== null && $node !== '') {
            $result = $node;
        }

        return $result;
    }

    /**
     * Returns a reference to a global JRegistry object, only creating it
     * if it doesn't already exist.
     *
     * This method must be invoked as:
     *      <pre>$registry = JRegistry::getInstance($id);</pre>
     *
     * @param   string  An ID for the registry instance
     * @return  object  The JRegistry object.
     * @since   11.1
     */
    public static function getInstance($id)
    {
        static $instances;

        if (!isset ($instances)) {
            $instances = array ();
        }

        if (empty ($instances[$id])) {
            $instances[$id] = new JRegistry();
        }

        return $instances[$id];
    }

    /**
     * Load a associative array of values into the default namespace
     *
     * @param   array   Associative array of value to load
     * @param   string  The name of the namespace
     * @return  boolean True on success
     * @since   11.1
     */
    public function loadArray($array)
    {
        $this->bindData($this->data, $array);

        return true;
    }

    /**
     * Load the public variables of the object into the default namespace.
     *
     * @param   object  The object holding the publics to load
     * @param   string  Namespace to load the INI string into [optional]
     * @return  boolean True on success
     * @since   11.1
     */
    public function loadObject($object)
    {
        $this->bindData($this->data, $object);

        return true;
    }

    /**
     * Load the contents of a file into the registry
     *
     * @param   string  Path to file to load
     * @param   string  Format of the file [optional: defaults to JSON]
     * @param   mixed   Options used by the formatter
     * @return  boolean True on success
     * @since   11.1
     */
    public function loadFile($file, $format = 'JSON', $options = array())
    {
        // Get the contents of the file
        jimport('joomla.filesystem.file');
        $data = JFile::read($file);

        return $this->loadString($data, $format, $options);
    }

    /**
     * Load a string into the registry
     *
     * @param   string  string to load into the registry
     * @param   string  format of the string
     * @param   mixed   Options used by the formatter
     * @return  boolean True on success
     * @since   11.1
     */
    public function loadString($data, $format = 'JSON', $options = array())
    {
        // Load a string into the given namespace [or default namespace if not given]
        $handler = JRegistryFormat::getInstance($format);

        $obj = $handler->stringToObject($data, $options);
        $this->loadObject($obj);

        return true;
    }

    /**
     * Merge a JRegistry object into this one
     *
     * @param   object  Source JRegistry object ot merge
     * @return  boolean True on success
     * @since   11.1
     */
    public function merge(&$source)
    {
        if ($source instanceof JRegistry) {
            // Load the variables into the registry's default namespace.
            foreach ($source->toArray() as $k => $v) {
                if (($v !== null) && ($v !== '')){
                    $this->data->$k = $v;
                }
            }
            return true;
        }
        return false;
    }

    /**
     * Set a registry value.
     *
     * @param   string  Registry Path (e.g. joomla.content.showauthor)
     * @param   mixed   Value of entry
     * @return  mixed   The value of the that has been set.
     * @since   11.1
     */
    public function set($path, $value)
    {
        $result = null;

        // Explode the registry path into an array
        if ($nodes = explode('.', $path)) {
            // Initialize the current node to be the registry root.
            $node = $this->data;

            // Traverse the registry to find the correct node for the result.
            for ($i = 0, $n = count($nodes) - 1; $i < $n; $i++) {
                if (!isset($node->$nodes[$i]) && ($i != $n)) {
                    $node->$nodes[$i] = new stdClass();
                }
                $node = $node->$nodes[$i];
            }

            // Get the old value if exists so we can return it
            $result = $node->$nodes[$i] = $value;
        }

        return $result;
    }

    /**
     * Transforms a namespace to an array
     *
     * @param   string  Namespace to return [optional: null returns the default namespace]
     * @return  array   An associative array holding the namespace data
     * @since   11.1
     */
    public function toArray()
    {
        return (array) $this->asArray($this->data);
    }

    /**
     * Transforms a namespace to an object
     *
     * @param   string  Namespace to return [optional: null returns the default namespace]
     * @return  object  An an object holding the namespace data
     * @since   11.1
     */
    public function toObject()
    {
        return $this->data;
    }

    /**
     * Get a namespace in a given string format
     *
     * @param   string  Format to return the string in
     * @param   mixed   Parameters used by the formatter, see formatters for more info
     * @return  string  Namespace in string format
     * @since   11.1
     */
    public function toString($format = 'JSON', $options = array())
    {
        // Return a namespace in a given format
        $handler = JRegistryFormat::getInstance($format);

        return $handler->objectToString($this->data, $options);
    }

    /**
     * Method to recursively bind data to a parent object.
     *
     * @param   object  $parent The parent object on which to attach the data values.
     * @param   mixed   $data   An array or object of data to bind to the parent object.
     *
     * @return  void
     * @since   11.1
     */
    protected function bindData(& $parent, $data)
    {
        // Ensure the input data is an array.
        if(is_object($data)) {
            $data = get_object_vars($data);
        } else {
            $data = (array) $data;
        }

        foreach ($data as $k => $v) {
            if ((is_array($v) && JArrayHelper::isAssociative($v)) || is_object($v)) {
                $parent->$k = new stdClass();
                $this->bindData($parent->$k, $v);
            } else {
                $parent->$k = $v;
            }
        }
    }

    /**
     * Method to recursively convert an object of data to an array.
     *
     * @param   object  $data   An object of data to return as an array.
     *
     * @return  array   Array representation of the input object.
     * @since   11.1
     */
    protected function asArray($data)
    {
        $array = array();

        foreach (get_object_vars((object) $data) as $k => $v) {
            if (is_object($v)) {
                $array[$k] = $this->asArray($v);
            } else {
                $array[$k] = $v;
            }
        }

        return $array;
    }

    //
    // Following methods are deprecated
    //

    /**
     * Load an XML string into the registry into the given namespace [or default if a namespace is not given]
     *
     * @param   string  XML formatted string to load into the registry
     * @param   string  Namespace to load the XML string into [optional]
     * @return  boolean True on success
     * @since   11.1
     * @deprecated 1.6 - Oct 25, 2010
     */
    public function loadXML($data, $namespace = null)
    {
        return $this->loadString($data, 'XML');
    }

    /**
     * Load an INI string into the registry into the given namespace [or default if a namespace is not given]
     *
     * @param   string  INI formatted string to load into the registry
     * @param   string  Namespace to load the INI string into [optional]
     * @param   mixed   An array of options for the formatter, or boolean to process sections.
     * @return  boolean True on success
     * @since   11.1
     * @deprecated 1.6 - Oct 25, 2010
     */
    public function loadINI($data, $namespace = null, $options = array())
    {
        return $this->loadString($data, 'INI', $options);
    }

    /**
     * Load an JSON string into the registry into the given namespace [or default if a namespace is not given]
     *
     * @param   string  JSON formatted string to load into the registry
     * @return  boolean True on success
     * @since   11.1
     * @deprecated 1.6 - Oct 25, 2010
     */
    public function loadJSON($data)
    {
        return $this->loadString($data, 'JSON');
    }

    /**
     * Create a namespace
     *
     * @param   string  Name of the namespace to create
     * @return  boolean True on success
     * @since   11.1
     * @deprecated 1.6 - Jan 19, 2010
     */
    public function makeNameSpace($namespace)
    {
        //$this->_registry[$namespace] = array('data' => new stdClass());
        return true;
    }

    /**
     * Get the list of namespaces
     *
     * @return  array   List of namespaces
     * @deprecated 1.6 - Jan 19, 2010
     */
    public function getNameSpaces()
    {
        //return array_keys($this->_registry);
        return array();
    }

    /**
     * Get a registry value
     *
     * @param   string  Registry path (e.g. joomla.content.showauthor)
     * @param   mixed   Optional default value
     * @return  mixed   Value of entry or null
     * @deprecated 1.6 - Jan 19, 2010
     */
    public function getValue($path, $default=null)
    {
        $parts = explode('.', $path);
        if (count($parts) > 1) {
            unset($parts[0]);
            $path = implode('.', $parts);
        }
        return $this->get($path, $default);
    }

    /**
     * Set a registry value
     *
     * @param   string  Registry Path (e.g. joomla.content.showauthor)
     * @param   mixed   Value of entry
     * @return  mixed   The value after setting.
     * @deprecated 1.6 - Jan 19, 2010
     */
    public function setValue($path, $value)
    {
        $parts = explode('.', $path);
        if (count($parts) > 1) {
            unset($parts[0]);
            $path = implode('.', $parts);
        }
        return $this->set($path, $value);
    }

    /**
     * This method is added as an interim solution for API references in Joomla! 1.6 to the JRegistry
     * object where in 1.5 a JParameter object existed.  Because many extensions may call this method
     * we add it here as a means of "pain relief" until the 1.7 release.
     *
     * @return      boolean  True.
     *
     * @deprecated  1.6 - Jun 17, 2010
     * @todo        Remove this method for the 1.7 release.
     */
    public function loadSetupFile()
    {
        return true;
    }
}
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.