/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/gridfs/GridFsOperations.java

https://gitlab.com/javajamesb08/spring-data-mongodb · Java · 162 lines · 24 code · 17 blank · 121 comment · 0 complexity · 906762cd15505e5cfd40c05e540584fb MD5 · raw file

  1. /*
  2. * Copyright 2011-2014 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.data.mongodb.gridfs;
  17. import java.io.InputStream;
  18. import java.util.List;
  19. import org.springframework.core.io.support.ResourcePatternResolver;
  20. import org.springframework.data.domain.Sort;
  21. import org.springframework.data.mongodb.core.query.Query;
  22. import com.mongodb.DBObject;
  23. import com.mongodb.gridfs.GridFSDBFile;
  24. import com.mongodb.gridfs.GridFSFile;
  25. /**
  26. * Collection of operations to store and read files from MongoDB GridFS.
  27. *
  28. * @author Oliver Gierke
  29. * @author Philipp Schneider
  30. * @author Thomas Darimont
  31. * @author Martin Baumgartner
  32. */
  33. public interface GridFsOperations extends ResourcePatternResolver {
  34. /**
  35. * Stores the given content into a file with the given name.
  36. *
  37. * @param content must not be {@literal null}.
  38. * @param filename must not be {@literal null} or empty.
  39. * @return the {@link GridFSFile} just created
  40. */
  41. GridFSFile store(InputStream content, String filename);
  42. /**
  43. * Stores the given content into a file with the given name.
  44. *
  45. * @param content must not be {@literal null}.
  46. * @param metadata can be {@literal null}.
  47. * @return the {@link GridFSFile} just created
  48. */
  49. GridFSFile store(InputStream content, Object metadata);
  50. /**
  51. * Stores the given content into a file with the given name.
  52. *
  53. * @param content must not be {@literal null}.
  54. * @param metadata can be {@literal null}.
  55. * @return the {@link GridFSFile} just created
  56. */
  57. GridFSFile store(InputStream content, DBObject metadata);
  58. /**
  59. * Stores the given content into a file with the given name and content type.
  60. *
  61. * @param content must not be {@literal null}.
  62. * @param filename must not be {@literal null} or empty.
  63. * @param contentType can be {@literal null}.
  64. * @return the {@link GridFSFile} just created
  65. */
  66. GridFSFile store(InputStream content, String filename, String contentType);
  67. /**
  68. * Stores the given content into a file with the given name using the given metadata. The metadata object will be
  69. * marshalled before writing.
  70. *
  71. * @param content must not be {@literal null}.
  72. * @param filename must not be {@literal null} or empty.
  73. * @param metadata can be {@literal null}.
  74. * @return the {@link GridFSFile} just created
  75. */
  76. GridFSFile store(InputStream content, String filename, Object metadata);
  77. /**
  78. * Stores the given content into a file with the given name and content type using the given metadata. The metadata
  79. * object will be marshalled before writing.
  80. *
  81. * @param content must not be {@literal null}.
  82. * @param filename must not be {@literal null} or empty.
  83. * @param contentType can be {@literal null}.
  84. * @param metadata can be {@literal null}
  85. * @return the {@link GridFSFile} just created
  86. */
  87. GridFSFile store(InputStream content, String filename, String contentType, Object metadata);
  88. /**
  89. * Stores the given content into a file with the given name using the given metadata.
  90. *
  91. * @param content must not be {@literal null}.
  92. * @param filename must not be {@literal null} or empty.
  93. * @param metadata can be {@literal null}.
  94. * @return the {@link GridFSFile} just created
  95. */
  96. GridFSFile store(InputStream content, String filename, DBObject metadata);
  97. /**
  98. * Stores the given content into a file with the given name and content type using the given metadata.
  99. *
  100. * @param content must not be {@literal null}.
  101. * @param filename must not be {@literal null} or empty.
  102. * @param contentType can be {@literal null}.
  103. * @param metadata can be {@literal null}.
  104. * @return the {@link GridFSFile} just created
  105. */
  106. GridFSFile store(InputStream content, String filename, String contentType, DBObject metadata);
  107. /**
  108. * Returns all files matching the given query. Note, that currently {@link Sort} criterias defined at the
  109. * {@link Query} will not be regarded as MongoDB does not support ordering for GridFS file access.
  110. *
  111. * @see https://jira.mongodb.org/browse/JAVA-431
  112. * @param query
  113. * @return
  114. */
  115. List<GridFSDBFile> find(Query query);
  116. /**
  117. * Returns a single file matching the given query or {@literal null} in case no file matches.
  118. *
  119. * @param query
  120. * @return
  121. */
  122. GridFSDBFile findOne(Query query);
  123. /**
  124. * Deletes all files matching the given {@link Query}.
  125. *
  126. * @param query
  127. */
  128. void delete(Query query);
  129. /**
  130. * Returns all {@link GridFsResource} with the given file name.
  131. *
  132. * @param filename
  133. * @return the resource if it exists or {@literal null}.
  134. * @see ResourcePatternResolver#getResource(String)
  135. */
  136. GridFsResource getResource(String filename);
  137. /**
  138. * Returns all {@link GridFsResource}s matching the given file name pattern.
  139. *
  140. * @param filenamePattern
  141. * @return
  142. * @see ResourcePatternResolver#getResources(String)
  143. */
  144. GridFsResource[] getResources(String filenamePattern);
  145. }