Adding a method to clean up the code for reading the channel
[printdrop.git] / Source / AppController.m
1 /*
2 * PrintDrop
3 * Copyright (c) 2008, Blue Static <http://www.bluestatic.org>
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17 #import "AppController.h"
18 #import <libssh2.h>
19 #import <sys/socket.h>
20 #import <arpa/inet.h>
21 #include <netdb.h>
22
23 @interface AppController (Private)
24
25 //- (BOOL)uploadFile;
26 - (void)setStatus:(NSString *)msg isError:(BOOL)error;
27
28 - (void)readChannel:(LIBSSH2_CHANNEL *)channel;
29
30 @end
31
32
33 @implementation AppController
34
35 /**
36 * Set up the printer list
37 */
38 - (id)init
39 {
40 if (self = [super init])
41 {
42 printers = [NSMutableArray array];
43
44 NSArray *values = [NSArray arrayWithObjects:@"Double-Sided, Stapled $0.05", @"publp", nil];
45 NSArray *keys = [NSArray arrayWithObjects:@"displayName", @"unixName", nil];
46 [printers addObject:[NSDictionary dictionaryWithObjects:values forKeys:keys]];
47
48 values = [NSArray arrayWithObjects:@"Single-Sided, Stapled $0.10", @"pubps", nil];
49 [printers addObject:[NSDictionary dictionaryWithObjects:values forKeys:keys]];
50
51 values = [NSArray arrayWithObjects:@"Double-Sided, Not Stapled $0.05", @"publpns", nil];
52 [printers addObject:[NSDictionary dictionaryWithObjects:values forKeys:keys]];
53
54 values = [NSArray arrayWithObjects:@"Single-Sided, Not Stapled $0.10", @"pubpsns", nil];
55 [printers addObject:[NSDictionary dictionaryWithObjects:values forKeys:keys]];
56 }
57 return self;
58 }
59
60 /**
61 * Sets the status text
62 */
63 - (void)setStatus:(NSString *)msg isError:(BOOL)error
64 {
65 [status setStringValue:msg];
66 if (error)
67 {
68 [status setTextColor:[NSColor redColor]];
69 [progress stopAnimation:self];
70 }
71 else
72 {
73 [status setTextColor:[NSColor blackColor]];
74 }
75 }
76
77 /**
78 * Reads through a channel (in non-blocking) mode until there is no more left to read
79 * and then it returns. This calls sleep(1) so that the channel can have time to process.
80 * Be sure this is threaded otherwis the interface will stall.
81 */
82 - (void)readChannel:(LIBSSH2_CHANNEL *)channel
83 {
84 libssh2_channel_set_blocking(channel, 0);
85
86 char buf[1024];
87 int numbytes;
88 do
89 {
90 memset(&buf, '\0', sizeof(buf));
91 sleep(1);
92 numbytes = libssh2_channel_read(channel, buf, sizeof(buf));
93 } while (numbytes > 0);
94 }
95
96 /**
97 * Sends an item to the printer
98 */
99 - (IBAction)print:(id)sender
100 {
101 [progress startAnimation:self];
102 [progress setHidden:NO];
103 [status setHidden:NO];
104
105 NSString *printer = [[printersController selection] valueForKey:@"unixName"];
106 FILE *localFile;
107 struct stat fileInfo;
108
109 [self setStatus:@"Connecting to acs.bu.edu" isError:NO];
110 struct sockaddr_in sin;
111 int sock = socket(AF_INET, SOCK_STREAM, 0);
112 sin.sin_port = htons(22);
113 sin.sin_family = AF_INET;
114
115 struct hostent *host = gethostbyname("acs.bu.edu");
116 memcpy(&sin.sin_addr, host->h_addr_list[0], host->h_length);
117
118 if (connect(sock, (struct sockaddr *)(&sin), sizeof(struct sockaddr_in)) != 0)
119 {
120 return [self setStatus:@"Could not connect to acs.bu.edu" isError:YES];
121 }
122
123 LIBSSH2_SESSION *ssh = libssh2_session_init();
124 if (ssh == NULL)
125 {
126 return [self setStatus:@"Failed to initialize SSH context" isError:YES];
127 }
128
129 if (libssh2_session_startup(ssh, sock))
130 {
131 return [self setStatus:@"Could not tunnel over SSH" isError:YES];
132 }
133
134 if (libssh2_userauth_password(ssh, [[username stringValue] UTF8String], [[password stringValue] UTF8String]))
135 {
136 [self setStatus:@"Bad username/password" isError:YES];
137 goto shutdown;
138 }
139 /*
140 stat([[dragRegion filePath] UTF8String], &fileInfo);
141
142 LIBSSH2_CHANNEL *channel = libssh2_scp_send(ssh, "~/tempupload.pdf", 0755, (unsigned long)fileInfo.st_size);
143 if (!channel)
144 {
145 [self setStatus:@"Unable to open upload SCP session" isError:YES];
146 goto shutdown;
147 }
148
149 [self setStatus:@"Uploading file..." isError:NO];
150
151 localFile = fopen([[dragRegion filePath] UTF8String], "r");
152 char buf[1024];
153 char *pbuf;
154 int numread, numwrote;
155 do
156 {
157 numread = fread(buf, 1, sizeof(buf), localFile);
158 if (numread <= 0)
159 {
160 break;
161 }
162
163 pbuf = buf;
164 do
165 {
166 numwrote = libssh2_channel_write(channel, pbuf, numread);
167 pbuf += numwrote;
168 numread -= numread;
169 } while (numwrote > 0);
170
171 } while(1);
172
173 [self setStatus:@"File uploaded!" isError:NO];
174
175 libssh2_channel_send_eof(channel);
176 libssh2_channel_wait_eof(channel);
177 libssh2_channel_wait_closed(channel);
178 libssh2_channel_free(channel);
179 channel = NULL;
180 */
181
182 LIBSSH2_CHANNEL *channel = libssh2_channel_open_session(ssh);
183 if (!channel)
184 {
185 [self setStatus:@"Could not open SSH channel for printing" isError:YES];
186 goto shutdown;
187 }
188
189 if (libssh2_channel_request_pty(channel, "vanilla"))
190 {
191 [self setStatus:@"Could not open ANSI TTY" isError:YES];
192 goto shutdown;
193 }
194
195 if (libssh2_channel_shell(channel))
196 {
197 [self setStatus:@"Failed to open remote shell" isError:YES];
198 goto shutdown;
199 }
200
201 [self setStatus:@"Opened remote SSH shell" isError:NO];
202
203 // read the banner
204 [self readChannel:channel];
205
206 char *cmd = "touch /u17/ugrad/rsesek/temp.foo\r\n\0";
207 libssh2_channel_write(channel, cmd, sizeof(char) * strlen(cmd));
208 [self readChannel:channel];
209
210 [self setStatus:@"Printed!" isError:NO];
211
212 libssh2_channel_send_eof(channel);
213 libssh2_channel_eof(channel);
214 libssh2_channel_close(channel);
215
216 shutdown:
217 if (channel)
218 {
219 libssh2_channel_free(channel);
220 channel = NULL;
221 }
222 libssh2_session_disconnect(ssh, "Normal disconnect.");
223 libssh2_session_free(ssh);
224
225 close(sock);
226
227 [progress stopAnimation:self];
228 }
229
230 @end