blob: f3abe4c6941f3f693692bd00fb05698489498ce5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sling.cms.core.internal.jobs;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.sling.api.SlingConstants;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.api.resource.ResourceResolverFactory;
import org.apache.sling.cms.CMSConstants;
import org.apache.sling.cms.ConfigurableJobExecutor;
import org.apache.sling.cms.File;
import org.apache.sling.cms.FileMetadataExtractor;
import org.apache.sling.event.jobs.Job;
import org.apache.sling.event.jobs.consumer.JobConsumer;
import org.apache.sling.event.jobs.consumer.JobExecutionContext;
import org.apache.sling.event.jobs.consumer.JobExecutionResult;
import org.apache.sling.event.jobs.consumer.JobExecutor;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Implementation of the Configurable Job Executor interface for the file
* metadata extractor
*/
@Component(service = { JobExecutor.class, ConfigurableJobExecutor.class }, property = {
JobConsumer.PROPERTY_TOPICS + "=" + FileMetadataExtractorJob.TOPIC })
public class FileMetadataExtractorJob extends ConfigurableJobExecutor {
public static final Logger log = LoggerFactory.getLogger(FileMetadataExtractorJob.class);
public static final String PN_RECURSIVE = "recursive";
public static final String TOPIC = "cmsjob/org/apache/sling/cms/file/ExtractMetadata";
@Reference
private FileMetadataExtractor extractor;
@Reference
private ResourceResolverFactory factory;
private void collectFiles(Resource root, List<File> files) {
for (Resource child : root.getChildren()) {
if (CMSConstants.NT_FILE.equals(child.getResourceType())) {
files.add(child.adaptTo(File.class));
} else {
collectFiles(child, files);
}
}
}
@Override
public JobExecutionResult doProcess(Job job, JobExecutionContext context, ResourceResolver resolver) {
String path = job.getProperty(SlingConstants.PROPERTY_PATH, "");
Resource root = resolver.getResource(path);
if (root != null) {
List<File> files = new ArrayList<>();
if (CMSConstants.NT_FILE.equals(root.getResourceType())) {
files.add(root.adaptTo(File.class));
} else {
collectFiles(root, files);
}
context.log("Found {0} files to extract metadata", files.size());
context.initProgress(files.size(), -1);
int processed = 1;
for (File file : files) {
try {
extractor.extractMetadata(file);
context.incrementProgressCount(processed++);
context.log("Extracted metadata for {0}", file.getPath());
} catch (IOException e) {
context.log("Failed to extract matadata for {0}", file.getPath());
context.incrementProgressCount(processed++);
context.log("Exception {0}", e.getMessage());
log.warn("Failed to extract metadata for " + file.getPath(), e);
}
}
return context.result().message("Metadata Extracted").succeeded();
} else {
return context.result().message("No file found at " + path).failed();
}
}
/*
* (non-Javadoc)
*
* @see org.apache.sling.cms.ConfigurableJobExecutor#getConfigurationPath()
*/
@Override
public String getConfigurationPath() {
return "/mnt/overlay/sling-cms/content/jobs/filemetadataextractor";
}
@Override
public ResourceResolverFactory getResolverFactory() {
return this.factory;
}
@Override
public String getTitleKey() {
return "Extract File Metadata";
}
/*
* (non-Javadoc)
*
* @see org.apache.sling.cms.ConfigurableJobExecutor#getTopic()
*/
@Override
public String getTopic() {
return TOPIC;
}
}