91 lines
3.1 KiB
JavaScript
Raw Normal View History

2021-07-16 11:41:58 -03:00
/*
2021-12-25 14:39:34 -08:00
* Copyright [2021] [wisemapping]
2021-07-16 11:41:58 -03:00
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2021-12-24 09:40:08 -08:00
import { $assert } from '@wisemapping/core-js';
import ModelCodeName from './ModelCodeName';
import Beta2PelaMigrator from './Beta2PelaMigrator';
import Pela2TangoMigrator from './Pela2TangoMigrator';
2021-12-23 11:58:50 -08:00
import XMLSerializerBeta from './XMLSerializerBeta';
import XMLSerializerPela from './XMLSerializerPela';
import XMLSerializerTango from './XMLSerializerTango';
2021-07-16 11:41:58 -03:00
2021-12-24 09:40:08 -08:00
const codeToSerializer = [
2021-10-04 17:05:34 -07:00
{
codeName: ModelCodeName.BETA,
2021-12-19 09:56:22 -08:00
serializer: XMLSerializerBeta,
2021-10-04 17:05:34 -07:00
migrator() {
},
},
{
codeName: ModelCodeName.PELA,
2021-12-19 09:56:22 -08:00
serializer: XMLSerializerPela,
2021-10-04 17:05:34 -07:00
migrator: Beta2PelaMigrator,
},
{
codeName: ModelCodeName.TANGO,
2021-12-19 09:56:22 -08:00
serializer: XMLSerializerTango,
2021-10-04 17:05:34 -07:00
migrator: Pela2TangoMigrator,
},
];
2021-07-16 11:41:58 -03:00
2021-12-24 09:40:08 -08:00
class XMLSerializerFactory {
/**
* @param {mindplot.model.IMindmap} mindmap
* @return {mindplot.persistence.XMLSerializer_Beta|mindplot.persistence.XMLSerializer_Pela|
* mindplot.persistence.XMLSerializer_Tango} serializer corresponding to the mindmap's version
*/
static getSerializerFromMindmap(mindmap) {
return XMLSerializerFactory
.getSerializer(mindmap.getVersion());
}
/**
* @param domDocument
* @return serializer corresponding to the mindmap's version
*/
static getSerializerFromDocument(domDocument) {
const rootElem = domDocument.documentElement;
return XMLSerializerFactory.getSerializer(rootElem.getAttribute('version'));
}
/**
* retrieves the serializer for the mindmap's version and migrates to the current version,
* e.g. for a Beta mindmap and current version Tango:
* serializer = new Pela2TangoMigrator(new Beta2PelaMigrator(new XMLSerializer_Beta()))
* @param {String} version the version name
* @return serializer
*/
static getSerializer(version) {
version = version || ModelCodeName.TANGO;
let found = false;
let result = null;
for (let i = 0; i < codeToSerializer.length; i++) {
if (!found) {
found = codeToSerializer[i].codeName === version;
// eslint-disable-next-line new-cap
if (found) result = new (codeToSerializer[i].serializer)();
} else {
const { migrator: Migrator } = codeToSerializer[i];
result = new Migrator(result);
}
}
$assert(result, `Cound not find serialized for ${version}`);
return result;
}
}
2021-10-04 17:05:34 -07:00
export default XMLSerializerFactory;