Example #1
0
		/// <summary>
		/// Reads all instances of relationship GroupHasScheduledTasks.
		/// </summary>
		/// <remarks>
		/// The caller will position the reader at the open tag of the first XML element inside the relationship tag, so it can be
		/// either the first instance, or a bogus tag. This method will deserialize all instances and ignore all bogus tags. When the
		/// method returns, the reader will be positioned at the end tag of the relationship (or EOF if somehow that happens).
		/// </remarks>
		/// <param name="serializationContext">Serialization context.</param>
		/// <param name="element">In-memory Group instance that will get the deserialized data.</param>
		/// <param name="reader">XmlReader to read serialized data from.</param>
		private static void ReadGroupHasScheduledTasksInstances(DslModeling::SerializationContext serializationContext, Group element, global::System.Xml.XmlReader reader)
		{
			while (!serializationContext.Result.Failed && !reader.EOF && reader.NodeType == global::System.Xml.XmlNodeType.Element)
			{
				DslModeling::DomainClassXmlSerializer newBaseScheduledTaskOfGroupHasScheduledTasksSerializer = serializationContext.Directory.GetSerializer(BaseScheduledTask.DomainClassId);
				global::System.Diagnostics.Debug.Assert(newBaseScheduledTaskOfGroupHasScheduledTasksSerializer != null, "Cannot find serializer for BaseScheduledTask!");
				BaseScheduledTask newBaseScheduledTaskOfGroupHasScheduledTasks = newBaseScheduledTaskOfGroupHasScheduledTasksSerializer.TryCreateInstance(serializationContext, reader, element.Partition) as BaseScheduledTask;
				if (newBaseScheduledTaskOfGroupHasScheduledTasks != null)
				{
					element.Elements.Add(newBaseScheduledTaskOfGroupHasScheduledTasks);
					DslModeling::DomainClassXmlSerializer targetSerializer = serializationContext.Directory.GetSerializer (newBaseScheduledTaskOfGroupHasScheduledTasks.GetDomainClass().Id);	
					global::System.Diagnostics.Debug.Assert (targetSerializer != null, "Cannot find serializer for " + newBaseScheduledTaskOfGroupHasScheduledTasks.GetDomainClass().Name + "!");
					targetSerializer.Read(serializationContext, newBaseScheduledTaskOfGroupHasScheduledTasks, reader);
				}
				else
				{
					global::System.Type typeofGroupHasScheduledTasks = typeof(GroupHasScheduledTasks);
					DslModeling::DomainRelationshipXmlSerializer newGroupHasScheduledTasksSerializer = serializationContext.Directory.GetSerializer(GroupHasScheduledTasks.DomainClassId) as DslModeling::DomainRelationshipXmlSerializer;
					global::System.Diagnostics.Debug.Assert(newGroupHasScheduledTasksSerializer != null, "Cannot find serializer for GroupHasScheduledTasks!");
					GroupHasScheduledTasks newGroupHasScheduledTasks = newGroupHasScheduledTasksSerializer.TryCreateInstance (serializationContext, reader, element.Partition) as GroupHasScheduledTasks;
					if (newGroupHasScheduledTasks != null)
					{
						if (newGroupHasScheduledTasks.GetType() == typeofGroupHasScheduledTasks)
						{	// The relationship should be serialized in short-form.
							ScheduledTasksSerializationBehaviorSerializationMessages.ExpectingShortFormRelationship(serializationContext, reader, typeof(GroupHasScheduledTasks));
						}
						DslModeling::DomainRoleInfo.SetRolePlayer (newGroupHasScheduledTasks, GroupHasScheduledTasks.GroupDomainRoleId, element);
						DslModeling::DomainClassXmlSerializer targetSerializer = serializationContext.Directory.GetSerializer (newGroupHasScheduledTasks.GetDomainClass().Id);	
						global::System.Diagnostics.Debug.Assert (targetSerializer != null, "Cannot find serializer for " + newGroupHasScheduledTasks.GetDomainClass().Name + "!");
						targetSerializer.Read(serializationContext, newGroupHasScheduledTasks, reader);
					}
					else
					{	// Unknown element, skip
						DslModeling::SerializationUtilities.Skip(reader);
					}
				}
			}
		}
