-
-
Notifications
You must be signed in to change notification settings - Fork 197
feat: Improve rebuild of native plugins and node_modules checks #3750
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
a4c11e5
c6c374a
86a7e55
1a2388e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
interface IFilesHashService { | ||
generateHashes(files: string[]): Promise<IStringDictionary>; | ||
getChanges(files: string[], oldHashes: IStringDictionary): Promise<IStringDictionary>; | ||
} | ||
hasChangesInShasums(oldHashes: IStringDictionary, newHashes: IStringDictionary): boolean; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import * as path from "path"; | ||
import { MANIFEST_FILE_NAME, INCLUDE_GRADLE_NAME, ASSETS_DIR, RESOURCES_DIR, TNS_ANDROID_RUNTIME_NAME, AndroidBuildDefaults } from "../constants"; | ||
import { MANIFEST_FILE_NAME, INCLUDE_GRADLE_NAME, ASSETS_DIR, RESOURCES_DIR, TNS_ANDROID_RUNTIME_NAME, AndroidBuildDefaults, PLUGIN_BUILD_DATA_FILENAME } from "../constants"; | ||
import { getShortPluginName, hook } from "../common/helpers"; | ||
import { Builder, parseString } from "xml2js"; | ||
import { ILogger } from "log4js"; | ||
|
@@ -25,7 +25,8 @@ export class AndroidPluginBuildService implements IAndroidPluginBuildService { | |
private $npm: INodePackageManager, | ||
private $projectDataService: IProjectDataService, | ||
private $devicePlatformsConstants: Mobile.IDevicePlatformsConstants, | ||
private $errors: IErrors) { } | ||
private $errors: IErrors, | ||
private $filesHashService: IFilesHashService) { } | ||
|
||
private static MANIFEST_ROOT = { | ||
$: { | ||
|
@@ -172,23 +173,79 @@ export class AndroidPluginBuildService implements IAndroidPluginBuildService { | |
this.validateOptions(options); | ||
const manifestFilePath = this.getManifest(options.platformsAndroidDirPath); | ||
const androidSourceDirectories = this.getAndroidSourceDirectories(options.platformsAndroidDirPath); | ||
const shouldBuildAar = !!manifestFilePath || androidSourceDirectories.length > 0; | ||
const shortPluginName = getShortPluginName(options.pluginName); | ||
const pluginTempDir = path.join(options.tempPluginDirPath, shortPluginName); | ||
const pluginSourceFileHashesInfo = await this.getSourceFilesHashes(options.platformsAndroidDirPath, shortPluginName); | ||
|
||
const shouldBuildAar = await this.shouldBuildAar({ | ||
manifestFilePath, | ||
androidSourceDirectories, | ||
pluginTempDir, | ||
pluginSourceDir: options.platformsAndroidDirPath, | ||
shortPluginName, | ||
fileHashesInfo: pluginSourceFileHashesInfo | ||
}); | ||
|
||
if (shouldBuildAar) { | ||
const shortPluginName = getShortPluginName(options.pluginName); | ||
const pluginTempDir = path.join(options.tempPluginDirPath, shortPluginName); | ||
const pluginTempMainSrcDir = path.join(pluginTempDir, "src", "main"); | ||
// In case plugin was already built in the current process, we need to clean the old sources as they may break the new build. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. move these 3 lines in something like this.clean(pluginTempDir) or even fs.clean in order to keep the method as short and readable as possible |
||
this.$fs.deleteDirectory(pluginTempDir); | ||
this.$fs.ensureDirectoryExists(pluginTempDir); | ||
|
||
const pluginTempMainSrcDir = path.join(pluginTempDir, "src", "main"); | ||
await this.updateManifest(manifestFilePath, pluginTempMainSrcDir, shortPluginName); | ||
this.copySourceSetDirectories(androidSourceDirectories, pluginTempMainSrcDir); | ||
await this.setupGradle(pluginTempDir, options.platformsAndroidDirPath, options.projectDir); | ||
await this.buildPlugin({ pluginDir: pluginTempDir, pluginName: options.pluginName }); | ||
this.copyAar(shortPluginName, pluginTempDir, options.aarOutputDir); | ||
this.writePluginHashInfo(pluginSourceFileHashesInfo, pluginTempDir); | ||
} | ||
|
||
return shouldBuildAar; | ||
} | ||
|
||
private getSourceFilesHashes(pluginTempPlatformsAndroidDir: string, shortPluginName: string): Promise<IStringDictionary> { | ||
const pathToAar = path.join(pluginTempPlatformsAndroidDir, `${shortPluginName}.aar`); | ||
const pluginNativeDataFiles = this.$fs.enumerateFilesInDirectorySync(pluginTempPlatformsAndroidDir, (file: string, stat: IFsStats) => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
is shorter |
||
return file !== pathToAar; | ||
}); | ||
|
||
return this.$filesHashService.generateHashes(pluginNativeDataFiles); | ||
} | ||
|
||
private async writePluginHashInfo(fileHashesInfo: IStringDictionary, pluginTempDir: string): Promise<void> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need to be |
||
const buildDataFile = this.getPathToPluginBuildDataFile(pluginTempDir); | ||
this.$fs.writeJson(buildDataFile, fileHashesInfo); | ||
} | ||
|
||
private async shouldBuildAar(opts: { | ||
manifestFilePath: string, | ||
androidSourceDirectories: string[], | ||
pluginTempDir: string, | ||
pluginSourceDir: string, | ||
shortPluginName: string, | ||
fileHashesInfo: IStringDictionary | ||
}): Promise<boolean> { | ||
|
||
let shouldBuildAar = !!opts.manifestFilePath || opts.androidSourceDirectories.length > 0; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
should be enough check There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In this way |
||
|
||
if (shouldBuildAar && | ||
this.$fs.exists(opts.pluginTempDir) && | ||
this.$fs.exists(path.join(opts.pluginSourceDir, `${opts.shortPluginName}.aar`))) { | ||
|
||
const buildDataFile = this.getPathToPluginBuildDataFile(opts.pluginTempDir); | ||
if (this.$fs.exists(buildDataFile)) { | ||
const oldHashes = this.$fs.readJson(buildDataFile); | ||
shouldBuildAar = this.$filesHashService.hasChangesInShasums(oldHashes, opts.fileHashesInfo); | ||
} | ||
} | ||
|
||
return shouldBuildAar; | ||
} | ||
|
||
private getPathToPluginBuildDataFile(pluginDir: string): string { | ||
return path.join(pluginDir, PLUGIN_BUILD_DATA_FILENAME); | ||
} | ||
|
||
private async updateManifest(manifestFilePath: string, pluginTempMainSrcDir: string, shortPluginName: string): Promise<void> { | ||
let updatedManifestContent; | ||
this.$fs.ensureDirectoryExists(pluginTempMainSrcDir); | ||
|
@@ -256,7 +313,7 @@ export class AndroidPluginBuildService implements IAndroidPluginBuildService { | |
return runtimeGradleVersions || {}; | ||
} | ||
|
||
private getGradleVersions(packageData: { gradle: { version: string, android: string }}): IRuntimeGradleVersions { | ||
private getGradleVersions(packageData: { gradle: { version: string, android: string } }): IRuntimeGradleVersions { | ||
const packageJsonGradle = packageData && packageData.gradle; | ||
let runtimeVersions: IRuntimeGradleVersions = null; | ||
if (packageJsonGradle && (packageJsonGradle.version || packageJsonGradle.android)) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing semicolon at the end.