-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
747ab9d
commit 829be32
Showing
23 changed files
with
2,632 additions
and
3 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
428 changes: 428 additions & 0 deletions
428
protocol/src/main/java/com/zfoo/protocol/serializer/scala/CodeGenerateScala.java
Large diffs are not rendered by default.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
protocol/src/main/java/com/zfoo/protocol/serializer/scala/IScalaSerializer.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,34 @@ | ||
/* | ||
* Copyright (C) 2020 The zfoo Authors | ||
* | ||
* 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 com.zfoo.protocol.serializer.scala; | ||
|
||
import com.zfoo.protocol.model.Pair; | ||
import com.zfoo.protocol.registration.field.IFieldRegistration; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
/** | ||
* @author godotg | ||
*/ | ||
public interface IScalaSerializer { | ||
/** | ||
* 获取属性的类型,默认值 | ||
*/ | ||
Pair<String, String> field(Field field, IFieldRegistration fieldRegistration); | ||
|
||
void writeObject(StringBuilder builder, String objectStr, int deep, Field field, IFieldRegistration fieldRegistration); | ||
|
||
String readObject(StringBuilder builder, int deep, Field field, IFieldRegistration fieldRegistration); | ||
|
||
} |
111 changes: 111 additions & 0 deletions
111
protocol/src/main/java/com/zfoo/protocol/serializer/scala/ScalaArraySerializer.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,111 @@ | ||
/* | ||
* Copyright (C) 2020 The zfoo Authors | ||
* | ||
* 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 com.zfoo.protocol.serializer.scala; | ||
|
||
import com.zfoo.protocol.generate.GenerateProtocolFile; | ||
import com.zfoo.protocol.model.Pair; | ||
import com.zfoo.protocol.registration.field.ArrayField; | ||
import com.zfoo.protocol.registration.field.IFieldRegistration; | ||
import com.zfoo.protocol.serializer.CodeLanguage; | ||
import com.zfoo.protocol.serializer.CutDownArraySerializer; | ||
import com.zfoo.protocol.util.StringUtils; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
import static com.zfoo.protocol.util.FileUtils.LS; | ||
|
||
/** | ||
* @author godotg | ||
*/ | ||
public class ScalaArraySerializer implements IScalaSerializer { | ||
|
||
@Override | ||
public Pair<String, String> field(Field field, IFieldRegistration fieldRegistration) { | ||
var type = StringUtils.format("Array[{}]", CodeGenerateScala.toScalaClassName(field.getType().getComponentType().getSimpleName())); | ||
return new Pair<>(type, "_"); | ||
} | ||
|
||
@Override | ||
public void writeObject(StringBuilder builder, String objectStr, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
GenerateProtocolFile.addTab(builder, deep); | ||
if (CutDownArraySerializer.getInstance().writeObject(builder, objectStr, field, fieldRegistration, CodeLanguage.Scala)) { | ||
return; | ||
} | ||
|
||
ArrayField arrayField = (ArrayField) fieldRegistration; | ||
|
||
builder.append(StringUtils.format("buffer.writeInt({}.length)", objectStr)).append(LS); | ||
GenerateProtocolFile.addTab(builder, deep); | ||
String length = "length" + GenerateProtocolFile.localVariableId++; | ||
builder.append(StringUtils.format("val {} = {}.length", length, objectStr)).append(LS); | ||
|
||
String i = "i" + GenerateProtocolFile.localVariableId++; | ||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("for ({} <- 0 until {}) {", i, length)).append(LS); | ||
GenerateProtocolFile.addTab(builder, deep + 1); | ||
String element = "element" + GenerateProtocolFile.localVariableId++; | ||
builder.append(StringUtils.format("val {} = {}({})", element, objectStr, i)).append(LS); | ||
|
||
CodeGenerateScala.scalaSerializer(arrayField.getArrayElementRegistration().serializer()) | ||
.writeObject(builder, element, deep + 1, field, arrayField.getArrayElementRegistration()); | ||
|
||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append("}").append(LS); | ||
} | ||
|
||
@Override | ||
public String readObject(StringBuilder builder, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
GenerateProtocolFile.addTab(builder, deep); | ||
var cutDown = CutDownArraySerializer.getInstance().readObject(builder, field, fieldRegistration, CodeLanguage.Scala); | ||
if (cutDown != null) { | ||
return cutDown; | ||
} | ||
|
||
|
||
var arrayField = (ArrayField) fieldRegistration; | ||
var result = "result" + GenerateProtocolFile.localVariableId++; | ||
|
||
var typeName = CodeGenerateScala.toScalaClassName(arrayField.getType().getSimpleName()); | ||
|
||
var i = "index" + GenerateProtocolFile.localVariableId++; | ||
var init = "init" + GenerateProtocolFile.localVariableId++; | ||
var size = "size" + GenerateProtocolFile.localVariableId++; | ||
builder.append(StringUtils.format("val {} = buffer.readInt", size)).append(LS); | ||
|
||
GenerateProtocolFile.addTab(builder, deep); | ||
var pair = CodeGenerateScala.scalaSerializer(arrayField.getArrayElementRegistration().serializer()).field(field, arrayField.getArrayElementRegistration()); | ||
var defaultValue = pair.getValue(); | ||
if (defaultValue.equals("null")) { | ||
defaultValue = StringUtils.format("{}()", typeName); | ||
} | ||
builder.append(StringUtils.format("val {} = new mutable.ArrayBuffer[{}]()", result, typeName)).append(LS); | ||
|
||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("if ({} > 0) {", size)).append(LS); | ||
|
||
GenerateProtocolFile.addTab(builder, deep + 1); | ||
builder.append(StringUtils.format("for ({} <- 0 until {}) {", i, size)).append(LS); | ||
var readObject = CodeGenerateScala.scalaSerializer(arrayField.getArrayElementRegistration().serializer()) | ||
.readObject(builder, deep + 2, field, arrayField.getArrayElementRegistration()); | ||
GenerateProtocolFile.addTab(builder, deep + 2); | ||
builder.append(StringUtils.format("{}.addOne({})", result, readObject)); | ||
builder.append(LS); | ||
GenerateProtocolFile.addTab(builder, deep + 1); | ||
builder.append("}").append(LS); | ||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append("}").append(LS); | ||
|
||
return result + ".toArray"; | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
protocol/src/main/java/com/zfoo/protocol/serializer/scala/ScalaBooleanSerializer.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,49 @@ | ||
/* | ||
* Copyright (C) 2020 The zfoo Authors | ||
* | ||
* 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 com.zfoo.protocol.serializer.scala; | ||
|
||
import com.zfoo.protocol.generate.GenerateProtocolFile; | ||
import com.zfoo.protocol.model.Pair; | ||
import com.zfoo.protocol.registration.field.IFieldRegistration; | ||
import com.zfoo.protocol.util.StringUtils; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
import static com.zfoo.protocol.util.FileUtils.LS; | ||
|
||
/** | ||
* @author godotg | ||
*/ | ||
public class ScalaBooleanSerializer implements IScalaSerializer { | ||
|
||
@Override | ||
public Pair<String, String> field(Field field, IFieldRegistration fieldRegistration) { | ||
return new Pair<>("Boolean", "false"); | ||
} | ||
|
||
@Override | ||
public void writeObject(StringBuilder builder, String objectStr, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("buffer.writeBool({})", objectStr)).append(LS); | ||
} | ||
|
||
@Override | ||
public String readObject(StringBuilder builder, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
String result = "result" + GenerateProtocolFile.localVariableId++; | ||
|
||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("val {} = buffer.readBool", result)).append(LS); | ||
return result; | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
protocol/src/main/java/com/zfoo/protocol/serializer/scala/ScalaByteSerializer.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,50 @@ | ||
/* | ||
* Copyright (C) 2020 The zfoo Authors | ||
* | ||
* 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 com.zfoo.protocol.serializer.scala; | ||
|
||
import com.zfoo.protocol.generate.GenerateProtocolFile; | ||
import com.zfoo.protocol.model.Pair; | ||
import com.zfoo.protocol.registration.field.IFieldRegistration; | ||
import com.zfoo.protocol.util.StringUtils; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
import static com.zfoo.protocol.util.FileUtils.LS; | ||
|
||
/** | ||
* @author godotg | ||
*/ | ||
public class ScalaByteSerializer implements IScalaSerializer { | ||
|
||
@Override | ||
public Pair<String, String> field(Field field, IFieldRegistration fieldRegistration) { | ||
return new Pair<>("Byte", "0"); | ||
} | ||
|
||
@Override | ||
public void writeObject(StringBuilder builder, String objectStr, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("buffer.writeByte({})", objectStr)).append(LS); | ||
} | ||
|
||
@Override | ||
public String readObject(StringBuilder builder, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
String result = "result" + GenerateProtocolFile.localVariableId++; | ||
|
||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("val {} = buffer.readByte", result)).append(LS); | ||
return result; | ||
} | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
protocol/src/main/java/com/zfoo/protocol/serializer/scala/ScalaDoubleSerializer.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,50 @@ | ||
/* | ||
* Copyright (C) 2020 The zfoo Authors | ||
* | ||
* 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 com.zfoo.protocol.serializer.scala; | ||
|
||
import com.zfoo.protocol.generate.GenerateProtocolFile; | ||
import com.zfoo.protocol.model.Pair; | ||
import com.zfoo.protocol.registration.field.IFieldRegistration; | ||
import com.zfoo.protocol.util.StringUtils; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
import static com.zfoo.protocol.util.FileUtils.LS; | ||
|
||
/** | ||
* @author godotg | ||
*/ | ||
public class ScalaDoubleSerializer implements IScalaSerializer { | ||
|
||
@Override | ||
public Pair<String, String> field(Field field, IFieldRegistration fieldRegistration) { | ||
return new Pair<>("Double", "0D"); | ||
} | ||
|
||
@Override | ||
public void writeObject(StringBuilder builder, String objectStr, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("buffer.writeDouble({})", objectStr)).append(LS); | ||
} | ||
|
||
@Override | ||
public String readObject(StringBuilder builder, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
String result = "result" + GenerateProtocolFile.localVariableId++; | ||
|
||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("val {} = buffer.readDouble", result)).append(LS); | ||
return result; | ||
} | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
protocol/src/main/java/com/zfoo/protocol/serializer/scala/ScalaFloatSerializer.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,50 @@ | ||
/* | ||
* Copyright (C) 2020 The zfoo Authors | ||
* | ||
* 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 com.zfoo.protocol.serializer.scala; | ||
|
||
import com.zfoo.protocol.generate.GenerateProtocolFile; | ||
import com.zfoo.protocol.model.Pair; | ||
import com.zfoo.protocol.registration.field.IFieldRegistration; | ||
import com.zfoo.protocol.util.StringUtils; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
import static com.zfoo.protocol.util.FileUtils.LS; | ||
|
||
/** | ||
* @author godotg | ||
*/ | ||
public class ScalaFloatSerializer implements IScalaSerializer { | ||
|
||
@Override | ||
public Pair<String, String> field(Field field, IFieldRegistration fieldRegistration) { | ||
return new Pair<>("Float", "0f"); | ||
} | ||
|
||
@Override | ||
public void writeObject(StringBuilder builder, String objectStr, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("buffer.writeFloat({})", objectStr)).append(LS); | ||
} | ||
|
||
@Override | ||
public String readObject(StringBuilder builder, int deep, Field field, IFieldRegistration fieldRegistration) { | ||
String result = "result" + GenerateProtocolFile.localVariableId++; | ||
|
||
GenerateProtocolFile.addTab(builder, deep); | ||
builder.append(StringUtils.format("val {} = buffer.readFloat", result)).append(LS); | ||
return result; | ||
} | ||
|
||
} |
Oops, something went wrong.