All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.source.formatter.checks.PropertiesLongLinesCheck Maven / Gradle / Ivy

There is a newer version: 1.0.1437
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.source.formatter.checks;

import com.liferay.petra.string.CharPool;
import com.liferay.portal.kernel.util.StringUtil;

import java.io.IOException;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * @author Hugo Huijser
 */
public class PropertiesLongLinesCheck extends BaseFileCheck {

	@Override
	protected String doProcess(
			String fileName, String absolutePath, String content)
		throws IOException {

		if (absolutePath.endsWith("-portal.properties") ||
			absolutePath.matches(
				".*\\/portal-impl\\/src\\/portal[\\w-]+\\.properties")) {

			return content;
		}

		Matcher matcher = _commentsPattern.matcher(content);

		while (matcher.find()) {
			String match = matcher.group();

			String comment = StringUtil.removeSubstring(match, "\n    #");

			comment = _splitComment(comment);

			if (!StringUtil.equals(match, comment)) {
				return StringUtil.replaceFirst(
					content, match, comment, matcher.start());
			}
		}

		return content;
	}

	private String _splitComment(String comment) {
		if (comment.length() <= getMaxLineLength()) {
			return comment;
		}

		int x = -1;

		if (comment.startsWith("    # See http:")) {
			x = comment.indexOf(CharPool.SPACE, 10);
		}
		else {
			x = comment.indexOf(CharPool.SPACE, 6);
		}

		if (x == -1) {
			return comment;
		}

		if (x > getMaxLineLength()) {
			String s = "    # " + comment.substring(x + 1);

			return comment.substring(0, x) + "\n" + _splitComment(s);
		}

		x = comment.lastIndexOf(CharPool.SPACE, getMaxLineLength());

		String s = "    # " + comment.substring(x + 1);

		return comment.substring(0, x) + "\n" + _splitComment(s);
	}

	private static final Pattern _commentsPattern = Pattern.compile(
		"(    (?!# Env: )# (?! ).+)(\n    # (?! ).+)*");

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy