io.helidon.config.Config.traverse()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.4k)|赞(0)|评价(0)|浏览(141)

本文整理了Java中io.helidon.config.Config.traverse()方法的一些代码示例,展示了Config.traverse()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.traverse()方法的具体详情如下:
包路径:io.helidon.config.Config
类名称:Config
方法名:traverse

Config.traverse介绍

[英]Iterative deepening depth-first traversal of the node and its subtree as a Stream.

If the config node does not exist or is a leaf the returned stream is empty.

Depending on the structure of the configuration the returned stream can deliver a mix of object, list, and leaf value nodes. The stream will include and traverse through object members and list elements.
[中]作为流对节点及其子树进行迭代深度优先遍历。
如果配置节点不存在或是叶,则返回的流为空。
根据配置的结构,返回的流可以提供对象、列表和叶值节点的混合。流将包含并遍历对象成员和列表元素。

代码示例

代码示例来源:origin: oracle/helidon

  1. /**
  2. * <strong>Iterative deepening depth-first traversal</strong> of the node
  3. * and its subtree as a {@code Stream<Config>}.
  4. * <p>
  5. * If the config node does not exist or is a leaf the returned stream is
  6. * empty.
  7. * <p>
  8. * Depending on the structure of the configuration the returned stream can
  9. * deliver a mix of object, list, and leaf value nodes. The stream will
  10. * include and traverse through object members and list elements.
  11. *
  12. * @return stream of deepening depth-first sub-nodes
  13. */
  14. default Stream<Config> traverse() {
  15. return traverse((node) -> true);
  16. }

代码示例来源:origin: oracle/helidon

  1. /**
  2. * Create a new instance.
  3. *
  4. * @param config configuration
  5. * @param mpConfigSources config sources
  6. * @param converterClasses classes of converters
  7. * @param converters class to converter mapping
  8. */
  9. MpConfig(Config config,
  10. List<ConfigSource> mpConfigSources,
  11. Set<Class<?>> converterClasses,
  12. Map<Class<?>, Converter<?>> converters) {
  13. final AtomicReference<Config> ref = new AtomicReference<>(config);
  14. config.onChange(newConfig -> {
  15. ref.set(newConfig);
  16. return true;
  17. });
  18. this.config = ref::get;
  19. this.mpConfigSources = mpConfigSources;
  20. this.propertyNames =
  21. Stream.concat(mpConfigSources.stream()
  22. .flatMap(cs -> cs.getPropertyNames().stream()),
  23. config.traverse(Config::isLeaf)
  24. .map(Config::key)
  25. .map(Config.Key::toString))
  26. .collect(Collectors.toSet());
  27. this.converterClasses = new HashSet<>(converterClasses);
  28. this.converters = converters;
  29. }

代码示例来源:origin: oracle/helidon

  1. /**
  2. * Computes the difference between the first {@code Config} and the second
  3. * one.
  4. * @param origConfig original configuration
  5. * @param newConfig newer configuration
  6. * @return {@code ConfigDiff} representing the changes
  7. */
  8. static ConfigDiff from(Config origConfig, Config newConfig) {
  9. Stream<Config> forward = origConfig.traverse()
  10. .filter(origNode -> notEqual(origNode, newConfig.get(origNode.key())));
  11. Stream<Config> backward = newConfig.traverse()
  12. .filter(newNode -> notEqual(newNode, origConfig.get(newNode.key())));
  13. Set<Config.Key> changedKeys = Stream.concat(forward, backward)
  14. .map(Config::key)
  15. .distinct()
  16. .flatMap(ConfigDiff::expandKey)
  17. .distinct()
  18. .collect(toSet());
  19. return new ConfigDiff(newConfig, changedKeys);
  20. }

代码示例来源:origin: oracle/helidon

  1. return new StringMap(config.key().toString(), config.asString().get());
  2. } else {
  3. return new StringMap(config.traverse()
  4. .filter(Config::isLeaf)
  5. .map(node -> new AbstractMap.SimpleEntry<>(node.key().toString(), node.asString().get()))

代码示例来源:origin: io.helidon.config/helidon-config

  1. /**
  2. * <strong>Iterative deepening depth-first traversal</strong> of the node
  3. * and its subtree as a {@code Stream<Config>}.
  4. * <p>
  5. * If the config node does not exist or is a leaf the returned stream is
  6. * empty.
  7. * <p>
  8. * Depending on the structure of the configuration the returned stream can
  9. * deliver a mix of object, list, and leaf value nodes. The stream will
  10. * include and traverse through object members and list elements.
  11. *
  12. * @return stream of deepening depth-first sub-nodes
  13. */
  14. default Stream<Config> traverse() {
  15. return traverse((node) -> true);
  16. }

代码示例来源:origin: io.helidon.microprofile.config/helidon-microprofile-config

  1. /**
  2. * Create a new instance.
  3. *
  4. * @param config configuration
  5. * @param mpConfigSources config sources
  6. * @param converterClasses classes of converters
  7. * @param converters class to converter mapping
  8. */
  9. MpConfig(Config config,
  10. List<ConfigSource> mpConfigSources,
  11. Set<Class<?>> converterClasses,
  12. Map<Class<?>, Converter<?>> converters) {
  13. final AtomicReference<Config> ref = new AtomicReference<>(config);
  14. config.onChange(newConfig -> {
  15. ref.set(newConfig);
  16. return true;
  17. });
  18. this.config = ref::get;
  19. this.mpConfigSources = mpConfigSources;
  20. this.propertyNames =
  21. Stream.concat(mpConfigSources.stream()
  22. .flatMap(cs -> cs.getPropertyNames().stream()),
  23. config.traverse(Config::isLeaf)
  24. .map(Config::key)
  25. .map(Config.Key::toString))
  26. .collect(Collectors.toSet());
  27. this.converterClasses = new HashSet<>(converterClasses);
  28. this.converters = converters;
  29. }

代码示例来源:origin: io.helidon.config/helidon-config

  1. /**
  2. * Computes the difference between the first {@code Config} and the second
  3. * one.
  4. * @param origConfig original configuration
  5. * @param newConfig newer configuration
  6. * @return {@code ConfigDiff} representing the changes
  7. */
  8. static ConfigDiff from(Config origConfig, Config newConfig) {
  9. Stream<Config> forward = origConfig.traverse()
  10. .filter(origNode -> notEqual(origNode, newConfig.get(origNode.key())));
  11. Stream<Config> backward = newConfig.traverse()
  12. .filter(newNode -> notEqual(newNode, origConfig.get(newNode.key())));
  13. Set<Config.Key> changedKeys = Stream.concat(forward, backward)
  14. .map(Config::key)
  15. .distinct()
  16. .flatMap(ConfigDiff::expandKey)
  17. .distinct()
  18. .collect(toSet());
  19. return new ConfigDiff(newConfig, changedKeys);
  20. }

代码示例来源:origin: io.helidon.config/helidon-config

  1. return new StringMap(config.key().toString(), config.asString().get());
  2. } else {
  3. return new StringMap(config.traverse()
  4. .filter(Config::isLeaf)
  5. .map(node -> new AbstractMap.SimpleEntry<>(node.key().toString(), node.asString().get()))

相关文章