blob: 8f3935ed6674ef9d0b2842a9d98fbaa5e93b5fad [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.repoinit.parser.impl;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.io.StringWriter;
import java.util.List;
import org.apache.sling.repoinit.parser.RepoInitParser;
import org.apache.sling.repoinit.parser.RepoInitParsingException;
import org.apache.sling.repoinit.parser.operations.Operation;
import org.osgi.framework.Constants;
import org.osgi.service.component.annotations.Component;
/** ACL definitions parser service */
@Component(service=RepoInitParser.class,
property = {
Constants.SERVICE_VENDOR + "=The Apache Software Foundation"
})
public class RepoInitParserService implements RepoInitParser {
@Override
public List<Operation> parse(final Reader r) throws RepoInitParsingException {
// in order to avoid parsing problems with trailing comments we add a line feed at the end
try ( final StringWriter sw = new StringWriter()) {
final char[] buf = new char[2048];
int l;
while ( (l = r.read(buf)) > 0 ) {
sw.write(buf, 0, l);
}
try (final StringReader sr = new StringReader(sw.toString().concat("\n")) ){
return new RepoInitParserImpl(sr).parse();
} catch (TokenMgrError tme) {
throw new RepoInitParsingException(tme.getMessage(), tme);
} catch (ParseException pe) {
throw new RepoInitParsingException(pe.getMessage(), pe);
}
} catch ( final IOException ioe ) {
throw new RepoInitParsingException(ioe.getMessage(), ioe);
} finally {
try {
r.close();
} catch(IOException ignore) {
}
}
}
}