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

UI-9435 - Better handling of calculated measures #126

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion bin.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node
require("./dist/cli/bin.js");
require("./dist/bin.js");
6 changes: 6 additions & 0 deletions src/4.3_to_5.0/migrate_43_to_50.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ describe("migrate_43_to_50", () => {
servers,
doesReportIncludeStacks: false,
shouldUpdateFiltersMdx: true,
shouldMigrateCalculatedMeasures: true,
});
const migratedUIFolder = contentServer.children?.ui;
expect(migratedUIFolder).toMatchSnapshot();
Expand All @@ -88,6 +89,7 @@ describe("migrate_43_to_50", () => {
servers,
doesReportIncludeStacks: false,
shouldUpdateFiltersMdx: true,
shouldMigrateCalculatedMeasures: true,
});
const migratedUIFolder = contentServer.children?.ui;
expect(migratedUIFolder).toMatchSnapshot();
Expand All @@ -106,6 +108,7 @@ describe("migrate_43_to_50", () => {
servers,
doesReportIncludeStacks: false,
shouldUpdateFiltersMdx: true,
shouldMigrateCalculatedMeasures: true,
});

const migratedUIFolder = contentServer.children?.ui;
Expand All @@ -125,6 +128,7 @@ describe("migrate_43_to_50", () => {
keysOfWidgetPluginsToRemove,
doesReportIncludeStacks: false,
shouldUpdateFiltersMdx: true,
shouldMigrateCalculatedMeasures: true,
});

// In the ActiveUI 4 folder, the file with id `0xb` represents a saved Page Filters widget.
Expand Down Expand Up @@ -191,6 +195,7 @@ describe("migrate_43_to_50", () => {
servers,
doesReportIncludeStacks: false,
shouldUpdateFiltersMdx: true,
shouldMigrateCalculatedMeasures: true,
});

const migratedUIFolder = contentServer.children?.ui;
Expand Down Expand Up @@ -257,6 +262,7 @@ describe("migrate_43_to_50", () => {
servers,
doesReportIncludeStacks: false,
shouldUpdateFiltersMdx: true,
shouldMigrateCalculatedMeasures: true,
});