Example #2
0
		private static void WriteChildElements(DslModeling::SerializationContext serializationContext, Group element, global::System.Xml.XmlWriter writer)
		{
			// GroupHasScheduledTasks
			global::System.Collections.ObjectModel.ReadOnlyCollection<GroupHasScheduledTasks> allGroupHasScheduledTasksInstances = GroupHasScheduledTasks.GetLinksToElements(element);
			if (!serializationContext.Result.Failed && allGroupHasScheduledTasksInstances.Count > 0)
			{
				writer.WriteStartElement("elements");
				global::System.Type typeofGroupHasScheduledTasks = typeof(GroupHasScheduledTasks);
				foreach (GroupHasScheduledTasks eachGroupHasScheduledTasksInstance in allGroupHasScheduledTasksInstances)
				{
					if (serializationContext.Result.Failed)
						break;
	
					if (eachGroupHasScheduledTasksInstance.GetType() != typeofGroupHasScheduledTasks)
					{	// Derived relationships will be serialized in full-form.
						DslModeling::DomainClassXmlSerializer derivedRelSerializer = serializationContext.Directory.GetSerializer(eachGroupHasScheduledTasksInstance.GetDomainClass().Id);
						global::System.Diagnostics.Debug.Assert(derivedRelSerializer != null, "Cannot find serializer for " + eachGroupHasScheduledTasksInstance.GetDomainClass().Name + "!");			
						derivedRelSerializer.Write(serializationContext, eachGroupHasScheduledTasksInstance, writer);
					}
					else
					{	// No need to serialize the relationship itself, just serialize the role-player directly.
						DslModeling::ModelElement targetElement = eachGroupHasScheduledTasksInstance.Element;
						DslModeling::DomainClassXmlSerializer targetSerializer = serializationContext.Directory.GetSerializer(targetElement.GetDomainClass().Id);
						global::System.Diagnostics.Debug.Assert(targetSerializer != null, "Cannot find serializer for " + targetElement.GetDomainClass().Name + "!");			
						targetSerializer.Write(serializationContext, targetElement, writer);
					}
				}
				writer.WriteEndElement();
			}
	
		}
Example #3
0
		public virtual void SaveModelAndDiagram(DslModeling::SerializationResult serializationResult, Group modelRoot, string modelFileName, ScheduledTasksDiagram diagram, string diagramFileName, global::System.Text.Encoding encoding, bool writeOptionalPropertiesWithDefaultValue)
		{
			#region Check Parameters
			if (serializationResult == null)
				throw new global::System.ArgumentNullException("serializationResult");
			if (string.IsNullOrEmpty(modelFileName))
				throw new global::System.ArgumentNullException("modelFileName");
			if (diagram == null)
				throw new global::System.ArgumentNullException("diagram");
			if (string.IsNullOrEmpty(diagramFileName))
				throw new global::System.ArgumentNullException("diagramFileName");
			#endregion
	
			if (serializationResult.Failed)
				return;
	
			// Save the model file first
			using (global::System.IO.MemoryStream modelFileContent = this.InternalSaveModel(serializationResult, modelRoot, modelFileName, encoding, writeOptionalPropertiesWithDefaultValue))
			{
				if (serializationResult.Failed)
					return;
	
				using (global::System.IO.MemoryStream diagramFileContent = this.InternalSaveDiagram(serializationResult, diagram, diagramFileName, encoding, writeOptionalPropertiesWithDefaultValue))
				{
					if (!serializationResult.Failed)
					{
						// Only write the contents if there's no error encountered during serialization.
						if (modelFileContent != null)
						{
							using (global::System.IO.FileStream fileStream = new global::System.IO.FileStream(modelFileName, global::System.IO.FileMode.Create, global::System.IO.FileAccess.Write, global::System.IO.FileShare.None))
							{
								using (global::System.IO.BinaryWriter writer = new global::System.IO.BinaryWriter(fileStream, encoding))
								{
									writer.Write(modelFileContent.ToArray());
								}
							}
						}
						if (diagramFileContent != null)
						{
							using (global::System.IO.FileStream fileStream = new global::System.IO.FileStream(diagramFileName, global::System.IO.FileMode.Create, global::System.IO.FileAccess.Write, global::System.IO.FileShare.None))
							{
								using (global::System.IO.BinaryWriter writer = new global::System.IO.BinaryWriter(fileStream, encoding))
								{
									writer.Write(diagramFileContent.ToArray());
								}
							}
						}
					}
				}
			}
		}
Example #4
0
		/// <summary>
		/// This method deserializes all child model elements.
		/// </summary>
		/// <remarks>
		/// The caller will position the reader at the open tag of the first child XML element to deserialized.
		/// This method will read as many child elements as it can. It returns under three circumstances:
		/// 1) When an unknown child XML element is encountered. In this case, this method will position the reader at the 
		///    open tag of the unknown element. This implies that if the first child XML element is unknown, this method 
		///    should return immediately and do nothing.
		/// 2) When all child XML elemnets are read. In this case, the reader will be positioned at the end tag of the parent element.
		/// 3) EOF.
		/// </remarks>
		/// <param name="serializationContext">Serialization context.</param>
		/// <param name="reader">XmlReader to read serialized data from.</param>
		/// <param name="element">In-memory Group instance that will get the deserialized data.</param>
		private static void ReadChildElements(DslModeling::SerializationContext serializationContext, Group element, global::System.Xml.XmlReader reader)
		{
			if (!serializationContext.Result.Failed && !reader.EOF && reader.NodeType == global::System.Xml.XmlNodeType.Element)
			{
				if (string.Compare(reader.LocalName, "elements", global::System.StringComparison.CurrentCulture) == 0)
				{
					if (reader.IsEmptyElement)
					{	// No instance of this relationship, just skip
						DslModeling::SerializationUtilities.Skip(reader);
					}
					else
					{
						DslModeling::SerializationUtilities.SkipToFirstChild(reader);  // Skip the open tag of <elements>
						ReadGroupHasScheduledTasksInstances(serializationContext, element, reader);
						DslModeling::SerializationUtilities.Skip(reader);  // Skip the close tag of </elements>
					}
				}
			}
		}
Example #5
0
		/// <summary>
		/// Saves the given diagram to the given file, with default encoding (UTF-8), and optional properties with default value will not
		/// be written out.
		/// </summary>
		/// <param name="serializationResult">Stores serialization result from the save operation.</param>
		/// <param name="modelRoot">Group instance to be saved.</param>
		/// <param name="modelFileName">Name of the file in which the CanonicalSampleRoot instance will be saved.</param>
		/// <param name="diagram">ScheduledTasksDiagram to be saved.</param>
		/// <param name="diagramFileName">Name of the file in which the diagram will be saved.</param>
		public virtual void SaveModelAndDiagram(DslModeling::SerializationResult serializationResult, Group modelRoot, string modelFileName, ScheduledTasksDiagram diagram, string diagramFileName)
		{
			this.SaveModelAndDiagram(serializationResult, modelRoot, modelFileName, diagram, diagramFileName, global::System.Text.Encoding.UTF8, false);
		}
Example #6
0
		/// <summary>
		/// Saves the given diagram to the given file, with default encoding (UTF-8).
		/// </summary>
		/// <param name="serializationResult">Stores serialization result from the save operation.</param>
		/// <param name="modelRoot">Group instance to be saved.</param>
		/// <param name="modelFileName">Name of the file in which the CanonicalSampleRoot instance will be saved.</param>
		/// <param name="diagram">ScheduledTasksDiagram to be saved.</param>
		/// <param name="diagramFileName">Name of the file in which the diagram will be saved.</param>
		/// <param name="writeOptionalPropertiesWithDefaultValue">Whether optional properties with default value will be saved.</param>
		public virtual void SaveModelAndDiagram(DslModeling::SerializationResult serializationResult, Group modelRoot, string modelFileName, ScheduledTasksDiagram diagram, string diagramFileName, bool writeOptionalPropertiesWithDefaultValue)
		{
			this.SaveModelAndDiagram(serializationResult, modelRoot, modelFileName, diagram, diagramFileName, global::System.Text.Encoding.UTF8, writeOptionalPropertiesWithDefaultValue);
		}
