All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.uritemplate.impl.VariablesImpl Maven / Gradle / Ivy

There is a newer version: 7.9.0
Show newest version
/*
 * Copyright (c) 2011-2022 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package com.arangodb.shaded.vertx.uritemplate.impl;

import com.arangodb.shaded.vertx.core.json.JsonArray;
import com.arangodb.shaded.vertx.core.json.JsonObject;
import com.arangodb.shaded.vertx.uritemplate.Variables;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

public class VariablesImpl implements Variables {

  private static String toString(Object o) {
    if (o == null) {
      return null;
    } else {
      return o.toString();
    }
  }

  private final Map variables = new LinkedHashMap<>();

  @Override
  public Variables set(String name, String value) {
    variables.put(name, value);
    return this;
  }

  @Override
  public Variables set(String name, List value) {
    variables.put(name, value);
    return this;
  }

  @Override
  public Variables set(String name, Map value) {
    variables.put(name, value);
    return this;
  }

  @Override
  public Variables addAll(JsonObject jsonObject) {
    for (Map.Entry entry : jsonObject) {
      String name = entry.getKey();
      Object value = entry.getValue();
      if (value instanceof JsonObject) {
        JsonObject json = (JsonObject) value;
        LinkedHashMap map = new LinkedHashMap<>(json.size());
        for (Map.Entry e : json) {
          map.put(e.getKey(), toString(e.getValue()));
        }
        set(name, map);
      } else if (value instanceof JsonArray) {
        JsonArray json = (JsonArray) value;
        List list = new ArrayList<>(json.size());
        for (Object o : json) {
          list.add(toString(o));
        }
        set(name, list);
      } else {
        set(name, toString(value));
      }
    }
    return this;
  }

  @Override
  public Variables clear() {
    variables.clear();
    return this;
  }

  @Override
  public Object get(String name) {
    return variables.get(name);
  }

  @Override
  public Set names() {
    return variables.keySet();
  }

  @Override
  public String getSingle(String name) {
    return (String) variables.get(name);
  }

  @Override
  public List getList(String name) {
    return (List) variables.get(name);
  }

  @Override
  public Map getMap(String name) {
    return (Map) variables.get(name);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy