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

org.apache.iotdb.db.exception.metadata.PathNotExistException Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.iotdb.db.exception.metadata;

import org.apache.iotdb.commons.exception.MetadataException;
import org.apache.iotdb.rpc.TSStatusCode;

import java.util.List;

public class PathNotExistException extends MetadataException {

  private static final String PATH_NOT_EXIST_WRONG_MESSAGE = "Path [%s] does not exist";
  private static final String SOURCE_PATH_NOT_EXIST_WRONG_MESSAGE =
      "The source path [%s] of view [%s] does not exist.";

  private static final String NORMAL_TIMESERIES_NOT_EXIST_WRONG_MESSAGE =
      "Timeseries [%s] does not exist or is represented by device template";

  private static final String TEMPLATE_TIMESERIES_NOT_EXIST_WRONG_MESSAGE =
      "Timeseries [%s] does not exist or is not represented by device template";

  public PathNotExistException(String sourcePath, String viewPath) {
    super(
        String.format(SOURCE_PATH_NOT_EXIST_WRONG_MESSAGE, sourcePath, viewPath),
        TSStatusCode.PATH_NOT_EXIST.getStatusCode());
  }

  public PathNotExistException(String path) {
    super(
        String.format(PATH_NOT_EXIST_WRONG_MESSAGE, path),
        TSStatusCode.PATH_NOT_EXIST.getStatusCode());
  }

  public PathNotExistException(String path, boolean isUserException) {
    super(
        String.format(PATH_NOT_EXIST_WRONG_MESSAGE, path),
        TSStatusCode.PATH_NOT_EXIST.getStatusCode(),
        isUserException);
  }

  public PathNotExistException(List paths) {
    super(
        String.format(
            PATH_NOT_EXIST_WRONG_MESSAGE,
            paths.size() == 1
                ? paths.get(0)
                : paths.get(0) + " ... " + paths.get(paths.size() - 1)),
        TSStatusCode.PATH_NOT_EXIST.getStatusCode());
  }

  public PathNotExistException(List paths, boolean isTemplateSeries) {
    super(
        String.format(
            isTemplateSeries
                ? TEMPLATE_TIMESERIES_NOT_EXIST_WRONG_MESSAGE
                : NORMAL_TIMESERIES_NOT_EXIST_WRONG_MESSAGE,
            paths.size() == 1
                ? paths.get(0)
                : paths.get(0) + " ... " + paths.get(paths.size() - 1)),
        TSStatusCode.PATH_NOT_EXIST.getStatusCode());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy