-
Notifications
You must be signed in to change notification settings - Fork 0
hw05-aop - задача на аспектно-ориентированное программирование #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
inqvil
wants to merge
1
commit into
main
Choose a base branch
from
hw05-aop
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,9 @@ | ||
| plugins { | ||
| id 'java' | ||
| } | ||
|
|
||
| sourceCompatibility = JavaVersion.VERSION_17 | ||
| targetCompatibility = JavaVersion.VERSION_17 | ||
|
|
||
| dependencies { | ||
| } |
This file contains hidden or 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,14 @@ | ||
| package ru.otus; | ||
|
|
||
| import ru.otus.app.CalculateImpl; | ||
| import ru.otus.app.Ioc; | ||
|
|
||
| public class Main { | ||
| public static void main(String[] args) { | ||
| var calculate = Ioc.createCalculateLogImpl(new CalculateImpl()); | ||
| calculate.calculation(1323); | ||
|
|
||
|
|
||
|
|
||
| } | ||
| } |
This file contains hidden or 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 @@ | ||
| package ru.otus.app; | ||
|
|
||
|
|
||
| public interface Calculate { | ||
| void calculation(int number); | ||
| } |
This file contains hidden or 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,9 @@ | ||
| package ru.otus.app; | ||
|
|
||
| public class CalculateImpl implements Calculate { | ||
| @Log | ||
| @Override | ||
| public void calculation(int number) { | ||
| System.out.println(number + number); | ||
| } | ||
| } |
This file contains hidden or 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,52 @@ | ||
| package ru.otus.app; | ||
|
|
||
| import java.lang.annotation.Annotation; | ||
| import java.lang.reflect.InvocationHandler; | ||
| import java.lang.reflect.Method; | ||
| import java.lang.reflect.Proxy; | ||
| import java.util.ArrayList; | ||
| import java.util.Arrays; | ||
| import java.util.List; | ||
|
|
||
| public class Ioc { | ||
| private Ioc() {} | ||
|
|
||
| public static Calculate createCalculateLogImpl(Calculate calculate){ | ||
| InvocationHandler invocationHandler = new MyHandler(calculate); | ||
| return (Calculate) Proxy.newProxyInstance(Ioc.class.getClassLoader(), new Class<?>[]{Calculate.class}, invocationHandler); | ||
|
|
||
| } | ||
| private static class MyHandler implements InvocationHandler { | ||
| private final Calculate calculate; | ||
| private final List<Method> methodsWithAnnotation; | ||
|
|
||
| MyHandler(Calculate calculate) { | ||
| this.calculate = calculate; | ||
| List<Method> methodsWithAnnotationCalculate = new ArrayList<>(); | ||
|
|
||
| for (Method method : calculate.getClass().getDeclaredMethods()) { | ||
| for (Annotation annotation : method.getDeclaredAnnotations()) { | ||
| if (annotation.annotationType() == Log.class) { | ||
| methodsWithAnnotationCalculate.add(method); | ||
| } | ||
| } | ||
| } | ||
| this.methodsWithAnnotation = methodsWithAnnotationCalculate; | ||
| } | ||
|
|
||
|
|
||
| @Override | ||
| public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { | ||
| //проверяем по названию и по массиву аннотаций | ||
| for (Method annotatedMethod: methodsWithAnnotation) { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Отличное по скорости решение. |
||
| if (annotatedMethod.getName().equals(method.getName()) && | ||
| Arrays.toString(annotatedMethod.getParameterTypes()).equals(Arrays.toString(method.getParameterTypes()))) { | ||
| System.out.println("выполняем метод " + method.getName() + ", параметры " + Arrays.toString(args)); | ||
| break; | ||
| } | ||
| } | ||
| return method.invoke(calculate, args); | ||
| } | ||
|
|
||
| } | ||
| } | ||
This file contains hidden or 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,12 @@ | ||
|
|
||
| package ru.otus.app; | ||
|
|
||
| import java.lang.annotation.ElementType; | ||
| import java.lang.annotation.Retention; | ||
| import java.lang.annotation.RetentionPolicy; | ||
| import java.lang.annotation.Target; | ||
|
|
||
| @Retention(RetentionPolicy.RUNTIME) | ||
| @Target(ElementType.METHOD) | ||
| public @interface Log { | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Решение должно быть универсальное, а не заточенное под конкретный класс. Иначе теряется весь смысл с таким прокси, проще метод в конкретном классе сделать