summaryrefslogtreecommitdiffstats
path: root/tools/Sandcastle/Source/BuildAssembler/BuildAssemblerLibrary/BuildContext.cs
blob: 8a21675b80562b150c86d2c7de6631dd8f8e3a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Copyright © Microsoft Corporation.
// This source file is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.

using System;
using System.Collections.Generic;
using System.Xml;
using System.Xml.XPath;
using System.Xml.Xsl;

namespace Microsoft.Ddue.Tools {

	public class BuildContext {

		private CustomContext context = new CustomContext();

		// Namespace control

		public void AddNamespace (string prefix, string uri) {
			context.AddNamespace(prefix, uri);
		}

		public string LookupNamespace (string prefix) {
			return( context.LookupNamespace(prefix) );
		}

		public bool RemoveNamespace (string prefix) {
			string uri = LookupNamespace(prefix);
			if (uri == null) {
				return(false);
			} else {
				context.RemoveNamespace(prefix, uri);
				return(true);
			}
		}

		public void ClearNamespaces () {
		}

		// Variable control

		public void AddVariable (string name, string value) {
			context[name] = value;
		}

		public string LookupVariable (string name) {
			return( context[name] );
		}

		public bool RemoveVariable (string name) {
			return( context.ClearVariable(name) );
		}

		public void ClearVariables () {
			context.ClearVariables();
		}

		public string this [string name] {
			get {
				return(context[name]);
			}
			set {
				context[name] = value;
			}
		}

		// Function control

		// The context for use in XPath queries

		public XsltContext XsltContext {
			get {
				return(context);
			}
		}

        // Load data from config

        public void Load (XPathNavigator configuration) {
            XPathNodeIterator namespaceNodes = configuration.Select("namespace");
            foreach (XPathNavigator namespaceNode in namespaceNodes) {
                string prefixValue = namespaceNode.GetAttribute("prefix", String.Empty);
                string uriValue = namespaceNode.GetAttribute("uri", String.Empty);
                AddNamespace(prefixValue, uriValue);
            }
        }

	}

	 public class CustomContext : XsltContext {

		public CustomContext() : base() {}

		// variable control

		private Dictionary<string, IXsltContextVariable> variables = new Dictionary<string,IXsltContextVariable>();

		public string this [string variable] {
			get {
				return(variables[variable].Evaluate(this).ToString());
			}
			set {
				variables[variable] = new CustomVariable(value);
			}
		}

		public bool ClearVariable (string name) {
			return( variables.Remove(name) );
		}

		public void ClearVariables () {
			variables.Clear();
		}

		// Implementation of XsltContext methods

		public override IXsltContextVariable ResolveVariable (string prefix, string name) {
			return( variables[name] );
		}

		public override IXsltContextFunction ResolveFunction (string prefix, string name, XPathResultType[] argumentTypes) {
			throw new NotImplementedException();
		}		

		public override int CompareDocument (string baseUri, string nextBaseUri) {
			return(0);
		}

		public override bool Whitespace {
			get {
				return(true);
			}
		}

		public override bool PreserveWhitespace (XPathNavigator node) {
			return(true);
		}

	}


	internal struct CustomVariable : IXsltContextVariable {

		public CustomVariable (string value) {
			this.value = value;
		}

		private string value;

		public bool IsLocal {
			get {
				return(false);
			}
		}

		public bool IsParam {
			get {
				return(false);
			}
		}

		public XPathResultType VariableType {
			get {
				return(XPathResultType.String);
			}
		}

		public Object Evaluate (XsltContext context) {
			return(value);
		}

	}
	

}