/addon-web-mvc-controller/addon/src/main/java/org/springframework/roo/addon/web/mvc/controller/addon/responses/json/JSONMVCResponseService.java

http://github.com/SpringSource/spring-roo · Java · 223 lines · 119 code · 37 blank · 67 comment · 3 complexity · b80f2d3188ed6a621cac4813e435e8e7 MD5 · raw file

  1. package org.springframework.roo.addon.web.mvc.controller.addon.responses.json;
  2. import org.apache.commons.lang3.Validate;
  3. import org.apache.felix.scr.annotations.Component;
  4. import org.apache.felix.scr.annotations.Service;
  5. import org.osgi.framework.BundleContext;
  6. import org.osgi.service.component.ComponentContext;
  7. import org.springframework.roo.addon.jpa.addon.entity.JpaEntityMetadata;
  8. import org.springframework.roo.addon.web.mvc.controller.addon.responses.ControllerMVCResponseService;
  9. import org.springframework.roo.classpath.TypeLocationService;
  10. import org.springframework.roo.classpath.TypeManagementService;
  11. import org.springframework.roo.classpath.details.ClassOrInterfaceTypeDetails;
  12. import org.springframework.roo.classpath.details.ClassOrInterfaceTypeDetailsBuilder;
  13. import org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder;
  14. import org.springframework.roo.model.JavaType;
  15. import org.springframework.roo.model.RooJavaType;
  16. import org.springframework.roo.project.FeatureNames;
  17. import org.springframework.roo.project.ProjectOperations;
  18. import org.springframework.roo.project.maven.Pom;
  19. import org.springframework.roo.support.osgi.ServiceInstaceManager;
  20. /**
  21. * Implementation of ControllerMVCResponseService that provides
  22. * JSON Response types.
  23. *
  24. * With this implementation, Spring Roo will be able to provide JSON response
  25. * types during controller generations.
  26. *
  27. * @author Juan Carlos García
  28. * @author Paula Navarro
  29. * @since 2.0
  30. */
  31. @Component
  32. @Service
  33. public class JSONMVCResponseService implements ControllerMVCResponseService {
  34. private static final String RESPONSE_TYPE = "JSON";
  35. private static final String CONTROLLER_NAME_MODIFIER = "Json";
  36. // ------------ OSGi component attributes ----------------
  37. private BundleContext context;
  38. private ServiceInstaceManager serviceInstaceManager = new ServiceInstaceManager();
  39. protected void activate(final ComponentContext context) {
  40. this.context = context.getBundleContext();
  41. serviceInstaceManager.activate(this.context);
  42. }
  43. /**
  44. * This operation returns the Feature name. In this case,
  45. * the Feature name is the same as the response type.
  46. *
  47. * @return String with JSON as Feature name
  48. */
  49. @Override
  50. public String getName() {
  51. return getResponseType();
  52. }
  53. /**
  54. * This operation checks if this feature is installed in module.
  55. * JSON is installed in module if Spring MVC has been installed before.
  56. *
  57. * @return true if Spring MVC has been installed, if not return false.
  58. */
  59. @Override
  60. public boolean isInstalledInModule(String moduleName) {
  61. // Check if JSON MVC and Spring MVC config exists
  62. return getProjectOperations().isFeatureInstalled(FeatureNames.MVC);
  63. }
  64. /**
  65. * This operation returns the JSON response type.
  66. *
  67. * @return String with JSON as response type
  68. */
  69. @Override
  70. public String getResponseType() {
  71. return RESPONSE_TYPE;
  72. }
  73. /**
  74. * This operation returns the annotation type @RooJSON
  75. *
  76. * @return JavaType with the JSON annotation type
  77. */
  78. @Override
  79. public JavaType getAnnotation() {
  80. // Generating @RooJSON annotation
  81. return RooJavaType.ROO_JSON;
  82. }
  83. /**
  84. * This operation annotates a controller with the JSON annotation
  85. *
  86. * @param controller JavaType with the controller to be annotated.
  87. */
  88. @Override
  89. public void annotate(JavaType controller) {
  90. Validate.notNull(controller, "ERROR: You must provide a valid controller");
  91. ClassOrInterfaceTypeDetails controllerDetails =
  92. getTypeLocationService().getTypeDetails(controller);
  93. // Check if provided controller exists on current project
  94. Validate.notNull(controllerDetails, "ERROR: You must provide an existing controller");
  95. // Check if provided controller has been annotated with @RooController
  96. Validate.notNull(controllerDetails.getAnnotation(RooJavaType.ROO_CONTROLLER),
  97. "ERROR: You must provide a controller annotated with @RooController");
  98. // Add JSON annotation
  99. ClassOrInterfaceTypeDetailsBuilder typeBuilder =
  100. new ClassOrInterfaceTypeDetailsBuilder(controllerDetails);
  101. typeBuilder.addAnnotation(new AnnotationMetadataBuilder(getAnnotation()));
  102. // Write changes on provided controller
  103. getTypeManagementService().createOrUpdateTypeOnDisk(typeBuilder.build());
  104. }
  105. /**
  106. * This operation will check if some controller has the @RooJSON annotation
  107. *
  108. * @param controller JavaType with controller to check
  109. * @return true if provided controller has the JSON responseType.
  110. * If not, return false.
  111. */
  112. @Override
  113. public boolean hasResponseType(JavaType controller) {
  114. Validate.notNull(controller, "ERROR: You must provide a valid controller");
  115. ClassOrInterfaceTypeDetails controllerDetails =
  116. getTypeLocationService().getTypeDetails(controller);
  117. if (controllerDetails == null) {
  118. return false;
  119. }
  120. return controllerDetails.getAnnotation(getAnnotation()) != null;
  121. }
  122. /**
  123. * This operation will install all the necessary items to be able to use
  124. * JSON response type.
  125. *
  126. * @param module Pom with the module where this response type should
  127. * be installed.
  128. */
  129. @Override
  130. public void install(Pom module) {
  131. // Managed by ControllerOperationsImpl
  132. }
  133. @Override
  134. public JavaType getMainControllerAnnotation() {
  135. // JSON Response Service doesn't provide main controller
  136. // annotation
  137. return null;
  138. }
  139. @Override
  140. public JavaType getMainController() {
  141. // JSON Response Service doesn't provide main controller
  142. return null;
  143. }
  144. // Getting OSGi services
  145. private ProjectOperations getProjectOperations() {
  146. return serviceInstaceManager.getServiceInstance(this, ProjectOperations.class);
  147. }
  148. private TypeLocationService getTypeLocationService() {
  149. return serviceInstaceManager.getServiceInstance(this, TypeLocationService.class);
  150. }
  151. private TypeManagementService getTypeManagementService() {
  152. return serviceInstaceManager.getServiceInstance(this, TypeManagementService.class);
  153. }
  154. @Override
  155. public String getControllerNameModifier() {
  156. return CONTROLLER_NAME_MODIFIER;
  157. }
  158. @Override
  159. public boolean requiresJsonDeserializer() {
  160. return true;
  161. }
  162. @Override
  163. public boolean requiresJsonMixin() {
  164. return true;
  165. }
  166. @Override
  167. public boolean providesViews() {
  168. // JSON doesn't provide views
  169. return false;
  170. }
  171. @Override
  172. public boolean generateLinkFactory() {
  173. return false;
  174. }
  175. @Override
  176. public void completeCollectionController(JavaType collectionController,
  177. JpaEntityMetadata entityMetadata, ClassOrInterfaceTypeDetails serviceDetails,
  178. ClassOrInterfaceTypeDetailsBuilder cidBuilder) {
  179. // Nothing to do here
  180. }
  181. @Override
  182. public void completeItemController(JavaType itemController, JpaEntityMetadata entityMetadata,
  183. ClassOrInterfaceTypeDetails serviceDetails, ClassOrInterfaceTypeDetailsBuilder cidBuilder) {
  184. // Nothing to do here
  185. }
  186. }