Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Backup 2.0 multiple formats: Difference between revisions

From MoodleDocs
mNo edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Template:Development:Backup 2.0}}{{Work in progress}}{{Moodle_2.0}}
{{Template:WillNotMigrate}}{{Template:Backup 2.0}}{{Work in progress}}{{Moodle_2.0}}


One of the major goals of the [[Backup 2.0|Moodle 2.0 backup]] development is to be able to support multiple formats, both on export (backup) and import (restore), all them handled from core backup/restore code in a central and unified way.
One of the major goals of the [[Backup 2.0|Moodle 2.0 backup]] development is to be able to support multiple formats, both on export (backup) and import (restore), all them handled from core backup/restore code in a central and unified way.

Latest revision as of 19:05, 3 May 2022


Warning: This page is no longer in use. The information contained on the page should NOT be seen as relevant or reliable.

Note: This page is a work-in-progress. Feedback and suggested improvements are welcome. Please join the discussion on moodle.org or use the page comments.

Moodle 2.0


One of the major goals of the Moodle 2.0 backup development is to be able to support multiple formats, both on export (backup) and import (restore), all them handled from core backup/restore code in a central and unified way.

This document explains how those formats will work and interact with Moodle, defining responsibilities and data flow between each part.

Basic Concepts

Moodle 2.0 has one unique, documented, valid XML format. Details about it can be found in the Backup 2.0 XML format page. (note the page doesn't exist yet because it's one of the parts being researched in the next weeks) This will be the M20-BCK format. It's highly possible that this format will end being noticeably different from current (monolithic) format used in Moodle 1.9, although internal structures will remain pretty similar.

Also, there is one unique, undocumented (but easily readable and understandable because it's basically one DB dump) XML format used before Moodle 2.0, let's call it the M19-BCK (from Moodle 1.9) format. It's an important format because we need to guarantee that any M19-BCK file will be properly restored in Moodle 2.0.

And then there are various formats, let's call them 3RD-BCK (3rd part backup formats) that should provide Moodle with extra backup / restore abilities. Notorious examples of these formats are: Blackboard 5.5, Blackboard 6.0 (see cvs to see how they are working in Moodle 1.x), or the new IMS CC format. In any case, all them will work in the same way under Moodle 2.0, so let's put them under the "3RD-BCK" umbrella.

Restore Data Flow

Here it's one general overview of how those multiple formats are supported on restore. It handles M20-BCK backups (in blue, main restore process) and both 3RD-BCK and M19-BCK formats (in green, handling other formats sub-process).

RestoreFormatsActivityDiagram.png

(original file available here - editable with Dia)

Backup Data Flow