-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…1994) * refactor(#1960): Refactor transformation rules, add schema restore * Fix import order * Extract transformation rule priorities to enum * Add comment to skipped rules in stateful transformation visitor
- Loading branch information
1 parent
283d579
commit e680d47
Showing
70 changed files
with
1,728 additions
and
953 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
56 changes: 56 additions & 0 deletions
56
...org/apache/streampipes/connect/shared/preprocessing/SupportsNestedTransformationRule.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,56 @@ | ||
/* | ||
* 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.streampipes.connect.shared.preprocessing; | ||
|
||
import org.apache.streampipes.connect.shared.preprocessing.transform.TransformationRule; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public abstract class SupportsNestedTransformationRule implements TransformationRule { | ||
|
||
@Override | ||
public Map<String, Object> apply(Map<String, Object> event) { | ||
return applyNested(event, getEventKeys()); | ||
} | ||
|
||
protected Map<String, Object> applyNested(Map<String, Object> event, | ||
List<String> eventKey) { | ||
if (eventKey.size() == 1) { | ||
applyTransformation(event, eventKey); | ||
} else { | ||
String key = eventKey.get(0); | ||
List<String> newKeysTmpList = eventKey.subList(1, eventKey.size()); | ||
|
||
Map<String, Object> newSubEvent = | ||
applyNested((Map<String, Object>) event.get(eventKey.get(0)), newKeysTmpList); | ||
|
||
event.remove(key); | ||
event.put(key, newSubEvent); | ||
} | ||
return event; | ||
} | ||
|
||
protected abstract List<String> getEventKeys(); | ||
|
||
protected abstract void applyTransformation(Map<String, Object> event, | ||
List<String> eventKey); | ||
|
||
|
||
} |
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
67 changes: 67 additions & 0 deletions
67
...ain/java/org/apache/streampipes/connect/shared/preprocessing/convert/SchemaConverter.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,67 @@ | ||
/* | ||
* 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.streampipes.connect.shared.preprocessing.convert; | ||
|
||
import org.apache.streampipes.model.connect.rules.TransformationRuleDescription; | ||
import org.apache.streampipes.model.schema.EventSchema; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.Comparator; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
public class SchemaConverter { | ||
|
||
public EventSchema toOriginalSchema(EventSchema transformedSchema, | ||
List<TransformationRuleDescription> transformationRules) { | ||
|
||
var converter = new ToOriginalSchemaConverter( | ||
transformedSchema.getEventProperties() | ||
); | ||
|
||
return transform(transformationRules, converter, true); | ||
} | ||
|
||
public EventSchema toTransformedSchema(EventSchema originalSchema, | ||
List<TransformationRuleDescription> transformationRules) { | ||
|
||
var converter = new ToTransformedSchemaConverter( | ||
originalSchema.getEventProperties() | ||
); | ||
|
||
return transform(transformationRules, converter, false); | ||
} | ||
|
||
private EventSchema transform(List<TransformationRuleDescription> transformationRules, | ||
ProvidesConversionResult converter, | ||
boolean reverseRules) { | ||
var rules = transformationRules | ||
.stream() | ||
.sorted(Comparator.comparingInt(TransformationRuleDescription::getRulePriority)) | ||
.collect(Collectors.toCollection(ArrayList::new)); | ||
|
||
if (reverseRules) { | ||
Collections.reverse(rules); | ||
} | ||
|
||
rules.forEach(rule -> rule.accept(converter)); | ||
return new EventSchema(converter.getTransformedProperties()); | ||
} | ||
} |
Oops, something went wrong.