forked from apache/eventmesh
-
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.
Add spatial data type and license details, adjust source/sink settings
- Loading branch information
Showing
11 changed files
with
181 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
17 changes: 17 additions & 0 deletions
17
...ctor-jdbc/src/main/java/org/apache/eventmesh/connector/jdbc/type/DatabaseTypeDialect.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
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
17 changes: 17 additions & 0 deletions
17
...-connector-jdbc/src/main/java/org/apache/eventmesh/connector/jdbc/type/mysql/BitType.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
17 changes: 17 additions & 0 deletions
17
...nector-jdbc/src/main/java/org/apache/eventmesh/connector/jdbc/type/mysql/BooleanType.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
49 changes: 49 additions & 0 deletions
49
...onnector-jdbc/src/main/java/org/apache/eventmesh/connector/jdbc/type/mysql/BytesType.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 @@ | ||
package org.apache.eventmesh.connector.jdbc.type.mysql; | ||
|
||
import org.apache.eventmesh.connector.jdbc.dialect.DatabaseDialect; | ||
import org.apache.eventmesh.connector.jdbc.table.catalog.Column; | ||
import org.apache.eventmesh.connector.jdbc.type.eventmesh.BytesEventMeshDataType; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.Optional; | ||
|
||
|
||
public class BytesType extends BytesEventMeshDataType { | ||
|
||
public static final BytesType INSTANCE = new BytesType(); | ||
|
||
private static final List<String> BINARY_REGISTRATION_KEYS = Arrays.asList("BINARY", "binary", "VARBINARY", "varbinary"); | ||
|
||
private static final List<String> BLOB_REGISTRATION_KEYS = Arrays.asList("TINYBLOB", "tinyblob", "BLOB", "blob", "MEDIUMBLOB", "mediumblob", | ||
"LONGBLOB", "longblob"); | ||
|
||
@Override | ||
public List<String> ofRegistrationKeys() { | ||
final List<String> registrationCodes = super.ofRegistrationKeys(); | ||
registrationCodes.addAll(BINARY_REGISTRATION_KEYS); | ||
registrationCodes.addAll(BLOB_REGISTRATION_KEYS); | ||
return registrationCodes; | ||
} | ||
|
||
public String getDefaultValue(DatabaseDialect<?> databaseDialect, Column<?> column) { | ||
//https://dev.mysql.com/doc/refman/8.0/en/blob.html | ||
//BLOB and TEXT columns cannot have DEFAULT values | ||
if (BLOB_REGISTRATION_KEYS.contains(column.getNativeType())) { | ||
return ""; | ||
} | ||
// binary use hex string,e.g: 0x01020304 | ||
return column.getDefaultValue() != null ? "Ox" + column.getDefaultValue() : "NULL"; | ||
} | ||
|
||
public String getTypeName(Column<?> column) { | ||
if (BLOB_REGISTRATION_KEYS.contains(column.getNativeType())) { | ||
return column.getNativeType(); | ||
} | ||
if (BINARY_REGISTRATION_KEYS.contains(column.getNativeType())) { | ||
final int lengthValue = Optional.ofNullable(column.getColumnLength()).orElse(1L).intValue(); | ||
return String.format("%s(%d)", column.getNativeType(), lengthValue); | ||
} | ||
return "binary(1)"; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...connector-jdbc/src/main/java/org/apache/eventmesh/connector/jdbc/type/mysql/EnumType.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
17 changes: 17 additions & 0 deletions
17
...-connector-jdbc/src/main/java/org/apache/eventmesh/connector/jdbc/type/mysql/SetType.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
39 changes: 39 additions & 0 deletions
39
...or-jdbc/src/main/java/org/apache/eventmesh/connector/jdbc/type/mysql/SpatialDataType.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,39 @@ | ||
/* | ||
* 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.eventmesh.connector.jdbc.type.mysql; | ||
|
||
import org.apache.eventmesh.connector.jdbc.table.type.SQLType; | ||
import org.apache.eventmesh.connector.jdbc.type.AbstractType; | ||
|
||
|
||
/** | ||
* The SpatialDataType class is an abstract class that extends the AbstractType class. | ||
* It represents a spatial data type for storing byte arrays. | ||
* | ||
* <p> | ||
* The SpatialDataType class provides constructors for specifying the type class, | ||
* SQL type, and name of the spatial data type. | ||
* </p> | ||
* | ||
*/ | ||
public abstract class SpatialDataType extends AbstractType<byte[]> { | ||
|
||
public SpatialDataType(Class<byte[]> typeClass, SQLType sqlType, String name) { | ||
super(typeClass, sqlType, name); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -15,5 +15,5 @@ | |
# limitations under the License. | ||
# | ||
|
||
sourceEnable: false | ||
sinkEnable: true | ||
sourceEnable: true | ||
sinkEnable: false |