const migratedUIFolder = contentServer.children?.ui;
Expand Down
4 changes: 3 additions & 1 deletion src/4.3_to_5.0/migrate_43_to_50.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ export async function migrate_43_to_50(
doesReportIncludeStacks,
shouldUpdateFiltersMdx,
treeTableColumnWidth,
shouldMigrateCalculatedMeasures,
}: {
errorReport: ErrorReport;
counters: OutcomeCounters;
Expand All @@ -224,6 +225,7 @@ export async function migrate_43_to_50(
doesReportIncludeStacks: boolean;
shouldUpdateFiltersMdx: boolean;
treeTableColumnWidth?: [number, number];
shouldMigrateCalculatedMeasures: boolean;
},
): Promise<void> {
if (contentServer.children?.ui === undefined) {
Expand Down Expand Up @@ -492,7 +494,7 @@ export async function migrate_43_to_50(

migratedUIFolder.children = {
...migratedUIFolder.children,
...(legacyPivotFolder
...(legacyPivotFolder && shouldMigrateCalculatedMeasures
? {
calculated_measures: await migrateCalculatedMeasures(
legacyPivotFolder,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { uiCalculatedMeasuresFolder } from "../__test_resources__/uiCalculatedMe
import { ErrorReport, OutcomeCounters } from "../../migration.types";
import _cloneDeep from "lodash/cloneDeep";
import _fromPairs from "lodash/fromPairs";
import { sandboxDataModel } from "@activeviam/data-model-5.1/dist/__test_resources__";

const dataModels = { sandbox: sandboxDataModel };

const contentServerForTests = _cloneDeep(contentServer);
const errorReport: ErrorReport = {};
Expand Down Expand Up @@ -45,15 +48,15 @@ migrateSavedCalculatedMeasures({
counters,
doesReportIncludeStacks: false,
step: "5.0 to 5.1",
dataModels,
});

describe("migrateSavedCalculatedMeasures", () => {
it("migrates the serialized definitions of all calculated measures created with ActiveUI 5.0 and used in a saved dashboard or saved widget, into ones that are natively supported by ActivePivot", () => {
it("migrates the serialized definitions of all calculated measures created with ActiveUI 5.0, into ones that are natively supported by ActivePivot", () => {
// `uiCalculatedMeasuresFolder` contains 5 calculated measures.
// "Exp gamma sum" is not used in any saved widgets or dashboards, it is not migrated.
expect(counters.calculated_measures.success).toEqual(4);
expect(counters.calculated_measures.failed).toEqual(1);
expect(counters.calculated_measures.success).toEqual(5);

// "Exp gamma sum" is not used in any saved widget or dashboard. By default, it is associated with the first cube in the data model: `EquityDerivativesCube`.
// "CM in 2 cubes" is used in both `EquityDerivativesCube` and `EquityDerivativesCubeDist`.
// All others are only used in `EquityDerivativesCube`.
// "Log pv.SUM" is inside a folder.
Expand All @@ -67,6 +70,7 @@ describe("migrateSavedCalculatedMeasures", () => {
"[Measures].[testo]",
"[Measures].[new measure*]",
"[Measures].[Distinct count city]",
"[Measures].[Exp gamma sum]",
"[Measures].[Log pv.SUM]",
"[Measures].[CM in 2 cubes]",
"[Measures].[Test calculated measure]",
Expand Down Expand Up @@ -127,21 +131,4 @@ describe("migrateSavedCalculatedMeasures", () => {
contentServerForTests.children!.ui.children!.calculated_measures,
).toBeUndefined();
});

it("adds a warning to the `errorReport` that a calculated measure has not been migrated if it is not used in any saved widgets or dashboards", () => {
expect(errorReport).toStrictEqual({
calculated_measures: {
"501": {
error: {
message:
'Warning: Calculated measure "Exp gamma sum" was not migrated because it is not currently used in any saved widgets or dashboards.',
},
folderId: ["a14"],
folderName: ["New folder"],
name: "Exp gamma sum",
step: "5.0 to 5.1",
},
},
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { ErrorReport, OutcomeCounters } from "../../migration.types";
import { _getFilesAncestry } from "../../_getFilesAncestry";
import { _serializeError } from "../../_serializeError";
import { _getMetaData } from "../../_getMetaData";
import { DataModel } from "@activeviam/activeui-sdk-5.1";

const contentServerWithEmptyPivotCalculatedMeasuresFolder = {
entry: {
Expand Down Expand Up @@ -72,6 +73,7 @@ export function migrateSavedCalculatedMeasures({
doesReportIncludeStacks,
step,
contentServerVersion,
dataModels,
}: {
contentServer: ContentRecord;
measureToCubeMapping: { [measureName: string]: string[] };
Expand All @@ -80,6 +82,9 @@ export function migrateSavedCalculatedMeasures({
doesReportIncludeStacks: boolean;
step: string;
contentServerVersion?: string;
dataModels: {
[serverKey: string]: DataModel;
};
}): void {
const legacyCalculatedMeasuresFolder =
contentServer.children?.ui?.children?.calculated_measures;
Expand All @@ -89,6 +94,10 @@ export function migrateSavedCalculatedMeasures({
return;
}

const catalogs = Object.values(dataModels)[0].catalogs;
const cubes = Object.values(catalogs)[0].cubes;
const nameOfFirstCube = Object.keys(cubes)[0];

// Make sure that the folder /pivot/entitlements/cm folder exists.
_defaultsDeep(
contentServer,
Expand All @@ -104,26 +113,12 @@ export function migrateSavedCalculatedMeasures({
const measureName = _getMetaData(structure, folderId, id).name!;

try {
const cubeNames = measureToCubeMapping[measureName];
if (!cubeNames) {
// The calculated measure is not used in any saved widgets or dashboards.
// Do not migrate it.
counters.calculated_measures.failed++;
_addErrorToReport(errorReport, {
contentType: "calculated_measures",
folderId,
folderName,
fileErrorReport: {
error: {
message: `Warning: Calculated measure "${measureName}" was not migrated because it is not currently used in any saved widgets or dashboards.`,
},
},
fileId: id,
name: measureName,
step,
});
return;
}
const cubeNames = measureToCubeMapping[
measureName
] ?? /** The saved calculated measure is not used in any widget.
* So it's impossible to infer the cube it is associated with.
* Default to the first cube in the data models.
*/ [nameOfFirstCube];

const migratedContent = migrateSavedCalculatedMeasureContent(
JSON.parse(record.entry.content),
Expand Down
1 change: 1 addition & 0 deletions src/5.0_to_5.1/migrate_5.0_to_5.1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export const migrate_50_to_51: MigrationFunction = (
doesReportIncludeStacks,
step: "5.0 to 5.1",
contentServerVersion,
dataModels,
});

migrateSavedFilters(
Expand Down
74 changes: 53 additions & 21 deletions src/cli/bin.ts → src/bin.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
import yargs from "yargs";
import { BehaviorOnError } from "../migration.types";
import { migrateContentServer } from "./scripts/migrateContentServer";
import { migrateNotebook } from "./scripts/migrateNotebook";
import fs from "fs-extra";
import path from "path";
import { BehaviorOnError } from "./migration.types";
import { migrateNotebook } from "./migrateNotebook";
import {
convertFromVersion,
convertToVersion,
convertVersions,
validFromVersions,
validToVersions,
} from "./scripts/convertAtotiToAUIVersions";
import { getTreeColumnWidthFromArgs } from "../getTreeColumnWidthFromArgs";
} from "./convertAtotiToAUIVersions";
import { getTreeColumnWidthFromArgs } from "./getTreeColumnWidthFromArgs";
import { migrateContentServer } from "./migrateContentServer";
import { DataModel, ContentRecord } from "@activeviam/activeui-sdk-5.1";
import { logMigrationReport } from "./logMigrationReport";

const supportedFileExtension = ["JSON", "IPYNB"];

Expand Down Expand Up @@ -127,7 +131,7 @@ yargs
});
args.implies("stack", "debug");
},
({
async ({
inputPath,
outputPath,
serversPath,
Expand All @@ -141,6 +145,7 @@ yargs
onError,
}) => {
const doesReportIncludeStacks = stack;
const behaviorOnError = onError;

const fileExtension = getFileExtension(inputPath);
const { fromVersion: validFromVersion, toVersion: validToVersion } =
Expand All @@ -149,32 +154,59 @@ yargs
toVersion,
});

const fileToMigrate: ContentRecord = await fs.readJSON(inputPath);

const servers: {
[serverKey: string]: {
dataModel: DataModel<"raw">;
url: string;
};
} & { contentServerVersion?: string } = await fs.readJSON(serversPath);

if (fileExtension === "JSON") {
// Ensure that Atoti versions are not used as versions to migrate content server
migrateContentServer({
inputPath,
outputPath,
serversPath,
const { counters, errorReport } = await migrateContentServer({
contentServer: fileToMigrate,
servers,
fromVersion: validFromVersion,
toVersion: validToVersion,
removeWidgets,
debug,
keysOfWidgetPluginsToRemove: removeWidgets,
doesReportIncludeStacks,
onError,
behaviorOnError: onError,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Out of scope, since this problem existed before this PR, but this renaming of variable is an easily avoidable obstacle to debugging, because it means that from a function to the next, the variable is named one thing or another, creating an artificial difficulty during debugging.

image

Here, I would rename everything either onError or behaviorOnError.
But no need to do anything about it in this PR.

Copy link
Collaborator Author

@antoinetissier antoinetissier May 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes I completely agree. I seem to remember that we didn't do it earlier because we didn't want to break the migration commands for users of the CLI ?
As long as we update the doc too though I don't see that being a big issue.
And a meet-in-the-middle approach would be to use behaviorOnError as the command arg name, and put onError as an alias so that it doesn't break anything.

treeTableColumnWidth: treeColumnWidth
? getTreeColumnWidthFromArgs(treeColumnWidth)
: undefined,
shouldUpdateFiltersMdx:
updateFiltersMdx === undefined ? true : updateFiltersMdx,
});

const { dir } = path.parse(outputPath);
await Promise.all([
fs.writeJSON(outputPath, fileToMigrate, { spaces: 2 }),
logMigrationReport({
counters,
errorReport,
debug,
doesReportIncludeStacks,
migrationOutputDirectory: dir,
behaviorOnError,
}),
]);
} else {
migrateNotebook({
inputPath,
outputPath,
serversPath,
fromVersion: validFromVersion,
toVersion: validToVersion,
});
const { numberOfMigratedWidgets, numberOfFailures } =
await migrateNotebook({
notebook: fileToMigrate,
servers,
fromVersion: validFromVersion,
toVersion: validToVersion,
});

await fs.writeJSON(outputPath, fileToMigrate, { spaces: 2 });
console.log(
`- Succesfully migrated ${numberOfMigratedWidgets} widget(s).`,
);
if (numberOfFailures > 0) {
console.log(`- Failed to migrate ${numberOfFailures} widget(s)`);
}
}
},
)
Expand Down
Loading
Loading