forked from apache/dubbo
-
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.
fix: apache#3914 protostuff serialize java.sql.Timestamp
- Loading branch information
Showing
3 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
...rc/main/java/org/apache/dubbo/common/serialize/protostuff/delegate/TimestampDelegate.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,57 @@ | ||
/* | ||
* 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.dubbo.common.serialize.protostuff.delegate; | ||
|
||
import io.protostuff.Input; | ||
import io.protostuff.Output; | ||
import io.protostuff.Pipe; | ||
import io.protostuff.WireFormat.FieldType; | ||
import io.protostuff.runtime.Delegate; | ||
|
||
import java.io.IOException; | ||
import java.sql.Timestamp; | ||
|
||
/** | ||
* Custom {@link Timestamp} delegate | ||
*/ | ||
public class TimestampDelegate implements Delegate<Timestamp> { | ||
|
||
@Override | ||
public FieldType getFieldType() { | ||
return FieldType.FIXED64; | ||
} | ||
|
||
@Override | ||
public Timestamp readFrom(Input input) throws IOException { | ||
return new Timestamp(input.readFixed64()); | ||
} | ||
|
||
@Override | ||
public void writeTo(Output output, int number, Timestamp value, boolean repeated) throws IOException { | ||
output.writeFixed64(number, value.getTime(), repeated); | ||
} | ||
|
||
@Override | ||
public void transfer(Pipe pipe, Input input, Output output, int number, boolean repeated) throws IOException { | ||
output.writeFixed64(number, input.readFixed64(), repeated); | ||
} | ||
|
||
@Override | ||
public Class<?> typeClass() { | ||
return Timestamp.class; | ||
} | ||
} |
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