-
Notifications
You must be signed in to change notification settings - Fork 998
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
feat: implemented dependency injection mechanism #1024
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
package mate.academy.lib; | ||
|
||
public @interface Component { | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Component { | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
package mate.academy.lib; | ||
|
||
public @interface Inject { | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Inject { | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,62 @@ | ||
package mate.academy.lib; | ||
|
||
import java.lang.reflect.Constructor; | ||
import java.lang.reflect.Field; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import mate.academy.service.FileReaderService; | ||
import mate.academy.service.ProductParser; | ||
import mate.academy.service.ProductService; | ||
|
||
public class Injector { | ||
private static final Injector injector = new Injector(); | ||
private final Map<Class<?>, Object> instances = new HashMap<>(); | ||
|
||
public static Injector getInjector() { | ||
return injector; | ||
} | ||
|
||
public Object getInstance(Class<?> interfaceClazz) { | ||
return null; | ||
if (instances.containsKey(interfaceClazz)) { | ||
return instances.get(interfaceClazz); | ||
} | ||
Class<?> clazz = findImplementation(interfaceClazz); | ||
if (clazz == null || !clazz.isAnnotationPresent(Component.class)) { | ||
throw new RuntimeException("No implementation found for: " + interfaceClazz.getName()); | ||
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. Consider providing more detailed error messages or logging to help diagnose issues when no implementation is found. |
||
} | ||
Object instance = createInstance(clazz); | ||
instances.put(interfaceClazz, instance); | ||
return instance; | ||
} | ||
|
||
private Class<?> findImplementation(Class<?> interfaceClazz) { | ||
if (interfaceClazz.isInterface()) { | ||
if (interfaceClazz.equals(FileReaderService.class)) { | ||
return mate.academy.service.impl.FileReaderServiceImpl.class; | ||
} else if (interfaceClazz.equals(ProductParser.class)) { | ||
return mate.academy.service.impl.ProductParserImpl.class; | ||
} else if (interfaceClazz.equals(ProductService.class)) { | ||
return mate.academy.service.impl.ProductServiceImpl.class; | ||
} | ||
} | ||
return interfaceClazz; | ||
} | ||
|
||
private Object createInstance(Class<?> clazz) { | ||
Constructor<?> constructor; | ||
try { | ||
constructor = clazz.getDeclaredConstructor(); | ||
Object instance = constructor.newInstance(); | ||
for (Field field : clazz.getDeclaredFields()) { | ||
if (field.isAnnotationPresent(Inject.class)) { | ||
field.setAccessible(true); | ||
Object fieldInstance = getInstance(field.getType()); | ||
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. Ensure that circular dependencies are not present, as this could lead to a |
||
field.set(instance, fieldInstance); | ||
} | ||
} | ||
return instance; | ||
} catch (Exception e) { | ||
throw new RuntimeException("Can't create instance of class: " + clazz.getName(), e); | ||
} | ||
} | ||
} |
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.
Ensure that the
Component
annotation is correctly applied to all classes that should be managed by the injector. If a class is missing this annotation, it will cause aRuntimeException
.