Example #7
0
		internal global::System.IO.MemoryStream InternalSaveModel(DslModeling::SerializationResult serializationResult, Group modelRoot, string fileName, global::System.Text.Encoding encoding, bool writeOptionalPropertiesWithDefaultValue)
		{
			#region Check Parameters
			global::System.Diagnostics.Debug.Assert(serializationResult != null);
			global::System.Diagnostics.Debug.Assert(modelRoot != null);
			global::System.Diagnostics.Debug.Assert(!serializationResult.Failed);
			#endregion
	
			serializationResult.Encoding = encoding;
	
			DslModeling::DomainXmlSerializerDirectory directory = this.GetDirectory(modelRoot.Store);
	
			
			global::System.IO.MemoryStream newFileContent = new global::System.IO.MemoryStream();
			
			DslModeling::SerializationContext serializationContext = new DslModeling::SerializationContext(directory, fileName, serializationResult);
			this.InitializeSerializationContext(modelRoot.Partition, serializationContext, false);
			// MonikerResolver shouldn't be required in Save operation, so not calling SetupMonikerResolver() here.
			serializationContext.WriteOptionalPropertiesWithDefaultValue = writeOptionalPropertiesWithDefaultValue;
			global::System.Xml.XmlWriterSettings settings = ScheduledTasksSerializationHelper.Instance.CreateXmlWriterSettings(serializationContext, false, encoding);
			using (global::System.Xml.XmlWriter writer = global::System.Xml.XmlWriter.Create(newFileContent, settings))
			{
				this.WriteRootElement(serializationContext, modelRoot, writer);
			}
				
			return newFileContent;
		}
Example #8
0
		/// <summary>
		/// Helper method to create and initialize a new Group.
		/// </summary>
		internal protected virtual Group CreateModelHelper(DslModeling::Partition modelPartition)
		{
			Group model = new Group(modelPartition);
			return model;
		}
Example #9
0
		/// <summary>
		/// Saves the given model to the given file, with default encoding (UTF-8).
		/// </summary>
		/// <param name="serializationResult">Stores serialization result from the save operation.</param>
		/// <param name="modelRoot">Group instance to be saved.</param>
		/// <param name="fileName">Name of the file in which the Group instance will be saved.</param>
		/// <param name="writeOptionalPropertiesWithDefaultValue">Whether optional properties with default value will be saved.</param>
		public virtual void SaveModel(DslModeling::SerializationResult serializationResult, Group modelRoot, string fileName, bool writeOptionalPropertiesWithDefaultValue)
		{
			this.SaveModel(serializationResult, modelRoot, fileName, global::System.Text.Encoding.UTF8, writeOptionalPropertiesWithDefaultValue);
		}
Example #10
0
		/// <summary>
		/// Saves the given model root to the given file, with default encoding (UTF-8), and optional properties with default value will not
		/// be written out.
		/// </summary>
		/// <param name="serializationResult">Stores serialization result from the save operation.</param>
		/// <param name="modelRoot">Group instance to be saved.</param>
		/// <param name="fileName">Name of the file in which the Group instance will be saved.</param>
		public virtual void SaveModel(DslModeling::SerializationResult serializationResult, Group modelRoot, string fileName)
		{
			this.SaveModel(serializationResult, modelRoot, fileName, global::System.Text.Encoding.UTF8, false);
		}
Example #11
0
		/// <summary>
		/// Constructor
		/// Creates a GroupHasScheduledTasks link in the same Partition as the given Group
		/// </summary>
		/// <param name="source">Group to use as the source of the relationship.</param>
		/// <param name="target">BaseScheduledTask to use as the target of the relationship.</param>
		public GroupHasScheduledTasks(Group source, BaseScheduledTask target)
			: base((source != null ? source.Partition : null), new DslModeling::RoleAssignment[]{new DslModeling::RoleAssignment(GroupHasScheduledTasks.GroupDomainRoleId, source), new DslModeling::RoleAssignment(GroupHasScheduledTasks.ElementDomainRoleId, target)}, null)
		{
		}
Example #12
0
		public static DslModeling::LinkedElementCollection<BaseScheduledTask> GetElements(Group element)
		{
			return GetRoleCollection<DslModeling::LinkedElementCollection<BaseScheduledTask>, BaseScheduledTask>(element, GroupDomainRoleId);
		}
Example #13
0
		public static void SetGroup(BaseScheduledTask element, Group newGroup)
		{
			DslModeling::DomainRoleInfo.SetLinkedElement(element, ElementDomainRoleId, newGroup);
		}