Skip to content

Commit 1fddbc2

Browse files
authored
Merge 8b0c309 into 5335e7a
2 parents 5335e7a + 8b0c309 commit 1fddbc2

24 files changed

+832
-175
lines changed

packages/firestore/src/core/firestore_client.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ import { Document } from '../model/document';
4141
import { DocumentKey } from '../model/document_key';
4242
import { Mutation } from '../model/mutation';
4343
import { toByteStreamReader } from '../platform/byte_stream_reader';
44-
import { newSerializer, newTextEncoder } from '../platform/serializer';
44+
import { newSerializer } from '../platform/serializer';
45+
import { newTextEncoder } from '../platform/text_serializer';
4546
import { Datastore } from '../remote/datastore';
4647
import {
4748
canUseNetwork,

packages/firestore/src/model/path.ts

+5
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,11 @@ abstract class BasePath<B extends BasePath<B>> {
163163
return this.segments.slice(this.offset, this.limit());
164164
}
165165

166+
// TODO(Mila): Use database info and toString() to get full path instead.
167+
toFullPath(): string {
168+
return this.segments.join('/');
169+
}
170+
166171
static comparator<T extends BasePath<T>>(
167172
p1: BasePath<T>,
168173
p2: BasePath<T>

packages/firestore/src/platform/browser/serializer.ts

-14
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,3 @@ import { JsonProtoSerializer } from '../../remote/serializer';
2222
export function newSerializer(databaseId: DatabaseId): JsonProtoSerializer {
2323
return new JsonProtoSerializer(databaseId, /* useProto3Json= */ true);
2424
}
25-
26-
/**
27-
* An instance of the Platform's 'TextEncoder' implementation.
28-
*/
29-
export function newTextEncoder(): TextEncoder {
30-
return new TextEncoder();
31-
}
32-
33-
/**
34-
* An instance of the Platform's 'TextDecoder' implementation.
35-
*/
36-
export function newTextDecoder(): TextDecoder {
37-
return new TextDecoder('utf-8');
38-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/**
2+
* @license
3+
* Copyright 2023 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
/**
19+
* An instance of the Platform's 'TextEncoder' implementation.
20+
*/
21+
export function newTextEncoder(): TextEncoder {
22+
return new TextEncoder();
23+
}
24+
25+
/**
26+
* An instance of the Platform's 'TextDecoder' implementation.
27+
*/
28+
export function newTextDecoder(): TextDecoder {
29+
return new TextDecoder('utf-8');
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2023 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
export * from '../browser/text_serializer';

packages/firestore/src/platform/node/serializer.ts

-16
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,9 @@
1616
*/
1717

1818
/** Return the Platform-specific serializer monitor. */
19-
import { TextDecoder, TextEncoder } from 'util';
20-
2119
import { DatabaseId } from '../../core/database_info';
2220
import { JsonProtoSerializer } from '../../remote/serializer';
2321

2422
export function newSerializer(databaseId: DatabaseId): JsonProtoSerializer {
2523
return new JsonProtoSerializer(databaseId, /* useProto3Json= */ false);
2624
}
27-
28-
/**
29-
* An instance of the Platform's 'TextEncoder' implementation.
30-
*/
31-
export function newTextEncoder(): TextEncoder {
32-
return new TextEncoder();
33-
}
34-
35-
/**
36-
* An instance of the Platform's 'TextDecoder' implementation.
37-
*/
38-
export function newTextDecoder(): TextDecoder {
39-
return new TextDecoder('utf-8');
40-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/**
2+
* @license
3+
* Copyright 2023 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
import { TextDecoder, TextEncoder } from 'util';
19+
20+
/**
21+
* An instance of the Platform's 'TextEncoder' implementation.
22+
*/
23+
export function newTextEncoder(): TextEncoder {
24+
return new TextEncoder();
25+
}
26+
27+
/**
28+
* An instance of the Platform's 'TextDecoder' implementation.
29+
*/
30+
export function newTextDecoder(): TextDecoder {
31+
return new TextDecoder('utf-8');
32+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2023 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
export * from '../browser_lite/text_serializer';

packages/firestore/src/platform/rn/serializer.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,4 @@
1515
* limitations under the License.
1616
*/
1717

18-
export {
19-
newSerializer,
20-
newTextEncoder,
21-
newTextDecoder
22-
} from '../browser/serializer';
18+
export { newSerializer } from '../browser/serializer';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2023 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
export { newTextEncoder, newTextDecoder } from '../browser/text_serializer';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2023 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
export * from '../browser_lite/text_serializer';

packages/firestore/src/platform/serializer.ts

-32
Original file line numberDiff line numberDiff line change
@@ -15,45 +15,13 @@
1515
* limitations under the License.
1616
*/
1717

18-
import { isNode, isReactNative } from '@firebase/util';
19-
2018
import { DatabaseId } from '../core/database_info';
2119
import { JsonProtoSerializer } from '../remote/serializer';
2220

23-
import * as browser from './browser/serializer';
24-
import * as node from './node/serializer';
25-
import * as rn from './rn/serializer';
26-
2721
// This file is only used under ts-node.
2822
// eslint-disable-next-line @typescript-eslint/no-require-imports
2923
const platform = require(`./${process.env.TEST_PLATFORM ?? 'node'}/serializer`);
3024

3125
export function newSerializer(databaseId: DatabaseId): JsonProtoSerializer {
3226
return platform.newSerializer(databaseId);
3327
}
34-
35-
/**
36-
* An instance of the Platform's 'TextEncoder' implementation.
37-
*/
38-
export function newTextEncoder(): TextEncoder {
39-
if (isNode()) {
40-
return node.newTextEncoder();
41-
} else if (isReactNative()) {
42-
return rn.newTextEncoder();
43-
} else {
44-
return browser.newTextEncoder();
45-
}
46-
}
47-
48-
/**
49-
* An instance of the Platform's 'TextDecoder' implementation.
50-
*/
51-
export function newTextDecoder(): TextDecoder {
52-
if (isNode()) {
53-
return node.newTextDecoder() as TextDecoder;
54-
} else if (isReactNative()) {
55-
return rn.newTextDecoder();
56-
} else {
57-
return browser.newTextDecoder();
58-
}
59-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/**
2+
* @license
3+
* Copyright 2023 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
import { isNode, isReactNative } from '@firebase/util';
19+
20+
import * as browser from './browser/text_serializer';
21+
import * as node from './node/text_serializer';
22+
import * as rn from './rn/text_serializer';
23+
24+
/**
25+
* An instance of the Platform's 'TextEncoder' implementation.
26+
*/
27+
export function newTextEncoder(): TextEncoder {
28+
if (isNode()) {
29+
return node.newTextEncoder();
30+
} else if (isReactNative()) {
31+
return rn.newTextEncoder();
32+
} else {
33+
return browser.newTextEncoder();
34+
}
35+
}
36+
37+
/**
38+
* An instance of the Platform's 'TextDecoder' implementation.
39+
*/
40+
export function newTextDecoder(): TextDecoder {
41+
if (isNode()) {
42+
return node.newTextDecoder() as TextDecoder;
43+
} else if (isReactNative()) {
44+
return rn.newTextDecoder();
45+
} else {
46+
return browser.newTextDecoder();
47+
}
48+
}

0 commit comments

Comments
 (0)