org.modeshape.jcr.api.Logger类的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(12.5k)|赞(0)|评价(0)|浏览(276)

本文整理了Java中org.modeshape.jcr.api.Logger类的一些代码示例,展示了Logger类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger类的具体详情如下:
包路径:org.modeshape.jcr.api.Logger
类名称:Logger

Logger介绍

[英]A generic logger interface.
[中]通用记录器接口。

代码示例

代码示例来源:origin: ModeShape/modeshape

  1. private String restValueForReference( Value value,
  2. String baseUrl,
  3. Session session ) throws RepositoryException {
  4. String nodeId = value.getString();
  5. Node referredNode = session.getNodeByIdentifier(nodeId);
  6. if (referredNode != null) {
  7. return RestHelper.urlFrom(baseUrl, ITEMS_METHOD_NAME, encodedPath(referredNode.getPath()));
  8. }
  9. logger.warn("Cannot resolve reference with id: {0}", nodeId);
  10. return nodeId;
  11. }

代码示例来源:origin: ModeShape/modeshape

  1. /**
  2. * Returns a set with all the names of the available repositories.
  3. * @return a set with the names, never {@code null}
  4. */
  5. public static Set<String> getJcrRepositoryNames() {
  6. try {
  7. return repositoriesContainer.getRepositoryNames(Collections.unmodifiableMap(factoryParams));
  8. } catch (RepositoryException e) {
  9. LOGGER.error(e, WebJcrI18n.cannotLoadRepositoryNames.text());
  10. return Collections.emptySet();
  11. }
  12. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. private Name primaryTypeFor( Path resolvedPath ) {
  2. boolean isFolder = Files.isDirectory(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  3. boolean isFile = Files.isRegularFile(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  4. if (!isFile && !isFolder) {
  5. connector.log().debug("The entry at {0} is neither a file nor a folder", resolvedPath);
  6. return null;
  7. }
  8. return isFolder ? JcrNtLexicon.FOLDER : JcrNtLexicon.FILE;
  9. }
  10. }

代码示例来源:origin: ModeShape/modeshape

  1. /**
  2. * Cleans up any resources related to {@link AbstractHandler#ACTIVE_SESSION}
  3. */
  4. public static void cleanupActiveSession() {
  5. Session session = AbstractHandler.ACTIVE_SESSION.get();
  6. if (session != null) {
  7. try {
  8. AbstractHandler.ACTIVE_SESSION.remove();
  9. session.logout();
  10. LOGGER.debug("Logged out REST service session");
  11. } catch (Exception e) {
  12. LOGGER.warn(e, "Error while trying to logout REST service session");
  13. }
  14. }
  15. }

代码示例来源:origin: ModeShape/modeshape

  1. @Override
  2. public void filter( ContainerRequestContext requestContext ) {
  3. if (LOGGER.isDebugEnabled()) {
  4. LOGGER.debug("Received request: {0}", requestContext.getUriInfo().getRequestUri().toString());
  5. LOGGER.debug("Executing method: {0}", requestContext.getMethod());
  6. }
  7. }
  8. }

代码示例来源:origin: ModeShape/modeshape

  1. private Response exceptionResponse( Throwable t,
  2. Status status ) {
  3. switch (status) {
  4. case NOT_FOUND: {
  5. LOGGER.debug(t, "Item not found");
  6. break;
  7. }
  8. default: {
  9. LOGGER.error(t, "Server error");
  10. break;
  11. }
  12. }
  13. return Response.status(status).entity(new RestException(t)).build();
  14. }
  15. }

