/sql-processor/src/main/java/org/sqlproc/engine/SqlRuntimeContext.java

http://github.com/hudec/sql-processor · Java · 287 lines · 31 code · 27 blank · 229 comment · 0 complexity · 34dadb6b41bad60a5ceb679324ce58f4 MD5 · raw file

  1. package org.sqlproc.engine;
  2. import org.sqlproc.engine.plugin.BeanUtilsPlugin.GetterType;
  3. import org.sqlproc.engine.plugin.SqlPluginFactory;
  4. import org.sqlproc.engine.type.SqlTypeFactory;
  5. /**
  6. * The public runtime context.
  7. * <p>
  8. * For more info please see the <a href="https://github.com/hudec/sql-processor/wiki">Tutorials</a>.
  9. *
  10. * @author <a href="mailto:Vladimir.Hudec@gmail.com">Vladimir Hudec</a>
  11. */
  12. public interface SqlRuntimeContext {
  13. /**
  14. * Convenient method to obtain a String feature based on the name.
  15. *
  16. * @param name
  17. * name of the feature
  18. * @return value of the feature
  19. */
  20. String getFeature(String name);
  21. /**
  22. * Convenient method to obtain a String feature based on the name.
  23. *
  24. * @param feature
  25. * the feature
  26. * @return value of the feature
  27. */
  28. String getFeature(SqlFeature feature);
  29. /**
  30. * Convenient method to obtain a String feature based on the name.
  31. *
  32. * @param feature
  33. * the feature
  34. * @param specName
  35. * the specific name
  36. * @return value of the feature
  37. */
  38. String getFeature(SqlFeature feature, String specName);
  39. /**
  40. * Convenient method to obtain a String array features based on the name.
  41. *
  42. * @param feature
  43. * the feature
  44. * @return the array of the feature values
  45. */
  46. String[] getFeatures(String feature);
  47. /**
  48. * Convenient method to obtain a boolean feature based on the name.
  49. *
  50. * @param feature
  51. * the feature
  52. * @return value of the feature
  53. */
  54. boolean isFeature(SqlFeature feature);
  55. /**
  56. * Convenient method to obtain an Integer feature based on the name.
  57. *
  58. * @param feature
  59. * the feature
  60. * @return value of the feature
  61. */
  62. Integer getFeatureAsInt(SqlFeature feature);
  63. /**
  64. * Convenient method to obtain an Object feature based on the name.
  65. *
  66. * @param feature
  67. * the feature
  68. * @return value of the feature
  69. */
  70. Object getFeatureAsObject(SqlFeature feature);
  71. /**
  72. * Returns the factory responsible for the META types construction.
  73. *
  74. * @return the factory for the META types construction
  75. */
  76. SqlTypeFactory getTypeFactory();
  77. /**
  78. * Returns the factory responsible for the SQL Processor plugins.
  79. *
  80. * @return the factory for the SQL Processor plugins
  81. */
  82. SqlPluginFactory getPluginFactory();
  83. /**
  84. * Returns the new class instance
  85. *
  86. * @param clazz
  87. * the class to be constructed
  88. * @return the new class instance. Null in the case of any error.
  89. */
  90. public Object getInstance(Class<?> clazz);
  91. /**
  92. * Returns the Java type info for the attribute, if there is one.
  93. *
  94. * @param clazz
  95. * the class for which the attribute type is requested
  96. * @param attrName
  97. * the name of the attribute which type is requested
  98. * @return the object that represents the Java type info. Null in the case there's no such attribute.
  99. */
  100. public Class<?> getAttributeType(Class<?> clazz, String attrName);
  101. /**
  102. * Returns the Java parameterized type info for the attribute, if there is one.
  103. *
  104. * @param clazz
  105. * the class for which the attribute type is requested
  106. * @param attrName
  107. * the name of the attribute which type is requested
  108. * @return the object that represents the Java parameterized type info. Null in the case there's no such attribute.
  109. */
  110. public Class<?>[] getAttributeParameterizedTypes(Class<?> clazz, String attrName);
  111. /**
  112. * Returns the attribute getter method types, if there is one.
  113. *
  114. * @param clazz
  115. * the class for which the getter is requested
  116. * @param attrName
  117. * the name of the attribute which getter is requested
  118. * @return The method that should be used to read the property value. Null in the case there's no such attribute's
  119. * getter.
  120. */
  121. public GetterType getGetterType(Class<?> clazz, String attrName);
  122. /**
  123. * Returns the attribute getter method types, if there is one.
  124. *
  125. * @param bean
  126. * the bean for which the getter is requested
  127. * @param attrName
  128. * the name of the attribute which getter is requested
  129. * @return The getter method types that should be used to read the property value. Null in the case there's no such
  130. * attribute's getter.
  131. */
  132. public GetterType getGetterType(Object bean, String attrName);
  133. /**
  134. * Checks the attribute getter method existence.
  135. *
  136. * @param bean
  137. * the bean for which the getter is checked
  138. * @param attrName
  139. * the name of the attribute which getter is checked
  140. * @return True if there's the attribute getter method
  141. */
  142. public boolean checkAttribute(Object bean, String attrName);
  143. /**
  144. * Returns the value of the specified simple attribute of the specified bean.
  145. *
  146. * @param bean
  147. * the bean for which the attribute value is requested
  148. * @param attrName
  149. * the name of the attribute which value is requested
  150. * @return the attribute value
  151. * @exception SqlRuntimeException
  152. * in the case of any error
  153. */
  154. public Object getAttribute(Object bean, String attrName) throws SqlRuntimeException;
  155. /**
  156. * Sets the value of the specified simple attribute of the specified bean, if there is one.
  157. *
  158. * @param bean
  159. * the bean for which the attribute value is to be modified
  160. * @param attrName
  161. * the name of the attribute to be modified
  162. * @param attrValue
  163. * the value to which the attribute should be set
  164. * @param attrTypes
  165. * the possible attribute types
  166. * @return True if the attribute was successfully modified
  167. */
  168. public boolean simpleSetAttribute(Object bean, String attrName, Object attrValue, Class<?>... attrTypes);
  169. /**
  170. * Sets the value of the specified simple attribute of the specified bean.
  171. *
  172. * @param bean
  173. * the bean for which the attribute value is to be modified
  174. * @param attrName
  175. * the name of the attribute to be modified
  176. * @param attrValue
  177. * the value to which the attribute should be set
  178. * @exception SqlRuntimeException
  179. * in the case of any error
  180. */
  181. public void setAttribute(Object bean, String attrName, Object attrValue) throws SqlRuntimeException;
  182. /**
  183. * Checks the class method existence.
  184. *
  185. * @param clazz
  186. * the class for which the method existence is checked
  187. * @param methodName
  188. * the name of the method to be checked
  189. * @param argTypes
  190. * the method parameters types
  191. * @return True if there's such a method
  192. */
  193. public boolean checkMethod(Class<?> clazz, String methodName, Class<?>... argTypes);
  194. /**
  195. * Checks the bean method existence.
  196. *
  197. * @param bean
  198. * the bean for which the method existence is checked
  199. * @param methodName
  200. * the name of the method to be checked
  201. * @param args
  202. * the method parameters
  203. * @return True if there's such a method
  204. */
  205. public boolean checkMethod(Object bean, String methodName, Object... args);
  206. /**
  207. * Invokes the class method with the specified name and parameters. The method can be a static one.
  208. *
  209. * @param clazz
  210. * the class which method is going to be invoked
  211. * @param methodName
  212. * the requested method name
  213. * @param args
  214. * the method parameters
  215. * @return the result of the method invocation
  216. * @exception SqlRuntimeException
  217. * in the case of any error
  218. */
  219. public Object invokeMethod(Class<?> clazz, String methodName, Object... args) throws SqlRuntimeException;
  220. /**
  221. * Invokes the bean method with the specified name and parameters.
  222. *
  223. * @param bean
  224. * the bean which method is going to be invoked
  225. * @param methodName
  226. * the requested method name
  227. * @param args
  228. * the method parameters
  229. * @return the result of the method invocation
  230. * @exception SqlRuntimeException
  231. * in the case of any error
  232. */
  233. public Object invokeMethod(Object bean, String methodName, Object... args) throws SqlRuntimeException;
  234. /**
  235. * Returns the bean enumeration value.
  236. *
  237. * @param bean
  238. * the bean of the enumeration type
  239. * @return the enumeration value. Null in the case of any error.
  240. */
  241. public Object getEnumToValue(Object bean);
  242. /**
  243. * Returns the bean enumeration type.
  244. *
  245. * @param clazz
  246. * the class of the enumeration type
  247. * @return the enumeration type. Null in the case of any error.
  248. */
  249. public Class<?> getEnumToClass(Class<?> clazz);
  250. /**
  251. * Returns the enumeration instance for the enumeration value
  252. *
  253. * @param clazz
  254. * the class of the enumeration type
  255. * @param val
  256. * the enumeration value
  257. * @return the enumeration instance. Null in the case of any error.
  258. */
  259. public Object getValueToEnum(Class<?> clazz, Object val);
  260. }