summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-04 22:56:28 -0400
committerBen Morrison <ben@gbmor.dev>2019-06-05 00:12:49 -0400
commit69217dd27196dd59c96bc405afe4bfd83ad17c00 (patch)
tree60183e14dd807bec5865610c1a58d4e432ed8221
parentdb1dc5d8c2d1557b085b63cb8c511f5a9864b38e (diff)
downloadgetwtxt-69217dd27196dd59c96bc405afe4bfd83ad17c00.tar.gz
cli flags for db path/type, assets dir. systemd unit file. makefile.
-rw-r--r--Makefile38
-rw-r--r--cache.go10
-rw-r--r--etc/getwtxt.service14
-rw-r--r--etc/revive.toml (renamed from revive.toml)0
-rw-r--r--getwtxt.yml2
-rw-r--r--init.go33
-rw-r--r--main.go1
-rw-r--r--types.go1
8 files changed, 89 insertions, 10 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b6c522c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,38 @@
+PREFIX?=/usr/local
+_INSTDIR=$(PREFIX)
+BINDIR?=$(_INSTDIR)/getwtxt
+GOFLAGS?=
+
+GOSRC!=find . -name '*.go'
+GOSRC+=go.mod go.sum
+
+getwtxt: $(GOSRC)
+	go build $(GOFLAGS) \
+		-o $@
+
+RM?=rm -f
+
+clean:
+	$(RM) getwtxt
+
+update:
+	git pull --rebase
+
+install:
+	adduser -home $(BINDIR) --system --group getwtxt
+	mkdir -p $(BINDIR)/assets/tmpl $(BINDIR)/docs
+	install -m755 getwtxt $(BINDIR)
+	install -m644 getwtxt.yml $(BINDIR)
+	install -m644 assets/style.css $(BINDIR)/assets
+	install -m644 assets/tmpl/index.html $(BINDIR)/assets/tmpl
+	install -m644 README.md $(BINDIR)/docs
+	install -m644 LICENSE $(BINDIR)/docs
+	install -m644 etc/getwtxt.service /etc/systemd/system
+	chown -R getwtxt:getwtxt $(BINDIR)
+
+uninstall:
+	systemctl stop getwtxt >/dev/null 2>&1
+	systemctl disable getwtxt >/dev/null 2>&1
+	rm -rf $(BINDIR)
+	rm -f /etc/systemd/system/getwtxt.service
+	userdel getwtxt
diff --git a/cache.go b/cache.go
index 2db0fbb..882c4d8 100644
--- a/cache.go
+++ b/cache.go
@@ -67,12 +67,16 @@ func refreshCache() {
 // pulled back into memory from disk.
 func pingAssets() {
 
-	cssStat, err := os.Stat("assets/style.css")
+	confObj.Mu.RLock()
+	assetsDir := confObj.AssetsDir
+	confObj.Mu.RUnlock()
+
+	cssStat, err := os.Stat(assetsDir + "/style.css")
 	if err != nil {
 		log.Printf("%v\n", err.Error())
 	}
 
-	indexStat, err := os.Stat("assets/tmpl/index.html")
+	indexStat, err := os.Stat(assetsDir + "/tmpl/index.html")
 	if err != nil {
 		log.Printf("%v\n", err.Error())
 	}
@@ -99,7 +103,7 @@ func pingAssets() {
 
 	if !cssMod.Equal(cssStat.ModTime()) {
 
-		css, err := ioutil.ReadFile("assets/style.css")
+		css, err := ioutil.ReadFile(assetsDir + "/style.css")
 		if err != nil {
 			log.Printf("%v\n", err.Error())
 		}
diff --git a/etc/getwtxt.service b/etc/getwtxt.service
new file mode 100644
index 0000000..0d541ff
--- /dev/null
+++ b/etc/getwtxt.service
@@ -0,0 +1,14 @@
+[Unit]
+Description=getwtxt
+
+[Service]
+Type=simple
+ExecStart=/usr/local/getwtxt/getwtxt \
+          --assets /usr/local/getwtxt/assets \
+          --config /usr/local/getwtxt/getwtxt.yml \
+          --db /usr/local/getwtxt/getwtxt.db \
+          --dbtype leveldb
+Restart=always
+
+[Install]
+WantedBy=multi-user.target
diff --git a/revive.toml b/etc/revive.toml
index f9e2405..f9e2405 100644
--- a/revive.toml
+++ b/etc/revive.toml
diff --git a/getwtxt.yml b/getwtxt.yml
index 4c72454..fb05a96 100644
--- a/getwtxt.yml
+++ b/getwtxt.yml
@@ -41,7 +41,7 @@ DatabasePath: "getwtxt.db"
 # requests, to stdout. It will ignore any set log file.
 # Useful for debugging, but you probably want to keep
 # logs.
-StdoutLogging: true
+StdoutLogging: false
 
 # The file getwtxt will append log messages to. Can be a
 # relative or absolute path.
diff --git a/init.go b/init.go
index 076a7ca..18a3d96 100644
--- a/init.go
+++ b/init.go
@@ -25,6 +25,9 @@ var (
 	flagHelp     *bool   = pflag.BoolP("help", "h", false, "Display the quick-help screen.")
 	flagMan      *bool   = pflag.BoolP("manual", "m", false, "Display the configuration manual.")
 	flagConfFile *string = pflag.StringP("config", "c", "", "The name/path of the configuration file you wish to use.")
+	flagAssets   *string = pflag.StringP("assets", "a", "", "The location of the getwtxt assets directory")
+	flagDBPath   *string = pflag.StringP("db", "d", "", "Path to the getwtxt database")
+	flagDBType   *string = pflag.StringP("dbtype", "t", "", "Type of database being used")
 )
 
 var confObj = &Configuration{}
@@ -54,7 +57,7 @@ var staticCache = &struct {
 	cssMod:   time.Time{},
 }
 
-func initGetwtxt() {
+func init() {
 	checkFlags()
 	titleScreen()
 	initConfig()
@@ -122,6 +125,7 @@ func initConfig() {
 	viper.SetDefault("ListenPort", 9001)
 	viper.SetDefault("LogFile", "getwtxt.log")
 	viper.SetDefault("DatabasePath", "getwtxt.db")
+	viper.SetDefault("DatabaseType", "leveldb")
 	viper.SetDefault("StdoutLogging", false)
 	viper.SetDefault("ReCacheInterval", "1h")
 	viper.SetDefault("DatabasePushInterval", "5m")
@@ -137,9 +141,24 @@ func initConfig() {
 	confObj.Port = viper.GetInt("ListenPort")
 	confObj.LogFile = viper.GetString("LogFile")
 
-	confObj.DBType = strings.ToLower(viper.GetString("DatabaseType"))
-	confObj.DBPath = viper.GetString("DatabasePath")
-	log.Printf("Using database: %v\n", confObj.DBPath)
+	if *flagDBType == "" {
+		confObj.DBType = strings.ToLower(viper.GetString("DatabaseType"))
+	} else {
+		confObj.DBType = *flagDBType
+	}
+
+	if *flagDBPath == "" {
+		confObj.DBPath = viper.GetString("DatabasePath")
+	} else {
+		confObj.DBPath = *flagDBPath
+	}
+	log.Printf("Using %v database: %v\n", confObj.DBType, confObj.DBPath)
+
+	if *flagAssets == "" {
+		confObj.AssetsDir = "assets"
+	} else {
+		confObj.AssetsDir = *flagAssets
+	}
 
 	confObj.StdoutLogging = viper.GetBool("StdoutLogging")
 	if confObj.StdoutLogging {
@@ -233,7 +252,11 @@ func rebindConfig() {
 }
 
 func initTemplates() *template.Template {
-	return template.Must(template.ParseFiles("assets/tmpl/index.html"))
+	confObj.Mu.RLock()
+	assetsDir := confObj.AssetsDir
+	confObj.Mu.RUnlock()
+
+	return template.Must(template.ParseFiles(assetsDir + "/tmpl/index.html"))
 }
 
 // Pull DB data into cache, if available.
diff --git a/main.go b/main.go
index a3f0133..2aa8758 100644
--- a/main.go
+++ b/main.go
@@ -11,7 +11,6 @@ import (
 )
 
 func main() {
-	initGetwtxt()
 
 	// StrictSlash(true) allows /api and /api/
 	// to serve the same content without duplicating
diff --git a/types.go b/types.go
index 7e78ae0..b32edd3 100644
--- a/types.go
+++ b/types.go
@@ -20,6 +20,7 @@ type Configuration struct {
 	LogFile       string        `yaml:"LogFile"`
 	DBType        string        `yaml:"DatabaseType"`
 	DBPath        string        `yaml:"DatabasePath"`
+	AssetsDir     string        `yaml:"-"`
 	StdoutLogging bool          `yaml:"StdoutLogging"`
 	Version       string        `yaml:"-"`
 	CacheInterval time.Duration `yaml:"StatusFetchInterval"`
4write-stream-data.subx.html?h=main&id=0fba3393a5becfb38dea19464e02dc17a64b7574'>^
ec73ed12 ^
999c529c ^





68df24fa ^
999c529c ^
ec73ed12 ^
999c529c ^



68df24fa ^
d3a9db3a ^
999c529c ^
ec73ed12 ^
999c529c ^




d3a9db3a ^
999c529c ^
ec73ed12 ^
999c529c ^





ec73ed12 ^
999c529c ^
ec73ed12 ^
999c529c ^





4a4a392d ^



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



                                                                                          
                                             













                                                                                                               
                             
                                  
                                                             

                                                                           
































                                                                                 
                                                                                                                                                       










                                                                                                                                                                                                                            
                                                                                                                                                                                
                                                                                            







                                                                                                                                                                                                                                                                                                                                                                                             
                                                                                                                                                 
                                                                                                                     












                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                       








                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                            




                                                                                                                                                                                                                                                                                                                                                                                             
                                                                                            




                                                                                                                                                                                                                                                                                                                                                                                             
                                                                                                                          
                                                                                          
                                                                                                               

                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                        
                                                                                               
                                                                                                  
                                                                                          
                                                                                                               



                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                        
                                                                                          
                                                                                                               





                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                        
                                                                                          
                                                                                                       



                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                        
                                                                                                                                 
                                                                                          
                                                                                                                               




                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                 
                                                                                          
                                                                                                            





                                                                                                                                                                                                                                                                                                                                                                                         
                                                                                                                           
                                                                                           
                                                                                                                             





                                                                                                                                                                                                                                                                                                                                                                                              



                                     
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - 125write-stream-data.subx</title>
<meta name="Generator" content="Vim/8.1">
<meta name="plugin-version" content="vim8.1_v1">
<meta name="syntax" content="none">
<meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
<meta name="colorscheme" content="minimal-light">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #c6c6c6; }
body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
a { color:inherit; }
* { font-size:12pt; font-size: 1em; }
.subxComment { color: #005faf; }
.subxS2Comment { color: #8a8a8a; }
.LineNr { }
.subxTest { color: #5f8700; }
.subxS1Comment { color: #0000af; }
.subxFunction { color: #af5f00; text-decoration: underline; }
.Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; }
.Constant { color: #008787; }
-->
</style>

<script type='text/javascript'>
<!--

/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
  var lineNum;
  lineNum = window.location.hash;
  lineNum = lineNum.substr(1); /* strip off '#' */

  if (lineNum.indexOf('L') == -1) {
    lineNum = 'L'+lineNum;
  }
  var lineElem = document.getElementById(lineNum);
  /* Always jump to new location even if the line was hidden inside a fold, or
   * we corrected the raw number to a line ID.
   */
  if (lineElem) {
    lineElem.scrollIntoView(true);
  }
  return true;
}
if ('onhashchange' in window) {
  window.onhashchange = JumpToLine;
}

-->
</script>
</head>
<body onload='JumpToLine();'>
<a href='https://github.com/akkartik/mu/blob/master/125write-stream-data.subx'>https://github.com/akkartik/mu/blob/master/125write-stream-data.subx</a>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr">  1 </span>== code
<span id="L2" class="LineNr">  2 </span><span class="subxComment">#   instruction                     effective address                                                   register    displacement    immediate</span>
<span id="L3" class="LineNr">  3 </span><span class="subxS1Comment"># . op          subop               mod             rm32          base        index         scale       r32</span>
<span id="L4" class="LineNr">  4 </span><span class="subxS1Comment"># . 1-3 bytes   3 bits              2 bits          3 bits        3 bits      3 bits        2 bits      2 bits      0/1/2/4 bytes   0/1/2/4 bytes</span>
<span id="L5" class="LineNr">  5 </span>
<span id="L6" class="LineNr">  6 </span><span class="subxComment"># write an entire stream's contents to a buffered-file</span>
<span id="L7" class="LineNr">  7 </span><span class="subxComment"># ways to do this:</span>
<span id="L8" class="LineNr">  8 </span><span class="subxComment">#   - construct a 'maximal slice' and pass it to write-slice-buffered</span>
<span id="L9" class="LineNr">  9 </span><span class="subxComment">#   - flush the buffered-file and pass the stream directly to its fd (disabling buffering)</span>
<span id="L10" class="LineNr"> 10 </span><span class="subxComment"># we'll go with the first way for now</span>
<span id="L11" class="LineNr"> 11 </span><span class="subxFunction">write-stream-data</span>:  <span class="subxComment"># f: (addr buffered-file), s: (addr stream byte)</span>
<span id="L12" class="LineNr"> 12 </span>    <span class="subxS1Comment"># . prologue</span>
<span id="L13" class="LineNr"> 13 </span>    55/push-ebp
<span id="L14" class="LineNr"> 14 </span>    89/copy                         3/mod/direct    5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ebp</span>
<span id="L15" class="LineNr"> 15 </span>    <span class="subxS1Comment"># . save registers</span>
<span id="L16" class="LineNr"> 16 </span>    50/push-eax
<span id="L17" class="LineNr"> 17 </span>    51/push-ecx
<span id="L18" class="LineNr"> 18 </span>    56/push-esi
<span id="L19" class="LineNr"> 19 </span>    <span class="subxComment"># esi = s</span>
<span id="L20" class="LineNr"> 20 </span>    8b/copy                         1/mod/*+disp8   5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          6/r32/esi   0xc/disp8      <span class="Normal"> . </span>                <span class="subxComment"># copy *(ebp+12) to esi</span>
<span id="L21" class="LineNr"> 21 </span>    <span class="subxComment"># var slice/ecx: slice = {s-&gt;data, &amp;s-&gt;data[s-&gt;write]}</span>
<span id="L22" class="LineNr"> 22 </span>    <span class="subxS1Comment"># . push &amp;s-&gt;data[s-&gt;write]</span>
<span id="L23" class="LineNr"> 23 </span>    8b/copy                         0/mod/indirect  6/rm32/esi   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          0/r32/eax  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy *esi to eax</span>
<span id="L24" class="LineNr"> 24 </span>    8d/copy-address                 1/mod/*+disp8   4/rm32/sib    6/base/esi  0/index/eax  <span class="Normal"> . </span>          0/r32/eax   0xc/disp8      <span class="Normal"> . </span>                <span class="subxComment"># copy esi+eax+12 to eax</span>
<span id="L25" class="LineNr"> 25 </span>    50/push-eax
<span id="L26" class="LineNr"> 26 </span>    <span class="subxS1Comment"># . push s-&gt;data</span>
<span id="L27" class="LineNr"> 27 </span>    8d/copy-address                 1/mod/*+disp8   6/rm32/esi   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          0/r32/eax   0xc/disp8      <span class="Normal"> . </span>                <span class="subxComment"># copy esi+12 to eax</span>
<span id="L28" class="LineNr"> 28 </span>    50/push-eax
<span id="L29" class="LineNr"> 29 </span>    <span class="subxS1Comment"># . ecx = esp</span>
<span id="L30" class="LineNr"> 30 </span>    89/copy                         3/mod/direct    1/rm32/ecx   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ecx</span>
<span id="L31" class="LineNr"> 31 </span>    <span class="subxComment"># write-slice-buffered(f, slice)</span>
<span id="L32" class="LineNr"> 32 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L33" class="LineNr"> 33 </span>    51/push-ecx
<span id="L34" class="LineNr"> 34 </span>    ff          6/subop/push        1/mod/*+disp8   5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>          8/disp8        <span class="Normal"> . </span>                <span class="subxComment"># push *(ebp+8)</span>
<span id="L35" class="LineNr"> 35 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L36" class="LineNr"> 36 </span>    e8/call  <a href='123slice.subx.html#L908'>write-slice-buffered</a>/disp32
<span id="L37" class="LineNr"> 37 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L38" class="LineNr"> 38 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              8/imm32           <span class="subxComment"># add to esp</span>
<span id="L39" class="LineNr"> 39 </span><span class="Constant">$write-stream-data:end</span>:
<span id="L40" class="LineNr"> 40 </span>    <span class="subxS1Comment"># . restore locals</span>
<span id="L41" class="LineNr"> 41 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              8/imm32           <span class="subxComment"># add to esp</span>
<span id="L42" class="LineNr"> 42 </span>    <span class="subxS1Comment"># . restore registers</span>
<span id="L43" class="LineNr"> 43 </span>    5e/pop-to-esi
<span id="L44" class="LineNr"> 44 </span>    59/pop-to-ecx
<span id="L45" class="LineNr"> 45 </span>    58/pop-to-eax
<span id="L46" class="LineNr"> 46 </span>    <span class="subxS1Comment"># . epilogue</span>
<span id="L47" class="LineNr"> 47 </span>    89/copy                         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          5/r32/ebp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy ebp to esp</span>
<span id="L48" class="LineNr"> 48 </span>    5d/pop-to-ebp
<span id="L49" class="LineNr"> 49 </span>    c3/return
<span id="L50" class="LineNr"> 50 </span>
<span id="L51" class="LineNr"> 51 </span><span class="subxTest">test-write-stream-data</span>:
<span id="L52" class="LineNr"> 52 </span>    <span class="subxS1Comment"># . prologue</span>
<span id="L53" class="LineNr"> 53 </span>    55/push-ebp
<span id="L54" class="LineNr"> 54 </span>    89/copy                         3/mod/direct    5/rm32/ebp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          4/r32/esp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy esp to ebp</span>
<span id="L55" class="LineNr"> 55 </span>    <span class="subxComment"># setup</span>
<span id="L56" class="LineNr"> 56 </span>    <span class="subxS1Comment"># . clear-stream(_test-output-stream)</span>
<span id="L57" class="LineNr"> 57 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L58" class="LineNr"> 58 </span>    68/push  <a href='115write-byte.subx.html#L285'>_test-output-stream</a>/imm32
<span id="L59" class="LineNr"> 59 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L60" class="LineNr"> 60 </span>    e8/call  <a href='106stream.subx.html#L17'>clear-stream</a>/disp32
<span id="L61" class="LineNr"> 61 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L62" class="LineNr"> 62 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to esp</span>
<span id="L63" class="LineNr"> 63 </span>    <span class="subxS1Comment"># . clear-stream($_test-output-buffered-file-&gt;buffer)</span>
<span id="L64" class="LineNr"> 64 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L65" class="LineNr"> 65 </span>    68/push  $_test-output-buffered-file-&gt;buffer/imm32
<span id="L66" class="LineNr"> 66 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L67" class="LineNr"> 67 </span>    e8/call  <a href='106stream.subx.html#L17'>clear-stream</a>/disp32
<span id="L68" class="LineNr"> 68 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L69" class="LineNr"> 69 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to esp</span>
<span id="L70" class="LineNr"> 70 </span>    <span class="subxS1Comment"># . clear-stream(_test-input-stream)</span>
<span id="L71" class="LineNr"> 71 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L72" class="LineNr"> 72 </span>    68/push  <a href='112read-byte.subx.html#L331'>_test-input-stream</a>/imm32
<span id="L73" class="LineNr"> 73 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L74" class="LineNr"> 74 </span>    e8/call  <a href='106stream.subx.html#L17'>clear-stream</a>/disp32
<span id="L75" class="LineNr"> 75 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L76" class="LineNr"> 76 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to esp</span>
<span id="L77" class="LineNr"> 77 </span>    <span class="subxComment"># initialize input</span>
<span id="L78" class="LineNr"> 78 </span>    <span class="subxS1Comment"># . write(_test-input-stream, &quot;abcd&quot;)</span>
<span id="L79" class="LineNr"> 79 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L80" class="LineNr"> 80 </span>    68/push  <span class="Constant">&quot;abcd&quot;</span>/imm32
<span id="L81" class="LineNr"> 81 </span>    68/push  <a href='112read-byte.subx.html#L331'>_test-input-stream</a>/imm32
<span id="L82" class="LineNr"> 82 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L83" class="LineNr"> 83 </span>    e8/call  <a href='108write.subx.html#L24'>write</a>/disp32
<span id="L84" class="LineNr"> 84 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L85" class="LineNr"> 85 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              8/imm32           <span class="subxComment"># add to esp</span>
<span id="L86" class="LineNr"> 86 </span>    <span class="subxComment"># write-stream-data(_test-output-buffered-file, _test-input-stream)</span>
<span id="L87" class="LineNr"> 87 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L88" class="LineNr"> 88 </span>    68/push  <a href='112read-byte.subx.html#L331'>_test-input-stream</a>/imm32
<span id="L89" class="LineNr"> 89 </span>    68/push  <a href='115write-byte.subx.html#L423'>_test-output-buffered-file</a>/imm32
<span id="L90" class="LineNr"> 90 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L91" class="LineNr"> 91 </span>    e8/call  <a href='125write-stream-data.subx.html#L11'>write-stream-data</a>/disp32
<span id="L92" class="LineNr"> 92 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L93" class="LineNr"> 93 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              8/imm32           <span class="subxComment"># add to esp</span>
<span id="L94" class="LineNr"> 94 </span>    <span class="subxComment"># check that the write happened as expected</span>
<span id="L95" class="LineNr"> 95 </span>    <span class="subxS1Comment"># . flush(_test-output-buffered-file)</span>
<span id="L96" class="LineNr"> 96 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L97" class="LineNr"> 97 </span>    68/push  <a href='115write-byte.subx.html#L423'>_test-output-buffered-file</a>/imm32
<span id="L98" class="LineNr"> 98 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L99" class="LineNr"> 99 </span>    e8/call  <a href='115write-byte.subx.html#L81'>flush</a>/disp32
<span id="L100" class="LineNr">100 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L101" class="LineNr">101 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              4/imm32           <span class="subxComment"># add to esp</span>
<span id="L102" class="LineNr">102 </span>    <span class="subxS1Comment"># . check-stream-equal(_test-output-stream, &quot;abcd&quot;, msg)</span>
<span id="L103" class="LineNr">103 </span>    <span class="subxS2Comment"># . . push args</span>
<span id="L104" class="LineNr">104 </span>    68/push  <span class="Constant">&quot;F - test-write-stream-data&quot;</span>/imm32
<span id="L105" class="LineNr">105 </span>    68/push  <span class="Constant">&quot;abcd&quot;</span>/imm32
<span id="L106" class="LineNr">106 </span>    68/push  <a href='115write-byte.subx.html#L285'>_test-output-stream</a>/imm32
<span id="L107" class="LineNr">107 </span>    <span class="subxS2Comment"># . . call</span>
<span id="L108" class="LineNr">108 </span>    e8/call  <a href='109stream-equal.subx.html#L194'>check-stream-equal</a>/disp32
<span id="L109" class="LineNr">109 </span>    <span class="subxS2Comment"># . . discard args</span>
<span id="L110" class="LineNr">110 </span>    81          0/subop/add         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>         <span class="Normal"> . </span>         <span class="Normal"> . </span>              0xc/imm32         <span class="subxComment"># add to esp</span>
<span id="L111" class="LineNr">111 </span>    <span class="subxS1Comment"># . epilogue</span>
<span id="L112" class="LineNr">112 </span>    89/copy                         3/mod/direct    4/rm32/esp   <span class="Normal"> . </span>         <span class="Normal"> . </span>           <span class="Normal"> . </span>          5/r32/ebp  <span class="Normal"> . </span>             <span class="Normal"> . </span>                <span class="subxComment"># copy ebp to esp</span>
<span id="L113" class="LineNr">113 </span>    5d/pop-to-ebp
<span id="L114" class="LineNr">114 </span>    c3/return
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->