代码示例来源:origin: ModeShape/modeshape

  1. logger().debug("Initializing the local index provider '{0}' in repository '{1}' at: {2}", getName(), getRepositoryName(),
  2. directory);
  3. logger().debug("Attempting to create directory for local indexes in repository '{1}' at: {0}", dir.getAbsolutePath(),
  4. getRepositoryName());
  5. if (dir.mkdirs()) {
  6. logger().debug("Created directory for local indexes in repository '{1}' at: {0}", dir.getAbsolutePath(),
  7. getRepositoryName());
  8. } else {
  9. logger().debug("Unable to create directory for local indexes in repository '{1}' at: {0}", dir.getAbsolutePath(),
  10. getRepositoryName());
  11. if (logger().isDebugEnabled()) {
  12. String action = file.exists() ? "Opening" : "Creating";
  13. logger().debug("{0} the local index provider database for repository '{1}' at: {2}", action, getRepositoryName(),
  14. file.getAbsolutePath());
  15. if (this.cacheSize != null) {
  16. dbMaker.cacheSize(cacheSize);
  17. logger().debug("MapDB cache size set to {0} for index provider {1}", cacheSize, getName());
  18. logger().debug("MapDB cacheLRU enabled for index provider {0}", getName());
  19. logger().debug("MapDB mmapFiles enabled for index provider {0}", getName());
  20. logger().debug("MapDB commitFileSync enabled for index provider {0}", getName());
  21. logger().debug("MapDB transactions disabled for index provider {0}", getName());

代码示例来源:origin: ModeShape/modeshape

  1. private boolean processUsingAdvancedMetadata( Node imageNode,
  2. Binary binaryValue,
  3. boolean imageParsedUsingDefaultMetadata ) throws Exception {
  4. try (InputStream stream = binaryValue.getStream()) {
  5. Metadata advancedMetadata = ImageMetadataReader.readMetadata(new BufferedInputStream(stream), false);
  6. ExifIFD0Directory exifIFD0Directory = advancedMetadata.getDirectory(ExifIFD0Directory.class);
  7. if (exifIFD0Directory == null || !hasTags(exifIFD0Directory, EXIF_TAGS)) {
  8. if (!imageParsedUsingDefaultMetadata) {
  9. getLogger().info("Neither default nor advanced metadata parser can resolve image. Ignoring sequencing");
  10. }
  11. getLogger().debug("No relevant IFD0 information found, ignoring EXIF node.");
  12. return imageParsedUsingDefaultMetadata;
  13. }
  14. if (!imageParsedUsingDefaultMetadata) {
  15. //it's a format not supported by the default metadata and since we're reading the IFD0 descriptor, mark the image
  16. //as a TIFF
  17. getLogger().info(
  18. "Image has IFD0 block information but is not one of the standard image types, marking it as TIFF");
  19. imageNode.setProperty(ImageMetadataLexicon.FORMAT_NAME, TIFF_FORMAT);
  20. imageNode.setProperty(JcrConstants.JCR_MIME_TYPE, IMAGE_TIFF_DEFAULT_MIME_TYPE);
  21. }
  22. addEXIFNode(imageNode, exifIFD0Directory);
  23. return true;
  24. } catch (Exception e) {
  25. getLogger().debug(e, "Cannot process image for advanced metadata");
  26. return imageParsedUsingDefaultMetadata;
  27. }
  28. }

代码示例来源:origin: ModeShape/modeshape

  1. @Override
  2. public void filter( ContainerRequestContext requestContext,
  3. ContainerResponseContext responseContext ) {
  4. LOGGER.trace("Executing cleanup filter...");
  5. AbstractHandler.cleanupActiveSession();
  6. }
  7. }

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. ManagedIndex index,
  2. IndexDefinition defn ) {
  3. boolean traceEnabled = logger().isTraceEnabled();
  4. if (!defn.isEnabled()) {
  5. if (traceEnabled) {
  6. logger().trace("Skipping index '{0}' in '{1}' provider because it is not enabled",
  7. defn.getName(), getName());
  8. logger().trace("Skipping index '{0}' in '{1}' provider for query because it doest not match the '{2}' workspace",
  9. defn.getName(), getName(), workspaceName);
  10. logger().trace("Considering index '{0}' in '{1}' provider for query in workspace '{2}'",
  11. defn.getName(),
  12. getName(),
  13. logger().trace("Skipping index '{0}' in '{1}' provider for query because the index definition node type '{2}' does not match the selected node types '{3}'",
  14. defn.getName(), getName(), defn.getNodeTypeName(), calculator.selectedNodeTypes());

代码示例来源:origin: ModeShape/modeshape

  1. doDelete(path, session);
  2. } catch (NotFoundException e) {
  3. logger.info("Node at path {0} already deleted", path);

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. @SuppressWarnings( "synthetic-access" )
  2. private void fireEntryModified( ConnectorChangeSet connectorChangeSet,
  3. Path resolvedPath ) {
  4. connector.log().debug("Received ENTRY_MODIFY event on '{0}'", resolvedPath);
  5. connector.log().debug("The entry at {0} is not a regular file; ignoring modify event", resolvedPath);
  6. return;
  7. connector.log().warn("Cannot get binary value for '{0}'", resolvedPath);

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. } catch (RuntimeException e) {
  2. String msg = "Error updating index '{0}' in workspace '{1}' with definition: {2}";
  3. logger().error(e, msg, defn.getName(), workspaceName, defn);
  4. if (!isChanged(oldDefn, defn)) {
  5. logger().debug("Index provider '{0}' is not updating index in workspace '{1}' because there were no changes: {2}",
  6. getName(), workspaceName, defn);
  7. continue;
  8. } catch (RuntimeException e) {
  9. String msg = "Error updating index '{0}' in workspace '{1}' with definition: {2}";
  10. logger().error(e, msg, defn.getName(), workspaceName, defn);
  11. } catch (RuntimeException e) {
  12. String msg = "Error adding index '{0}' in workspace '{1}' with definition: {2}";
  13. logger().error(e, msg, defn.getName(), workspaceName, defn);

代码示例来源:origin: org.fcrepo/modeshape-jcr

  1. logger().debug("Initializing the local index provider '{0}' in repository '{1}' at: {2}", getName(), getRepositoryName(),
  2. directory);
  3. logger().debug("Attempting to create directory for local indexes in repository '{1}' at: {0}", dir.getAbsolutePath(),
  4. getRepositoryName());
  5. if (dir.mkdirs()) {
  6. logger().debug("Created directory for local indexes in repository '{1}' at: {0}", dir.getAbsolutePath(),
  7. getRepositoryName());
  8. } else {
  9. logger().debug("Unable to create directory for local indexes in repository '{1}' at: {0}", dir.getAbsolutePath(),
  10. getRepositoryName());
  11. if (logger().isDebugEnabled()) {
  12. String action = file.exists() ? "Opening" : "Creating";
  13. logger().debug("{0} the local index provider database for repository '{1}' at: {2}", action, getRepositoryName(),
  14. file.getAbsolutePath());
  15. if (this.cacheSize != null) {
  16. dbMaker.cacheSize(cacheSize);
  17. logger().debug("MapDB cache size set to {0} for index provider {1}", cacheSize, getName());
  18. logger().debug("MapDB cacheLRU enabled for index provider {0}", getName());
  19. logger().debug("MapDB mmapFiles enabled for index provider {0}", getName());
  20. logger().debug("MapDB commitFileSync enabled for index provider {0}", getName());
  21. logger().debug("MapDB transactions disabled for index provider {0}", getName());

代码示例来源:origin: org.modeshape/modeshape-sequencer-images

  1. private boolean processUsingAdvancedMetadata( Node imageNode,
  2. Binary binaryValue,
  3. boolean imageParsedUsingDefaultMetadata ) throws Exception {
  4. try (InputStream stream = binaryValue.getStream()) {
  5. Metadata advancedMetadata = ImageMetadataReader.readMetadata(new BufferedInputStream(stream), false);
  6. ExifIFD0Directory exifIFD0Directory = advancedMetadata.getDirectory(ExifIFD0Directory.class);
  7. if (exifIFD0Directory == null || !hasTags(exifIFD0Directory, EXIF_TAGS)) {
  8. if (!imageParsedUsingDefaultMetadata) {
  9. getLogger().info("Neither default nor advanced metadata parser can resolve image. Ignoring sequencing");
  10. }
  11. getLogger().debug("No relevant IFD0 information found, ignoring EXIF node.");
  12. return imageParsedUsingDefaultMetadata;
  13. }
  14. if (!imageParsedUsingDefaultMetadata) {
  15. //it's a format not supported by the default metadata and since we're reading the IFD0 descriptor, mark the image
  16. //as a TIFF
  17. getLogger().info(
  18. "Image has IFD0 block information but is not one of the standard image types, marking it as TIFF");
  19. imageNode.setProperty(ImageMetadataLexicon.FORMAT_NAME, TIFF_FORMAT);
  20. imageNode.setProperty(JcrConstants.JCR_MIME_TYPE, IMAGE_TIFF_DEFAULT_MIME_TYPE);
  21. }
  22. addEXIFNode(imageNode, exifIFD0Directory);
  23. return true;
  24. } catch (Exception e) {
  25. getLogger().debug(e, "Cannot process image for advanced metadata");
  26. return imageParsedUsingDefaultMetadata;
  27. }
  28. }

代码示例来源:origin: ModeShape/modeshape

  1. /**
  2. * Get the queryable index with the given name and applicable for the given workspace.
  3. *
  4. * @param indexName the name of the index in this provider; never null
  5. * @param workspaceName the name of the workspace; never null
  6. * @return the queryable index, or null if there is no such index
  7. */
  8. public final Index getIndex( String indexName,
  9. String workspaceName ) {
  10. logger().trace("Looking for index '{0}' in '{1}' provider for query in workspace '{2}'", indexName, getName(),
  11. workspaceName);
  12. Map<String, AtomicIndex> byWorkspaceNames = providedIndexesByWorkspaceNameByIndexName.get(indexName);
  13. return byWorkspaceNames == null ? null : byWorkspaceNames.get(workspaceName);
  14. }

代码示例来源:origin: ModeShape/modeshape

  1. ManagedIndex index,
  2. IndexDefinition defn ) {
  3. boolean traceEnabled = logger().isTraceEnabled();
  4. if (!defn.isEnabled()) {
  5. if (traceEnabled) {
  6. logger().trace("Skipping index '{0}' in '{1}' provider because it is not enabled",
  7. defn.getName(), getName());
  8. logger().trace("Skipping index '{0}' in '{1}' provider for query because it doest not match the '{2}' workspace",
  9. defn.getName(), getName(), workspaceName);
  10. logger().trace("Considering index '{0}' in '{1}' provider for query in workspace '{2}'",
  11. defn.getName(),
  12. getName(),
  13. logger().trace("Skipping index '{0}' in '{1}' provider for query because the index definition node type '{2}' does not match the selected node types '{3}'",
  14. defn.getName(), getName(), defn.getNodeTypeName(), calculator.selectedNodeTypes());

代码示例来源:origin: ModeShape/modeshape

  1. private String restValueForBinary( String absPropertyPath,
  2. String baseUrl ) {
  3. if (absPropertyPath == null) {
  4. logger.warn("Cannot generate rest representation of a binary value, because the property is unknown");
  5. return null;
  6. }
  7. return RestHelper.urlFrom(baseUrl, BINARY_METHOD_NAME, encodedPath(absPropertyPath));
  8. }

代码示例来源:origin: ModeShape/modeshape

  1. private Name primaryTypeFor( Path resolvedPath ) {
  2. boolean isFolder = Files.isDirectory(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  3. boolean isFile = Files.isRegularFile(resolvedPath, LinkOption.NOFOLLOW_LINKS);
  4. if (!isFile && !isFolder) {
  5. connector.log().debug("The entry at {0} is neither a file nor a folder", resolvedPath);
  6. return null;
  7. }
  8. return isFolder ? JcrNtLexicon.FOLDER : JcrNtLexicon.FILE;
  9. }
  10. }

代码示例来源:origin: ModeShape/modeshape

  1. @SuppressWarnings( "synthetic-access" )
  2. private void fireEntryModified( ConnectorChangeSet connectorChangeSet,
  3. Path resolvedPath ) {
  4. connector.log().debug("Received ENTRY_MODIFY event on '{0}'", resolvedPath);
  5. connector.log().debug("The entry at {0} is not a regular file; ignoring modify event", resolvedPath);
  6. return;
  7. connector.log().warn("Cannot get binary value for '{0}'", resolvedPath);

相关文章