object_utils.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. var stringUtils = require('utils/string_utils');
  19. module.exports = {
  20. recursiveKeysCount: function(obj) {
  21. if (!(obj instanceof Object)) {
  22. return null;
  23. }
  24. function r(obj) {
  25. var count = 0;
  26. for (var k in obj) {
  27. if (obj.hasOwnProperty(k)) {
  28. if (obj[k] instanceof Object) {
  29. count += 1 + r(obj[k]);
  30. }
  31. }
  32. }
  33. return count;
  34. }
  35. return r(obj);
  36. },
  37. recursiveTree: function(obj) {
  38. if (!(obj instanceof Object)) {
  39. return null;
  40. }
  41. function r(obj, indx) {
  42. var str = '';
  43. for (var k in obj) {
  44. if (obj.hasOwnProperty(k)) {
  45. if (obj[k] instanceof Object) {
  46. var spaces = (new Array(indx + 1).join(' '));
  47. var bull = (indx != 0 ? '• ' : ' '); // empty for "root" element
  48. str += spaces + bull + k + '<br />' + r(obj[k], indx + 1);
  49. }
  50. }
  51. }
  52. return str;
  53. }
  54. return r(obj, 0);
  55. }
  56. };