-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #735 from gunlee01/feature/spring-reactive-coroutine
Feature/spring reactive coroutine
- Loading branch information
Showing
69 changed files
with
4,306 additions
and
361 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
65 changes: 65 additions & 0 deletions
65
scouter.agent.java/src/main/java/reactor/core/publisher/ScouterOptimizableOperatorProxy.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,65 @@ | ||
/* | ||
* Copyright 2015 the original author or authors. | ||
* @https://github.com/scouter-project/scouter | ||
* | ||
* 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 reactor.core.publisher; | ||
|
||
/** | ||
* @author Gun Lee ([email protected]) on 2020/08/08 | ||
*/ | ||
public class ScouterOptimizableOperatorProxy { | ||
|
||
public static final String EMPTY = ""; | ||
|
||
public static String nameOnCheckpoint(Object candidate) { | ||
if (candidate instanceof OptimizableOperator) { | ||
OptimizableOperator<?, ?> operator = ((OptimizableOperator<?, ?>) candidate).nextOptimizableSource(); | ||
if (operator == null) { | ||
return EMPTY; | ||
} | ||
if (operator instanceof MonoOnAssembly) { | ||
FluxOnAssembly.AssemblySnapshot snapshot = ((MonoOnAssembly) operator).stacktrace; | ||
if (snapshot != null && snapshot.checkpointed) { | ||
return snapshot.cached; | ||
} | ||
} else if (operator instanceof FluxOnAssembly) { | ||
FluxOnAssembly.AssemblySnapshot snapshot = ((FluxOnAssembly) operator).snapshotStack; | ||
if (snapshot != null && snapshot.checkpointed) { | ||
return snapshot.cached; | ||
} | ||
} | ||
} | ||
return EMPTY; | ||
} | ||
|
||
public static void appendSources4Dump(Object candidate, StringBuilder builder) { | ||
if (candidate instanceof OptimizableOperator) { | ||
OptimizableOperator<?, ?> operator = ((OptimizableOperator<?, ?>) candidate).nextOptimizableSource(); | ||
if (operator == null) { | ||
return; | ||
} | ||
String p1 = operator.toString(); | ||
builder.append(" (<-) ").append(p1); | ||
if (p1.startsWith("checkpoint")) { | ||
OptimizableOperator<?, ?> operator2 = operator.nextOptimizableSource(); | ||
if (operator2 != null) { | ||
builder.append(" (<-) ").append(operator2.toString()); | ||
} | ||
} | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.