blob: 0eb4539cd8cabe072c1b57392e6ddd88371f9883 [file] [log] [blame]
/*
* 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.carbondata.core.indexstore;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.io.Serializable;
import java.net.URI;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import org.apache.carbondata.core.datastore.impl.FileFactory;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.Writable;
/**
* Holds partition information.
*/
public class PartitionSpec implements Serializable, Writable {
private static final long serialVersionUID = 4828007433384867678L;
/**
* It holds the partition information in columnName=partitionValue combination.
*/
private List<String> partitions;
private transient Path locationPath;
private String location;
private String uuid;
public PartitionSpec() {
}
public PartitionSpec(List<String> partitions, String location) {
this.partitions = partitions;
this.locationPath = new Path(FileFactory.getUpdatedFilePath(location));
this.location = locationPath.toString();
}
public PartitionSpec(List<String> partitions, URI location) {
this.partitions = partitions;
this.locationPath = new Path(FileFactory.getUpdatedFilePath(new Path(location).toString()));
this.location = locationPath.toString();
}
public List<String> getPartitions() {
return partitions;
}
public Path getLocation() {
if (locationPath == null) {
locationPath = new Path(location);
}
return locationPath;
}
public void setLocation(String location) {
locationPath = new Path(location);
this.location = location;
}
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
PartitionSpec spec = (PartitionSpec) o;
return Objects.equals(getLocation(), spec.getLocation());
}
@Override
public int hashCode() {
return Objects.hash(locationPath);
}
@Override
public String toString() {
return "PartitionSpec{" + "partitions=" + partitions + ", locationPath=" + locationPath
+ ", location='" + location + '\'' + '}';
}
@Override
public void write(DataOutput out) throws IOException {
if (partitions == null) {
out.writeBoolean(false);
} else {
out.writeBoolean(true);
out.writeInt(partitions.size());
for (String partition : partitions) {
out.writeUTF(partition);
}
}
if (uuid == null) {
out.writeBoolean(false);
} else {
out.writeBoolean(true);
out.writeUTF(uuid);
}
if (location == null) {
out.writeBoolean(false);
} else {
out.writeBoolean(true);
out.writeUTF(location);
}
}
@Override
public void readFields(DataInput in) throws IOException {
if (in.readBoolean()) {
int numPartitions = in.readInt();
partitions = new ArrayList<>(numPartitions);
for (int i = 0; i < numPartitions; i++) {
partitions.add(in.readUTF());
}
}
if (in.readBoolean()) {
uuid = in.readUTF();
}
if (in.readBoolean()) {
location = in.readUTF();
}
}
}