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

juzu.impl.router.RouteMatch Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * Copyright 2013 eXo Platform SAS
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package juzu.impl.router;

import juzu.UndeclaredIOException;
import juzu.impl.common.MimeType;
import juzu.impl.common.URIWriter;

import java.io.IOException;
import java.util.Collections;
import java.util.Map;

/** @author Julien Viet */
public class RouteMatch {

  /** The matched route. */
  final Route route;

  /** The matched parameters. */
  final Map matched;

  /** The un matched parameters. */
  final Map unmatched;

  RouteMatch(Route route, Map matched) {
    this.route = route;
    this.matched = Collections.unmodifiableMap(matched);
    this.unmatched = Collections.emptyMap();
  }

  RouteMatch(Route route, Map unmatched, Map matched) {
    this.route = route;
    this.matched = Collections.unmodifiableMap(matched);
    this.unmatched = Collections.unmodifiableMap(unmatched);
  }

  public Route getRoute() {
    return route;
  }

  public Map getMatched() {
    return Collections.unmodifiableMap(matched);
  }

  public Map getUnmatched() {
    return unmatched;
  }

  public void render(URIWriter writer) throws IOException {
    route.renderPath(this, writer, false);
  }

  public String render() {
    try {
      StringBuilder sb = new StringBuilder();
      URIWriter writer = new URIWriter(sb, MimeType.PLAIN);
      render(writer);
      return sb.toString();
    }
    catch (IOException e) {
      throw new UndeclaredIOException(e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy