Search in sources :

Example 1 with HttpArchiveDepsList

use of com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList in project startup-os by google.

the class HttpArchiveDepsTool method main.

public static void main(String[] args) throws IOException {
    Flags.parseCurrentPackage(args);
    HttpArchiveDepsTool.HttpArchiveDepsToolComponent component = DaggerHttpArchiveDepsTool_HttpArchiveDepsToolComponent.create();
    FileUtils fileUtils = component.getFileUtils();
    WorkspaceFile workspaceFile = component.getWorkspaceParser().getWorkspaceFile();
    HttpArchiveDepsList httpArchiveDepsList = component.getHttpArchiveDepsGenerator().getHttpArchiveDeps(workspaceFile, httpArchiveNames.get());
    if (!httpArchiveDepsList.getHttpArchiveDepsList().isEmpty()) {
        new HttpArchiveDepsTool().write(fileUtils, httpArchiveDepsList, fileUtils.joinPaths(fileUtils.getCurrentWorkingDirectory(), HttpArchiveDepsGenerator.HTTP_ARCHIVE_DEPS_FILENAME));
    }
}
Also used : FileUtils(com.google.startupos.common.FileUtils) WorkspaceFile(com.google.startupos.tools.build_file_generator.Protos.WorkspaceFile) HttpArchiveDepsList(com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList)

Example 2 with HttpArchiveDepsList

use of com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList in project startup-os by google.

the class BuildFileGenerator method generateBuildFiles.

/* Returns Map<String, BuildFile> where
  String key is an absolute path to a folder where BUILD file should be created,
  BuildFile is the proto message. */
Map<String, BuildFile> generateBuildFiles(List<String> buildFileGenerationBlacklist) throws IOException {
    Map<String, BuildFile> result = new HashMap<>();
    List<ProtoFile> wholeProjectProtoFiles = getWholeProjectProtoFiles();
    List<ThirdPartyDep> thirdPartyDeps = getThirdPartyDeps().getThirdPartyDepList();
    HttpArchiveDepsList httpArchiveDepsList = getHttpArchiveDepsList();
    Map<String, String> internalProjectDeps = getInternalProjectJavaClassToTargetNameMap();
    for (String packagePath : getPathsToCreateBuildFiles(buildFileGenerationBlacklist)) {
        result.put(packagePath, generateBuildFile(packagePath, wholeProjectProtoFiles, thirdPartyDeps, httpArchiveDepsList, internalProjectDeps));
    }
    return result;
}
Also used : BuildFile(com.google.startupos.tools.build_file_generator.Protos.BuildFile) ThirdPartyDep(com.google.startupos.tools.build_file_generator.Protos.ThirdPartyDep) HashMap(java.util.HashMap) ProtoFile(com.google.startupos.tools.build_file_generator.Protos.ProtoFile) HttpArchiveDepsList(com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList)

Example 3 with HttpArchiveDepsList

use of com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList in project startup-os by google.

the class HttpArchiveDepsGenerator method getHttpArchiveDeps.

public HttpArchiveDepsList getHttpArchiveDeps(WorkspaceFile workspaceFile, List<String> httpArchiveNames) throws IOException {
    HttpArchiveDepsList.Builder result = HttpArchiveDepsList.newBuilder();
    for (String httpArchiveName : httpArchiveNames) {
        WorkspaceFile.HttpArchive httpArchive = WorkspaceFile.HttpArchive.getDefaultInstance();
        for (WorkspaceFile.HttpArchive currentHttpArchive : workspaceFile.getHttpArchiveList()) {
            if (currentHttpArchive.getName().equals(httpArchiveName)) {
                httpArchive = currentHttpArchive;
            }
        }
        if (areCommitIdsTheSame(httpArchiveName, getCommitId(httpArchive.getStripPrefix()))) {
            log.atInfo().log("Commit id in WORKSPACE file and commit id in \'%s\' file for \'%s\' http_archive " + "are the same. Nothing to update.", HTTP_ARCHIVE_DEPS_FILENAME, httpArchiveName);
            continue;
        }
        if (httpArchive.getName().equals(httpArchiveName)) {
            HttpArchiveDeps.Builder builder = HttpArchiveDeps.newBuilder();
            String url = httpArchive.getUrls(0).split("/archive")[0] + ".git";
            String repoName = url.substring(url.lastIndexOf('/') + 1).replace(".git", "");
            GitRepo gitRepo = createRepo(url, repoName);
            switchToCommit(gitRepo, httpArchive.getStripPrefix());
            String absRepoPath = fileUtils.joinPaths(fileUtils.getCurrentWorkingDirectory(), BUILD_GENERATOR_TEMP_FOLDER, repoName);
            ImmutableList<String> buildFilesAbsPaths = getBuildFilesAbsPaths(absRepoPath);
            for (String path : buildFilesAbsPaths) {
                BuildFile buildFile = buildFileParser.getBuildFile(path);
                for (BuildFile.JavaLibrary javaLibrary : buildFile.getJavaLibraryList()) {
                    addDeps(absRepoPath, builder, path, javaLibrary.getSrcsList(), javaLibrary.getName());
                }
                for (BuildFile.JavaBinary javaBinary : buildFile.getJavaBinaryList()) {
                    addDeps(absRepoPath, builder, path, javaBinary.getSrcsList(), javaBinary.getName());
                }
                for (BuildFile.ProtoLibrary protoLibrary : buildFile.getProtoLibraryList()) {
                    String absProtoFilePath = path.replace("BUILD", protoLibrary.getSrcs(0));
                    for (BuildFile.JavaProtoLibrary javaProtoLibrary : buildFile.getJavaProtoLibraryList()) {
                        if (javaProtoLibrary.getDepsList().contains(":" + protoLibrary.getName())) {
                            ProtoFile protoFile = protoFileAnalyzer.getProtoFile(absProtoFilePath);
                            if ((!protoFile.getJavaPackage().isEmpty()) && (!protoFile.getJavaOuterClassname().isEmpty())) {
                                String fullJavaClassName = protoFile.getJavaPackage() + "." + protoFile.getJavaOuterClassname();
                                String target = path.replace(absRepoPath, "/").replace("/BUILD", ":") + javaProtoLibrary.getName();
                                builder.addHttpArchiveDep(HttpArchiveDep.newBuilder().setTarget(target).setJavaClass(fullJavaClassName).build());
                            }
                        }
                    }
                }
            }
            builder.setName(getCommitId(httpArchive.getName())).setCommitId(getCommitId(httpArchive.getStripPrefix()));
            result.addHttpArchiveDeps(builder.build());
            fileUtils.clearDirectoryUnchecked(fileUtils.joinPaths(fileUtils.getCurrentWorkingDirectory(), BUILD_GENERATOR_TEMP_FOLDER));
        } else {
            log.atWarning().log("Can't find http_archive with name: %s", httpArchiveName);
        }
    }
    fileUtils.deleteFileOrDirectoryIfExists(fileUtils.joinPaths(fileUtils.getCurrentWorkingDirectory(), BUILD_GENERATOR_TEMP_FOLDER));
    return result.build();
}
Also used : BuildFile(com.google.startupos.tools.build_file_generator.Protos.BuildFile) HttpArchiveDeps(com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDeps) WorkspaceFile(com.google.startupos.tools.build_file_generator.Protos.WorkspaceFile) ProtoFile(com.google.startupos.tools.build_file_generator.Protos.ProtoFile) GitRepo(com.google.startupos.common.repo.GitRepo) HttpArchiveDepsList(com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList)

Example 4 with HttpArchiveDepsList

use of com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList in project startup-os by google.

the class HttpArchiveDepsGenerator method areCommitIdsTheSame.

private boolean areCommitIdsTheSame(String httpArchiveName, String workspaceCommitId) {
    String absPrototxtPath = fileUtils.joinPaths(fileUtils.getCurrentWorkingDirectory(), HTTP_ARCHIVE_DEPS_FILENAME);
    if (!fileUtils.fileExists(absPrototxtPath)) {
        return false;
    }
    HttpArchiveDepsList httpArchiveDepsList = (HttpArchiveDepsList) fileUtils.readPrototxtUnchecked(absPrototxtPath, HttpArchiveDepsList.newBuilder());
    String prototxtCommitId = "";
    for (HttpArchiveDeps httpArchiveDeps : httpArchiveDepsList.getHttpArchiveDepsList()) {
        if (httpArchiveDeps.getName().equals(httpArchiveName)) {
            prototxtCommitId = httpArchiveDeps.getCommitId();
            break;
        }
    }
    return workspaceCommitId.equals(prototxtCommitId);
}
Also used : HttpArchiveDeps(com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDeps) HttpArchiveDepsList(com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList)

Aggregations

HttpArchiveDepsList (com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDepsList)4 BuildFile (com.google.startupos.tools.build_file_generator.Protos.BuildFile)2 HttpArchiveDeps (com.google.startupos.tools.build_file_generator.Protos.HttpArchiveDeps)2 ProtoFile (com.google.startupos.tools.build_file_generator.Protos.ProtoFile)2 WorkspaceFile (com.google.startupos.tools.build_file_generator.Protos.WorkspaceFile)2 FileUtils (com.google.startupos.common.FileUtils)1 GitRepo (com.google.startupos.common.repo.GitRepo)1 ThirdPartyDep (com.google.startupos.tools.build_file_generator.Protos.ThirdPartyDep)1 HashMap (java.util.HashMap)1