Package io.debezium.util
Interface SchemaNameAdjuster
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A adjuster for the names of change data message schemas. Currently, this solely implements the rules required for
using these schemas in Avro messages. Avro rules for
schema fullnames are as follows:
Each has a fullname that is composed of two parts; a name and a namespace. Equality of names is defined on the
fullname.
The name portion of a fullname, record field names, and enum symbols must start with a Latin letter or underscore
character (e.g., [A-Z,a-z,_]); and subsequent characters must be Latin alphanumeric or the underscore (
A namespace is a dot-separated sequence of such names.
Equality of names (including field names and enum symbols) as well as fullnames is case-sensitive.
_)
characters (e.g., [A-Z,a-z,0-9,_]).
A SchemaNameAdjuster can determine if the supplied fullname follows these Avro rules.
- Author:
- Randall Hauch
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceFunction used to determine the replacement for a character that is not valid per Avro rules.static interfaceFunction used to report that an original value was replaced with an Avro-compatible string. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SchemaNameAdjusterstatic final org.slf4j.Loggerstatic final SchemaNameAdjuster -
Method Summary
Modifier and TypeMethodDescriptionConvert the proposed string to a valid Avro fullname, replacing all invalid characters with the underscore ('_') character.static SchemaNameAdjusterCreate a stateful Avro fullname adjuster that logs a warning the first time an invalid fullname is seen and replaced with a valid fullname and throws an exception.static SchemaNameAdjustercreate()Create a stateful Avro fullname adjuster that logs a warning the first time an invalid fullname is seen and replaced with a valid fullname, and throws an error if the replacement conflicts with that of a different original.static SchemaNameAdjustercreate(char replacement, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Create a stateful Avro fullname adjuster that calls the suppliedSchemaNameAdjuster.ReplacementOccurredfunction when an invalid fullname is seen and replaced with a valid fullname.static SchemaNameAdjustercreate(SchemaNameAdjuster.ReplacementFunction function, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Create a stateful Avro fullname adjuster that calls the suppliedSchemaNameAdjuster.ReplacementOccurredfunction when an invalid fullname is seen and replaced with a valid fullname.static SchemaNameAdjustercreate(SchemaNameAdjuster.ReplacementOccurred uponConflict) Create a stateful Avro fullname adjuster that logs a warning the first time an invalid fullname is seen and replaced with a valid fullname.static SchemaNameAdjustercreate(String replacement, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Create a stateful Avro fullname adjuster that calls the suppliedSchemaNameAdjuster.ReplacementOccurredfunction when an invalid fullname is seen and replaced with a valid fullname.static booleanisValidFullname(String fullname) Determine if the supplied string is a valid Avro namespace.static booleanisValidFullnameFirstCharacter(char c) Determine if the supplied character is a valid first character for Avro fullnames.static booleanisValidFullnameNonFirstCharacter(char c) Determine if the supplied character is a valid non-first character for Avro fullnames.static StringvalidFullname(String proposedName) Convert the proposed string to a valid Avro fullname, replacing all invalid characters with the underscore ('_') character.static StringvalidFullname(String proposedName, SchemaNameAdjuster.ReplacementFunction replacement) Convert the proposed string to a valid Avro fullname, using the supplied function to replace all invalid characters.static StringvalidFullname(String proposedName, SchemaNameAdjuster.ReplacementFunction replacement, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Convert the proposed string to a valid Avro fullname, using the supplied function to replace all invalid characters.static StringvalidFullname(String proposedName, String replacement) Convert the proposed string to a valid Avro fullname, replacing all invalid characters with the supplied string.
-
Field Details
-
LOGGER
static final org.slf4j.Logger LOGGER -
NO_OP
-
AVRO
-
-
Method Details
-
adjust
Convert the proposed string to a valid Avro fullname, replacing all invalid characters with the underscore ('_') character.- Parameters:
proposedName- the proposed fullname; may not be null- Returns:
- the valid fullname for Avro; never null
-
avroAdjuster
Create a stateful Avro fullname adjuster that logs a warning the first time an invalid fullname is seen and replaced with a valid fullname and throws an exception. This method replaces all invalid characters with the underscore character ('_').- Returns:
- the validator; never null
-
create
Create a stateful Avro fullname adjuster that logs a warning the first time an invalid fullname is seen and replaced with a valid fullname, and throws an error if the replacement conflicts with that of a different original. This method replaces all invalid characters with the underscore character ('_'). -
create
Create a stateful Avro fullname adjuster that logs a warning the first time an invalid fullname is seen and replaced with a valid fullname. This method replaces all invalid characters with the underscore character ('_').- Parameters:
uponConflict- the function to be called when there is a conflict and after that conflict is logged; may be null- Returns:
- the validator; never null
-
create
static SchemaNameAdjuster create(char replacement, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Create a stateful Avro fullname adjuster that calls the suppliedSchemaNameAdjuster.ReplacementOccurredfunction when an invalid fullname is seen and replaced with a valid fullname.- Parameters:
replacement- the character that should be used to replace all invalid charactersuponReplacement- the function called each time the original fullname is replaced; may be null- Returns:
- the adjuster; never null
-
create
static SchemaNameAdjuster create(String replacement, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Create a stateful Avro fullname adjuster that calls the suppliedSchemaNameAdjuster.ReplacementOccurredfunction when an invalid fullname is seen and replaced with a valid fullname.- Parameters:
replacement- the character sequence that should be used to replace all invalid charactersuponReplacement- the function called each time the original fullname is replaced; may be null- Returns:
- the adjuster; never null
-
create
static SchemaNameAdjuster create(SchemaNameAdjuster.ReplacementFunction function, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Create a stateful Avro fullname adjuster that calls the suppliedSchemaNameAdjuster.ReplacementOccurredfunction when an invalid fullname is seen and replaced with a valid fullname.- Parameters:
function- the replacement functionuponReplacement- the function called each time the original fullname is replaced; may be null- Returns:
- the adjuster; never null
-
isValidFullname
Determine if the supplied string is a valid Avro namespace.- Parameters:
fullname- the name to be used as an Avro fullname; may not be null- Returns:
trueif the fullname satisfies Avro rules, orfalseotherwise
-
isValidFullnameFirstCharacter
static boolean isValidFullnameFirstCharacter(char c) Determine if the supplied character is a valid first character for Avro fullnames.- Parameters:
c- the character- Returns:
trueif the character is a valid first character of an Avro fullname, orfalseotherwise- See Also:
-
isValidFullnameNonFirstCharacter
static boolean isValidFullnameNonFirstCharacter(char c) Determine if the supplied character is a valid non-first character for Avro fullnames.- Parameters:
c- the character- Returns:
trueif the character is a valid non-first character of an Avro fullname, orfalseotherwise- See Also:
-
validFullname
Convert the proposed string to a valid Avro fullname, replacing all invalid characters with the underscore ('_') character.- Parameters:
proposedName- the proposed fullname; may not be null- Returns:
- the valid fullname for Avro; never null
-
validFullname
Convert the proposed string to a valid Avro fullname, replacing all invalid characters with the supplied string.- Parameters:
proposedName- the proposed fullname; may not be nullreplacement- the character sequence that should be used to replace all invalid characters- Returns:
- the valid fullname for Avro; never null
-
validFullname
static String validFullname(String proposedName, SchemaNameAdjuster.ReplacementFunction replacement) Convert the proposed string to a valid Avro fullname, using the supplied function to replace all invalid characters.- Parameters:
proposedName- the proposed fullname; may not be nullreplacement- the character sequence that should be used to replace all invalid characters- Returns:
- the valid fullname for Avro; never null
-
validFullname
static String validFullname(String proposedName, SchemaNameAdjuster.ReplacementFunction replacement, SchemaNameAdjuster.ReplacementOccurred uponReplacement) Convert the proposed string to a valid Avro fullname, using the supplied function to replace all invalid characters.- Parameters:
proposedName- the proposed fullname; may not be nullreplacement- the character sequence that should be used to replace all invalid charactersuponReplacement- the function to be called every time the proposed name is invalid and replaced; may be null- Returns:
- the valid fullname for Avro; never null
-