tableau icon indicating copy to clipboard operation
tableau copied to clipboard

metabook: add API to return all workbooks’ descriptors

Open wenchy opened this issue 3 years ago • 0 comments

Note: if this workbook has no metasheet @TABLEAU, then auto scan and find the main workbook (with Merger configured).

Tableau Descriptor

add new file descriptor.proto:

message BookDescriptorSet {
  map<string, BookDescriptor> books = 1;
}
// Describes a workbook file.
message BookDescriptor {
  string name = 1;
  WorkbookOptions book = 2;
  map<string, SheetDescriptor> sheets= 3;
}
// Describes a worksheet message.
message SheetDescriptor {
  string name = 1;
  WorksheetOptions sheet = 2;
}

wenchy avatar Oct 05 '22 15:10 wenchy