Newer
Older
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
/* js_client.c */
/* Synchronet JavaScript "Client" Object */
/* $Id$ */
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 2001 Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* Anonymous FTP access to the most recent released source is available at *
* ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
* *
* Anonymous CVS access to the development source and modification history *
* is available at cvs.synchro.net:/cvsroot/sbbs, example: *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs login *
* (just hit return, no password is necessary) *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs checkout src *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* You are encouraged to submit any modifications (preferably in Unix diff *
* format) via e-mail to mods@synchro.net *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
#include "sbbs.h"
#ifdef JAVASCRIPT
/* Client Object Properites */
enum {
CLIENT_PROP_ADDR /* IP address */
,CLIENT_PROP_HOST /* host name */
,CLIENT_PROP_PORT /* TCP port number */
,CLIENT_PROP_TIME /* connect time */
,CLIENT_PROP_PROTOCOL /* protocol description */
,CLIENT_PROP_USER /* user name */
};
static JSBool js_client_set(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
return(JS_FALSE);
}
static JSBool js_client_get(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
{
char* p=NULL;
ulong val=0;
jsint tiny;
client_t* client;
if((client=(client_t*)JS_GetPrivate(cx,obj))==NULL)
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
tiny = JSVAL_TO_INT(id);
switch(tiny) {
case CLIENT_PROP_ADDR:
p=client->addr;
break;
case CLIENT_PROP_HOST:
p=client->host;
break;
case CLIENT_PROP_PORT:
val=client->port;
break;
case CLIENT_PROP_TIME:
val=client->time;
break;
case CLIENT_PROP_PROTOCOL:
p=(char*)client->protocol;
break;
case CLIENT_PROP_USER:
p=client->user;
break;
default:
return(TRUE);
}
if(p!=NULL)
*vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, p));
else
*vp = INT_TO_JSVAL(val);
return(TRUE);
}
#define CLIENT_PROP_FLAGS JSPROP_ENUMERATE|JSPROP_READONLY
static struct JSPropertySpec js_client_properties[] = {
/* name ,tinyid ,flags, getter, setter */
{ "ip_address" ,CLIENT_PROP_ADDR ,CLIENT_PROP_FLAGS, NULL,NULL},
{ "host_name" ,CLIENT_PROP_HOST ,CLIENT_PROP_FLAGS, NULL,NULL},
{ "port" ,CLIENT_PROP_PORT ,CLIENT_PROP_FLAGS, NULL,NULL},
{ "connect_time" ,CLIENT_PROP_TIME ,CLIENT_PROP_FLAGS, NULL,NULL},
{ "protocol" ,CLIENT_PROP_PROTOCOL ,CLIENT_PROP_FLAGS, NULL,NULL},
{ "user_name" ,CLIENT_PROP_USER ,CLIENT_PROP_FLAGS, NULL,NULL},
{0}
};
static JSClass js_client_class = {
"Client" /* name */
,JSCLASS_HAS_PRIVATE /* flags */
,JS_PropertyStub /* addProperty */
,JS_PropertyStub /* delProperty */
,js_client_get /* getProperty */
,js_client_set /* setProperty */
,JS_EnumerateStub /* enumerate */
,JS_ResolveStub /* resolve */
,JS_ConvertStub /* convert */
,JS_FinalizeStub /* finalize */
};
JSObject* DLLCALL js_CreateClientObject(JSContext* cx, JSObject* parent
obj = JS_DefineObject(cx, parent, name, &js_client_class, NULL, JSPROP_ENUMERATE);
if(obj==NULL)
return(NULL);
JS_SetPrivate(cx, obj, client); /* Store a pointer to client_t */
JS_DefineProperties(cx, obj, js_client_properties);