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
65
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
import version
import server/forkserver
let forks = newForkServer()
import options
import os
import posix
import terminal
when defined(profile):
import nimprof
import config/config
import io/serversocket
import local/client
import types/opt
import utils/twtstr
import chakasu/charset
let conf = readConfig()
set_cjk_ambiguous(conf.display.double_width_ambiguous)
let params = commandLineParams()
proc version(long: static bool = false): string =
result = "Chawan browser v0.1 "
when defined(debug):
result &= "(debug)"
else:
result &= "(release)"
proc help(i: int) =
let s = version() & """
Usage: cha [options] [URL(s) or file(s)...]
Options:
-- Interpret all following arguments as URLs
-d, --dump Print page to stdout
-c, --css <stylesheet> Pass stylesheet (e.g. -c 'a{color: blue}')
-o, --opt <config> Pass config options (e.g. -o 'page.q="quit()"')
-T, --type <type> Specify content mime type
-I, --input-charset <enc> Specify document charset
-O, --display-charset <enc> Specify display charset
-M, --monochrome Set color-mode to 'monochrome'
-V, --visual Visual startup mode
-r, --run <script/file> Run passed script or file
-h, --help Print this usage message
-v, --version Print version information"""
if i == 0:
stdout.write(s & '\n')
else:
stderr.write(s & '\n')
quit(i)
var i = 0
var ctype = none(string)
var cs = CHARSET_UNKNOWN
var pages: seq[string]
var dump = false
var visual = false
var escape_all = false
while i < params.len:
let param = params[i]
if escape_all: # after --
pages.add(param)
inc i
continue
proc getnext(): string =
inc i
if i < params.len:
return params[i]
help(1)
proc pversion() =
echo version(true)
quit(0)
proc pmonochrome() =
conf.display.colormode.ok(MONOCHROME)
proc pvisual() =
visual = true
proc ptype() =
ctype = some(getnext())
proc pgetCharset(): Charset =
let s = getnext()
let cs = getCharset(s)
if cs == CHARSET_UNKNOWN:
stderr.write("Unknown charset " & s & "\n")
quit(1)
return cs
proc pinput_charset() =
cs = pgetCharset()
proc poutput_charset() =
conf.encoding.display_charset.ok(pgetCharset())
proc pdump() =
dump = true
proc pcss() =
conf.css.stylesheet &= getnext()
proc popt() =
conf.parseConfig(getCurrentDir(), getnext())
proc phelp() =
help(0)
proc prun() =
conf.start.startup_script = getnext()
conf.start.headless = true
dump = true
if param.len == 0:
inc i
continue
const NeedsNextParam = {'T', 'I', 'O', 'c', 'o', 'r'}
if param[0] == '-':
if param[1] != '-':
# If param.len is 0, we just interpret param as a single dash `-',
# which is ignored.
# (Some programs use single-dash to read from stdin, but we do that
# automatically when stdin is not a tty. So ignoring it entirely
# is probably for the best.)
for j in 1 ..< param.len:
if j != param.high and param[j] in NeedsNextParam:
# expecting next parameter, but not the last char...
help(1)
case param[j]
of 'v': pversion()
of 'M': pmonochrome()
of 'V': pvisual()
of 'T': ptype()
of 'I': pinput_charset()
of 'O': poutput_charset()
of 'd': pdump()
of 'c': pcss()
of 'o': popt()
of 'h': phelp()
of 'r': prun()
else: help(1)
else:
case param
of "--version": pversion()
of "--monochrome": pmonochrome()
of "--visual": pvisual()
of "--type": ptype()
of "--input-charset": pinput_charset()
of "--output-charset": poutput_charset()
of "--dump": pdump()
of "--css": pcss()
of "--opt": popt()
of "--help": phelp()
of "--run": prun()
of "--": escape_all = true
else: help(1)
else:
pages.add(param)
inc i
if pages.len == 0 and stdin.isatty():
if visual:
pages.add(conf.start.visual_home)
else:
let http = getEnv("HTTP_HOME")
if http != "": pages.add(http)
else:
let www = getEnv("WWW_HOME")
if www != "": pages.add(www)
if pages.len == 0 and not conf.start.headless:
if stdin.isatty:
help(1)
forks.loadForkServerConfig(conf)
SocketDirectory = conf.external.tmpdir
let c = newClient(conf, forks, getpid())
try:
c.launchClient(pages, ctype, cs, dump)
except CatchableError:
c.flushConsole()
raise
|