/[rdesktop]/sourceforge.net/trunk/rdesktop/cache.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/cache.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 82 by astrand, Tue Jul 30 07:18:48 2002 UTC revision 730 by jsorg71, Tue Jun 29 16:22:41 2004 UTC
# Line 1  Line 1 
1  /*  /*
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     Cache routines     Cache routines
4     Copyright (C) Matthew Chapman 1999-2001     Copyright (C) Matthew Chapman 1999-2002
5        
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# Line 21  Line 21 
21  #include "rdesktop.h"  #include "rdesktop.h"
22    
23  #define NUM_ELEMENTS(array) (sizeof(array) / sizeof(array[0]))  #define NUM_ELEMENTS(array) (sizeof(array) / sizeof(array[0]))
24    #define TOUCH(id, idx) (g_bmpcache[id][idx].usage = ++g_stamp)
25    #define IS_PERSISTENT(id) (g_pstcache_fd[id] > 0)
26    
27    extern int g_pstcache_fd[];
28    
29    uint32 g_stamp;
30    int g_num_bitmaps_in_memory[3];
31    
32    
33  /* BITMAP CACHE */  /* BITMAP CACHE */
34  static HBITMAP bmpcache[3][600];  static BMPCACHEENTRY g_bmpcache[3][0xa00];
35    static HBITMAP g_volatile_bc[3];
36    
37    /* Remove the least-recently used bitmap from the cache */
38    void
39    cache_remove_lru_bitmap(uint8 cache_id)
40    {
41            int i;
42            uint16 cache_idx = 0;
43            uint32 m = (uint32)-1;
44            BMPCACHEENTRY *pbce;
45    
46            for (i = 0; i < NUM_ELEMENTS(g_bmpcache[cache_id]); i++)
47            {
48                    if (g_bmpcache[cache_id][i].bitmap && g_bmpcache[cache_id][i].usage < m)
49                    {
50                            cache_idx = i;
51                            m = g_bmpcache[cache_id][i].usage;
52                    }
53            }
54    
55            pbce = &g_bmpcache[cache_id][cache_idx];
56            ui_destroy_bitmap(pbce->bitmap);
57            --g_num_bitmaps_in_memory[cache_id];
58            pbce->bitmap = 0;
59            pbce->usage = 0;
60    }
61    
62  /* Retrieve a bitmap from the cache */  /* Retrieve a bitmap from the cache */
63  HBITMAP  HBITMAP
64  cache_get_bitmap(uint8 cache_id, uint16 cache_idx)  cache_get_bitmap(uint8 cache_id, uint16 cache_idx)
65  {  {
66          HBITMAP bitmap;          HBITMAP *pbitmap;
67    
68          if ((cache_id < NUM_ELEMENTS(bmpcache)) && (cache_idx < NUM_ELEMENTS(bmpcache[0])))          if ((cache_id < NUM_ELEMENTS(g_bmpcache)) && (cache_idx < NUM_ELEMENTS(g_bmpcache[0])))
69            {
70                    pbitmap = &g_bmpcache[cache_id][cache_idx].bitmap;
71                    if ((*pbitmap != 0) || pstcache_load_bitmap(cache_id, cache_idx))
72                    {
73                            if (IS_PERSISTENT(cache_id))
74                                    TOUCH(cache_id, cache_idx);
75    
76                            return *pbitmap;
77                    }
78            }
79            else if ((cache_id < NUM_ELEMENTS(g_volatile_bc)) && (cache_idx == 0x7fff))
80          {          {
81                  bitmap = bmpcache[cache_id][cache_idx];                  return g_volatile_bc[cache_id];
                 if (bitmap != NULL)  
                         return bitmap;  
82          }          }
83    
84          error("get bitmap %d:%d\n", cache_id, cache_idx);          error("get bitmap %d:%d\n", cache_id, cache_idx);
# Line 45  cache_get_bitmap(uint8 cache_id, uint16 Line 87  cache_get_bitmap(uint8 cache_id, uint16
87    
88  /* Store a bitmap in the cache */  /* Store a bitmap in the cache */
89  void  void
90  cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap)  cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap, uint32 stamp)
91  {  {
92          HBITMAP old;          HBITMAP old;
93    
94          if ((cache_id < NUM_ELEMENTS(bmpcache)) && (cache_idx < NUM_ELEMENTS(bmpcache[0])))          if ((cache_id < NUM_ELEMENTS(g_bmpcache)) && (cache_idx < NUM_ELEMENTS(g_bmpcache[0])))
95          {          {
96                  old = bmpcache[cache_id][cache_idx];                  old = g_bmpcache[cache_id][cache_idx].bitmap;
97                  if (old != NULL)                  if (old != NULL)
98                    {
99                          ui_destroy_bitmap(old);                          ui_destroy_bitmap(old);
100                    }
101                    else
102                    {
103                            if (++g_num_bitmaps_in_memory[cache_id] > BMPCACHE2_C2_CELLS)
104                                    cache_remove_lru_bitmap(cache_id);
105                    }
106    
107                  bmpcache[cache_id][cache_idx] = bitmap;                  g_bmpcache[cache_id][cache_idx].bitmap = bitmap;
108                    g_bmpcache[cache_id][cache_idx].usage = stamp;
109            }
110            else if ((cache_id < NUM_ELEMENTS(g_volatile_bc)) && (cache_idx == 0x7fff))
111            {
112                    old = g_volatile_bc[cache_id];
113                    if (old != NULL)
114                            ui_destroy_bitmap(old);
115                    g_volatile_bc[cache_id] = bitmap;
116          }          }
117          else          else
118          {          {
# Line 63  cache_put_bitmap(uint8 cache_id, uint16 Line 120  cache_put_bitmap(uint8 cache_id, uint16
120          }          }
121  }  }
122    
123    /* Updates the persistent bitmap cache MRU information on exit */
124    void
125    cache_save_state(void)
126    {
127            int id, idx;
128    
129            for (id = 0; id < NUM_ELEMENTS(g_bmpcache); id++)
130                    if (IS_PERSISTENT(id))
131                            for (idx = 0; idx < NUM_ELEMENTS(g_bmpcache[id]); idx++)
132                                    pstcache_touch_bitmap(id, idx, g_bmpcache[id][idx].usage);
133    }
134    
135    
136  /* FONT CACHE */  /* FONT CACHE */
137  static FONTGLYPH fontcache[12][256];  static FONTGLYPH g_fontcache[12][256];
138    
139  /* Retrieve a glyph from the font cache */  /* Retrieve a glyph from the font cache */
140  FONTGLYPH *  FONTGLYPH *
# Line 73  cache_get_font(uint8 font, uint16 charac Line 142  cache_get_font(uint8 font, uint16 charac
142  {  {
143          FONTGLYPH *glyph;          FONTGLYPH *glyph;
144    
145          if ((font < NUM_ELEMENTS(fontcache)) && (character < NUM_ELEMENTS(fontcache[0])))          if ((font < NUM_ELEMENTS(g_fontcache)) && (character < NUM_ELEMENTS(g_fontcache[0])))
146          {          {
147                  glyph = &fontcache[font][character];                  glyph = &g_fontcache[font][character];
148                  if (glyph->pixmap != NULL)                  if (glyph->pixmap != NULL)
149                          return glyph;                          return glyph;
150          }          }
# Line 91  cache_put_font(uint8 font, uint16 charac Line 160  cache_put_font(uint8 font, uint16 charac
160  {  {
161          FONTGLYPH *glyph;          FONTGLYPH *glyph;
162    
163          if ((font < NUM_ELEMENTS(fontcache)) && (character < NUM_ELEMENTS(fontcache[0])))          if ((font < NUM_ELEMENTS(g_fontcache)) && (character < NUM_ELEMENTS(g_fontcache[0])))
164          {          {
165                  glyph = &fontcache[font][character];                  glyph = &g_fontcache[font][character];
166                  if (glyph->pixmap != NULL)                  if (glyph->pixmap != NULL)
167                          ui_destroy_glyph(glyph->pixmap);                          ui_destroy_glyph(glyph->pixmap);
168    
# Line 111  cache_put_font(uint8 font, uint16 charac Line 180  cache_put_font(uint8 font, uint16 charac
180    
181    
182  /* TEXT CACHE */  /* TEXT CACHE */
183  static DATABLOB textcache[256];  static DATABLOB g_textcache[256];
184    
185  /* Retrieve a text item from the cache */  /* Retrieve a text item from the cache */
186  DATABLOB *  DATABLOB *
# Line 119  cache_get_text(uint8 cache_id) Line 188  cache_get_text(uint8 cache_id)
188  {  {
189          DATABLOB *text;          DATABLOB *text;
190    
191          if (cache_id < NUM_ELEMENTS(textcache))          if (cache_id < NUM_ELEMENTS(g_textcache))
192          {          {
193                  text = &textcache[cache_id];                  text = &g_textcache[cache_id];
194                  if (text->data != NULL)                  if (text->data != NULL)
195                          return text;                          return text;
196          }          }
# Line 136  cache_put_text(uint8 cache_id, void *dat Line 205  cache_put_text(uint8 cache_id, void *dat
205  {  {
206          DATABLOB *text;          DATABLOB *text;
207    
208          if (cache_id < NUM_ELEMENTS(textcache))          if (cache_id < NUM_ELEMENTS(g_textcache))
209          {          {
210                  text = &textcache[cache_id];                  text = &g_textcache[cache_id];
211                  if (text->data != NULL)                  if (text->data != NULL)
212                          xfree(text->data);                          xfree(text->data);
213    
# Line 154  cache_put_text(uint8 cache_id, void *dat Line 223  cache_put_text(uint8 cache_id, void *dat
223    
224    
225  /* DESKTOP CACHE */  /* DESKTOP CACHE */
226  static uint8 deskcache[0x38400 * 4];  static uint8 g_deskcache[0x38400 * 4];
227    
228  /* Retrieve desktop data from the cache */  /* Retrieve desktop data from the cache */
229  uint8 *  uint8 *
# Line 162  cache_get_desktop(uint32 offset, int cx, Line 231  cache_get_desktop(uint32 offset, int cx,
231  {  {
232          int length = cx * cy * bytes_per_pixel;          int length = cx * cy * bytes_per_pixel;
233    
234          if ((offset + length) <= sizeof(deskcache))          if (offset > sizeof(g_deskcache))
235                    offset = 0;
236    
237            if ((offset + length) <= sizeof(g_deskcache))
238          {          {
239                  return &deskcache[offset];                  return &g_deskcache[offset];
240          }          }
241    
242          error("get desktop %d:%d\n", offset, length);          error("get desktop %d:%d\n", offset, length);
# Line 177  cache_put_desktop(uint32 offset, int cx, Line 249  cache_put_desktop(uint32 offset, int cx,
249  {  {
250          int length = cx * cy * bytes_per_pixel;          int length = cx * cy * bytes_per_pixel;
251    
252          if ((offset + length) <= sizeof(deskcache))          if (offset > sizeof(g_deskcache))
253                    offset = 0;
254    
255            if ((offset + length) <= sizeof(g_deskcache))
256          {          {
257                  cx *= bytes_per_pixel;                  cx *= bytes_per_pixel;
258                  while (cy--)                  while (cy--)
259                  {                  {
260                          memcpy(&deskcache[offset], data, cx);                          memcpy(&g_deskcache[offset], data, cx);
261                          data += scanline;                          data += scanline;
262                          offset += cx;                          offset += cx;
263                  }                  }
# Line 195  cache_put_desktop(uint32 offset, int cx, Line 270  cache_put_desktop(uint32 offset, int cx,
270    
271    
272  /* CURSOR CACHE */  /* CURSOR CACHE */
273  static HCURSOR cursorcache[0x20];  static HCURSOR g_cursorcache[0x20];
274    
275  /* Retrieve cursor from cache */  /* Retrieve cursor from cache */
276  HCURSOR  HCURSOR
# Line 203  cache_get_cursor(uint16 cache_idx) Line 278  cache_get_cursor(uint16 cache_idx)
278  {  {
279          HCURSOR cursor;          HCURSOR cursor;
280    
281          if (cache_idx < NUM_ELEMENTS(cursorcache))          if (cache_idx < NUM_ELEMENTS(g_cursorcache))
282          {          {
283                  cursor = cursorcache[cache_idx];                  cursor = g_cursorcache[cache_idx];
284                  if (cursor != NULL)                  if (cursor != NULL)
285                          return cursor;                          return cursor;
286          }          }
# Line 220  cache_put_cursor(uint16 cache_idx, HCURS Line 295  cache_put_cursor(uint16 cache_idx, HCURS
295  {  {
296          HCURSOR old;          HCURSOR old;
297    
298          if (cache_idx < NUM_ELEMENTS(cursorcache))          if (cache_idx < NUM_ELEMENTS(g_cursorcache))
299          {          {
300                  old = cursorcache[cache_idx];                  old = g_cursorcache[cache_idx];
301                  if (old != NULL)                  if (old != NULL)
302                          ui_destroy_cursor(old);                          ui_destroy_cursor(old);
303    
304                  cursorcache[cache_idx] = cursor;                  g_cursorcache[cache_idx] = cursor;
305          }          }
306          else          else
307          {          {

Legend:
Removed from v.82  
changed lines
  Added in v.730

  ViewVC Help
Powered by ViewVC 1.1.26