Skip to content
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

[python] always respect namespace from TCGC #5649

Merged
merged 41 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0176e7c
update root namespace
msyyc Jan 16, 2025
fba0781
update regnerate.ts
msyyc Jan 17, 2025
e81ec40
fix ci
msyyc Jan 17, 2025
88e8473
fix test
msyyc Jan 17, 2025
3c28991
fix ci
msyyc Jan 17, 2025
4ac4d73
for debug
msyyc Jan 17, 2025
457f385
update test
msyyc Jan 17, 2025
b5fa827
udpate test
msyyc Jan 17, 2025
117ec41
udpate test
msyyc Jan 17, 2025
c952ec6
update test
msyyc Jan 17, 2025
3fe1be9
fix ci
msyyc Jan 20, 2025
de09b5c
update tox.ini
msyyc Jan 20, 2025
82afed4
Merge branch 'main' of https://github.com/microsoft/typespec into upd…
msyyc Jan 20, 2025
63c3dc7
udpate status
msyyc Jan 20, 2025
3341ab2
update test
msyyc Jan 21, 2025
49e9b27
Merge branch 'main' into update-root-namespace
msyyc Mar 12, 2025
008d325
Merge branch 'main' into update-root-namespace
msyyc Mar 13, 2025
0b05d8a
Create update-root-namespace-2025-2-12-6-11-5.md
msyyc Mar 13, 2025
bec727a
update
msyyc Mar 13, 2025
5224e89
Merge branch 'main' of https://github.com/microsoft/typespec into upd…
msyyc Mar 14, 2025
35705ac
update
msyyc Mar 14, 2025
1fb6dbf
update
msyyc Mar 14, 2025
8067b71
udpate
msyyc Mar 14, 2025
28d97b6
update
msyyc Mar 14, 2025
99e8a52
update
msyyc Mar 17, 2025
a05b266
update package.json
msyyc Mar 17, 2025
9583773
Merge branch 'main' of https://github.com/microsoft/typespec into upd…
msyyc Mar 17, 2025
c9dd60b
update
msyyc Mar 17, 2025
bfef02f
update
msyyc Mar 18, 2025
10fa16a
Merge branch 'main' into update-root-namespace
msyyc Mar 18, 2025
a78638c
review
msyyc Mar 18, 2025
c0537ff
Merge branch 'update-root-namespace' of https://github.com/microsoft/…
msyyc Mar 18, 2025
f3bec5b
review
msyyc Mar 18, 2025
30cf71d
review
msyyc Mar 18, 2025
f32b988
review
msyyc Mar 18, 2025
327af2d
merge
msyyc Mar 21, 2025
1550de4
update
msyyc Mar 21, 2025
1418b83
Fix typo in update-root-namespace file
msyyc Mar 21, 2025
80c8aef
Merge branch 'main' of https://github.com/microsoft/typespec into upd…
msyyc Mar 24, 2025
9f1ddd4
bump tcgc 0.53.1
msyyc Mar 24, 2025
3999daa
Update packages/http-client-python/generator/pygen/codegen/serializer…
msyyc Mar 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .chronus/changes/update-root-namespace-2025-2-12-6-11-5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
# Change versionKind to one of: internal, fix, dependencies, feature, deprecation, breaking
changeKind: fix
packages:
- "@typespec/http-client-python"
---

