Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: streamich/memfs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.9.4
Choose a base ref
...
head repository: streamich/memfs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.10.0
Choose a head ref
  • 7 commits
  • 8 files changed
  • 2 contributors

Commits on Jul 27, 2024

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    99ebd64 View commit details
  2. Copy the full SHA
    ad54ddb View commit details
  3. feat: 🎸 implement FileHandle.readableWebStream()

    streamich committed Jul 27, 2024
    Copy the full SHA
    c3ddc6c View commit details
  4. style: 💄 run Prettier

    streamich committed Jul 27, 2024
    Copy the full SHA
    2f1d90c View commit details
  5. chore: 🤖 fix typescheck error

    streamich committed Jul 27, 2024
    Copy the full SHA
    ca9f2ef View commit details
  6. Merge pull request #1045 from streamich/promises.readableWebStream

    Add initial `.readableWebStream()` implementation
    streamich authored Jul 27, 2024
    Copy the full SHA
    fd4a820 View commit details
  7. chore(release): 4.10.0 [skip ci]

    # [4.10.0](v4.9.4...v4.10.0) (2024-07-27)
    
    ### Features
    
    * 🎸 add IReadableWebStreamOptions type ([99ebd64](99ebd64))
    * 🎸 implement FileHandle.readableWebStream() ([c3ddc6c](c3ddc6c))
    semantic-release-bot committed Jul 27, 2024
    Copy the full SHA
    c9d7497 View commit details
Showing with 52 additions and 36 deletions.
  1. +8 −0 CHANGELOG.md
  2. +2 −2 package.json
  3. +16 −0 src/__tests__/volume/FileHandle.test.ts
  4. +2 −5 src/fsa-to-node/json.ts
  5. +10 −0 src/node/FileHandle.ts
  6. +2 −1 src/node/types/misc.ts
  7. +4 −0 src/node/types/options.ts
  8. +8 −28 yarn.lock
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [4.10.0](https://github.com/streamich/memfs/compare/v4.9.4...v4.10.0) (2024-07-27)


### Features

* 🎸 add IReadableWebStreamOptions type ([99ebd64](https://github.com/streamich/memfs/commit/99ebd6491e4886dc9947d5b3c867241b7158357a))
* 🎸 implement FileHandle.readableWebStream() ([c3ddc6c](https://github.com/streamich/memfs/commit/c3ddc6c21ea112056ee84e3c131f09f5b2582779))

## [4.9.4](https://github.com/streamich/memfs/compare/v4.9.3...v4.9.4) (2024-07-23)


4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "memfs",
"version": "4.9.4",
"version": "4.10.0",
"description": "In-memory file-system with Node's fs API.",
"keywords": [
"fs",
@@ -125,7 +125,7 @@
},
"dependencies": {
"@jsonjoy.com/json-pack": "^1.0.3",
"@jsonjoy.com/util": "^1.1.2",
"@jsonjoy.com/util": "^1.3.0",
"tree-dump": "^1.0.1",
"tslib": "^2.0.0"
},
16 changes: 16 additions & 0 deletions src/__tests__/volume/FileHandle.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { fromStream } from '@jsonjoy.com/util/lib/streams/fromStream';
import { createFs } from '../util';

describe('FileHandle', () => {
describe('.readableWebStream()', () => {
it('can read contest of a file', async () => {
const fs = createFs();
fs.writeFileSync('/foo', 'bar');
const handle = await fs.promises.open('/foo', 'r');
const stream = handle.readableWebStream();
expect(stream).toBeInstanceOf(ReadableStream);
const data = fromStream(stream);
expect(await data).toEqual(Buffer.from('bar'));
});
});
});
7 changes: 2 additions & 5 deletions src/fsa-to-node/json.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
import { CborEncoder } from '@jsonjoy.com/json-pack/lib/cbor/CborEncoder';
import { CborDecoder } from '@jsonjoy.com/json-pack/lib/cbor/CborDecoder';

export const encoder = new CborEncoder();
export const decoder = new CborDecoder();
import { encoder, decoder } from '@jsonjoy.com/json-pack/lib/cbor/shared';
export { encoder, decoder };
10 changes: 10 additions & 0 deletions src/node/FileHandle.ts
Original file line number Diff line number Diff line change
@@ -33,6 +33,16 @@ export class FileHandle implements IFileHandle {
return promisify(this.fs, 'fdatasync')(this.fd);
}

readableWebStream(options?: opts.IReadableWebStreamOptions): ReadableStream {
return new ReadableStream({
pull: async controller => {
const data = await this.readFile();
controller.enqueue(data);
controller.close();
},
});
}

read(buffer: Buffer | Uint8Array, offset: number, length: number, position: number): Promise<TFileHandleReadResult> {
return promisify(this.fs, 'read', bytesRead => ({ bytesRead, buffer }))(this.fd, buffer, offset, length, position);
}
3 changes: 2 additions & 1 deletion src/node/types/misc.ts
Original file line number Diff line number Diff line change
@@ -4,8 +4,8 @@ import type { EventEmitter } from 'events';
import type { TSetTimeout } from '../../setTimeoutUnref';
import type {
IAppendFileOptions,
IReadableWebStreamOptions,
IReadFileOptions,
IReadStreamOptions,
IStatOptions,
IWriteFileOptions,
} from './options';
@@ -129,6 +129,7 @@ export interface IFileHandle {
chown(uid: number, gid: number): Promise<void>;
close(): Promise<void>;
datasync(): Promise<void>;
readableWebStream(options?: IReadableWebStreamOptions): ReadableStream;
read(buffer: Buffer | Uint8Array, offset: number, length: number, position: number): Promise<TFileHandleReadResult>;
readv(buffers: ArrayBufferView[], position?: number | null): Promise<TFileHandleReadvResult>;
readFile(options?: IReadFileOptions | string): Promise<TDataOut>;
4 changes: 4 additions & 0 deletions src/node/types/options.ts
Original file line number Diff line number Diff line change
@@ -32,6 +32,10 @@ export interface IFStatOptions {

export interface IAppendFileOptions extends IFileOptions {}

export interface IReadableWebStreamOptions {
type?: 'bytes' | undefined;
}

export interface IReaddirOptions extends IOptions {
recursive?: boolean;
withFileTypes?: boolean;
36 changes: 8 additions & 28 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -616,6 +616,11 @@
resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-1.2.0.tgz#0fe9a92de72308c566ebcebe8b5a3f01d3149df2"
integrity sha512-4B8B+3vFsY4eo33DMKyJPlQ3sBMpPFUZK2dr3O3rXrOGKKbYG44J0XSFkDo1VOQiri5HFEhIeVvItjR2xcazmg==

"@jsonjoy.com/util@^1.3.0":
version "1.3.0"
resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-1.3.0.tgz#e5623885bb5e0c48c1151e4dae422fb03a5887a1"
integrity sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==

"@leichtgewicht/ip-codec@^2.0.1":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1"
@@ -6837,16 +6842,7 @@ string-length@^4.0.1:
char-regex "^1.0.2"
strip-ansi "^6.0.0"

"string-width-cjs@npm:string-width@^4.2.0":
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
dependencies:
emoji-regex "^8.0.0"
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"

"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -6906,14 +6902,7 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"

"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"

strip-ansi@^6.0.0, strip-ansi@^6.0.1:
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -7740,16 +7729,7 @@ wordwrap@^1.0.0:
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==

"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"

wrap-ansi@^7.0.0:
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==