Add another bug workaround, this one for old OpenSSH (<2.3) servers
[sgt/putty] / mac / macdlg.c
CommitLineData
9ef3c1ca 1/* $Id: macdlg.c,v 1.10 2003/02/02 15:59:00 ben Exp $ */
6cb61a05 2/*
3 * Copyright (c) 2002 Ben Harris
4 * All rights reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person
7 * obtaining a copy of this software and associated documentation
8 * files (the "Software"), to deal in the Software without
9 * restriction, including without limitation the rights to use,
10 * copy, modify, merge, publish, distribute, sublicense, and/or
11 * sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following
13 * conditions:
14 *
15 * The above copyright notice and this permission notice shall be
16 * included in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
23 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
28/*
29 * macdlg.c - settings dialogue box for Mac OS.
30 */
31
32#include <MacTypes.h>
d70e3b83 33#include <AEDataModel.h>
34#include <AppleEvents.h>
6cb61a05 35#include <Dialogs.h>
9ef3c1ca 36#include <Navigation.h>
b537dd42 37#include <Resources.h>
2b8dca9e 38#include <StandardFile.h>
6cb61a05 39#include <Windows.h>
40
98f59a35 41#include <assert.h>
6cb61a05 42#include <string.h>
43
44#include "putty.h"
45#include "mac.h"
46#include "macresid.h"
2b8dca9e 47#include "storage.h"
6cb61a05 48
49void mac_newsession(void)
50{
51 Session *s;
52
53 /* This should obviously be initialised by other means */
54 s = smalloc(sizeof(*s));
55 memset(s, 0, sizeof(*s));
56 do_defaults(NULL, &s->cfg);
98f59a35 57 s->hasfile = FALSE;
6cb61a05 58
cef180ab 59 s->settings_window =
60 GetDialogWindow(GetNewDialog(wSettings, NULL, (WindowPtr)-1));
6cb61a05 61
62 SetWRefCon(s->settings_window, (long)s);
63 ShowWindow(s->settings_window);
64}
65
5211281f 66void mac_dupsession(void)
67{
68 Session *s1 = (Session *)GetWRefCon(FrontWindow());
69 Session *s2;
70
71 s2 = smalloc(sizeof(*s2));
72 memset(s2, 0, sizeof(*s2));
73 s2->cfg = s1->cfg;
74 s2->hasfile = s1->hasfile;
75 s2->savefile = s1->savefile;
76
77 mac_startsession(s2);
78}
79
d70e3b83 80static OSErr mac_opensessionfrom(FSSpec *fss)
81{
82 FInfo fi;
2b8dca9e 83 Session *s;
2b8dca9e 84 void *sesshandle;
d70e3b83 85 OSErr err;
2b8dca9e 86
87 s = smalloc(sizeof(*s));
88 memset(s, 0, sizeof(*s));
89
d70e3b83 90 err = FSpGetFInfo(fss, &fi);
91 if (err != noErr) return err;
92 if (fi.fdFlags & kIsStationery)
98f59a35 93 s->hasfile = FALSE;
94 else {
95 s->hasfile = TRUE;
d70e3b83 96 s->savefile = *fss;
98f59a35 97 }
2b8dca9e 98
d70e3b83 99 sesshandle = open_settings_r_fsp(fss);
100 if (sesshandle == NULL) {
101 /* XXX need a way to pass up an error number */
102 err = -9999;
103 goto fail;
104 }
105 load_open_settings(sesshandle, TRUE, &s->cfg);
106 close_settings_r(sesshandle);
107
2b8dca9e 108 mac_startsession(s);
d70e3b83 109 return noErr;
2b8dca9e 110
111 fail:
112 sfree(s);
d70e3b83 113 return err;
114}
115
9ef3c1ca 116static OSErr mac_openlist(AEDesc docs)
117{
118 OSErr err;
119 long ndocs, i;
120 FSSpec fss;
121 AEKeyword keywd;
122 DescType type;
123 Size size;
124
125 err = AECountItems(&docs, &ndocs);
126 if (err != noErr) return err;
127
128 for (i = 0; i < ndocs; i++) {
129 err = AEGetNthPtr(&docs, i + 1, typeFSS,
130 &keywd, &type, &fss, sizeof(fss), &size);
131 if (err != noErr) return err;;
132 err = mac_opensessionfrom(&fss);
133 if (err != noErr) return err;
134 }
135 return noErr;
136}
137
cef180ab 138void mac_opensession(void)
139{
9ef3c1ca 140
141 if (mac_gestalts.navsvers > 0) {
142 NavReplyRecord navr;
143 NavDialogOptions navopts;
144 NavTypeListHandle navtypes;
145 AEDesc defaultloc = { 'null', NULL };
146 AEDesc *navdefault = NULL;
147 short vol;
148 long dirid;
149 FSSpec fss;
150
151 if (NavGetDefaultDialogOptions(&navopts) != noErr) return;
152 /* XXX should we create sessions dir? */
153 if (get_session_dir(FALSE, &vol, &dirid) == noErr &&
154 FSMakeFSSpec(vol, dirid, NULL, &fss) == noErr &&
155 AECreateDesc(typeFSS, &fss, sizeof(fss), &defaultloc) == noErr)
156 navdefault = &defaultloc;
157 /* Can't meaningfully preview a saved session yet */
158 navopts.dialogOptionFlags &= ~kNavAllowPreviews;
159 navtypes = (NavTypeListHandle)GetResource('open', open_pTTY);
160 if (NavGetFile(navdefault, &navr, &navopts, NULL, NULL, NULL, navtypes,
161 NULL) == noErr && navr.validRecord)
162 mac_openlist(navr.selection);
163 NavDisposeReply(&navr);
164 if (navtypes != NULL)
165 ReleaseResource((Handle)navtypes);
166 }
cef180ab 167#if !TARGET_API_MAC_CARBON /* XXX Navigation Services */
9ef3c1ca 168 else {
169 StandardFileReply sfr;
170 static const OSType sftypes[] = { 'Sess', 0, 0, 0 };
d70e3b83 171
9ef3c1ca 172 StandardGetFile(NULL, 1, sftypes, &sfr);
173 if (!sfr.sfGood) return;
d70e3b83 174
9ef3c1ca 175 mac_opensessionfrom(&sfr.sfFile);
176 /* XXX handle error */
177 }
cef180ab 178#endif
2b8dca9e 179}
180
b537dd42 181void mac_savesession(void)
182{
98f59a35 183 Session *s = (Session *)GetWRefCon(FrontWindow());
184 void *sesshandle;
b537dd42 185
98f59a35 186 assert(s->hasfile);
187 sesshandle = open_settings_w_fsp(&s->savefile);
188 if (sesshandle == NULL) return; /* XXX report error */
189 save_open_settings(sesshandle, TRUE, &s->cfg);
190 close_settings_w(sesshandle);
b537dd42 191}
192
193void mac_savesessionas(void)
194{
cef180ab 195#if !TARGET_API_MAC_CARBON /* XXX Navigation Services */
b537dd42 196 Session *s = (Session *)GetWRefCon(FrontWindow());
197 StandardFileReply sfr;
198 void *sesshandle;
199
98f59a35 200 StandardPutFile("\pSave session as:",
201 s->hasfile ? s->savefile.name : "\puntitled", &sfr);
b537dd42 202 if (!sfr.sfGood) return;
203
204 if (!sfr.sfReplacing) {
205 FSpCreateResFile(&sfr.sfFile, PUTTY_CREATOR, SESS_TYPE, sfr.sfScript);
206 if (ResError() != noErr) return; /* XXX report error */
207 }
208 sesshandle = open_settings_w_fsp(&sfr.sfFile);
209 if (sesshandle == NULL) return; /* XXX report error */
210 save_open_settings(sesshandle, TRUE, &s->cfg);
211 close_settings_w(sesshandle);
98f59a35 212 s->hasfile = TRUE;
213 s->savefile = sfr.sfFile;
cef180ab 214#endif
b537dd42 215}
216
d70e3b83 217pascal OSErr mac_aevt_oapp(const AppleEvent *req, AppleEvent *reply,
218 long refcon)
219{
220 DescType type;
221 Size size;
222
223 if (AEGetAttributePtr(req, keyMissedKeywordAttr, typeWildCard,
224 &type, NULL, 0, &size) == noErr)
225 return errAEParamMissed;
226
227 /* XXX we should do something here. */
228 return noErr;
229}
230
231pascal OSErr mac_aevt_odoc(const AppleEvent *req, AppleEvent *reply,
232 long refcon)
233{
234 DescType type;
d70e3b83 235 Size size;
236 AEDescList docs = { typeNull, NULL };
237 OSErr err;
d70e3b83 238
239 err = AEGetParamDesc(req, keyDirectObject, typeAEList, &docs);
240 if (err != noErr) goto out;
241
242 if (AEGetAttributePtr(req, keyMissedKeywordAttr, typeWildCard,
243 &type, NULL, 0, &size) == noErr) {
244 err = errAEParamMissed;
245 goto out;
246 }
247
9ef3c1ca 248 err = mac_openlist(docs);
d70e3b83 249
250 out:
251 AEDisposeDesc(&docs);
252 return err;
253}
254
255pascal OSErr mac_aevt_pdoc(const AppleEvent *req, AppleEvent *reply,
256 long refcon)
257{
258 DescType type;
259 Size size;
260
261 if (AEGetAttributePtr(req, keyMissedKeywordAttr, typeWildCard,
262 &type, NULL, 0, &size) == noErr)
263 return errAEParamMissed;
264
265 /* We can't meaningfully do anything here. */
266 return errAEEventNotHandled;
267}
268
6cb61a05 269void mac_activatedlg(WindowPtr window, EventRecord *event)
270{
271 DialogItemType itemtype;
272 Handle itemhandle;
273 short item;
274 Rect itemrect;
275 int active;
cef180ab 276 DialogRef dialog = GetDialogFromWindow(window);
6cb61a05 277
278 active = (event->modifiers & activeFlag) != 0;
cef180ab 279 GetDialogItem(dialog, wiSettingsOpen, &itemtype, &itemhandle, &itemrect);
6cb61a05 280 HiliteControl((ControlHandle)itemhandle, active ? 0 : 255);
cef180ab 281 DialogSelect(event, &dialog, &item);
6cb61a05 282}
283
284void mac_clickdlg(WindowPtr window, EventRecord *event)
285{
286 short item;
287 Session *s = (Session *)GetWRefCon(window);
cef180ab 288 DialogRef dialog = GetDialogFromWindow(window);
6cb61a05 289
cef180ab 290 if (DialogSelect(event, &dialog, &item))
6cb61a05 291 switch (item) {
292 case wiSettingsOpen:
cef180ab 293 HideWindow(window);
6cb61a05 294 mac_startsession(s);
295 break;
296 }
297}
298
299/*
300 * Local Variables:
301 * c-file-style: "simon"
302 * End:
303 */