# Description of Changes Introduces TempFileManager, registry, and scheduled cleanup service; aligns all Docker images and runtime scripts to use a dedicated /tmp/stirling-pdf directory; updates controllers, utilities, and tests to use the new API; adds configurable system.tempFileManagement section. Closes #(issue_number) --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md#6-testing) for more details. --------- Co-authored-by: a <a>
77 lines
2.2 KiB
Java
77 lines
2.2 KiB
Java
package stirling.software.common.util;
|
|
|
|
import org.springframework.beans.BeansException;
|
|
import org.springframework.context.ApplicationContext;
|
|
import org.springframework.context.ApplicationContextAware;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* Helper class that provides access to the ApplicationContext. Useful for getting beans in classes
|
|
* that are not managed by Spring.
|
|
*/
|
|
@Component
|
|
public class ApplicationContextProvider implements ApplicationContextAware {
|
|
|
|
private static ApplicationContext applicationContext;
|
|
|
|
@Override
|
|
public void setApplicationContext(ApplicationContext context) throws BeansException {
|
|
applicationContext = context;
|
|
}
|
|
|
|
/**
|
|
* Get a bean by class type.
|
|
*
|
|
* @param <T> The type of the bean
|
|
* @param beanClass The class of the bean
|
|
* @return The bean instance, or null if not found
|
|
*/
|
|
public static <T> T getBean(Class<T> beanClass) {
|
|
if (applicationContext == null) {
|
|
return null;
|
|
}
|
|
try {
|
|
return applicationContext.getBean(beanClass);
|
|
} catch (BeansException e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get a bean by name and class type.
|
|
*
|
|
* @param <T> The type of the bean
|
|
* @param name The name of the bean
|
|
* @param beanClass The class of the bean
|
|
* @return The bean instance, or null if not found
|
|
*/
|
|
public static <T> T getBean(String name, Class<T> beanClass) {
|
|
if (applicationContext == null) {
|
|
return null;
|
|
}
|
|
try {
|
|
return applicationContext.getBean(name, beanClass);
|
|
} catch (BeansException e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if a bean of the specified type exists.
|
|
*
|
|
* @param beanClass The class of the bean
|
|
* @return true if the bean exists, false otherwise
|
|
*/
|
|
public static boolean containsBean(Class<?> beanClass) {
|
|
if (applicationContext == null) {
|
|
return false;
|
|
}
|
|
try {
|
|
applicationContext.getBean(beanClass);
|
|
return true;
|
|
} catch (BeansException e) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|