Skip to content

Commit

Permalink
chore: add new interfaces for Assets (#13356)
Browse files Browse the repository at this point in the history
This is a re-submit of the PR #12700,
which had to be reverted because of JSII issue aws/jsii#2256.
Since that issue has been fixed in JSII version `1.23.0`,
which is what we currently use,
re-introduce the changes from that PR.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
skinny85 authored and Niranjan Jayakar committed Mar 5, 2021
1 parent e5ae6e9 commit dfe0c57
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 19 deletions.
1 change: 1 addition & 0 deletions packages/@aws-cdk/assets/lib/fs/options.ts
Expand Up @@ -10,6 +10,7 @@ export interface CopyOptions {
* A strategy for how to handle symlinks.
*
* @default Never
* @deprecated use `followSymlinks` instead
*/
readonly follow?: FollowMode;

Expand Down
17 changes: 14 additions & 3 deletions packages/@aws-cdk/aws-ecr-assets/lib/image-asset.ts
Expand Up @@ -2,7 +2,7 @@ import * as fs from 'fs';
import * as path from 'path';
import * as assets from '@aws-cdk/assets';
import * as ecr from '@aws-cdk/aws-ecr';
import { Annotations, FeatureFlags, IgnoreMode, Stack, Token } from '@aws-cdk/core';
import { Annotations, AssetStaging, FeatureFlags, FileFingerprintOptions, IgnoreMode, Stack, SymlinkFollowMode, Token } from '@aws-cdk/core';
import * as cxapi from '@aws-cdk/cx-api';

// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
Expand All @@ -12,7 +12,7 @@ import { Construct } from 'constructs';
/**
* Options for DockerImageAsset
*/
export interface DockerImageAssetOptions extends assets.FingerprintOptions {
export interface DockerImageAssetOptions extends assets.FingerprintOptions, FileFingerprintOptions {
/**
* ECR repository name
*
Expand Down Expand Up @@ -140,8 +140,9 @@ export class DockerImageAsset extends Construct implements assets.IAsset {
// deletion of the ECR repository the app used).
extraHash.version = '1.21.0';

const staging = new assets.Staging(this, 'Staging', {
const staging = new AssetStaging(this, 'Staging', {
...props,
follow: props.followSymlinks ?? toSymlinkFollow(props.follow),
exclude,
ignoreMode,
sourcePath: dir,
Expand Down Expand Up @@ -184,3 +185,13 @@ function validateBuildArgs(buildArgs?: { [key: string]: string }) {
}
}
}

function toSymlinkFollow(follow?: assets.FollowMode): SymlinkFollowMode | undefined {
switch (follow) {
case undefined: return undefined;
case assets.FollowMode.NEVER: return SymlinkFollowMode.NEVER;
case assets.FollowMode.ALWAYS: return SymlinkFollowMode.ALWAYS;
case assets.FollowMode.BLOCK_EXTERNAL: return SymlinkFollowMode.BLOCK_EXTERNAL;
case assets.FollowMode.EXTERNAL: return SymlinkFollowMode.EXTERNAL;
}
}
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-s3-assets/lib/asset.ts
Expand Up @@ -11,7 +11,7 @@ import { toSymlinkFollow } from './compat';

const ARCHIVE_EXTENSIONS = ['.zip', '.jar'];

export interface AssetOptions extends assets.CopyOptions, cdk.AssetOptions {
export interface AssetOptions extends assets.CopyOptions, cdk.FileCopyOptions, cdk.AssetOptions {
/**
* A list of principals that should be able to read this asset from S3.
* You can use `asset.grantRead(principal)` to grant read permissions later.
Expand Down Expand Up @@ -124,7 +124,7 @@ export class Asset extends Construct implements cdk.IAsset {
const staging = new cdk.AssetStaging(this, 'Stage', {
...props,
sourcePath: path.resolve(props.path),
follow: toSymlinkFollow(props.follow),
follow: props.followSymlinks ?? toSymlinkFollow(props.follow),
assetHash: props.assetHash ?? props.sourceHash,
});

Expand Down
51 changes: 37 additions & 14 deletions packages/@aws-cdk/core/lib/fs/options.ts
Expand Up @@ -56,19 +56,9 @@ export enum IgnoreMode {
* context flag is set.
*/
DOCKER = 'docker'
};

/**
* Obtains applied when copying directories into the staging location.
*/
export interface CopyOptions {
/**
* A strategy for how to handle symlinks.
*
* @default SymlinkFollowMode.NEVER
*/
readonly follow?: SymlinkFollowMode;
}

interface FileOptions {
/**
* Glob patterns to exclude from the copy.
*
Expand All @@ -85,9 +75,30 @@ export interface CopyOptions {
}

/**
* Options related to calculating source hash.
* Options applied when copying directories
*/
export interface CopyOptions extends FileOptions {
/**
* A strategy for how to handle symlinks.
*
* @default SymlinkFollowMode.NEVER
*/
readonly follow?: SymlinkFollowMode;
}

/**
* Options applied when copying directories into the staging location.
*/
export interface FingerprintOptions extends CopyOptions {
export interface FileCopyOptions extends FileOptions {
/**
* A strategy for how to handle symlinks.
*
* @default SymlinkFollowMode.NEVER
*/
readonly followSymlinks?: SymlinkFollowMode;
}

interface ExtraHashOptions {
/**
* Extra information to encode into the fingerprint (e.g. build instructions
* and other inputs)
Expand All @@ -96,3 +107,15 @@ export interface FingerprintOptions extends CopyOptions {
*/
readonly extraHash?: string;
}

/**
* Options related to calculating source hash.
*/
export interface FingerprintOptions extends CopyOptions, ExtraHashOptions {
}

/**
* Options related to calculating source hash.
*/
export interface FileFingerprintOptions extends FileCopyOptions, ExtraHashOptions {
}

0 comments on commit dfe0c57

Please sign in to comment.