org.elasticsearch.index.mapper.ContentPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch - Open Source, Distributed, RESTful Search Engine
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.index.mapper;
public final class ContentPath {
private static final char DELIMITER = '.';
private final StringBuilder sb;
private int index = 0;
private String[] path = new String[10];
private boolean withinLeafObject = false;
public ContentPath() {
this.sb = new StringBuilder();
}
public void add(String name) {
path[index++] = name;
if (index == path.length) { // expand if needed
expand();
}
}
private void expand() {
String[] newPath = new String[path.length + 10];
System.arraycopy(path, 0, newPath, 0, path.length);
path = newPath;
}
public void remove() {
path[index--] = null;
}
public void setWithinLeafObject(boolean withinLeafObject) {
this.withinLeafObject = withinLeafObject;
}
public boolean isWithinLeafObject() {
return withinLeafObject;
}
public String pathAsText(String name) {
sb.setLength(0);
for (int i = 0; i < index; i++) {
sb.append(path[i]).append(DELIMITER);
}
sb.append(name);
return sb.toString();
}
public int length() {
return index;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy