OSDN Git Service

[modify]スクリーンダンプで「'」と「"」のエスケープを追加
[hengband/hengband.git] / src / report.c
1 /*!
2  * @file report.c
3  * @brief スコアサーバ転送機能の実装
4  * @date 2014/07/14
5  * @author Hengband Team
6  */
7
8 #define _GNU_SOURCE /*!< 未使用*/
9 #include "angband.h"
10
11 #ifdef WORLD_SCORE
12
13 #include <stdio.h>
14 #include <stdarg.h>
15 #include <ctype.h>
16 #include <string.h>
17
18 #if defined(WINDOWS)
19 #include <winsock.h>
20 #elif defined(MACINTOSH)
21 #include <OpenTransport.h>
22 #include <OpenTptInternet.h>
23 #else
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <netdb.h>
28 #include <sys/time.h>
29
30 #include <setjmp.h>
31 #include <signal.h>
32 #endif
33
34 /*
35  * internet resource value
36  */
37 #define HTTP_PROXY ""                   /*!< デフォルトのプロキシURL / Default proxy url */
38 #define HTTP_PROXY_PORT 0               /*!< デフォルトのプロキシポート / Default proxy port */
39 #define HTTP_TIMEOUT    20              /*!< デフォルトのタイムアウト時間(秒) / Timeout length (second) */
40 #define SCORE_SERVER "hengband.osdn.jp" /*!< デフォルトのスコアサーバURL / Default score server url */
41 #define SCORE_PORT 80                   /*!< デフォルトのスコアサーバポート / Default score server port */
42
43 #ifdef JP
44 #define SCORE_PATH "http://hengband.osdn.jp/score/register_score.php" /*!< スコア開示URL */
45 #else
46 #define SCORE_PATH "http://moon.kmc.gr.jp/hengband/hengscore-en/score.cgi" /*!< スコア開示URL */
47 #endif
48
49 /* for debug */
50 #if 0
51 #define SCORE_PATH "http://moon.kmc.gr.jp/hengband/scoretest/score.cgi" /*!< スコア開示URL */
52 #endif
53
54 /*
55  * simple buffer library
56  */
57 typedef struct {
58         size_t max_size;
59         size_t size;
60         char *data;
61 } BUF;
62
63 #define BUFSIZE (65536) /*!< スコアサーバ転送バッファサイズ */
64
65 /*!
66  * @brief 転送用バッファの確保
67  * @return 確保したバッファの参照ポインタ
68  */
69 static BUF* buf_new(void)
70 {
71         BUF *p;
72
73         if ((p = malloc(sizeof(BUF))) == NULL)
74                 return NULL;
75
76         p->size = 0;
77         p->max_size = BUFSIZE;
78         if ((p->data = malloc(BUFSIZE)) == NULL)
79         {
80                 free(p);
81                 return NULL;
82         }
83         return p;
84 }
85
86 /*!
87  * @brief 転送用バッファの解放
88  * @param b 解放するバッファの参照ポインタ
89  */
90 static void buf_delete(BUF *b)
91 {
92         free(b->data);
93         free(b);
94 }
95
96 /*!
97  * @brief 転送用バッファにデータを追加する
98  * @param buf 追加先バッファの参照ポインタ
99  * @param data 追加元データ
100  * @param size 追加サイズ
101  * @return 追加後のバッファ容量
102  */
103 static int buf_append(BUF *buf, const char *data, size_t size)
104 {
105         while (buf->size + size > buf->max_size)
106         {
107                 char *tmp;
108                 if ((tmp = malloc(buf->max_size * 2)) == NULL) return -1;
109
110                 memcpy(tmp, buf->data, buf->max_size);
111                 free(buf->data);
112
113                 buf->data = tmp;
114
115                 buf->max_size *= 2;
116         }
117         memcpy(buf->data + buf->size, data, size);
118         buf->size += size;
119
120         return buf->size;
121 }
122
123 /*!
124  * @brief 転送用バッファにフォーマット指定した文字列データを追加する
125  * @param buf 追加先バッファの参照ポインタ
126  * @param fmt 文字列フォーマット
127  * @return 追加後のバッファ容量
128  */
129 static int buf_sprintf(BUF *buf, const char *fmt, ...)
130 {
131         int             ret;
132         char    tmpbuf[8192];
133         va_list ap;
134
135         va_start(ap, fmt);
136 #if defined(HAVE_VSNPRINTF)
137         ret = vsnprintf(tmpbuf, sizeof(tmpbuf), fmt, ap);
138 #else
139         ret = vsprintf(tmpbuf, fmt, ap);
140 #endif
141         va_end(ap);
142
143         if (ret < 0) return -1;
144
145 #if ('\r' == 0x0a && '\n' == 0x0d)
146         {
147                 /*
148                  * Originally '\r'= CR (= 0x0d) and '\n'= LF (= 0x0a)
149                  * But for MPW (Macintosh Programers Workbench), these
150                  * are reversed so that '\r'=LF and '\n'=CR unless the
151                  * -noMapCR option is not defined.
152                  *
153                  * We need to swap back these here since the score
154                  * dump text should be written using LF as the end of
155                  * line.
156                  */
157                 char *ptr;
158                 for (ptr = tmpbuf; *ptr; ptr++)
159                 {
160                         if (0x0d == *ptr) *ptr = 0x0a;
161                 }
162         }
163 #endif
164
165         ret = buf_append(buf, tmpbuf, strlen(tmpbuf));
166
167         return ret;
168 }
169
170 #if 0
171 static int buf_read(BUF *buf, int fd)
172 {
173         int len;
174 #ifndef MACINTOSH
175         char tmp[BUFSIZE];
176 #else
177         char *tmp;
178         
179         tmp = calloc( BUFSIZE , sizeof(char) );
180 #endif
181
182         while ((len = read(fd, tmp, BUFSIZE)) > 0)
183                 buf_append(buf, tmp, len);
184
185         return buf->size;
186 }
187 #endif
188
189 #if 0
190 static int buf_write(BUF *buf, int fd)
191 {
192         write(fd, buf->data, buf->size);
193
194         return buf->size;
195 }
196
197 static int buf_search(BUF *buf, const char *str)
198 {
199         char *ret;
200
201         ret = my_strstr(buf->data, str);
202
203         if (!ret) return -1;
204
205         return ret - buf->data;
206 }
207
208 static BUF * buf_subbuf(BUF *buf, int pos1, size_t sz)
209 {
210         BUF *ret;
211
212         if (pos1 < 0) return NULL;
213
214         ret = buf_new();
215
216         if (sz <= 0) sz = buf->size - pos1;
217
218         buf_append(ret, buf->data + pos1, sz);
219
220         return ret;
221 }
222 #endif
223
224 /*!
225  * @brief HTTPによるダンプ内容伝送
226  * @param sd ソケットID
227  * @param url 伝送先URL
228  * @param buf 伝送内容バッファ
229  * @return なし
230  */
231 static bool http_post(int sd, cptr url, BUF *buf)
232 {
233         BUF *output;
234         char response_buf[1024] = "";
235         const char *HTTP_RESPONSE_CODE_OK = "HTTP/1.1 200 OK";
236
237         output = buf_new();
238         buf_sprintf(output, "POST %s HTTP/1.0\r\n", url);
239         buf_sprintf(output, "User-Agent: Hengband %d.%d.%d\r\n",
240                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
241
242         buf_sprintf(output, "Content-Length: %d\r\n", buf->size);
243         buf_sprintf(output, "Content-Encoding: binary\r\n");
244 #ifdef JP
245 #ifdef SJIS
246         buf_sprintf(output, "Content-Type: text/plain; charset=SHIFT_JIS\r\n");
247 #endif
248 #ifdef EUC
249         buf_sprintf(output, "Content-Type: text/plain; charset=EUC-JP\r\n");
250 #endif
251 #else
252         buf_sprintf(output, "Content-Type: text/plain; charset=ASCII\r\n");
253 #endif
254         buf_sprintf(output, "\r\n");
255         buf_append(output, buf->data, buf->size);
256
257         soc_write(sd, output->data, output->size);
258
259         soc_read(sd, response_buf, sizeof(response_buf));
260
261         return strncmp(response_buf, HTTP_RESPONSE_CODE_OK, strlen(HTTP_RESPONSE_CODE_OK)) == 0;
262 }
263
264 /*!
265  * @brief キャラクタダンプを作って BUFに保存
266  * @param dumpbuf 伝送内容バッファ
267  * @return エラーコード
268  */
269 static errr make_dump(BUF* dumpbuf)
270 {
271         char            buf[1024];
272         FILE *fff;
273         char file_name[1024];
274
275         /* Open a new file */
276         fff = my_fopen_temp(file_name, 1024);
277         if (!fff)
278         {
279 #ifdef JP
280                 msg_format("一時ファイル %s を作成できませんでした。", file_name);
281 #else
282                 msg_format("Failed to create temporary file %s.", file_name);
283 #endif
284                 msg_print(NULL);
285                 return 1;
286         }
287
288         /* 一旦一時ファイルを作る。通常のダンプ出力と共通化するため。 */
289         (void)make_character_dump(fff);
290
291         /* Close the file */
292         my_fclose(fff);
293
294         /* Open for read */
295         fff = my_fopen(file_name, "r");
296
297         while (fgets(buf, 1024, fff))
298         {
299                 (void)buf_sprintf(dumpbuf, "%s", buf);
300         }
301
302         /* Close the file */
303         my_fclose(fff);
304
305         /* Remove the file */
306         fd_kill(file_name);
307
308         /* Success */
309         return (0);
310 }
311
312 /*!
313  * @brief スクリーンダンプを作成する/ Make screen dump to buffer
314  * @return 作成したスクリーンダンプの参照ポインタ
315  */
316 cptr make_screen_dump(void)
317 {
318         BUF *screen_buf;
319         int y, x, i;
320         cptr ret;
321
322         byte a = 0, old_a = 0;
323         char c = ' ';
324
325         static cptr html_head[] = {
326                 "<html>\n<body text=\"#ffffff\" bgcolor=\"#000000\">\n",
327                 "<pre>",
328                 0,
329         };
330         static cptr html_foot[] = {
331                 "</pre>\n",
332                 "</body>\n</html>\n",
333                 0,
334         };
335
336         bool old_use_graphics = use_graphics;
337
338         int wid, hgt;
339
340         Term_get_size(&wid, &hgt);
341
342         /* Alloc buffer */
343         screen_buf = buf_new();
344         if (screen_buf == NULL) return (NULL);
345
346         if (old_use_graphics)
347         {
348                 /* Clear -more- prompt first */
349                 msg_print(NULL);
350
351                 use_graphics = FALSE;
352                 reset_visuals();
353
354                 /* Redraw everything */
355                 p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_MAP | PR_EQUIPPY);
356
357                 /* Hack -- update */
358                 handle_stuff();
359         }
360
361         for (i = 0; html_head[i]; i++)
362                 buf_sprintf(screen_buf, html_head[i]);
363
364         /* Dump the screen */
365         for (y = 0; y < hgt; y++)
366         {
367                 /* Start the row */
368                 if (y != 0)
369                         buf_sprintf(screen_buf, "\n");
370
371                 /* Dump each row */
372                 for (x = 0; x < wid - 1; x++)
373                 {
374                         int rv, gv, bv;
375                         cptr cc = NULL;
376                         /* Get the attr/char */
377                         (void)(Term_what(x, y, &a, &c));
378
379                         switch (c)
380                         {
381                         case '&': cc = "&amp;"; break;
382                         case '<': cc = "&lt;"; break;
383                         case '>': cc = "&gt;"; break;
384                         case '"': cc = "&quot;"; break;
385                         case '\'': cc = "&#39;"; break;
386 #ifdef WINDOWS
387                         case 0x1f: c = '.'; break;
388                         case 0x7f: c = (a == 0x09) ? '%' : '#'; break;
389 #endif
390                         }
391
392                         a = a & 0x0F;
393                         if ((y == 0 && x == 0) || a != old_a) {
394                                 rv = angband_color_table[a][1];
395                                 gv = angband_color_table[a][2];
396                                 bv = angband_color_table[a][3];
397                                 buf_sprintf(screen_buf, "%s<font color=\"#%02x%02x%02x\">", 
398                                             ((y == 0 && x == 0) ? "" : "</font>"), rv, gv, bv);
399                                 old_a = a;
400                         }
401                         if (cc)
402                                 buf_sprintf(screen_buf, "%s", cc);
403                         else
404                                 buf_sprintf(screen_buf, "%c", c);
405                 }
406         }
407         buf_sprintf(screen_buf, "</font>");
408
409         for (i = 0; html_foot[i]; i++)
410                 buf_sprintf(screen_buf, html_foot[i]);
411
412         /* Screen dump size is too big ? */
413         if (screen_buf->size + 1> SCREEN_BUF_MAX_SIZE)
414         {
415                 ret = NULL;
416         }
417         else
418         {
419                 /* Terminate string */
420                 buf_append(screen_buf, "", 1);
421
422                 ret = string_make(screen_buf->data);
423         }
424
425         /* Free buffer */
426         buf_delete(screen_buf);
427
428         if (old_use_graphics)
429         {
430                 use_graphics = TRUE;
431                 reset_visuals();
432
433                 /* Redraw everything */
434                 p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_MAP | PR_EQUIPPY);
435
436                 /* Hack -- update */
437                 handle_stuff();
438         }
439
440         return ret;
441 }
442
443 /*!
444  * @brief スコア転送処理のメインルーチン
445  * @return エラーコード
446  */
447 errr report_score(void)
448 {
449 #ifdef MACINTOSH
450         OSStatus err;
451 #else
452         errr err = 0;
453 #endif
454
455 #ifdef WINDOWS
456         WSADATA wsaData;
457         WORD wVersionRequested =(WORD) (( 1) |  ( 1 << 8));
458 #endif
459
460         BUF *score;
461         int sd;
462         char seikakutmp[128];
463
464         score = buf_new();
465
466 #ifdef JP
467         sprintf(seikakutmp, "%s%s", ap_ptr->title, (ap_ptr->no ? "の" : ""));
468 #else
469         sprintf(seikakutmp, "%s ", ap_ptr->title);
470 #endif
471
472         buf_sprintf(score, "name: %s\n", p_ptr->name);
473 #ifdef JP
474         buf_sprintf(score, "version: 変愚蛮怒 %d.%d.%d\n",
475                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
476 #else
477         buf_sprintf(score, "version: Hengband %d.%d.%d\n",
478                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
479 #endif
480         buf_sprintf(score, "score: %d\n", total_points());
481         buf_sprintf(score, "level: %d\n", p_ptr->lev);
482         buf_sprintf(score, "depth: %d\n", dun_level);
483         buf_sprintf(score, "maxlv: %d\n", p_ptr->max_plv);
484         buf_sprintf(score, "maxdp: %d\n", max_dlv[DUNGEON_ANGBAND]);
485         buf_sprintf(score, "au: %d\n", p_ptr->au);
486         buf_sprintf(score, "turns: %d\n", turn_real(turn));
487         buf_sprintf(score, "sex: %d\n", p_ptr->psex);
488         buf_sprintf(score, "race: %s\n", rp_ptr->title);
489         buf_sprintf(score, "class: %s\n", cp_ptr->title);
490         buf_sprintf(score, "seikaku: %s\n", seikakutmp);
491         buf_sprintf(score, "realm1: %s\n", realm_names[p_ptr->realm1]);
492         buf_sprintf(score, "realm2: %s\n", realm_names[p_ptr->realm2]);
493         buf_sprintf(score, "killer: %s\n", p_ptr->died_from);
494         buf_sprintf(score, "-----charcter dump-----\n");
495
496         make_dump(score);
497
498         if (screen_dump)
499         {
500                 buf_sprintf(score, "-----screen shot-----\n");
501                 buf_append(score, screen_dump, strlen(screen_dump));
502         }
503         
504 #ifdef WINDOWS
505         if (WSAStartup(wVersionRequested, &wsaData))
506         {
507                 msg_print("Report: WSAStartup failed.");
508                 goto report_end;
509         }
510 #endif
511
512 #ifdef MACINTOSH
513 #if TARGET_API_MAC_CARBON
514         err = InitOpenTransportInContext(kInitOTForApplicationMask, NULL);
515 #else
516         err = InitOpenTransport();
517 #endif
518         if (err != noErr)
519         {
520                 msg_print("Report: OpenTransport failed.");
521                 return 1;
522         }
523 #endif
524
525         Term_clear();
526
527         while (1)
528         {
529                 char buff[160];
530 #ifdef JP
531                 prt("接続中...", 0, 0);
532 #else
533                 prt("connecting...", 0, 0);
534 #endif
535                 Term_fresh();
536                 
537                 /* プロキシを設定する */
538                 set_proxy(HTTP_PROXY, HTTP_PROXY_PORT);
539
540                 /* Connect to the score server */
541                 sd = connect_server(HTTP_TIMEOUT, SCORE_SERVER, SCORE_PORT);
542
543
544                 if (sd < 0) {
545 #ifdef JP
546                         sprintf(buff, "スコア・サーバへの接続に失敗しました。(%s)", soc_err());
547 #else
548                         sprintf(buff, "Failed to connect to the score server.(%s)", soc_err());
549 #endif
550                         prt(buff, 0, 0);
551                         (void)inkey();
552
553 #ifdef JP
554                         if (!get_check_strict("もう一度接続を試みますか? ", CHECK_NO_HISTORY))
555 #else
556                         if (!get_check_strict("Try again? ", CHECK_NO_HISTORY))
557 #endif
558                         {
559                                 err = 1;
560                                 goto report_end;
561                         }
562
563                         continue;
564                 }
565
566 #ifdef JP
567                 prt("スコア送信中...", 0, 0);
568 #else
569                 prt("Sending the score...", 0, 0);
570 #endif
571                 Term_fresh();
572
573                 if (!http_post(sd, SCORE_PATH, score)) {
574                         disconnect_server(sd);
575 #ifdef JP
576                         sprintf(buff, "スコア・サーバへの送信に失敗しました。");
577 #else
578                         sprintf(buff, "Failed to send to the score server.");
579 #endif
580                         prt(buff, 0, 0);
581                         (void)inkey();
582
583 #ifdef JP
584                         if (!get_check_strict("もう一度接続を試みますか? ", CHECK_NO_HISTORY))
585 #else
586                         if (!get_check_strict("Try again? ", CHECK_NO_HISTORY))
587 #endif
588                         {
589                                 err = 1;
590                                 goto report_end;
591                         }
592
593                         continue;
594                 }
595
596                 disconnect_server(sd);
597                 break;
598         }
599
600  report_end:
601 #ifdef WINDOWS
602         WSACleanup();
603 #endif
604
605 #ifdef MACINTOSH
606 #if TARGET_API_MAC_CARBON
607         CloseOpenTransportInContext(NULL);
608 #else
609         CloseOpenTransport();
610 #endif
611 #endif
612
613         return err;
614 }
615
616 #endif /* WORLD_SCORE */