mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
443 lines
21 KiB
C#
443 lines
21 KiB
C#
/*
|
|
* Copyright (C) Ascensio System SIA, 2009-2026
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation, together with the
|
|
* additional terms provided in the LICENSE file.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: https://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA by email at info@onlyoffice.com
|
|
* or by postal mail at 20A-6 Ernesta Birznieka-Upisha Street, Riga,
|
|
* LV-1050, Latvia, European Union.
|
|
*
|
|
* The interactive user interfaces in modified versions of the Program
|
|
* are required to display Appropriate Legal Notices in accordance with
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* No trademark rights are granted under this License.
|
|
*
|
|
* All non-code elements of the Product, including illustrations,
|
|
* icon sets, and technical writing content, are licensed under the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License:
|
|
* https://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
* This license applies only to such non-code elements and does not
|
|
* modify or replace the licensing terms applicable to the Program's
|
|
* source code, which remains licensed under the GNU Affero General
|
|
* Public License v3.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Xml;
|
|
using System.Xml.Schema;
|
|
using System.Xml.Serialization;
|
|
using System.IO;
|
|
using System.Collections;
|
|
using System.CodeDom;
|
|
using System.CodeDom.Compiler;
|
|
|
|
namespace codegen
|
|
{
|
|
class CodeGenXmlJS
|
|
{
|
|
Dictionary<string, GenClassPivot> m_mapGeneratedClasses = new Dictionary<string, GenClassPivot>();
|
|
|
|
//string gc_sXsd = "xl14.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_SlicerCacheDefinition" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main";
|
|
|
|
//string gc_sXsd = "xl14.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_SlicerCaches", "CT_SlicerRefs", "CT_SlicerStyles", "CT_Slicers" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main";
|
|
|
|
//string gc_sXsd = "xlslicercache15.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_TableSlicerCache", "CT_SlicerCacheHideNoData" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main";
|
|
|
|
//string gc_sXsd = "5.2.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_Slicer" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/drawing/2010/slicer";
|
|
|
|
//string gc_sXsd = "xlslicercache15.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_Timeline", "CT_TimelineCacheRefs" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main";
|
|
|
|
//string gc_sXsd = "xlslicercache15.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_Connection" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main";
|
|
|
|
//string gc_sXsd = "5.26.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_NamedSheetViews" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/spreadsheetml/2019/namedsheetviews";
|
|
|
|
//string gc_sXsd = "xlsx-ext/sml.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_Workbook", "CT_Worksheet", "CT_PivotCacheDefinition", "CT_PivotCacheRecords", "CT_pivotTableDefinition", "CT_Stylesheet" };
|
|
//string gc_sTargetNamespace = "http://schemas.openxmlformats.org/spreadsheetml/2006/main";
|
|
|
|
//string gc_sXsd = "wml.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_Document", "CT_GlossaryDocument", "CT_Styles", "CT_Numbering", "CT_Settings", "CT_HdrFtr", "CT_Footnotes", "CT_Endnotes", "CT_Comments" };
|
|
//string gc_sTargetNamespace = "http://purl.oclc.org/ooxml/wordprocessingml/main";
|
|
|
|
//string gc_sXsd = "dml-chart.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_ChartSpace" };
|
|
//string gc_sTargetNamespace = "http://purl.oclc.org/ooxml/drawingml/chart";
|
|
|
|
//string gc_sXsd = "xlsx-ext/5.15.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_ChartStyle", "CT_ColorStyle" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/drawing/2012/chartStyle";
|
|
|
|
//string gc_sXsd = "shared-math.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_OMathPara" };
|
|
//string gc_sTargetNamespace = "http://purl.oclc.org/ooxml/officeDocument/math";
|
|
|
|
//string gc_sXsd = "docx-ext/5.2.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_CommentsEx", "CT_People" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/word/2012/wordml";
|
|
|
|
//string gc_sXsd = "docx-ext/5.4.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_CommentsIds" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/word/2016/wordml/cid";
|
|
|
|
//string gc_sXsd = "docx-ext/5.6.xsd";
|
|
//string[] gc_aTargetTypes = new string[] { "CT_CommentsExtensible" };
|
|
//string gc_sTargetNamespace = "http://schemas.microsoft.com/office/word/2018/wordml/cex";
|
|
|
|
string gc_sXsd = "vsdx/visio.xsd";
|
|
string[] gc_aTargetTypes = new string[] { "VisioDocument_Type", "Masters_Type", "PageContents_Type", "Pages_Type", "PageContents_Type",
|
|
"DataConnections_Type", "DataRecordSets_Type", "Comments_Type", "Extensions_Type"};
|
|
string gc_sTargetNamespace = "http://schemas.microsoft.com/office/visio/2012/main";
|
|
|
|
public void Start(string sDirIn, string sDirCppXmlOut, string sDirCppBinOut, string sDirJsBinOut, ValidationEventHandler oValidationEventHandler)
|
|
{
|
|
string sXsdPath = sDirIn + gc_sXsd;
|
|
XmlSchemaSet schemaSet = new XmlSchemaSet();
|
|
schemaSet.ValidationEventHandler += oValidationEventHandler;
|
|
schemaSet.Add(null, sXsdPath);
|
|
schemaSet.Compile();
|
|
XmlSchema chartSchema = null;
|
|
XmlSchemas schemas = new XmlSchemas();
|
|
foreach (XmlSchema schema in schemaSet.Schemas())
|
|
{
|
|
if (schema.TargetNamespace == gc_sTargetNamespace)
|
|
{
|
|
chartSchema = schema;
|
|
schemas.Add(schema);
|
|
}
|
|
}
|
|
if (null != chartSchema)
|
|
{
|
|
CodeNamespace ns = new CodeNamespace();
|
|
XmlCodeExporter exporter = new XmlCodeExporter(ns);
|
|
|
|
CodeGenerationOptions generationOptions = CodeGenerationOptions.GenerateProperties;
|
|
|
|
|
|
XmlSchemaImporter importer = new XmlSchemaImporter(schemas, generationOptions, new ImportContext(new CodeIdentifiers(), false));
|
|
|
|
foreach (XmlSchemaElement element in chartSchema.Elements.Values)
|
|
{
|
|
XmlTypeMapping mapping = importer.ImportTypeMapping(element.QualifiedName);
|
|
exporter.ExportTypeMapping(mapping);
|
|
}
|
|
CodeGenerator.ValidateIdentifiers(ns);
|
|
|
|
////Microsoft.CSharp.CSharpCodeProvider oProvider;
|
|
|
|
//// output the C# code
|
|
//Microsoft.CSharp.CSharpCodeProvider codeProvider = new Microsoft.CSharp.CSharpCodeProvider();
|
|
|
|
//using (StringWriter writer = new StringWriter())
|
|
//{
|
|
// codeProvider.GenerateCodeFromNamespace(ns, writer, new CodeGeneratorOptions());
|
|
// string sCode = writer.GetStringBuilder().ToString();
|
|
//}
|
|
|
|
List<GenClassPivot> aGenClasses = PreProcess(ns, chartSchema);
|
|
|
|
aGenClasses = FilterClassesSlicer(aGenClasses);
|
|
|
|
(new CodeGenXmlJSCPP()).Process(sDirCppXmlOut, aGenClasses, gc_sTargetNamespace);
|
|
//(new CodegenJS()).Process(sDirJsBinOut, aGenClasses);
|
|
}
|
|
else
|
|
{
|
|
throw new Exception();
|
|
}
|
|
}
|
|
List<GenClassPivot> FilterClassesSlicer(List<GenClassPivot> aInput)
|
|
{
|
|
Queue<GenClassPivot> aTemp = new Queue<GenClassPivot>();
|
|
List<GenClassPivot> aRes = new List<GenClassPivot>();
|
|
|
|
Dictionary<string, bool> mapTargetSubTypes = new Dictionary<string, bool>();
|
|
Dictionary<string, bool> namspaces = new Dictionary<string, bool>();
|
|
|
|
Dictionary<string, GenClassPivot> mapAllClasses = new Dictionary<string, GenClassPivot>();
|
|
for (int i = 0; i < aInput.Count; ++i)
|
|
{
|
|
GenClassPivot oGenClass = aInput[i];
|
|
if (0 == gc_aTargetTypes.Length || -1 != Array.IndexOf(gc_aTargetTypes, oGenClass.sName))
|
|
aTemp.Enqueue(oGenClass);
|
|
mapAllClasses[oGenClass.sName] = oGenClass;
|
|
}
|
|
while (aTemp.Count > 0)
|
|
{
|
|
GenClassPivot oGenClass = aTemp.Dequeue();
|
|
if (!mapTargetSubTypes.ContainsKey(oGenClass.sName))
|
|
{
|
|
mapTargetSubTypes.Add(oGenClass.sName, true);
|
|
aRes.Add(oGenClass);
|
|
for (int j = 0; j < oGenClass.aMembers.Count; ++j)
|
|
{
|
|
GenMemberPivot oGenMember = oGenClass.aMembers[j];
|
|
|
|
GenClassPivot oTempClass;
|
|
if (null != oGenMember.sType && mapAllClasses.TryGetValue(oGenMember.sType, out oTempClass))
|
|
{
|
|
namspaces[oTempClass.sNamespace] = true;
|
|
|
|
aTemp.Enqueue(oTempClass);
|
|
}
|
|
if (null != oGenMember.aArrayTypes)
|
|
{
|
|
for (int k = 0; k < oGenMember.aArrayTypes.Count; ++k)
|
|
{
|
|
GenMemberPivot oGenMemberArrayTypes = oGenMember.aArrayTypes[k];
|
|
if (null != oGenMemberArrayTypes.sType && mapAllClasses.TryGetValue(oGenMemberArrayTypes.sType, out oTempClass))
|
|
{
|
|
aTemp.Enqueue(oTempClass);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return aRes;
|
|
}
|
|
List<GenClassPivot> PreProcess(CodeNamespace code, XmlSchema schema)
|
|
{
|
|
List<GenClassPivot> aGenClasses = new List<GenClassPivot>();
|
|
for (int i = 0; i < code.Types.Count; ++i)
|
|
{
|
|
GenClassPivot oNewClass = PreProcessClass(aGenClasses, code.Types[i]);
|
|
if (null != oNewClass)
|
|
aGenClasses.Add(oNewClass);
|
|
}
|
|
return aGenClasses;
|
|
}
|
|
GenClassPivot PreProcessClass(List<GenClassPivot> aGenClasses, CodeTypeDeclaration type)
|
|
{
|
|
GenClassPivot oGenClass = null;
|
|
//get xml namespace
|
|
string sNamespace = null;
|
|
bool bIncludeInSchema = true;
|
|
string sRootName = "";
|
|
for (int i = 0; i < type.CustomAttributes.Count; i++)
|
|
{
|
|
CodeAttributeDeclaration attribute = type.CustomAttributes[i];
|
|
if (attribute.Name == "System.Xml.Serialization.XmlTypeAttribute")
|
|
{
|
|
foreach (CodeAttributeArgument argument in attribute.Arguments)
|
|
{
|
|
if (argument.Name == "Namespace")
|
|
sNamespace = ((CodePrimitiveExpression)argument.Value).Value.ToString();
|
|
else if (argument.Name == "IncludeInSchema")
|
|
bIncludeInSchema = Convert.ToBoolean(((CodePrimitiveExpression)argument.Value).Value);
|
|
//todo argument.Name == "TypeName"
|
|
}
|
|
}
|
|
else if (attribute.Name == "System.Xml.Serialization.XmlRootAttribute")
|
|
{
|
|
foreach (CodeAttributeArgument argument in attribute.Arguments)
|
|
{
|
|
if (argument.Name == "Namespace")
|
|
sNamespace = ((CodePrimitiveExpression)argument.Value).Value.ToString();
|
|
else if ("" == argument.Name)
|
|
sRootName = ((CodePrimitiveExpression)argument.Value).Value.ToString();
|
|
}
|
|
}
|
|
}
|
|
if (bIncludeInSchema)
|
|
{
|
|
oGenClass = new GenClassPivot(type.Name, sNamespace);
|
|
oGenClass.sRootName = sRootName;
|
|
int nItemsElementName = 0;
|
|
if (type.IsEnum)
|
|
{
|
|
oGenClass.bIsEnum = true;
|
|
for (int i = 0; i < type.Members.Count; ++i)
|
|
{
|
|
CodeTypeMember member = type.Members[i];
|
|
GenMemberPivot oGenMember = new GenMemberPivot(member.Name);
|
|
for (int j = 0; j < member.CustomAttributes.Count; j++)
|
|
{
|
|
CodeAttributeDeclaration attribute = member.CustomAttributes[j];
|
|
if (attribute.Name == "System.Xml.Serialization.XmlEnumAttribute")
|
|
ParseArguments(attribute.Arguments, oGenMember);
|
|
}
|
|
oGenClass.aMembers.Add(oGenMember);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (int i = 0; i < type.Members.Count; ++i)
|
|
{
|
|
CodeTypeMember member = type.Members[i];
|
|
//skip CodeMemberField
|
|
CodeMemberProperty codeMemberProperty = member as CodeMemberProperty;
|
|
if (codeMemberProperty != null)
|
|
{
|
|
GenMemberPivot oNewGenMember = PreProcessProperty(aGenClasses, codeMemberProperty, oGenClass, ref nItemsElementName);
|
|
if (null != oNewGenMember)
|
|
oGenClass.aMembers.Add(oNewGenMember);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return oGenClass;
|
|
}
|
|
GenMemberPivot PreProcessProperty(List<GenClassPivot> aGenClasses, CodeMemberProperty codeMemberProperty, GenClassPivot oGenClass, ref int nItemsElementName)
|
|
{
|
|
GenMemberPivot oGenMember = new GenMemberPivot(codeMemberProperty.Name);
|
|
bool bIgnore = false;
|
|
InitMemberType(oGenMember, codeMemberProperty.Type.BaseType);
|
|
if (null != codeMemberProperty.Type.ArrayElementType)
|
|
{
|
|
oGenMember.nArrayRank = codeMemberProperty.Type.ArrayElementType.ArrayRank;
|
|
}
|
|
bool bXmlElementAttribute = false;
|
|
List<GenMemberPivot> aTempMemebers = new List<GenMemberPivot>();
|
|
for (int i = 0; i < codeMemberProperty.CustomAttributes.Count; i++)
|
|
{
|
|
CodeAttributeDeclaration attribute = codeMemberProperty.CustomAttributes[i];
|
|
if (attribute.Name == "System.Xml.Serialization.XmlAttributeAttribute")
|
|
{
|
|
oGenMember.bQualified = false;
|
|
oGenMember.bIsAttribute = true;
|
|
ParseArguments(attribute.Arguments, oGenMember);
|
|
//todo there may be duplicate attribute names and child nodes
|
|
}
|
|
else if (attribute.Name == "System.ComponentModel.DefaultValueAttribute")
|
|
{
|
|
if (attribute.Arguments.Count > 0)
|
|
{
|
|
CodeExpression oCodeExpression = attribute.Arguments[attribute.Arguments.Count - 1].Value;
|
|
//todo other
|
|
if (oCodeExpression is CodePrimitiveExpression)
|
|
oGenMember.sDefAttribute = ((oCodeExpression as CodePrimitiveExpression)).Value.ToString();
|
|
else if (oCodeExpression is CodeFieldReferenceExpression)
|
|
oGenMember.sDefAttribute = ((oCodeExpression as CodeFieldReferenceExpression)).FieldName;
|
|
}
|
|
}
|
|
else if (attribute.Name == "System.Xml.Serialization.XmlIgnoreAttribute")
|
|
bIgnore = true;
|
|
else if (attribute.Name == "System.Xml.Serialization.XmlElementAttribute")
|
|
{
|
|
bXmlElementAttribute = true;
|
|
GenMemberPivot oTemp = new GenMemberPivot(null);
|
|
ParseArguments(attribute.Arguments, oTemp);
|
|
aTempMemebers.Add(oTemp);
|
|
}
|
|
else if (attribute.Name == "System.Xml.Serialization.XmlArrayItemAttribute")
|
|
{
|
|
GenMemberPivot oTemp = new GenMemberPivot(null);
|
|
ParseArguments(attribute.Arguments, oTemp);
|
|
aTempMemebers.Add(oTemp);
|
|
}
|
|
else if (attribute.Name == "System.Xml.Serialization.XmlArrayAttribute")
|
|
{
|
|
ParseArguments(attribute.Arguments, oGenMember);
|
|
}
|
|
//todo not always specified
|
|
//else if (attribute.Name == "System.Xml.Serialization.XmlChoiceIdentifierAttribute")
|
|
//{
|
|
// if (attribute.Arguments.Count > 0)
|
|
// {
|
|
// CodePrimitiveExpression oPrimitiveExpression = attribute.Arguments[0].Value as CodePrimitiveExpression;
|
|
// oGenMember.sChoiceIdentifier = oPrimitiveExpression.Value.ToString();
|
|
// }
|
|
//}
|
|
}
|
|
if (bIgnore)
|
|
return null;
|
|
else
|
|
{
|
|
if (aTempMemebers.Count > 0)
|
|
{
|
|
if (1 == aTempMemebers.Count)
|
|
{
|
|
GenMemberPivot TempMember = aTempMemebers[0];
|
|
TempMember.merge(oGenMember);
|
|
TempMember.nArrayRank = null;
|
|
}
|
|
oGenMember.aArrayTypes = aTempMemebers;
|
|
if (bXmlElementAttribute)
|
|
oGenMember.bIsArrayTypesHidden = true;
|
|
else
|
|
oGenMember.bIsArrayTypesHidden = false;
|
|
}
|
|
else
|
|
{
|
|
oGenMember.nArrayRank = null;
|
|
}
|
|
oGenMember.completeDefaults();
|
|
return oGenMember;
|
|
}
|
|
}
|
|
void ParseArguments(CodeAttributeArgumentCollection oArguments, GenMemberPivot oGenMember)
|
|
{
|
|
CodePrimitiveExpression oPrimitiveExpression = null;
|
|
CodeTypeOfExpression oTypeOfExpression = null;
|
|
string sNamespace = null;
|
|
bool? bForm = null;
|
|
foreach (CodeAttributeArgument argument in oArguments)
|
|
{
|
|
if ("" == argument.Name)
|
|
{
|
|
if (argument.Value is CodePrimitiveExpression)
|
|
oPrimitiveExpression = argument.Value as CodePrimitiveExpression;
|
|
else if (argument.Value is CodeTypeOfExpression)
|
|
oTypeOfExpression = argument.Value as CodeTypeOfExpression;
|
|
}
|
|
else if ("Namespace" == argument.Name)
|
|
sNamespace = ((CodePrimitiveExpression)argument.Value).Value.ToString();
|
|
else if ("Form" == argument.Name)
|
|
{
|
|
string sValue = ((CodeFieldReferenceExpression)argument.Value).FieldName;
|
|
if ("Qualified" == sValue)
|
|
bForm = true;
|
|
else if ("Unqualified" == sValue)
|
|
bForm = false;
|
|
}
|
|
}
|
|
if (null != oPrimitiveExpression)
|
|
oGenMember.sName = oPrimitiveExpression.Value.ToString();
|
|
if (null != oTypeOfExpression)
|
|
InitMemberType(oGenMember, oTypeOfExpression.Type.BaseType);
|
|
if (null != sNamespace)
|
|
oGenMember.sNamespace = sNamespace;
|
|
if (bForm.HasValue)
|
|
oGenMember.bQualified = bForm.Value;
|
|
}
|
|
void InitMemberType(GenMemberPivot oGenMember, string sBaseType)
|
|
{
|
|
if (-1 != sBaseType.IndexOf("System."))
|
|
{
|
|
oGenMember.oSystemType = Type.GetType(sBaseType);
|
|
if (null == oGenMember.oSystemType)
|
|
oGenMember.oSystemType = typeof(string);
|
|
}
|
|
else
|
|
oGenMember.sType = sBaseType;
|
|
}
|
|
}
|
|
}
|