about summary refs log tree commit diff stats
path: root/src/contact.h
Commit message (Expand)AuthorAgeFilesLines
* Updated copyrightJames Booth2016-02-141-1/+1
* Applied coding style to src/James Booth2015-10-261-4/+3
* Use consistent style for pointersMichael Vetter2015-10-211-11/+11
* Optimised contact comparisons, create utf8 collate key onceJames Booth2015-05-071-0/+2
* Updated copyrightJames Booth2015-02-101-1/+1
* Added /resource autocompletionJames Booth2014-12-041-0/+3
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* Updated copyrightJames Booth2014-03-091-1/+1
* Merge branch 'master' into refactor2James Booth2013-11-111-1/+1
|\
| * Fixed compile error for -Wduplicate-decl-specifier on OSXJames Booth2013-11-101-1/+1
* | Added p_contact_create_display_stringJames Booth2013-10-071-0/+1
|/
* Show only nick or jid in /wins outputJames Booth2013-08-311-0/+1
* Coloured contact and subscription in /roster and /group outputJames Booth2013-07-031-0/+1
* Added group add and group remove to /roster commandJames Booth2013-06-021-0/+1
* Add groups to roster contactsJames Booth2013-05-221-2/+4
* Added /roster command with nick option to change handleJames Booth2013-05-191-2/+1
* Colour title on /caps and /software outputJames Booth2013-02-171-0/+1
* Show all resources ordered by priority with /info commandJames Booth2013-02-171-4/+5
* Dealing with mulitple contact resources, work in progressJames Booth2013-02-141-1/+2
* Simple default resource hanlding on presenceJames Booth2013-02-141-1/+2
* Added p_contact_add_resourceJames Booth2013-02-101-3/+4
* Fixed error clearing contact listJames Booth2013-02-101-0/+2
* Renamed contact property jid->barejidJames Booth2013-02-091-2/+2
* Added client to /info command in chat roomsJames Booth2013-01-201-1/+2
* Added retrieval of caps string from presenceJames Booth2013-01-191-0/+2
* Updated copyrightJames Booth2013-01-111-1/+1
* Handle idle time from contactsJames Booth2012-12-091-7/+7
* Handle roster subscription updatesJames Booth2012-11-271-0/+2
* Show "request pending" in /sub show, when request has been sentJames Booth2012-11-271-1/+2
* Split contact add and update presenceJames Booth2012-10-291-0/+2
* Subscription managementJames Booth2012-10-281-0/+1
* Load roster before sending presenceJames Booth2012-10-281-3/+5
* Removed trailing whitespace from src and testsJames Booth2012-10-211-3/+3
* Added autobuild toolsJames Booth2012-07-011-0/+37
or Kartik K. Agaram <vc@akkartik.com> 2015-09-07 10:37:27 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-09-07 10:37:27 -0700 2177' href='/akkartik/mu/commit/html/066stream.mu.html?h=main&id=f5465e1220d73e237c51897b7d1211ec53b0dc04'>f5465e12 ^
db1f56c8 ^
f5465e12 ^
d009e158 ^
f5465e12 ^
d009e158 ^
f5465e12 ^
dbe12410 ^

d009e158 ^
f5465e12 ^
db1f56c8 ^
76755b28 ^
d009e158 ^
f5465e12 ^
db1f56c8 ^
dbe12410 ^




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



                                                                                          
                                









                                                                                                 

                             
                            

                             










                               
                                                                                               
                                              
              
                                     

 
                                                                                                                                                   
                                           

                                                                                         

                                                                                                                     
                                                                                                                                            
                                              

 
                                                                                                                                          
                                           
                                                

                                                                                                                 

 
                                                                                                                                                                             
                                           
                                                
                                                                                                                   
                                                                                                                        
                                                                                                                
                                                                        
                                                                                                                                    

 
                                                                                                                                 
                                           
                                                
                                                                                                   
                                                                                                                        
                                                         
                                                                     




                                     
<!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 - 076stream.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v1">
<meta name="syntax" content="none">
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
<meta name="colorscheme" content="minimal">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 1.05em; }
.muRecipe { color: #ff8700; }
.muData { color: #ffff00; }
.Comment { color: #9090ff; }
.Constant { color: #00a0a0; }
.Special { color: #ff6060; }
-->
</style>

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

-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># new type to help incrementally read texts (arrays of characters)</span>
<span class="muData">container</span> stream [
  index:number
  data:address:shared:array:character
]

<span class="muRecipe">recipe</span> new-stream s:address:shared:array:character<span class="muRecipe"> -&gt; </span>result:address:shared:stream [
  <span class="Constant">local-scope</span>
  <span class="Constant">load-ingredients</span>
  result<span class="Special"> &lt;- </span>new <span class="Constant">stream:type</span>
  i:address:number<span class="Special"> &lt;- </span>get-address *result, <span class="Constant">index:offset</span>
  *i<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
  d:address:address:shared:array:character<span class="Special"> &lt;- </span>get-address *result, <span class="Constant">data:offset</span>
  *d<span class="Special"> &lt;- </span>copy s
]

<span class="muRecipe">recipe</span> rewind-stream in:address:shared:stream<span class="muRecipe"> -&gt; </span>in:address:shared:stream [
  <span class="Constant">local-scope</span>
  <span class="Constant">load-ingredients</span>
  x:address:number<span class="Special"> &lt;- </span>get-address *in, <span class="Constant">index:offset</span>
  *x<span class="Special"> &lt;- </span>copy <span class="Constant">0</span>
]

<span class="muRecipe">recipe</span> read-line in:address:shared:stream<span class="muRecipe"> -&gt; </span>result:address:shared:array:character, in:address:shared:stream [
  <span class="Constant">local-scope</span>
  <span class="Constant">load-ingredients</span>
  idx:address:number<span class="Special"> &lt;- </span>get-address *in, <span class="Constant">index:offset</span>
  s:address:shared:array:character<span class="Special"> &lt;- </span>get *in, <span class="Constant">data:offset</span>
  next-idx:number<span class="Special"> &lt;- </span>find-next s, <span class="Constant">10/newline</span>, *idx
  result<span class="Special"> &lt;- </span>copy-range s, *idx, next-idx
  *idx<span class="Special"> &lt;- </span>add next-idx, <span class="Constant">1</span>  <span class="Comment"># skip newline</span>
]

<span class="muRecipe">recipe</span> end-of-stream? in:address:shared:stream<span class="muRecipe"> -&gt; </span>result:boolean [
  <span class="Constant">local-scope</span>
  <span class="Constant">load-ingredients</span>
  idx:number<span class="Special"> &lt;- </span>get *in, <span class="Constant">index:offset</span>
  s:address:shared:array:character<span class="Special"> &lt;- </span>get *in, <span class="Constant">data:offset</span>
  len:number<span class="Special"> &lt;- </span>length *s
  result<span class="Special"> &lt;- </span>greater-or-equal idx, len
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->