forked from apache/incubator-seata
-
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.
release 0.8.0
- Loading branch information
Showing
200 changed files
with
7,532 additions
and
1,629 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
61 changes: 61 additions & 0 deletions
61
...otobuf/src/main/java/io/seata/codec/protobuf/convertor/UndoLogDeleteRequestConvertor.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,61 @@ | ||
/* | ||
* Copyright 1999-2019 Seata.io Group. | ||
* | ||
* Licensed 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 io.seata.codec.protobuf.convertor; | ||
|
||
import io.seata.codec.protobuf.generated.AbstractMessageProto; | ||
import io.seata.codec.protobuf.generated.AbstractTransactionRequestProto; | ||
import io.seata.codec.protobuf.generated.BranchTypeProto; | ||
import io.seata.codec.protobuf.generated.MessageTypeProto; | ||
import io.seata.codec.protobuf.generated.UndoLogDeleteRequestProto; | ||
import io.seata.core.model.BranchType; | ||
import io.seata.core.protocol.transaction.UndoLogDeleteRequest; | ||
|
||
/** | ||
* @author yuanguoyao | ||
*/ | ||
public class UndoLogDeleteRequestConvertor implements PbConvertor<UndoLogDeleteRequest, UndoLogDeleteRequestProto> { | ||
@Override | ||
public UndoLogDeleteRequestProto convert2Proto(UndoLogDeleteRequest undoLogDeleteRequest) { | ||
final short typeCode = undoLogDeleteRequest.getTypeCode(); | ||
|
||
final AbstractMessageProto abstractMessage = AbstractMessageProto.newBuilder().setMessageType( | ||
MessageTypeProto.forNumber(typeCode)).build(); | ||
|
||
final AbstractTransactionRequestProto abstractTransactionRequestProto = AbstractTransactionRequestProto | ||
.newBuilder().setAbstractMessage( | ||
abstractMessage).build(); | ||
|
||
final UndoLogDeleteRequestProto undoLogDeleteRequestProto = UndoLogDeleteRequestProto | ||
.newBuilder() | ||
.setAbstractTransactionRequest(abstractTransactionRequestProto) | ||
.setSaveDays(undoLogDeleteRequest.getSaveDays()) | ||
.setBranchType(BranchTypeProto.valueOf(undoLogDeleteRequest.getBranchType().name())) | ||
.setResourceId(undoLogDeleteRequest.getResourceId()) | ||
.build(); | ||
|
||
return undoLogDeleteRequestProto; | ||
} | ||
|
||
@Override | ||
public UndoLogDeleteRequest convert2Model(UndoLogDeleteRequestProto undoLogDeleteRequestProto) { | ||
UndoLogDeleteRequest undoLogDeleteRequest = new UndoLogDeleteRequest(); | ||
undoLogDeleteRequest.setSaveDays((short)undoLogDeleteRequestProto.getSaveDays()); | ||
undoLogDeleteRequest.setResourceId(undoLogDeleteRequestProto.getResourceId()); | ||
undoLogDeleteRequest.setBranchType(BranchType.valueOf(undoLogDeleteRequestProto.getBranchType().name())); | ||
|
||
return undoLogDeleteRequest; | ||
} | ||
} |
13 changes: 7 additions & 6 deletions
13
codec/seata-codec-protobuf/src/main/java/io/seata/codec/protobuf/generated/MessageType.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
27 changes: 23 additions & 4 deletions
27
...eata-codec-protobuf/src/main/java/io/seata/codec/protobuf/generated/MessageTypeProto.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
68 changes: 68 additions & 0 deletions
68
...-codec-protobuf/src/main/java/io/seata/codec/protobuf/generated/UndoLogDeleteRequest.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.