1
- *! version 1.1 .0 Matthew White 14mar2012
1
+ *! version 1.2 .0 Matthew White 03jul2012
2
2
pr truecrypt
3
3
vers 9
4
- if c(os) ! = " Windows" {
5
- di as err " Stata for Windows required"
4
+
5
+ if ! inlist(c(os), " Windows" , " MacOSX" ) {
6
+ di as err " Stata for Windows or Mac required"
6
7
ex 198
7
8
}
9
+
8
10
syntax [anything(name= volume)], [Mount DISmount DRive(str) PROGdir(str)]
9
-
11
+
10
12
***Check syntax***
13
+
11
14
* Check strings.
12
15
loc volume `volume'
13
16
loc temp : subinstr loc volume `" ""' " " , count(loc dq)
@@ -22,69 +25,127 @@ pr truecrypt
22
25
ex 198
23
26
}
24
27
}
25
-
28
+
26
29
* -mount-, -dismount-
27
30
if " `mount'`dismount'" == " " loc mount mount
28
31
else if " `mount'" ! = " " & " `dismount'" ! = " " {
29
32
di as err " options mount and dismount are mutually exclusive"
30
33
ex 198
31
34
}
32
-
33
- * -mount- options
35
+
36
+ * -mount-
34
37
if " `mount'" ! = " " {
35
38
* `volume'
36
39
conf f " `volume'"
40
+
41
+ * Make `volume' a clean absolute reference.
42
+ * TrueCrypt can't handle absolute references that are unclean
43
+ * (understood by Stata but not the OS) or relative references up the
44
+ * directory tree (containing ..).
45
+ mata: st_local(" file" , pathbasename(" `volume'" ))
46
+ mata: st_local(" path" , strreverse(subinstr(strreverse(" `volume'" ), strreverse(" `file'" ), " " , 1)))
47
+ nobreak {
48
+ loc curdir = c(pwd)
49
+ * -cd ""- in Stata for Mac changes the working directory to the home
50
+ * directory.
51
+ if " `path'" ! = " " qui cd " `path'"
52
+ loc path = c(pwd)
53
+ qui cd " `curdir'"
54
+ }
55
+ loc volume `path'`= cond(c(os) == " Windows" , " \" , " /" )'`file'
37
56
}
38
- * -dismount- options
57
+ * -dismount-
39
58
else {
40
59
* `volume'
41
60
if " `volume'" ! = " " {
42
61
di as err " option dismount: filename not allowed"
43
62
ex 198
44
63
}
45
-
46
- * -drive-
64
+
65
+ * -drive() -
47
66
if " `drive'" == " " {
48
- di as err " option dismount must be specified with option drive"
67
+ di as err " option dismount must be specified with option drive() "
49
68
ex 198
50
69
}
51
70
}
52
-
53
- * -drive-
71
+
72
+ * -drive() -
54
73
if " `drive'" ! = " " {
55
74
if ! regexm(" `drive'" , " ^[A-Za-z]:?$" ) {
56
75
di as err " option drive(): invalid drive"
57
76
ex 198
58
77
}
59
- else loc drive = regexr(" `drive'" , " :$" , " " )
78
+
79
+ loc driveletter = regexr(" `drive'" , " :$" , " " )
80
+ if c(os) == " Windows" ///
81
+ loc drive `driveletter':
82
+ else ///
83
+ loc drive = " ~/`driveletter'colon"
84
+
85
+ * Check that the drive is available if -mount- or is mounted if -dismount-.
86
+ mata: st_local(" mounted" , strofreal(direxists(" `drive'" )))
87
+ if " `mount'" ! = " " & `mounted' {
88
+ di as err " option mount: drive letter `driveletter' not available"
89
+ ex 198
90
+ }
91
+ else if " `dismount'" ! = " " & ! `mounted' {
92
+ di as err " option dismount: no volume specified by drive letter `driveletter'"
93
+ ex 198
94
+ }
60
95
}
61
-
62
- * -progdir-
63
- if " `progdir'" == " " loc progdir C:\Program Files\TrueCrypt
64
- conf f " `progdir'\TrueCrypt.exe"
65
-
66
- * Check that the drive is available if -mount- or is mounted if -dismount-.
67
- mata: st_local(" mounted" , strofreal(direxists(" `drive':" )))
68
- if " `mount'" ! = " " & `mounted' {
69
- di as err " mount: drive letter `drive' not available"
70
- ex 198
96
+ else if " `mount'" ! = " " & c(os) == " MacOSX" {
97
+ * If -mount- is specified and -drive()- is not, we want TrueCrypt to use
98
+ * the first free drive letter. On Windows, TrueCrypt will do this
99
+ * automatically if not specified a drive letter, but on Mac, it will
100
+ * select something other than a drive letter as the mount directory. So
101
+ * if -truecrypt- is run on Stata for Mac, we'll have Stata determine the
102
+ * first free drive letter, then pass it to TrueCrypt.
103
+
104
+ foreach letter in `c(ALPHA)' {
105
+ loc drive ~ / `letter'colon
106
+ mata: st_local(" mounted" , strofreal(direxists(" `drive'" )))
107
+ if ! `mounted' continue , break
108
+ }
109
+
110
+ if `mounted' {
111
+ di as err " option mount: no drive letter available"
112
+ ex 198
113
+ }
71
114
}
72
- else if " `dismount'" ! = " " & ! `mounted' {
73
- di as err " dismount: no volume specified by drive letter `drive'"
74
- ex 198
115
+
116
+ * -progdir()-
117
+ if " `progdir'" == " " {
118
+ if c(os) == " Windows" ///
119
+ loc progdir C:\Program Files\TrueCrypt
120
+ else ///
121
+ loc progdir /Applications/TrueCrypt.app/Contents/MacOS
75
122
}
123
+ else if c(os) == " MacOSX" ///
124
+ loc progdir `progdir'/TrueCrypt.app/Contents/MacOS
125
+ conf f " `progdir'/TrueCrypt`=cond(c(os) == " Windows" , " .exe" , " " )'"
76
126
***End***
77
-
78
- * -mount-
79
- if " `mount'" ! = " " ///
80
- sh " `progdir'\TrueCrypt.exe" /v " `volume'" `= cond(" `drive'" ! = " " , " /l `drive'" , " " )' /q
81
- * -dismount-
82
- else ///
83
- sh " `progdir'\TrueCrypt.exe" /d `drive' /q
127
+
128
+ if c(os) == " Windows" {
129
+ * -mount-
130
+ if " `mount'" ! = " " ///
131
+ sh " `progdir'\TrueCrypt.exe" /v " `volume'" `= cond(" `drive'" ! = " " , " /l `drive'" , " " )' /q
132
+ * -dismount-
133
+ else ///
134
+ sh " `progdir'\TrueCrypt.exe" /d `drive' /q
135
+ }
136
+ else {
137
+ if " `mount'" ! = " " ///
138
+ sh " `progdir'/TrueCrypt" " `volume'" `drive'
139
+ else ///
140
+ sh " `progdir'/TrueCrypt" - d `drive'
141
+ }
84
142
end
85
143
86
144
* Changes history
87
145
* version 1.0.0 21feb2012
88
146
* version 1.1.0 14mar2012
89
147
* -progdir()- is optional
90
148
* Syntax checks added
149
+ * version 1.2.0 03jul2012
150
+ * Compatible with Mac OS X
151
+ * All references to the TrueCrypt volume accepted
0 commit comments