-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace string device id with interface IDeviceID
- Loading branch information
Showing
39 changed files
with
964 additions
and
396 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
common/src/main/java/org/apache/tsfile/utils/Accountable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* 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.tsfile.utils; | ||
|
||
public interface Accountable { | ||
/** Return the memory usage of this object in bytes. Negative values are illegal. */ | ||
long ramBytesUsed(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
tsfile/src/main/java/org/apache/tsfile/file/IMetadataIndexEntry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* 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.tsfile.file; | ||
|
||
import java.io.IOException; | ||
import java.io.OutputStream; | ||
|
||
public interface IMetadataIndexEntry { | ||
|
||
long getOffset(); | ||
|
||
void setOffset(long offset); | ||
|
||
int serializeTo(OutputStream outputStream) throws IOException; | ||
|
||
Comparable getCompareKey(); | ||
|
||
boolean isDeviceLevel(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 92 additions & 0 deletions
92
tsfile/src/main/java/org/apache/tsfile/file/metadata/DeviceMetadataIndexEntry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* 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.tsfile.file.metadata; | ||
|
||
import org.apache.tsfile.file.IMetadataIndexEntry; | ||
import org.apache.tsfile.utils.ReadWriteIOUtils; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.io.OutputStream; | ||
import java.nio.ByteBuffer; | ||
|
||
public class DeviceMetadataIndexEntry implements IMetadataIndexEntry { | ||
private IDeviceID deviceID; | ||
private long offset; | ||
|
||
public DeviceMetadataIndexEntry(IDeviceID deviceID, long offset) { | ||
this.deviceID = deviceID; | ||
this.offset = offset; | ||
} | ||
|
||
public IDeviceID getDeviceID() { | ||
return deviceID; | ||
} | ||
|
||
@Override | ||
public long getOffset() { | ||
return offset; | ||
} | ||
|
||
public void setDeviceID(IDeviceID deviceID) { | ||
this.deviceID = deviceID; | ||
} | ||
|
||
@Override | ||
public void setOffset(long offset) { | ||
this.offset = offset; | ||
} | ||
|
||
@Override | ||
public int serializeTo(OutputStream outputStream) throws IOException { | ||
int byteLen = 0; | ||
byteLen += deviceID.serialize(outputStream); | ||
byteLen += ReadWriteIOUtils.write(offset, outputStream); | ||
return byteLen; | ||
} | ||
|
||
@Override | ||
public Comparable getCompareKey() { | ||
return deviceID; | ||
} | ||
|
||
@Override | ||
public boolean isDeviceLevel() { | ||
return true; | ||
} | ||
|
||
public static DeviceMetadataIndexEntry deserializeFrom(ByteBuffer buffer) { | ||
IDeviceID device = IDeviceID.deserializeFrom(buffer); | ||
long offset = ReadWriteIOUtils.readLong(buffer); | ||
return new DeviceMetadataIndexEntry(device, offset); | ||
} | ||
|
||
public static DeviceMetadataIndexEntry deserializeFrom(InputStream inputStream) | ||
throws IOException { | ||
IDeviceID device = IDeviceID.deserializeFrom(inputStream); | ||
long offset = ReadWriteIOUtils.readLong(inputStream); | ||
return new DeviceMetadataIndexEntry(device, offset); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "<" + deviceID + "," + offset + ">"; | ||
} | ||
} |
48 changes: 48 additions & 0 deletions
48
tsfile/src/main/java/org/apache/tsfile/file/metadata/IDeviceID.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* 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.tsfile.file.metadata; | ||
|
||
import org.apache.tsfile.utils.Accountable; | ||
import org.apache.tsfile.utils.ReadWriteIOUtils; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.io.OutputStream; | ||
import java.nio.ByteBuffer; | ||
|
||
/** Device id interface. */ | ||
public interface IDeviceID extends Comparable<IDeviceID>, Accountable { | ||
|
||
int serialize(ByteBuffer byteBuffer); | ||
|
||
int serialize(OutputStream outputStream) throws IOException; | ||
|
||
byte[] getBytes(); | ||
|
||
boolean isEmpty(); | ||
|
||
static IDeviceID deserializeFrom(ByteBuffer byteBuffer) { | ||
return new PlainDeviceID(ReadWriteIOUtils.readVarIntString(byteBuffer)); | ||
} | ||
|
||
static IDeviceID deserializeFrom(InputStream inputStream) throws IOException { | ||
return new PlainDeviceID(ReadWriteIOUtils.readVarIntString(inputStream)); | ||
} | ||
} |
Oops, something went wrong.