Always respect namespace from TCGC
16 changes: 3 additions & 13 deletions packages/http-client-python/emitter/src/code-model.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {
SdkApiVersionParameter,
SdkBasicServiceMethod,
SdkClientType,
SdkCredentialParameter,
Expand Down Expand Up @@ -33,12 +32,7 @@ import {
simpleTypesMap,
typesMap,
} from "./types.js";
import {
emitParamBase,
getClientNamespace,
getImplementation,
removeUnderscoresFromNamespace,
} from "./utils.js";
import { emitParamBase, getClientNamespace, getImplementation, getRootNamespace } from "./utils.js";

function emitBasicMethod<TServiceOperation extends SdkServiceOperation>(
context: PythonSdkContext<TServiceOperation>,
Expand Down Expand Up @@ -106,11 +100,7 @@ function emitLroPagingMethod<TServiceOperation extends SdkServiceOperation>(

function emitMethodParameter<TServiceOperation extends SdkServiceOperation>(
context: PythonSdkContext<TServiceOperation>,
parameter:
| SdkEndpointParameter
| SdkCredentialParameter
| SdkMethodParameter
| SdkApiVersionParameter,
parameter: SdkEndpointParameter | SdkCredentialParameter | SdkMethodParameter,
): Record<string, any>[] {
if (parameter.kind === "endpoint") {
if (parameter.type.kind === "union") {
Expand Down Expand Up @@ -286,7 +276,7 @@ export function emitCodeModel<TServiceOperation extends SdkServiceOperation>(
// Get types
const sdkPackage = sdkContext.sdkPackage;
const codeModel: Record<string, any> = {
namespace: removeUnderscoresFromNamespace(sdkPackage.rootNamespace).toLowerCase(),
namespace: getRootNamespace(sdkContext),
clients: [],
};
for (const client of sdkPackage.clients) {
Expand Down
16 changes: 9 additions & 7 deletions packages/http-client-python/emitter/src/emitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { saveCodeModelAsYaml } from "./external-process.js";
import { PythonEmitterOptions, PythonSdkContext, reportDiagnostic } from "./lib.js";
import { runPython3 } from "./run-python3.js";
import { disableGenerationMap, simpleTypesMap, typesMap } from "./types.js";
import { md2Rst, removeUnderscoresFromNamespace } from "./utils.js";
import { getRootNamespace, md2Rst } from "./utils.js";

export function getModelsMode(context: SdkContext): "dpg" | "none" {
const specifiedModelsMode = context.emitContext.options["models-mode"];
Expand Down Expand Up @@ -50,9 +50,14 @@ function addDefaultOptions(sdkContext: SdkContext) {
options["package-mode"] = sdkContext.arm ? "azure-mgmt" : "azure-dataplane";
}
if (!options["package-name"]) {
options["package-name"] = removeUnderscoresFromNamespace(
(sdkContext.sdkPackage.rootNamespace ?? "").toLowerCase(),
).replace(/\./g, "-");
const namespace = getRootNamespace(sdkContext as PythonSdkContext<SdkServiceOperation>);
const packageName = namespace.replace(/\./g, "-");
reportDiagnostic(sdkContext.program, {
code: "no-package-name",
target: NoTarget,
format: { namespace, packageName },
});
options["package-name"] = packageName;
}
if (options.flavor !== "azure") {
// if they pass in a flavor other than azure, we want to ignore the value
Expand All @@ -61,9 +66,6 @@ function addDefaultOptions(sdkContext: SdkContext) {
if (!options.flavor && sdkContext.emitContext.emitterOutputDir.includes("azure")) {
options.flavor = "azure";
}
if (options["enable-typespec-namespace"] === undefined) {
options["enable-typespec-namespace"] = options.flavor !== "azure";
}
}

async function createPythonSdkContext<TServiceOperation extends SdkServiceOperation>(
Expand Down
12 changes: 8 additions & 4 deletions packages/http-client-python/emitter/src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ export interface PythonEmitterOptions {
debug?: boolean;
flavor?: "azure";
"examples-dir"?: string;
// If true, package namespace will respect the typespec namespace. Otherwise,
// package namespace is always aligned with package name.
"enable-typespec-namespace"?: boolean;
namespace?: string;
"use-pyodide"?: boolean;
}

Expand Down Expand Up @@ -47,7 +45,7 @@ const EmitterOptionsSchema: JSONSchemaType<PythonEmitterOptions> = {
debug: { type: "boolean", nullable: true },
flavor: { type: "string", nullable: true },
"examples-dir": { type: "string", nullable: true, format: "absolute-path" },
"enable-typespec-namespace": { type: "boolean", nullable: true },
namespace: { type: "string", nullable: true },
"use-pyodide": { type: "boolean", nullable: true },
},
required: [],
Expand Down Expand Up @@ -77,6 +75,12 @@ const libDef = {
},
},
// warning
"no-package-name": {
severity: "warning",
messages: {
default: paramMessage`No package-name configured in tspconfig.yaml and will infer package-name '${"packageName"}' from namespace '${"namespace"}'.`,
},
},
"no-valid-client": {
severity: "warning",
messages: {
Expand Down
50 changes: 32 additions & 18 deletions packages/http-client-python/emitter/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,31 +242,45 @@ export function capitalize(name: string): string {
return name[0].toUpperCase() + name.slice(1);
}

const LIB_NAMESPACE = [
"azure.core",
"azure.resourcemanager",
"azure.clientgenerator.core",
"typespec.rest",
"typespec.http",
"typespec.versioning",
];

export function getRootNamespace(context: PythonSdkContext<SdkServiceOperation>): string {
let rootNamespace = "";
if (context.sdkPackage.clients.length > 0) {
rootNamespace = context.sdkPackage.clients[0].namespace;
} else if (context.sdkPackage.models.length > 0) {
const result = context.sdkPackage.models
.map((model) => model.namespace)
.filter((namespace) => !LIB_NAMESPACE.includes(namespace));
if (result.length > 0) {
result.sort();
rootNamespace = result[0];
}
} else if (context.sdkPackage.namespaces.length > 0) {
rootNamespace = context.sdkPackage.namespaces[0].fullName;
}

return removeUnderscoresFromNamespace(rootNamespace).toLowerCase();
}

export function getClientNamespace<TServiceOperation extends SdkServiceOperation>(
context: PythonSdkContext<TServiceOperation>,
clientNamespace: string,
) {
const rootNamespace = removeUnderscoresFromNamespace(
context.sdkPackage.rootNamespace,
).toLowerCase();
if (!context.emitContext.options["enable-typespec-namespace"]) {
return rootNamespace;
}
if (
[
"azure.core",
"azure.resourcemanager",
"azure.clientgenerator.core",
"typespec.rest",
"typespec.http",
"typespec.versioning",
].some((item) => clientNamespace.toLowerCase().startsWith(item))
clientNamespace === "" ||
LIB_NAMESPACE.some((item) => clientNamespace.toLowerCase().startsWith(item))
) {
return rootNamespace;
return getRootNamespace(context);
}
return clientNamespace === ""
? rootNamespace
: removeUnderscoresFromNamespace(clientNamespace).toLowerCase();
return removeUnderscoresFromNamespace(clientNamespace).toLowerCase();
}

function parseToken(token: Token): string {
Expand Down
Loading
Loading