-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathQUDoc.m
165 lines (97 loc) · 4.5 KB
/
QUDoc.m
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
(* ::Package:: *)
(* ::Title:: *)
(*QuantumUtils for Mathematica*)
(*Documentation*)
(* ::Subsection::Closed:: *)
(*Copyright and License Information*)
(* ::Text:: *)
(*This package is part of QuantumUtils for Mathematica.*)
(**)
(*Copyright (c) 2015 and later, Christopher J. Wood, Christopher E. Granade, Ian N. Hincks*)
(**)
(*Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditions are met:*)
(*1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.*)
(*2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.*)
(*3. Neither the name of quantum-utils-mathematica nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.*)
(**)
(*THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THEIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AREDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLEFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIALDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ORSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVERCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USEOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*)
(* ::Subsection::Closed:: *)
(*Preamble*)
BeginPackage["QUDoc`"];
(* ::Text:: *)
(*The following packages are needed, but their contexts should not be loaded globally.*)
Needs["QUDevTools`"];
(* ::Text:: *)
(*The following command makes running Get["QUDoc`"] or <<QUDoc` directly open the index.nb file, while running Needs["QUDoc`"] loads the package without opening any documentation unless the QUDoc[] function is run.*)
$stack=Stack[];
If[SameQ[First[$stack],Get],
NotebookOpen[FileNameJoin[{$QUDocumentationPath, "index.nb"}]];
];
(* ::Section:: *)
(*Usage Declarations*)
(* ::Subsection::Closed:: *)
(*Document Function*)
Unprotect[QUDoc];
QUDoc::usage =
"QUDoc[] opens the QuantumUtils documentation notebook index.
QUDoc[''name''] opens the documentation notebook for the QuantumUtils package name.m.
QUDoc[''name`''] opens the documentation notebook for the QuantumUtils package name.m.
QUDoc[func] opens the documentation notebook containing the documentation for the QuantumUtils function 'func'.";
(* ::Subsection::Closed:: *)
(*Error Messages*)
QUDoc::file = "Documentation notebook `1` does not exist.";
QUDoc::fn = "`1` is not a QuantumUtils function.";
(* ::Section:: *)
(*Implimentation*)
Begin["`Private`"];
(* ::Subsection::Closed:: *)
(*Document Function*)
QUDocPath[str_]:=FileNameJoin[{$QUDocumentationPath, "api-doc",str<>".nb"}];
SetAttributes[QUDoc,HoldAll];
QUDoc[]:=(NotebookOpen[FileNameJoin[{$QUDocumentationPath, "index.nb"}]];)
QUDoc[name_String]:=With[{
str=StringReplace[name,"`"->""]},
If[MemberQ[$DocumentNotebooks,str],
NotebookOpen@QUDocPath[str];,
Message[QUDoc::file,str<>".nb"]
]]
QUDoc[sym_Symbol]:=
With[{str=ToString[sym]},
If[MemberQ[$FunctionManifest,str],
NotebookLocate[{QUDocPath[str/.$FunctionNotebooks],str<>"::usage"}];,
Message[QUDoc::fn,str]
]
]
(* ::Subsection::Closed:: *)
(*Manifests*)
(* ::Text:: *)
(*These manifest variables are memoized so that they only load notebooks once (as this is a slow operation).*)
(* ::Text:: *)
(*Get a list of document notebooks stored in /docs/api-docs/*)
$DocumentNotebooks:=
$DocumentNotebooks=
Block[{dir=Directory[],files},
SetDirectory[FileNameJoin[{$QUDocumentationPath, "api-doc"}]];
files=FileNames["*.nb"];
SetDirectory[dir];
StringReplace[files,".nb"->""]
];
(* ::Text:: *)
(*Load a list of all functions in the documentation notebooks*)
$FunctionNotebooks:=
$FunctionNotebooks=
Join@@(
ReplaceAll[
List@@LoadUsages[QUDocPath[#]],
{Rule[a_,_]:>Rule[a,#]}
]&/@$DocumentNotebooks);
(* ::Text:: *)
(*List of all Quantum Utils functions*)
$FunctionManifest:=$FunctionManifest=First/@$FunctionNotebooks
(* ::Subsection::Closed:: *)
(*End Private*)
End[];
(* ::Section::Closed:: *)
(*End Package*)
Protect[QUDoc];
EndPackage[];