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

org.ajoberstar.grgit.service.ResolveService.groovy Maven / Gradle / Ivy

/*
 * Copyright 2012-2015 the original author or authors.
 *
 * Licensed 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.ajoberstar.grgit.service

import org.ajoberstar.grgit.Branch
import org.ajoberstar.grgit.Commit
import org.ajoberstar.grgit.Repository
import org.ajoberstar.grgit.Tag
import org.ajoberstar.grgit.util.JGitUtil

/**
 * Convenience methods to resolve various objects.
 * @since 0.2.2
 */
class ResolveService {
	private final Repository repository

	ResolveService(Repository repository) {
		this.repository = repository
	}

	/**
	 * Resolves a commit from the given object. Can handle any of the following
	 * types:
	 *
	 * 
    *
  • {@link org.ajoberstar.grgit.Commit}
  • *
  • {@link org.ajoberstar.grgit.Tag}
  • *
  • {@link org.ajoberstar.grgit.Branch}
  • *
  • {@link String}
  • *
* *

* String arguments can be in the format of any * Git revision string. *

* @param object the object to resolve * @return the corresponding commit */ Commit toCommit(Object object) { if (object == null) { return object } else if (object instanceof Commit) { return object } else if (object instanceof Tag) { return object.commit } else if (object instanceof Branch) { return JGitUtil.resolveCommit(repository, object.fullName) } else if (object instanceof String) { return JGitUtil.resolveCommit(repository, object) } else { throwIllegalArgument(object) } } /** * Resolves a branch from the given object. Can handle any of the following * types: *
    *
  • {@link Branch}
  • *
  • {@link String}
  • *
* @param object the object to resolve * @return the corresponding commit */ Branch toBranch(Object object) { if (object == null) { return object } else if (object instanceof Branch) { return object } else if (object instanceof String) { return JGitUtil.resolveBranch(repository, object) } else { throwIllegalArgument(object) } } /** * Resolves a branch name from the given object. Can handle any of the following * types: *
    *
  • {@link String}
  • *
  • {@link Branch}
  • *
* @param object the object to resolve * @return the corresponding branch name */ String toBranchName(Object object) { if (object == null) { return object } else if (object instanceof String) { return object } else if (object instanceof Branch) { return object.fullName } else { throwIllegalArgument(object) } } /** * Resolves a tag from the given object. Can handle any of the following * types: *
    *
  • {@link Tag}
  • *
  • {@link String}
  • *
* @param object the object to resolve * @return the corresponding commit */ Tag toTag(Object object) { if (object == null) { return object } else if (object instanceof Tag) { return object } else if (object instanceof String) { JGitUtil.resolveTag(repository, object) } else { throwIllegalArgument(object) } } /** * Resolves a tag name from the given object. Can handle any of the following * types: *
    *
  • {@link String}
  • *
  • {@link Tag}
  • *
* @param object the object to resolve * @return the corresponding tag name */ String toTagName(Object object) { if (object == null) { return object } else if (object instanceof String) { return object } else if (object instanceof Tag) { return object.fullName } else { throwIllegalArgument(object) } } /** * Resolves a revision string that corresponds to the given object. Can * handle any of the following types: *
    *
  • {@link org.ajoberstar.grgit.Commit}
  • *
  • {@link org.ajoberstar.grgit.Tag}
  • *
  • {@link org.ajoberstar.grgit.Branch}
  • *
  • {@link String}
  • *
* @param object the object to resolve * @return the corresponding commit */ String toRevisionString(Object object) { if (object == null) { return object } else if (object instanceof Commit) { return object.id } else if (object instanceof Tag) { return object.fullName } else if (object instanceof Branch) { return object.fullName } else if (object instanceof String) { return object } else { throwIllegalArgument(object) } } private void throwIllegalArgument(Object object) { throw new IllegalArgumentException("Can't handle the following object (${object}) of class (${object.class})") } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy