forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pulsar-client] add Date/Time/Timestamp schema (apache#3856)
Fixes apache#3831
- Loading branch information
1 parent
4959f51
commit 2fecbd6
Showing
12 changed files
with
351 additions
and
4 deletions.
There are no files selected for viewing
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
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
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
65 changes: 65 additions & 0 deletions
65
pulsar-client/src/main/java/org/apache/pulsar/client/impl/schema/DateSchema.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,65 @@ | ||
/** | ||
* 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.pulsar.client.impl.schema; | ||
|
||
import org.apache.pulsar.client.api.Schema; | ||
import org.apache.pulsar.common.schema.SchemaInfo; | ||
import org.apache.pulsar.common.schema.SchemaType; | ||
|
||
import java.util.Date; | ||
|
||
/** | ||
* A schema for `java.util.Date` or `java.sql.Date`. | ||
*/ | ||
public class DateSchema implements Schema<Date> { | ||
public static DateSchema of() { | ||
return INSTANCE; | ||
} | ||
|
||
private static final DateSchema INSTANCE = new DateSchema(); | ||
private static final SchemaInfo SCHEMA_INFO = new SchemaInfo() | ||
.setName("Date") | ||
.setType(SchemaType.DATE) | ||
.setSchema(new byte[0]); | ||
|
||
@Override | ||
public byte[] encode(Date message) { | ||
if (null == message) { | ||
return null; | ||
} | ||
|
||
Long date = message.getTime(); | ||
return LongSchema.of().encode(date); | ||
} | ||
|
||
@Override | ||
public Date decode(byte[] bytes) { | ||
if (null == bytes) { | ||
return null; | ||
} | ||
|
||
Long decode = LongSchema.of().decode(bytes); | ||
return new Date(decode); | ||
} | ||
|
||
@Override | ||
public SchemaInfo getSchemaInfo() { | ||
return SCHEMA_INFO; | ||
} | ||
} |
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
65 changes: 65 additions & 0 deletions
65
pulsar-client/src/main/java/org/apache/pulsar/client/impl/schema/TimeSchema.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,65 @@ | ||
/** | ||
* 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.pulsar.client.impl.schema; | ||
|
||
import org.apache.pulsar.client.api.Schema; | ||
import org.apache.pulsar.common.schema.SchemaInfo; | ||
import org.apache.pulsar.common.schema.SchemaType; | ||
|
||
import java.sql.Time; | ||
|
||
/** | ||
* A schema for `java.sql.Time`. | ||
*/ | ||
public class TimeSchema implements Schema<Time> { | ||
public static TimeSchema of() { | ||
return INSTANCE; | ||
} | ||
|
||
private static final TimeSchema INSTANCE = new TimeSchema(); | ||
private static final SchemaInfo SCHEMA_INFO = new SchemaInfo() | ||
.setName("Time") | ||
.setType(SchemaType.TIME) | ||
.setSchema(new byte[0]); | ||
|
||
@Override | ||
public byte[] encode(Time message) { | ||
if (null == message) { | ||
return null; | ||
} | ||
|
||
Long time = message.getTime(); | ||
return LongSchema.of().encode(time); | ||
} | ||
|
||
@Override | ||
public Time decode(byte[] bytes) { | ||
if (null == bytes) { | ||
return null; | ||
} | ||
|
||
Long decode = LongSchema.of().decode(bytes); | ||
return new Time(decode); | ||
} | ||
|
||
@Override | ||
public SchemaInfo getSchemaInfo() { | ||
return SCHEMA_INFO; | ||
} | ||
} |
65 changes: 65 additions & 0 deletions
65
pulsar-client/src/main/java/org/apache/pulsar/client/impl/schema/TimestampSchema.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,65 @@ | ||
/** | ||
* 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.pulsar.client.impl.schema; | ||
|
||
import org.apache.pulsar.client.api.Schema; | ||
import org.apache.pulsar.common.schema.SchemaInfo; | ||
import org.apache.pulsar.common.schema.SchemaType; | ||
|
||
import java.sql.Timestamp; | ||
|
||
/** | ||
* A schema for `java.sql.Timestamp`. | ||
*/ | ||
public class TimestampSchema implements Schema<Timestamp> { | ||
public static TimestampSchema of() { | ||
return INSTANCE; | ||
} | ||
|
||
private static final TimestampSchema INSTANCE = new TimestampSchema(); | ||
private static final SchemaInfo SCHEMA_INFO = new SchemaInfo() | ||
.setName("Timestamp") | ||
.setType(SchemaType.TIMESTAMP) | ||
.setSchema(new byte[0]); | ||
|
||
@Override | ||
public byte[] encode(Timestamp message) { | ||
if (null == message) { | ||
return null; | ||
} | ||
|
||
Long timestamp = message.getTime(); | ||
return LongSchema.of().encode(timestamp); | ||
} | ||
|
||
@Override | ||
public Timestamp decode(byte[] bytes) { | ||
if (null == bytes) { | ||
return null; | ||
} | ||
|
||
Long decode = LongSchema.of().decode(bytes); | ||
return new Timestamp(decode); | ||
} | ||
|
||
@Override | ||
public SchemaInfo getSchemaInfo() { | ||
return SCHEMA_INFO; | ||
} | ||
} |
Oops, something went wrong.