-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support
FlowableIdGenerator
(#456)
- Loading branch information
Showing
7 changed files
with
103 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dependencies { | ||
implementation(libs.flowableEngineCommon) | ||
api(project(":cosid-core")) | ||
testImplementation(project(":cosid-test")) | ||
|
||
} |
38 changes: 38 additions & 0 deletions
38
cosid-flowable/src/main/java/me/ahoo/cosid/flowable/FlowableIdGenerator.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,38 @@ | ||
/* | ||
* Copyright [2021-present] [ahoo wang <[email protected]> (https://github.com/Ahoo-Wang)]. | ||
* 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 me.ahoo.cosid.flowable; | ||
|
||
import me.ahoo.cosid.provider.IdGeneratorProvider; | ||
import me.ahoo.cosid.provider.LazyIdGenerator; | ||
|
||
/** | ||
* Flowable IdGenerator Based on CosId. | ||
*/ | ||
public class FlowableIdGenerator implements org.flowable.common.engine.impl.cfg.IdGenerator { | ||
/** | ||
* The key of the system property that can be used to set the id generator name. | ||
*/ | ||
public static final String ID_KEY = "cosid.flowable"; | ||
private static final String ID_NAME; | ||
private static final LazyIdGenerator ID_GENERATOR; | ||
|
||
static { | ||
ID_NAME = System.getProperty(ID_KEY, IdGeneratorProvider.SHARE); | ||
ID_GENERATOR = new LazyIdGenerator(ID_NAME); | ||
} | ||
|
||
public String getNextId() { | ||
return ID_GENERATOR.generateAsString(); | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
cosid-flowable/src/test/java/me/ahoo/cosid/flowable/FlowableIdGeneratorTest.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,35 @@ | ||
/* | ||
* Copyright [2021-present] [ahoo wang <[email protected]> (https://github.com/Ahoo-Wang)]. | ||
* 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 me.ahoo.cosid.flowable; | ||
|
||
import static me.ahoo.cosid.flowable.FlowableIdGenerator.ID_KEY; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.*; | ||
|
||
import me.ahoo.cosid.provider.DefaultIdGeneratorProvider; | ||
import me.ahoo.cosid.test.MockIdGenerator; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junitpioneer.jupiter.SetSystemProperty; | ||
|
||
class FlowableIdGeneratorTest { | ||
|
||
@SetSystemProperty(key = ID_KEY, value = "flowable") | ||
@Test | ||
void getNextId() { | ||
DefaultIdGeneratorProvider.INSTANCE.set("flowable", MockIdGenerator.usePrefix("flowable_")); | ||
String id = new FlowableIdGenerator().getNextId(); | ||
assertThat(id, startsWith("flowable_")); | ||
} | ||
} |
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