Simple Terminal from SuckLess
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4378 lines
94 KiB

Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
11 years ago
11 years ago
13 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
10 years ago
14 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
10 years ago
10 years ago
14 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
14 years ago
10 years ago
14 years ago
13 years ago
10 years ago
14 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
10 years ago
13 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
Clean up xdraws and optimize glyph drawing with non-unit kerning values I have another patch here for review that optimizes the performance of glyph drawing, primarily when using non-unit kerning values, and fixes a few other minor issues. It's dependent on the earlier patch from me that stores unicode codepoints in a Rune type, typedef'd to uint_least32_t. This patch is a pretty big change to xdraws so your scrutiny is appreciated. First, some performance numbers. I used Yu-Jie Lin termfps.sh shell script to benchmark before and after, and you can find it in the attachments. On my Kaveri A10 7850k machine, I get the following results: Before Patch ============ 1) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.553 Frames/second: 64.352 Chars /second: 1,458,159 2) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 159.286 Frames/second: 0.627 Chars /second: 10,953 After Patch =========== 3) Font: "Liberation Mono:pixelsize=12:antialias=false:autohint=false" cwscale: 1.0, chscale: 1.0 For 273x83 100 frames. Elapsed time : 1.544 Frames/second: 64.728 Chars /second: 1,466,690 4) Font: "Inconsolata:pixelsize=14:antialias=true:autohint=true" cwscale: 1.001, chscale: 1.001 For 239x73 100 frames. Elapsed time : 1.955 Frames/second: 51.146 Chars /second: 892,361 As you can see, while the improvements for fonts with unit-kerning is marginal, there's a huge ~81x performance increase with the patch when using kerning values other than 1.0. So what does the patch do? The `xdraws' function would render each glyph one at a time if non-unit kerning values were configured, and this was the primary cause of the slow down. Xft provides a handful of functions which allow you to render multiple characters or glyphs at time, each with a unique <x,y> position, so it was simply a matter of massaging the data into a format that would allow us to use one of these functions. I've split `xdraws' up into two functions. In the first pass with `xmakeglyphfontspecs' it will iterate over all of the glyphs in a given row and it will build up an array of corresponding XftGlyphFontSpec records. Much of the old logic for resolving fonts for glyphs using Xft and fontconfig went into this function. The second pass is done with `xrenderglyphfontspecs' which contains the old logic for determining colors, clearing the background, and finally rendering the array of XftGlyphFontSpec records. There's a couple of other things that have been improved by this patch. For instance, the UTF-32 codepoints in the Line's were being re-encoded back into UTF-8 strings to be passed to `xdraws' which in turn would then decode back to UTF-32 to verify that the Font contained a matching glyph for the code point. Next, the UTF-8 string was being passed to `XftDrawStringUtf8' which internally mallocs a scratch buffer and decodes back to UTF-32 and does the lookup of the glyphs all over again. This patch gets rid of all of this redundant round-trip encoding and decoding of characters to be rendered and only looks up the glyph index once (per font) during the font resolution phase. So this is probably what's responsible for the marginal improvements seen when kerning values are kept to 1.0. I imagine there are other performance improvements here too, not seen in the above benchmarks, if the user has lots of non-ASCII code plane characters on the screen, or several different fonts are being utilized during screen redraw. Anyway, if you see any problems, please let me know and I can fix them.
9 years ago
14 years ago
14 years ago
  1. /* See LICENSE for license details. */
  2. #include <ctype.h>
  3. #include <errno.h>
  4. #include <fcntl.h>
  5. #include <limits.h>
  6. #include <locale.h>
  7. #include <pwd.h>
  8. #include <stdarg.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <signal.h>
  13. #include <stdint.h>
  14. #include <sys/ioctl.h>
  15. #include <sys/select.h>
  16. #include <sys/stat.h>
  17. #include <sys/time.h>
  18. #include <sys/types.h>
  19. #include <sys/wait.h>
  20. #include <termios.h>
  21. #include <time.h>
  22. #include <unistd.h>
  23. #include <libgen.h>
  24. #include <X11/Xatom.h>
  25. #include <X11/Xlib.h>
  26. #include <X11/Xutil.h>
  27. #include <X11/cursorfont.h>
  28. #include <X11/keysym.h>
  29. #include <X11/Xft/Xft.h>
  30. #include <X11/XKBlib.h>
  31. #include <fontconfig/fontconfig.h>
  32. #include <wchar.h>
  33. #include "arg.h"
  34. char *argv0;
  35. #define Glyph Glyph_
  36. #define Font Font_
  37. #if defined(__linux)
  38. #include <pty.h>
  39. #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
  40. #include <util.h>
  41. #elif defined(__FreeBSD__) || defined(__DragonFly__)
  42. #include <libutil.h>
  43. #endif
  44. /* XEMBED messages */
  45. #define XEMBED_FOCUS_IN 4
  46. #define XEMBED_FOCUS_OUT 5
  47. /* Arbitrary sizes */
  48. #define UTF_INVALID 0xFFFD
  49. #define UTF_SIZ 4
  50. #define ESC_BUF_SIZ (128*UTF_SIZ)
  51. #define ESC_ARG_SIZ 16
  52. #define STR_BUF_SIZ ESC_BUF_SIZ
  53. #define STR_ARG_SIZ ESC_ARG_SIZ
  54. #define XK_ANY_MOD UINT_MAX
  55. #define XK_NO_MOD 0
  56. #define XK_SWITCH_MOD (1<<13)
  57. /* macros */
  58. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  59. #define MAX(a, b) ((a) < (b) ? (b) : (a))
  60. #define LEN(a) (sizeof(a) / sizeof(a)[0])
  61. #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
  62. #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
  63. #define ISCONTROLC0(c) (BETWEEN(c, 0, 0x1f) || (c) == '\177')
  64. #define ISCONTROLC1(c) (BETWEEN(c, 0x80, 0x9f))
  65. #define ISCONTROL(c) (ISCONTROLC0(c) || ISCONTROLC1(c))
  66. #define ISDELIM(u) (utf8strchr(worddelimiters, u) != NULL)
  67. #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
  68. #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || \
  69. (a).bg != (b).bg)
  70. #define IS_SET(flag) ((term.mode & (flag)) != 0)
  71. #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + \
  72. (t1.tv_nsec-t2.tv_nsec)/1E6)
  73. #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
  74. #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
  75. #define IS_TRUECOL(x) (1 << 24 & (x))
  76. #define TRUERED(x) (((x) & 0xff0000) >> 8)
  77. #define TRUEGREEN(x) (((x) & 0xff00))
  78. #define TRUEBLUE(x) (((x) & 0xff) << 8)
  79. enum glyph_attribute {
  80. ATTR_NULL = 0,
  81. ATTR_BOLD = 1 << 0,
  82. ATTR_FAINT = 1 << 1,
  83. ATTR_ITALIC = 1 << 2,
  84. ATTR_UNDERLINE = 1 << 3,
  85. ATTR_BLINK = 1 << 4,
  86. ATTR_REVERSE = 1 << 5,
  87. ATTR_INVISIBLE = 1 << 6,
  88. ATTR_STRUCK = 1 << 7,
  89. ATTR_WRAP = 1 << 8,
  90. ATTR_WIDE = 1 << 9,
  91. ATTR_WDUMMY = 1 << 10,
  92. ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
  93. };
  94. enum cursor_movement {
  95. CURSOR_SAVE,
  96. CURSOR_LOAD
  97. };
  98. enum cursor_state {
  99. CURSOR_DEFAULT = 0,
  100. CURSOR_WRAPNEXT = 1,
  101. CURSOR_ORIGIN = 2
  102. };
  103. enum term_mode {
  104. MODE_WRAP = 1 << 0,
  105. MODE_INSERT = 1 << 1,
  106. MODE_APPKEYPAD = 1 << 2,
  107. MODE_ALTSCREEN = 1 << 3,
  108. MODE_CRLF = 1 << 4,
  109. MODE_MOUSEBTN = 1 << 5,
  110. MODE_MOUSEMOTION = 1 << 6,
  111. MODE_REVERSE = 1 << 7,
  112. MODE_KBDLOCK = 1 << 8,
  113. MODE_HIDE = 1 << 9,
  114. MODE_ECHO = 1 << 10,
  115. MODE_APPCURSOR = 1 << 11,
  116. MODE_MOUSESGR = 1 << 12,
  117. MODE_8BIT = 1 << 13,
  118. MODE_BLINK = 1 << 14,
  119. MODE_FBLINK = 1 << 15,
  120. MODE_FOCUS = 1 << 16,
  121. MODE_MOUSEX10 = 1 << 17,
  122. MODE_MOUSEMANY = 1 << 18,
  123. MODE_BRCKTPASTE = 1 << 19,
  124. MODE_PRINT = 1 << 20,
  125. MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
  126. |MODE_MOUSEMANY,
  127. };
  128. enum charset {
  129. CS_GRAPHIC0,
  130. CS_GRAPHIC1,
  131. CS_UK,
  132. CS_USA,
  133. CS_MULTI,
  134. CS_GER,
  135. CS_FIN
  136. };
  137. enum escape_state {
  138. ESC_START = 1,
  139. ESC_CSI = 2,
  140. ESC_STR = 4, /* DCS, OSC, PM, APC */
  141. ESC_ALTCHARSET = 8,
  142. ESC_STR_END = 16, /* a final string was encountered */
  143. ESC_TEST = 32, /* Enter in test mode */
  144. };
  145. enum window_state {
  146. WIN_VISIBLE = 1,
  147. WIN_FOCUSED = 2
  148. };
  149. enum selection_mode {
  150. SEL_IDLE = 0,
  151. SEL_EMPTY = 1,
  152. SEL_READY = 2
  153. };
  154. enum selection_type {
  155. SEL_REGULAR = 1,
  156. SEL_RECTANGULAR = 2
  157. };
  158. enum selection_snap {
  159. SNAP_WORD = 1,
  160. SNAP_LINE = 2
  161. };
  162. typedef unsigned char uchar;
  163. typedef unsigned int uint;
  164. typedef unsigned long ulong;
  165. typedef unsigned short ushort;
  166. typedef uint_least32_t Rune;
  167. typedef XftDraw *Draw;
  168. typedef XftColor Color;
  169. typedef struct {
  170. Rune u; /* character code */
  171. ushort mode; /* attribute flags */
  172. uint32_t fg; /* foreground */
  173. uint32_t bg; /* background */
  174. } Glyph;
  175. typedef Glyph *Line;
  176. typedef struct {
  177. Glyph attr; /* current char attributes */
  178. int x;
  179. int y;
  180. char state;
  181. } TCursor;
  182. /* CSI Escape sequence structs */
  183. /* ESC '[' [[ [<priv>] <arg> [;]] <mode> [<mode>]] */
  184. typedef struct {
  185. char buf[ESC_BUF_SIZ]; /* raw string */
  186. int len; /* raw string length */
  187. char priv;
  188. int arg[ESC_ARG_SIZ];
  189. int narg; /* nb of args */
  190. char mode[2];
  191. } CSIEscape;
  192. /* STR Escape sequence structs */
  193. /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
  194. typedef struct {
  195. char type; /* ESC type ... */
  196. char buf[STR_BUF_SIZ]; /* raw string */
  197. int len; /* raw string length */
  198. char *args[STR_ARG_SIZ];
  199. int narg; /* nb of args */
  200. } STREscape;
  201. /* Internal representation of the screen */
  202. typedef struct {
  203. int row; /* nb row */
  204. int col; /* nb col */
  205. Line *line; /* screen */
  206. Line *alt; /* alternate screen */
  207. int *dirty; /* dirtyness of lines */
  208. XftGlyphFontSpec *specbuf; /* font spec buffer used for rendering */
  209. TCursor c; /* cursor */
  210. int top; /* top scroll limit */
  211. int bot; /* bottom scroll limit */
  212. int mode; /* terminal mode flags */
  213. int esc; /* escape state flags */
  214. char trantbl[4]; /* charset table translation */
  215. int charset; /* current charset */
  216. int icharset; /* selected charset for sequence */
  217. int numlock; /* lock numbers in keyboard */
  218. int *tabs;
  219. } Term;
  220. /* Purely graphic info */
  221. typedef struct {
  222. Display *dpy;
  223. Colormap cmap;
  224. Window win;
  225. Drawable buf;
  226. Atom xembed, wmdeletewin, netwmname, netwmpid;
  227. XIM xim;
  228. XIC xic;
  229. Draw draw;
  230. Visual *vis;
  231. XSetWindowAttributes attrs;
  232. int scr;
  233. int isfixed; /* is fixed geometry? */
  234. int l, t; /* left and top offset */
  235. int gm; /* geometry mask */
  236. int tw, th; /* tty width and height */
  237. int w, h; /* window width and height */
  238. int ch; /* char height */
  239. int cw; /* char width */
  240. char state; /* focus, redraw, visible */
  241. int cursor; /* cursor style */
  242. } XWindow;
  243. typedef struct {
  244. uint b;
  245. uint mask;
  246. char *s;
  247. } Mousekey;
  248. typedef struct {
  249. KeySym k;
  250. uint mask;
  251. char *s;
  252. /* three valued logic variables: 0 indifferent, 1 on, -1 off */
  253. signed char appkey; /* application keypad */
  254. signed char appcursor; /* application cursor */
  255. signed char crlf; /* crlf mode */
  256. } Key;
  257. typedef struct {
  258. int mode;
  259. int type;
  260. int snap;
  261. /*
  262. * Selection variables:
  263. * nb normalized coordinates of the beginning of the selection
  264. * ne normalized coordinates of the end of the selection
  265. * ob original coordinates of the beginning of the selection
  266. * oe original coordinates of the end of the selection
  267. */
  268. struct {
  269. int x, y;
  270. } nb, ne, ob, oe;
  271. char *primary, *clipboard;
  272. Atom xtarget;
  273. int alt;
  274. struct timespec tclick1;
  275. struct timespec tclick2;
  276. } Selection;
  277. typedef union {
  278. int i;
  279. uint ui;
  280. float f;
  281. const void *v;
  282. } Arg;
  283. typedef struct {
  284. uint mod;
  285. KeySym keysym;
  286. void (*func)(const Arg *);
  287. const Arg arg;
  288. } Shortcut;
  289. /* function definitions used in config.h */
  290. static void clipcopy(const Arg *);
  291. static void clippaste(const Arg *);
  292. static void numlock(const Arg *);
  293. static void selpaste(const Arg *);
  294. static void xzoom(const Arg *);
  295. static void xzoomabs(const Arg *);
  296. static void xzoomreset(const Arg *);
  297. static void printsel(const Arg *);
  298. static void printscreen(const Arg *) ;
  299. static void toggleprinter(const Arg *);
  300. static void sendbreak(const Arg *);
  301. /* Config.h for applying patches and the configuration. */
  302. #include "config.h"
  303. /* Font structure */
  304. typedef struct {
  305. int height;
  306. int width;
  307. int ascent;
  308. int descent;
  309. short lbearing;
  310. short rbearing;
  311. XftFont *match;
  312. FcFontSet *set;
  313. FcPattern *pattern;
  314. } Font;
  315. /* Drawing Context */
  316. typedef struct {
  317. Color col[MAX(LEN(colorname), 256)];
  318. Font font, bfont, ifont, ibfont;
  319. GC gc;
  320. } DC;
  321. static void die(const char *, ...);
  322. static void draw(void);
  323. static void redraw(void);
  324. static void drawregion(int, int, int, int);
  325. static void execsh(void);
  326. static void stty(void);
  327. static void sigchld(int);
  328. static void run(void);
  329. static void csidump(void);
  330. static void csihandle(void);
  331. static void csiparse(void);
  332. static void csireset(void);
  333. static int eschandle(uchar);
  334. static void strdump(void);
  335. static void strhandle(void);
  336. static void strparse(void);
  337. static void strreset(void);
  338. static int tattrset(int);
  339. static void tprinter(char *, size_t);
  340. static void tdumpsel(void);
  341. static void tdumpline(int);
  342. static void tdump(void);
  343. static void tclearregion(int, int, int, int);
  344. static void tcursor(int);
  345. static void tdeletechar(int);
  346. static void tdeleteline(int);
  347. static void tinsertblank(int);
  348. static void tinsertblankline(int);
  349. static int tlinelen(int);
  350. static void tmoveto(int, int);
  351. static void tmoveato(int, int);
  352. static void tnew(int, int);
  353. static void tnewline(int);
  354. static void tputtab(int);
  355. static void tputc(Rune);
  356. static void treset(void);
  357. static void tresize(int, int);
  358. static void tscrollup(int, int);
  359. static void tscrolldown(int, int);
  360. static void tsetattr(int *, int);
  361. static void tsetchar(Rune, Glyph *, int, int);
  362. static void tsetscroll(int, int);
  363. static void tswapscreen(void);
  364. static void tsetdirt(int, int);
  365. static void tsetdirtattr(int);
  366. static void tsetmode(int, int, int *, int);
  367. static void tfulldirt(void);
  368. static void techo(Rune);
  369. static void tcontrolcode(uchar );
  370. static void tdectest(char );
  371. static int32_t tdefcolor(int *, int *, int);
  372. static void tdeftran(char);
  373. static inline int match(uint, uint);
  374. static void ttynew(void);
  375. static void ttyread(void);
  376. static void ttyresize(void);
  377. static void ttysend(char *, size_t);
  378. static void ttywrite(const char *, size_t);
  379. static void tstrsequence(uchar);
  380. static inline ushort sixd_to_16bit(int);
  381. static int xmakeglyphfontspecs(XftGlyphFontSpec *, const Glyph *, int, int, int);
  382. static void xdrawglyphfontspecs(const XftGlyphFontSpec *, Glyph, int, int, int);
  383. static void xdrawglyph(Glyph, int, int);
  384. static void xhints(void);
  385. static void xclear(int, int, int, int);
  386. static void xdrawcursor(void);
  387. static void xinit(void);
  388. static void xloadcols(void);
  389. static int xsetcolorname(int, const char *);
  390. static int xgeommasktogravity(int);
  391. static int xloadfont(Font *, FcPattern *);
  392. static void xloadfonts(char *, double);
  393. static void xsettitle(char *);
  394. static void xresettitle(void);
  395. static void xsetpointermotion(int);
  396. static void xseturgency(int);
  397. static void xsetsel(char *, Time);
  398. static void xtermclear(int, int, int, int);
  399. static void xunloadfont(Font *);
  400. static void xunloadfonts(void);
  401. static void xresize(int, int);
  402. static void expose(XEvent *);
  403. static void visibility(XEvent *);
  404. static void unmap(XEvent *);
  405. static char *kmap(KeySym, uint);
  406. static void kpress(XEvent *);
  407. static void cmessage(XEvent *);
  408. static void cresize(int, int);
  409. static void resize(XEvent *);
  410. static void focus(XEvent *);
  411. static void brelease(XEvent *);
  412. static void bpress(XEvent *);
  413. static void bmotion(XEvent *);
  414. static void propnotify(XEvent *);
  415. static void selnotify(XEvent *);
  416. static void selclear(XEvent *);
  417. static void selrequest(XEvent *);
  418. static void selinit(void);
  419. static void selnormalize(void);
  420. static inline int selected(int, int);
  421. static char *getsel(void);
  422. static void selcopy(Time);
  423. static void selscroll(int, int);
  424. static void selsnap(int *, int *, int);
  425. static int x2col(int);
  426. static int y2row(int);
  427. static void getbuttoninfo(XEvent *);
  428. static void mousereport(XEvent *);
  429. static size_t utf8decode(char *, Rune *, size_t);
  430. static Rune utf8decodebyte(char, size_t *);
  431. static size_t utf8encode(Rune, char *);
  432. static char utf8encodebyte(Rune, size_t);
  433. static char *utf8strchr(char *s, Rune u);
  434. static size_t utf8validate(Rune *, size_t);
  435. static ssize_t xwrite(int, const char *, size_t);
  436. static void *xmalloc(size_t);
  437. static void *xrealloc(void *, size_t);
  438. static char *xstrdup(char *);
  439. static void usage(void);
  440. static void (*handler[LASTEvent])(XEvent *) = {
  441. [KeyPress] = kpress,
  442. [ClientMessage] = cmessage,
  443. [ConfigureNotify] = resize,
  444. [VisibilityNotify] = visibility,
  445. [UnmapNotify] = unmap,
  446. [Expose] = expose,
  447. [FocusIn] = focus,
  448. [FocusOut] = focus,
  449. [MotionNotify] = bmotion,
  450. [ButtonPress] = bpress,
  451. [ButtonRelease] = brelease,
  452. /*
  453. * Uncomment if you want the selection to disappear when you select something
  454. * different in another window.
  455. */
  456. /* [SelectionClear] = selclear, */
  457. [SelectionNotify] = selnotify,
  458. /*
  459. * PropertyNotify is only turned on when there is some INCR transfer happening
  460. * for the selection retrieval.
  461. */
  462. [PropertyNotify] = propnotify,
  463. [SelectionRequest] = selrequest,
  464. };
  465. /* Globals */
  466. static DC dc;
  467. static XWindow xw;
  468. static Term term;
  469. static CSIEscape csiescseq;
  470. static STREscape strescseq;
  471. static int cmdfd;
  472. static pid_t pid;
  473. static Selection sel;
  474. static int iofd = 1;
  475. static char **opt_cmd = NULL;
  476. static char *opt_io = NULL;
  477. static char *opt_title = NULL;
  478. static char *opt_embed = NULL;
  479. static char *opt_class = NULL;
  480. static char *opt_font = NULL;
  481. static char *opt_line = NULL;
  482. static int oldbutton = 3; /* button event on startup: 3 = release */
  483. static char *usedfont = NULL;
  484. static double usedfontsize = 0;
  485. static double defaultfontsize = 0;
  486. static uchar utfbyte[UTF_SIZ + 1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
  487. static uchar utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
  488. static Rune utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000};
  489. static Rune utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
  490. /* Font Ring Cache */
  491. enum {
  492. FRC_NORMAL,
  493. FRC_ITALIC,
  494. FRC_BOLD,
  495. FRC_ITALICBOLD
  496. };
  497. typedef struct {
  498. XftFont *font;
  499. int flags;
  500. Rune unicodep;
  501. } Fontcache;
  502. /* Fontcache is an array now. A new font will be appended to the array. */
  503. static Fontcache frc[16];
  504. static int frclen = 0;
  505. ssize_t
  506. xwrite(int fd, const char *s, size_t len)
  507. {
  508. size_t aux = len;
  509. ssize_t r;
  510. while (len > 0) {
  511. r = write(fd, s, len);
  512. if (r < 0)
  513. return r;
  514. len -= r;
  515. s += r;
  516. }
  517. return aux;
  518. }
  519. void *
  520. xmalloc(size_t len)
  521. {
  522. void *p = malloc(len);
  523. if (!p)
  524. die("Out of memory\n");
  525. return p;
  526. }
  527. void *
  528. xrealloc(void *p, size_t len)
  529. {
  530. if ((p = realloc(p, len)) == NULL)
  531. die("Out of memory\n");
  532. return p;
  533. }
  534. char *
  535. xstrdup(char *s)
  536. {
  537. if ((s = strdup(s)) == NULL)
  538. die("Out of memory\n");
  539. return s;
  540. }
  541. size_t
  542. utf8decode(char *c, Rune *u, size_t clen)
  543. {
  544. size_t i, j, len, type;
  545. Rune udecoded;
  546. *u = UTF_INVALID;
  547. if (!clen)
  548. return 0;
  549. udecoded = utf8decodebyte(c[0], &len);
  550. if (!BETWEEN(len, 1, UTF_SIZ))
  551. return 1;
  552. for (i = 1, j = 1; i < clen && j < len; ++i, ++j) {
  553. udecoded = (udecoded << 6) | utf8decodebyte(c[i], &type);
  554. if (type != 0)
  555. return j;
  556. }
  557. if (j < len)
  558. return 0;
  559. *u = udecoded;
  560. utf8validate(u, len);
  561. return len;
  562. }
  563. Rune
  564. utf8decodebyte(char c, size_t *i)
  565. {
  566. for (*i = 0; *i < LEN(utfmask); ++(*i))
  567. if (((uchar)c & utfmask[*i]) == utfbyte[*i])
  568. return (uchar)c & ~utfmask[*i];
  569. return 0;
  570. }
  571. size_t
  572. utf8encode(Rune u, char *c)
  573. {
  574. size_t len, i;
  575. len = utf8validate(&u, 0);
  576. if (len > UTF_SIZ)
  577. return 0;
  578. for (i = len - 1; i != 0; --i) {
  579. c[i] = utf8encodebyte(u, 0);
  580. u >>= 6;
  581. }
  582. c[0] = utf8encodebyte(u, len);
  583. return len;
  584. }
  585. char
  586. utf8encodebyte(Rune u, size_t i)
  587. {
  588. return utfbyte[i] | (u & ~utfmask[i]);
  589. }
  590. char *
  591. utf8strchr(char *s, Rune u)
  592. {
  593. Rune r;
  594. size_t i, j, len;
  595. len = strlen(s);
  596. for (i = 0, j = 0; i < len; i += j) {
  597. if (!(j = utf8decode(&s[i], &r, len - i)))
  598. break;
  599. if (r == u)
  600. return &(s[i]);
  601. }
  602. return NULL;
  603. }
  604. size_t
  605. utf8validate(Rune *u, size_t i)
  606. {
  607. if (!BETWEEN(*u, utfmin[i], utfmax[i]) || BETWEEN(*u, 0xD800, 0xDFFF))
  608. *u = UTF_INVALID;
  609. for (i = 1; *u > utfmax[i]; ++i)
  610. ;
  611. return i;
  612. }
  613. void
  614. selinit(void)
  615. {
  616. memset(&sel.tclick1, 0, sizeof(sel.tclick1));
  617. memset(&sel.tclick2, 0, sizeof(sel.tclick2));
  618. sel.mode = SEL_IDLE;
  619. sel.ob.x = -1;
  620. sel.primary = NULL;
  621. sel.clipboard = NULL;
  622. sel.xtarget = XInternAtom(xw.dpy, "UTF8_STRING", 0);
  623. if (sel.xtarget == None)
  624. sel.xtarget = XA_STRING;
  625. }
  626. int
  627. x2col(int x)
  628. {
  629. x -= borderpx;
  630. x /= xw.cw;
  631. return LIMIT(x, 0, term.col-1);
  632. }
  633. int
  634. y2row(int y)
  635. {
  636. y -= borderpx;
  637. y /= xw.ch;
  638. return LIMIT(y, 0, term.row-1);
  639. }
  640. int
  641. tlinelen(int y)
  642. {
  643. int i = term.col;
  644. if (term.line[y][i - 1].mode & ATTR_WRAP)
  645. return i;
  646. while (i > 0 && term.line[y][i - 1].u == ' ')
  647. --i;
  648. return i;
  649. }
  650. void
  651. selnormalize(void)
  652. {
  653. int i;
  654. if (sel.type == SEL_REGULAR && sel.ob.y != sel.oe.y) {
  655. sel.nb.x = sel.ob.y < sel.oe.y ? sel.ob.x : sel.oe.x;
  656. sel.ne.x = sel.ob.y < sel.oe.y ? sel.oe.x : sel.ob.x;
  657. } else {
  658. sel.nb.x = MIN(sel.ob.x, sel.oe.x);
  659. sel.ne.x = MAX(sel.ob.x, sel.oe.x);
  660. }
  661. sel.nb.y = MIN(sel.ob.y, sel.oe.y);
  662. sel.ne.y = MAX(sel.ob.y, sel.oe.y);
  663. selsnap(&sel.nb.x, &sel.nb.y, -1);
  664. selsnap(&sel.ne.x, &sel.ne.y, +1);
  665. /* expand selection over line breaks */
  666. if (sel.type == SEL_RECTANGULAR)
  667. return;
  668. i = tlinelen(sel.nb.y);
  669. if (i < sel.nb.x)
  670. sel.nb.x = i;
  671. if (tlinelen(sel.ne.y) <= sel.ne.x)
  672. sel.ne.x = term.col - 1;
  673. }
  674. int
  675. selected(int x, int y)
  676. {
  677. if (sel.mode == SEL_EMPTY)
  678. return 0;
  679. if (sel.type == SEL_RECTANGULAR)
  680. return BETWEEN(y, sel.nb.y, sel.ne.y)
  681. && BETWEEN(x, sel.nb.x, sel.ne.x);
  682. return BETWEEN(y, sel.nb.y, sel.ne.y)
  683. && (y != sel.nb.y || x >= sel.nb.x)
  684. && (y != sel.ne.y || x <= sel.ne.x);
  685. }
  686. void
  687. selsnap(int *x, int *y, int direction)
  688. {
  689. int newx, newy, xt, yt;
  690. int delim, prevdelim;
  691. Glyph *gp, *prevgp;
  692. switch (sel.snap) {
  693. case SNAP_WORD:
  694. /*
  695. * Snap around if the word wraps around at the end or
  696. * beginning of a line.
  697. */
  698. prevgp = &term.line[*y][*x];
  699. prevdelim = ISDELIM(prevgp->u);
  700. for (;;) {
  701. newx = *x + direction;
  702. newy = *y;
  703. if (!BETWEEN(newx, 0, term.col - 1)) {
  704. newy += direction;
  705. newx = (newx + term.col) % term.col;
  706. if (!BETWEEN(newy, 0, term.row - 1))
  707. break;
  708. if (direction > 0)
  709. yt = *y, xt = *x;
  710. else
  711. yt = newy, xt = newx;
  712. if (!(term.line[yt][xt].mode & ATTR_WRAP))
  713. break;
  714. }
  715. if (newx >= tlinelen(newy))
  716. break;
  717. gp = &term.line[newy][newx];
  718. delim = ISDELIM(gp->u);
  719. if (!(gp->mode & ATTR_WDUMMY) && (delim != prevdelim
  720. || (delim && gp->u != prevgp->u)))
  721. break;
  722. *x = newx;
  723. *y = newy;
  724. prevgp = gp;
  725. prevdelim = delim;
  726. }
  727. break;
  728. case SNAP_LINE:
  729. /*
  730. * Snap around if the the previous line or the current one
  731. * has set ATTR_WRAP at its end. Then the whole next or
  732. * previous line will be selected.
  733. */
  734. *x = (direction < 0) ? 0 : term.col - 1;
  735. if (direction < 0) {
  736. for (; *y > 0; *y += direction) {
  737. if (!(term.line[*y-1][term.col-1].mode
  738. & ATTR_WRAP)) {
  739. break;
  740. }
  741. }
  742. } else if (direction > 0) {
  743. for (; *y < term.row-1; *y += direction) {
  744. if (!(term.line[*y][term.col-1].mode
  745. & ATTR_WRAP)) {
  746. break;
  747. }
  748. }
  749. }
  750. break;
  751. }
  752. }
  753. void
  754. getbuttoninfo(XEvent *e)
  755. {
  756. int type;
  757. uint state = e->xbutton.state & ~(Button1Mask | forceselmod);
  758. sel.alt = IS_SET(MODE_ALTSCREEN);
  759. sel.oe.x = x2col(e->xbutton.x);
  760. sel.oe.y = y2row(e->xbutton.y);
  761. selnormalize();
  762. sel.type = SEL_REGULAR;
  763. for (type = 1; type < LEN(selmasks); ++type) {
  764. if (match(selmasks[type], state)) {
  765. sel.type = type;
  766. break;
  767. }
  768. }
  769. }
  770. void
  771. mousereport(XEvent *e)
  772. {
  773. int x = x2col(e->xbutton.x), y = y2row(e->xbutton.y),
  774. button = e->xbutton.button, state = e->xbutton.state,
  775. len;
  776. char buf[40];
  777. static int ox, oy;
  778. /* from urxvt */
  779. if (e->xbutton.type == MotionNotify) {
  780. if (x == ox && y == oy)
  781. return;
  782. if (!IS_SET(MODE_MOUSEMOTION) && !IS_SET(MODE_MOUSEMANY))
  783. return;
  784. /* MOUSE_MOTION: no reporting if no button is pressed */
  785. if (IS_SET(MODE_MOUSEMOTION) && oldbutton == 3)
  786. return;
  787. button = oldbutton + 32;
  788. ox = x;
  789. oy = y;
  790. } else {
  791. if (!IS_SET(MODE_MOUSESGR) && e->xbutton.type == ButtonRelease) {
  792. button = 3;
  793. } else {
  794. button -= Button1;
  795. if (button >= 3)
  796. button += 64 - 3;
  797. }
  798. if (e->xbutton.type == ButtonPress) {
  799. oldbutton = button;
  800. ox = x;
  801. oy = y;
  802. } else if (e->xbutton.type == ButtonRelease) {
  803. oldbutton = 3;
  804. /* MODE_MOUSEX10: no button release reporting */
  805. if (IS_SET(MODE_MOUSEX10))
  806. return;
  807. if (button == 64 || button == 65)
  808. return;
  809. }
  810. }
  811. if (!IS_SET(MODE_MOUSEX10)) {
  812. button += ((state & ShiftMask ) ? 4 : 0)
  813. + ((state & Mod4Mask ) ? 8 : 0)
  814. + ((state & ControlMask) ? 16 : 0);
  815. }
  816. if (IS_SET(MODE_MOUSESGR)) {
  817. len = snprintf(buf, sizeof(buf), "\033[<%d;%d;%d%c",
  818. button, x+1, y+1,
  819. e->xbutton.type == ButtonRelease ? 'm' : 'M');
  820. } else if (x < 223 && y < 223) {
  821. len = snprintf(buf, sizeof(buf), "\033[M%c%c%c",
  822. 32+button, 32+x+1, 32+y+1);
  823. } else {
  824. return;
  825. }
  826. ttywrite(buf, len);
  827. }
  828. void
  829. bpress(XEvent *e)
  830. {
  831. struct timespec now;
  832. Mousekey *mk;
  833. if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
  834. mousereport(e);
  835. return;
  836. }
  837. for (mk = mshortcuts; mk < mshortcuts + LEN(mshortcuts); mk++) {
  838. if (e->xbutton.button == mk->b
  839. && match(mk->mask, e->xbutton.state)) {
  840. ttysend(mk->s, strlen(mk->s));
  841. return;
  842. }
  843. }
  844. if (e->xbutton.button == Button1) {
  845. clock_gettime(CLOCK_MONOTONIC, &now);
  846. /* Clear previous selection, logically and visually. */
  847. selclear(NULL);
  848. sel.mode = SEL_EMPTY;
  849. sel.type = SEL_REGULAR;
  850. sel.oe.x = sel.ob.x = x2col(e->xbutton.x);
  851. sel.oe.y = sel.ob.y = y2row(e->xbutton.y);
  852. /*
  853. * If the user clicks below predefined timeouts specific
  854. * snapping behaviour is exposed.
  855. */
  856. if (TIMEDIFF(now, sel.tclick2) <= tripleclicktimeout) {
  857. sel.snap = SNAP_LINE;
  858. } else if (TIMEDIFF(now, sel.tclick1) <= doubleclicktimeout) {
  859. sel.snap = SNAP_WORD;
  860. } else {
  861. sel.snap = 0;
  862. }
  863. selnormalize();
  864. if (sel.snap != 0)
  865. sel.mode = SEL_READY;
  866. tsetdirt(sel.nb.y, sel.ne.y);
  867. sel.tclick2 = sel.tclick1;
  868. sel.tclick1 = now;
  869. }
  870. }
  871. char *
  872. getsel(void)
  873. {
  874. char *str, *ptr;
  875. int y, bufsize, lastx, linelen;
  876. Glyph *gp, *last;
  877. if (sel.ob.x == -1)
  878. return NULL;
  879. bufsize = (term.col+1) * (sel.ne.y-sel.nb.y+1) * UTF_SIZ;
  880. ptr = str = xmalloc(bufsize);
  881. /* append every set & selected glyph to the selection */
  882. for (y = sel.nb.y; y <= sel.ne.y; y++) {
  883. if ((linelen = tlinelen(y)) == 0) {
  884. *ptr++ = '\n';
  885. continue;
  886. }
  887. if (sel.type == SEL_RECTANGULAR) {
  888. gp = &term.line[y][sel.nb.x];
  889. lastx = sel.ne.x;
  890. } else {
  891. gp = &term.line[y][sel.nb.y == y ? sel.nb.x : 0];
  892. lastx = (sel.ne.y == y) ? sel.ne.x : term.col-1;
  893. }
  894. last = &term.line[y][MIN(lastx, linelen-1)];
  895. while (last >= gp && last->u == ' ')
  896. --last;
  897. for ( ; gp <= last; ++gp) {
  898. if (gp->mode & ATTR_WDUMMY)
  899. continue;
  900. ptr += utf8encode(gp->u, ptr);
  901. }
  902. /*
  903. * Copy and pasting of line endings is inconsistent
  904. * in the inconsistent terminal and GUI world.
  905. * The best solution seems like to produce '\n' when
  906. * something is copied from st and convert '\n' to
  907. * '\r', when something to be pasted is received by
  908. * st.
  909. * FIXME: Fix the computer world.
  910. */
  911. if ((y < sel.ne.y || lastx >= linelen) && !(last->mode & ATTR_WRAP))
  912. *ptr++ = '\n';
  913. }
  914. *ptr = 0;
  915. return str;
  916. }
  917. void
  918. selcopy(Time t)
  919. {
  920. xsetsel(getsel(), t);
  921. }
  922. void
  923. propnotify(XEvent *e)
  924. {
  925. XPropertyEvent *xpev;
  926. Atom clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  927. xpev = &e->xproperty;
  928. if (xpev->state == PropertyNewValue &&
  929. (xpev->atom == XA_PRIMARY ||
  930. xpev->atom == clipboard)) {
  931. selnotify(e);
  932. }
  933. }
  934. void
  935. selnotify(XEvent *e)
  936. {
  937. ulong nitems, ofs, rem;
  938. int format;
  939. uchar *data, *last, *repl;
  940. Atom type, incratom, property;
  941. incratom = XInternAtom(xw.dpy, "INCR", 0);
  942. ofs = 0;
  943. if (e->type == SelectionNotify) {
  944. property = e->xselection.property;
  945. } else if(e->type == PropertyNotify) {
  946. property = e->xproperty.atom;
  947. } else {
  948. return;
  949. }
  950. if (property == None)
  951. return;
  952. do {
  953. if (XGetWindowProperty(xw.dpy, xw.win, property, ofs,
  954. BUFSIZ/4, False, AnyPropertyType,
  955. &type, &format, &nitems, &rem,
  956. &data)) {
  957. fprintf(stderr, "Clipboard allocation failed\n");
  958. return;
  959. }
  960. if (e->type == PropertyNotify && nitems == 0 && rem == 0) {
  961. /*
  962. * If there is some PropertyNotify with no data, then
  963. * this is the signal of the selection owner that all
  964. * data has been transferred. We won't need to receive
  965. * PropertyNotify events anymore.
  966. */
  967. MODBIT(xw.attrs.event_mask, 0, PropertyChangeMask);
  968. XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask,
  969. &xw.attrs);
  970. }
  971. if (type == incratom) {
  972. /*
  973. * Activate the PropertyNotify events so we receive
  974. * when the selection owner does send us the next
  975. * chunk of data.
  976. */
  977. MODBIT(xw.attrs.event_mask, 1, PropertyChangeMask);
  978. XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask,
  979. &xw.attrs);
  980. /*
  981. * Deleting the property is the transfer start signal.
  982. */
  983. XDeleteProperty(xw.dpy, xw.win, (int)property);
  984. continue;
  985. }
  986. /*
  987. * As seen in getsel:
  988. * Line endings are inconsistent in the terminal and GUI world
  989. * copy and pasting. When receiving some selection data,
  990. * replace all '\n' with '\r'.
  991. * FIXME: Fix the computer world.
  992. */
  993. repl = data;
  994. last = data + nitems * format / 8;
  995. while ((repl = memchr(repl, '\n', last - repl))) {
  996. *repl++ = '\r';
  997. }
  998. if (IS_SET(MODE_BRCKTPASTE))
  999. ttywrite("\033[200~", 6);
  1000. ttysend((char *)data, nitems * format / 8);
  1001. if (IS_SET(MODE_BRCKTPASTE))
  1002. ttywrite("\033[201~", 6);
  1003. XFree(data);
  1004. /* number of 32-bit chunks returned */
  1005. ofs += nitems * format / 32;
  1006. } while (rem > 0);
  1007. /*
  1008. * Deleting the property again tells the selection owner to send the
  1009. * next data chunk in the property.
  1010. */
  1011. if (e->type == PropertyNotify)
  1012. XDeleteProperty(xw.dpy, xw.win, (int)property);
  1013. }
  1014. void
  1015. selpaste(const Arg *dummy)
  1016. {
  1017. XConvertSelection(xw.dpy, XA_PRIMARY, sel.xtarget, XA_PRIMARY,
  1018. xw.win, CurrentTime);
  1019. }
  1020. void
  1021. clipcopy(const Arg *dummy)
  1022. {
  1023. Atom clipboard;
  1024. if (sel.clipboard != NULL)
  1025. free(sel.clipboard);
  1026. if (sel.primary != NULL) {
  1027. sel.clipboard = xstrdup(sel.primary);
  1028. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  1029. XSetSelectionOwner(xw.dpy, clipboard, xw.win, CurrentTime);
  1030. }
  1031. }
  1032. void
  1033. clippaste(const Arg *dummy)
  1034. {
  1035. Atom clipboard;
  1036. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  1037. XConvertSelection(xw.dpy, clipboard, sel.xtarget, clipboard,
  1038. xw.win, CurrentTime);
  1039. }
  1040. void
  1041. selclear(XEvent *e)
  1042. {
  1043. if (sel.ob.x == -1)
  1044. return;
  1045. sel.mode = SEL_IDLE;
  1046. sel.ob.x = -1;
  1047. tsetdirt(sel.nb.y, sel.ne.y);
  1048. }
  1049. void
  1050. selrequest(XEvent *e)
  1051. {
  1052. XSelectionRequestEvent *xsre;
  1053. XSelectionEvent xev;
  1054. Atom xa_targets, string, clipboard;
  1055. char *seltext;
  1056. xsre = (XSelectionRequestEvent *) e;
  1057. xev.type = SelectionNotify;
  1058. xev.requestor = xsre->requestor;
  1059. xev.selection = xsre->selection;
  1060. xev.target = xsre->target;
  1061. xev.time = xsre->time;
  1062. if (xsre->property == None)
  1063. xsre->property = xsre->target;
  1064. /* reject */
  1065. xev.property = None;
  1066. xa_targets = XInternAtom(xw.dpy, "TARGETS", 0);
  1067. if (xsre->target == xa_targets) {
  1068. /* respond with the supported type */
  1069. string = sel.xtarget;
  1070. XChangeProperty(xsre->display, xsre->requestor, xsre->property,
  1071. XA_ATOM, 32, PropModeReplace,
  1072. (uchar *) &string, 1);
  1073. xev.property = xsre->property;
  1074. } else if (xsre->target == sel.xtarget || xsre->target == XA_STRING) {
  1075. /*
  1076. * xith XA_STRING non ascii characters may be incorrect in the
  1077. * requestor. It is not our problem, use utf8.
  1078. */
  1079. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  1080. if (xsre->selection == XA_PRIMARY) {
  1081. seltext = sel.primary;
  1082. } else if (xsre->selection == clipboard) {
  1083. seltext = sel.clipboard;
  1084. } else {
  1085. fprintf(stderr,
  1086. "Unhandled clipboard selection 0x%lx\n",
  1087. xsre->selection);
  1088. return;
  1089. }
  1090. if (seltext != NULL) {
  1091. XChangeProperty(xsre->display, xsre->requestor,
  1092. xsre->property, xsre->target,
  1093. 8, PropModeReplace,
  1094. (uchar *)seltext, strlen(seltext));
  1095. xev.property = xsre->property;
  1096. }
  1097. }
  1098. /* all done, send a notification to the listener */
  1099. if (!XSendEvent(xsre->display, xsre->requestor, 1, 0, (XEvent *) &xev))
  1100. fprintf(stderr, "Error sending SelectionNotify event\n");
  1101. }
  1102. void
  1103. xsetsel(char *str, Time t)
  1104. {
  1105. free(sel.primary);
  1106. sel.primary = str;
  1107. XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
  1108. if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
  1109. selclear(0);
  1110. }
  1111. void
  1112. brelease(XEvent *e)
  1113. {
  1114. if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
  1115. mousereport(e);
  1116. return;
  1117. }
  1118. if (e->xbutton.button == Button2) {
  1119. selpaste(NULL);
  1120. } else if (e->xbutton.button == Button1) {
  1121. if (sel.mode == SEL_READY) {
  1122. getbuttoninfo(e);
  1123. selcopy(e->xbutton.time);
  1124. } else
  1125. selclear(NULL);
  1126. sel.mode = SEL_IDLE;
  1127. tsetdirt(sel.nb.y, sel.ne.y);
  1128. }
  1129. }
  1130. void
  1131. bmotion(XEvent *e)
  1132. {
  1133. int oldey, oldex, oldsby, oldsey;
  1134. if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
  1135. mousereport(e);
  1136. return;
  1137. }
  1138. if (!sel.mode)
  1139. return;
  1140. sel.mode = SEL_READY;
  1141. oldey = sel.oe.y;
  1142. oldex = sel.oe.x;
  1143. oldsby = sel.nb.y;
  1144. oldsey = sel.ne.y;
  1145. getbuttoninfo(e);
  1146. if (oldey != sel.oe.y || oldex != sel.oe.x)
  1147. tsetdirt(MIN(sel.nb.y, oldsby), MAX(sel.ne.y, oldsey));
  1148. }
  1149. void
  1150. die(const char *errstr, ...)
  1151. {
  1152. va_list ap;
  1153. va_start(ap, errstr);
  1154. vfprintf(stderr, errstr, ap);
  1155. va_end(ap);
  1156. exit(1);
  1157. }
  1158. void
  1159. execsh(void)
  1160. {
  1161. char **args, *sh, *prog;
  1162. const struct passwd *pw;
  1163. char buf[sizeof(long) * 8 + 1];
  1164. errno = 0;
  1165. if ((pw = getpwuid(getuid())) == NULL) {
  1166. if (errno)
  1167. die("getpwuid:%s\n", strerror(errno));
  1168. else
  1169. die("who are you?\n");
  1170. }
  1171. if ((sh = getenv("SHELL")) == NULL)
  1172. sh = (pw->pw_shell[0]) ? pw->pw_shell : shell;
  1173. if (opt_cmd)
  1174. prog = opt_cmd[0];
  1175. else if (utmp)
  1176. prog = utmp;
  1177. else
  1178. prog = sh;
  1179. args = (opt_cmd) ? opt_cmd : (char *[]) {prog, NULL};
  1180. snprintf(buf, sizeof(buf), "%lu", xw.win);
  1181. unsetenv("COLUMNS");
  1182. unsetenv("LINES");
  1183. unsetenv("TERMCAP");
  1184. setenv("LOGNAME", pw->pw_name, 1);
  1185. setenv("USER", pw->pw_name, 1);
  1186. setenv("SHELL", sh, 1);
  1187. setenv("HOME", pw->pw_dir, 1);
  1188. setenv("TERM", termname, 1);
  1189. setenv("WINDOWID", buf, 1);
  1190. signal(SIGCHLD, SIG_DFL);
  1191. signal(SIGHUP, SIG_DFL);
  1192. signal(SIGINT, SIG_DFL);
  1193. signal(SIGQUIT, SIG_DFL);
  1194. signal(SIGTERM, SIG_DFL);
  1195. signal(SIGALRM, SIG_DFL);
  1196. execvp(prog, args);
  1197. _exit(1);
  1198. }
  1199. void
  1200. sigchld(int a)
  1201. {
  1202. int stat;
  1203. pid_t p;
  1204. if ((p = waitpid(pid, &stat, WNOHANG)) < 0)
  1205. die("Waiting for pid %hd failed: %s\n", pid, strerror(errno));
  1206. if (pid != p)
  1207. return;
  1208. if (!WIFEXITED(stat) || WEXITSTATUS(stat))
  1209. die("child finished with error '%d'\n", stat);
  1210. exit(0);
  1211. }
  1212. void
  1213. stty(void)
  1214. {
  1215. char cmd[_POSIX_ARG_MAX], **p, *q, *s;
  1216. size_t n, siz;
  1217. if ((n = strlen(stty_args)) > sizeof(cmd)-1)
  1218. die("incorrect stty parameters\n");
  1219. memcpy(cmd, stty_args, n);
  1220. q = cmd + n;
  1221. siz = sizeof(cmd) - n;
  1222. for (p = opt_cmd; p && (s = *p); ++p) {
  1223. if ((n = strlen(s)) > siz-1)
  1224. die("stty parameter length too long\n");
  1225. *q++ = ' ';
  1226. q = memcpy(q, s, n);
  1227. q += n;
  1228. siz-= n + 1;
  1229. }
  1230. *q = '\0';
  1231. if (system(cmd) != 0)
  1232. perror("Couldn't call stty");
  1233. }
  1234. void
  1235. ttynew(void)
  1236. {
  1237. int m, s;
  1238. struct winsize w = {term.row, term.col, 0, 0};
  1239. if (opt_io) {
  1240. term.mode |= MODE_PRINT;
  1241. iofd = (!strcmp(opt_io, "-")) ?
  1242. 1 : open(opt_io, O_WRONLY | O_CREAT, 0666);
  1243. if (iofd < 0) {
  1244. fprintf(stderr, "Error opening %s:%s\n",
  1245. opt_io, strerror(errno));
  1246. }
  1247. }
  1248. if (opt_line) {
  1249. if ((cmdfd = open(opt_line, O_RDWR)) < 0)
  1250. die("open line failed: %s\n", strerror(errno));
  1251. close(0);
  1252. dup(cmdfd);
  1253. stty();
  1254. return;
  1255. }
  1256. /* seems to work fine on linux, openbsd and freebsd */
  1257. if (openpty(&m, &s, NULL, NULL, &w) < 0)
  1258. die("openpty failed: %s\n", strerror(errno));
  1259. switch (pid = fork()) {
  1260. case -1:
  1261. die("fork failed\n");
  1262. break;
  1263. case 0:
  1264. close(iofd);
  1265. setsid(); /* create a new process group */
  1266. dup2(s, 0);
  1267. dup2(s, 1);
  1268. dup2(s, 2);
  1269. if (ioctl(s, TIOCSCTTY, NULL) < 0)
  1270. die("ioctl TIOCSCTTY failed: %s\n", strerror(errno));
  1271. close(s);
  1272. close(m);
  1273. execsh();
  1274. break;
  1275. default:
  1276. close(s);
  1277. cmdfd = m;
  1278. signal(SIGCHLD, sigchld);
  1279. break;
  1280. }
  1281. }
  1282. void
  1283. ttyread(void)
  1284. {
  1285. static char buf[BUFSIZ];
  1286. static int buflen = 0;
  1287. char *ptr;
  1288. int charsize; /* size of utf8 char in bytes */
  1289. Rune unicodep;
  1290. int ret;
  1291. /* append read bytes to unprocessed bytes */
  1292. if ((ret = read(cmdfd, buf+buflen, LEN(buf)-buflen)) < 0)
  1293. die("Couldn't read from shell: %s\n", strerror(errno));
  1294. /* process every complete utf8 char */
  1295. buflen += ret;
  1296. ptr = buf;
  1297. while ((charsize = utf8decode(ptr, &unicodep, buflen))) {
  1298. tputc(unicodep);
  1299. ptr += charsize;
  1300. buflen -= charsize;
  1301. }
  1302. /* keep any uncomplete utf8 char for the next call */
  1303. memmove(buf, ptr, buflen);
  1304. }
  1305. void
  1306. ttywrite(const char *s, size_t n)
  1307. {
  1308. fd_set wfd;
  1309. struct timespec tv;
  1310. ssize_t r;
  1311. /*
  1312. * Remember that we are using a pty, which might be a modem line.
  1313. * Writing too much will clog the line. That's why we are doing this
  1314. * dance.
  1315. * FIXME: Migrate the world to Plan 9.
  1316. */
  1317. while (n > 0) {
  1318. FD_ZERO(&wfd);
  1319. FD_SET(cmdfd, &wfd);
  1320. tv.tv_sec = 0;
  1321. tv.tv_nsec = 0;
  1322. /* Check if we can write. */
  1323. if (pselect(cmdfd+1, NULL, &wfd, NULL, &tv, NULL) < 0) {
  1324. if (errno == EINTR)
  1325. continue;
  1326. die("select failed: %s\n", strerror(errno));
  1327. }
  1328. if(!FD_ISSET(cmdfd, &wfd)) {
  1329. /* No, then free some buffer space. */
  1330. ttyread();
  1331. } else {
  1332. /*
  1333. * Only write 256 bytes at maximum. This seems to be a
  1334. * reasonable value for a serial line. Bigger values
  1335. * might clog the I/O.
  1336. */
  1337. r = write(cmdfd, s, (n < 256)? n : 256);
  1338. if (r < 0) {
  1339. die("write error on tty: %s\n",
  1340. strerror(errno));
  1341. }
  1342. if (r < n) {
  1343. /*
  1344. * We weren't able to write out everything.
  1345. * This means the buffer is getting full
  1346. * again. Empty it.
  1347. */
  1348. if (n < 256)
  1349. ttyread();
  1350. n -= r;
  1351. s += r;
  1352. } else {
  1353. /* All bytes have been written. */
  1354. break;
  1355. }
  1356. }
  1357. }
  1358. }
  1359. void
  1360. ttysend(char *s, size_t n)
  1361. {
  1362. int len;
  1363. Rune u;
  1364. ttywrite(s, n);
  1365. if (IS_SET(MODE_ECHO))
  1366. while ((len = utf8decode(s, &u, n)) > 0) {
  1367. techo(u);
  1368. n -= len;
  1369. s += len;
  1370. }
  1371. }
  1372. void
  1373. ttyresize(void)
  1374. {
  1375. struct winsize w;
  1376. w.ws_row = term.row;
  1377. w.ws_col = term.col;
  1378. w.ws_xpixel = xw.tw;
  1379. w.ws_ypixel = xw.th;
  1380. if (ioctl(cmdfd, TIOCSWINSZ, &w) < 0)
  1381. fprintf(stderr, "Couldn't set window size: %s\n", strerror(errno));
  1382. }
  1383. int
  1384. tattrset(int attr)
  1385. {
  1386. int i, j;
  1387. for (i = 0; i < term.row-1; i++) {
  1388. for (j = 0; j < term.col-1; j++) {
  1389. if (term.line[i][j].mode & attr)
  1390. return 1;
  1391. }
  1392. }
  1393. return 0;
  1394. }
  1395. void
  1396. tsetdirt(int top, int bot)
  1397. {
  1398. int i;
  1399. LIMIT(top, 0, term.row-1);
  1400. LIMIT(bot, 0, term.row-1);
  1401. for (i = top; i <= bot; i++)
  1402. term.dirty[i] = 1;
  1403. }
  1404. void
  1405. tsetdirtattr(int attr)
  1406. {
  1407. int i, j;
  1408. for (i = 0; i < term.row-1; i++) {
  1409. for (j = 0; j < term.col-1; j++) {
  1410. if (term.line[i][j].mode & attr) {
  1411. tsetdirt(i, i);
  1412. break;
  1413. }
  1414. }
  1415. }
  1416. }
  1417. void
  1418. tfulldirt(void)
  1419. {
  1420. tsetdirt(0, term.row-1);
  1421. }
  1422. void
  1423. tcursor(int mode)
  1424. {
  1425. static TCursor c[2];
  1426. int alt = IS_SET(MODE_ALTSCREEN);
  1427. if (mode == CURSOR_SAVE) {
  1428. c[alt] = term.c;
  1429. } else if (mode == CURSOR_LOAD) {
  1430. term.c = c[alt];
  1431. tmoveto(c[alt].x, c[alt].y);
  1432. }
  1433. }
  1434. void
  1435. treset(void)
  1436. {
  1437. uint i;
  1438. term.c = (TCursor){{
  1439. .mode = ATTR_NULL,
  1440. .fg = defaultfg,
  1441. .bg = defaultbg
  1442. }, .x = 0, .y = 0, .state = CURSOR_DEFAULT};
  1443. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  1444. for (i = tabspaces; i < term.col; i += tabspaces)
  1445. term.tabs[i] = 1;
  1446. term.top = 0;
  1447. term.bot = term.row - 1;
  1448. term.mode = MODE_WRAP;
  1449. memset(term.trantbl, CS_USA, sizeof(term.trantbl));
  1450. term.charset = 0;
  1451. for (i = 0; i < 2; i++) {
  1452. tmoveto(0, 0);
  1453. tcursor(CURSOR_SAVE);
  1454. tclearregion(0, 0, term.col-1, term.row-1);
  1455. tswapscreen();
  1456. }
  1457. }
  1458. void
  1459. tnew(int col, int row)
  1460. {
  1461. term = (Term){ .c = { .attr = { .fg = defaultfg, .bg = defaultbg } } };
  1462. tresize(col, row);
  1463. term.numlock = 1;
  1464. treset();
  1465. }
  1466. void
  1467. tswapscreen(void)
  1468. {
  1469. Line *tmp = term.line;
  1470. term.line = term.alt;
  1471. term.alt = tmp;
  1472. term.mode ^= MODE_ALTSCREEN;
  1473. tfulldirt();
  1474. }
  1475. void
  1476. tscrolldown(int orig, int n)
  1477. {
  1478. int i;
  1479. Line temp;
  1480. LIMIT(n, 0, term.bot-orig+1);
  1481. tsetdirt(orig, term.bot-n);
  1482. tclearregion(0, term.bot-n+1, term.col-1, term.bot);
  1483. for (i = term.bot; i >= orig+n; i--) {
  1484. temp = term.line[i];
  1485. term.line[i] = term.line[i-n];
  1486. term.line[i-n] = temp;
  1487. }
  1488. selscroll(orig, n);
  1489. }
  1490. void
  1491. tscrollup(int orig, int n)
  1492. {
  1493. int i;
  1494. Line temp;
  1495. LIMIT(n, 0, term.bot-orig+1);
  1496. tclearregion(0, orig, term.col-1, orig+n-1);
  1497. tsetdirt(orig+n, term.bot);
  1498. for (i = orig; i <= term.bot-n; i++) {
  1499. temp = term.line[i];
  1500. term.line[i] = term.line[i+n];
  1501. term.line[i+n] = temp;
  1502. }
  1503. selscroll(orig, -n);
  1504. }
  1505. void
  1506. selscroll(int orig, int n)
  1507. {
  1508. if (sel.ob.x == -1)
  1509. return;
  1510. if (BETWEEN(sel.ob.y, orig, term.bot) || BETWEEN(sel.oe.y, orig, term.bot)) {
  1511. if ((sel.ob.y += n) > term.bot || (sel.oe.y += n) < term.top) {
  1512. selclear(NULL);
  1513. return;
  1514. }
  1515. if (sel.type == SEL_RECTANGULAR) {
  1516. if (sel.ob.y < term.top)
  1517. sel.ob.y = term.top;
  1518. if (sel.oe.y > term.bot)
  1519. sel.oe.y = term.bot;
  1520. } else {
  1521. if (sel.ob.y < term.top) {
  1522. sel.ob.y = term.top;
  1523. sel.ob.x = 0;
  1524. }
  1525. if (sel.oe.y > term.bot) {
  1526. sel.oe.y = term.bot;
  1527. sel.oe.x = term.col;
  1528. }
  1529. }
  1530. selnormalize();
  1531. }
  1532. }
  1533. void
  1534. tnewline(int first_col)
  1535. {
  1536. int y = term.c.y;
  1537. if (y == term.bot) {
  1538. tscrollup(term.top, 1);
  1539. } else {
  1540. y++;
  1541. }
  1542. tmoveto(first_col ? 0 : term.c.x, y);
  1543. }
  1544. void
  1545. csiparse(void)
  1546. {
  1547. char *p = csiescseq.buf, *np;
  1548. long int v;
  1549. csiescseq.narg = 0;
  1550. if (*p == '?') {
  1551. csiescseq.priv = 1;
  1552. p++;
  1553. }
  1554. csiescseq.buf[csiescseq.len] = '\0';
  1555. while (p < csiescseq.buf+csiescseq.len) {
  1556. np = NULL;
  1557. v = strtol(p, &np, 10);
  1558. if (np == p)
  1559. v = 0;
  1560. if (v == LONG_MAX || v == LONG_MIN)
  1561. v = -1;
  1562. csiescseq.arg[csiescseq.narg++] = v;
  1563. p = np;
  1564. if (*p != ';' || csiescseq.narg == ESC_ARG_SIZ)
  1565. break;
  1566. p++;
  1567. }
  1568. csiescseq.mode[0] = *p++;
  1569. csiescseq.mode[1] = (p < csiescseq.buf+csiescseq.len) ? *p : '\0';
  1570. }
  1571. /* for absolute user moves, when decom is set */
  1572. void
  1573. tmoveato(int x, int y)
  1574. {
  1575. tmoveto(x, y + ((term.c.state & CURSOR_ORIGIN) ? term.top: 0));
  1576. }
  1577. void
  1578. tmoveto(int x, int y)
  1579. {
  1580. int miny, maxy;
  1581. if (term.c.state & CURSOR_ORIGIN) {
  1582. miny = term.top;
  1583. maxy = term.bot;
  1584. } else {
  1585. miny = 0;
  1586. maxy = term.row - 1;
  1587. }
  1588. term.c.state &= ~CURSOR_WRAPNEXT;
  1589. term.c.x = LIMIT(x, 0, term.col-1);
  1590. term.c.y = LIMIT(y, miny, maxy);
  1591. }
  1592. void
  1593. tsetchar(Rune u, Glyph *attr, int x, int y)
  1594. {
  1595. static char *vt100_0[62] = { /* 0x41 - 0x7e */
  1596. "", "", "", "", "", "", "", /* A - G */
  1597. 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
  1598. 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
  1599. 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
  1600. "", "", "", "", "", "", "°", "±", /* ` - g */
  1601. "", "", "", "", "", "", "", "", /* h - o */
  1602. "", "", "", "", "", "", "", "", /* p - w */
  1603. "", "", "", "π", "", "£", "·", /* x - ~ */
  1604. };
  1605. /*
  1606. * The table is proudly stolen from rxvt.
  1607. */
  1608. if (term.trantbl[term.charset] == CS_GRAPHIC0 &&
  1609. BETWEEN(u, 0x41, 0x7e) && vt100_0[u - 0x41])
  1610. utf8decode(vt100_0[u - 0x41], &u, UTF_SIZ);
  1611. if (term.line[y][x].mode & ATTR_WIDE) {
  1612. if (x+1 < term.col) {
  1613. term.line[y][x+1].u = ' ';
  1614. term.line[y][x+1].mode &= ~ATTR_WDUMMY;
  1615. }
  1616. } else if (term.line[y][x].mode & ATTR_WDUMMY) {
  1617. term.line[y][x-1].u = ' ';
  1618. term.line[y][x-1].mode &= ~ATTR_WIDE;
  1619. }
  1620. term.dirty[y] = 1;
  1621. term.line[y][x] = *attr;
  1622. term.line[y][x].u = u;
  1623. }
  1624. void
  1625. tclearregion(int x1, int y1, int x2, int y2)
  1626. {
  1627. int x, y, temp;
  1628. Glyph *gp;
  1629. if (x1 > x2)
  1630. temp = x1, x1 = x2, x2 = temp;
  1631. if (y1 > y2)
  1632. temp = y1, y1 = y2, y2 = temp;
  1633. LIMIT(x1, 0, term.col-1);
  1634. LIMIT(x2, 0, term.col-1);
  1635. LIMIT(y1, 0, term.row-1);
  1636. LIMIT(y2, 0, term.row-1);
  1637. for (y = y1; y <= y2; y++) {
  1638. term.dirty[y] = 1;
  1639. for (x = x1; x <= x2; x++) {
  1640. gp = &term.line[y][x];
  1641. if (selected(x, y))
  1642. selclear(NULL);
  1643. gp->fg = term.c.attr.fg;
  1644. gp->bg = term.c.attr.bg;
  1645. gp->mode = 0;
  1646. gp->u = ' ';
  1647. }
  1648. }
  1649. }
  1650. void
  1651. tdeletechar(int n)
  1652. {
  1653. int dst, src, size;
  1654. Glyph *line;
  1655. LIMIT(n, 0, term.col - term.c.x);
  1656. dst = term.c.x;
  1657. src = term.c.x + n;
  1658. size = term.col - src;
  1659. line = term.line[term.c.y];
  1660. memmove(&line[dst], &line[src], size * sizeof(Glyph));
  1661. tclearregion(term.col-n, term.c.y, term.col-1, term.c.y);
  1662. }
  1663. void
  1664. tinsertblank(int n)
  1665. {
  1666. int dst, src, size;
  1667. Glyph *line;
  1668. LIMIT(n, 0, term.col - term.c.x);
  1669. dst = term.c.x + n;
  1670. src = term.c.x;
  1671. size = term.col - dst;
  1672. line = term.line[term.c.y];
  1673. memmove(&line[dst], &line[src], size * sizeof(Glyph));
  1674. tclearregion(src, term.c.y, dst - 1, term.c.y);
  1675. }
  1676. void
  1677. tinsertblankline(int n)
  1678. {
  1679. if (BETWEEN(term.c.y, term.top, term.bot))
  1680. tscrolldown(term.c.y, n);
  1681. }
  1682. void
  1683. tdeleteline(int n)
  1684. {
  1685. if (BETWEEN(term.c.y, term.top, term.bot))
  1686. tscrollup(term.c.y, n);
  1687. }
  1688. int32_t
  1689. tdefcolor(int *attr, int *npar, int l)
  1690. {
  1691. int32_t idx = -1;
  1692. uint r, g, b;
  1693. switch (attr[*npar + 1]) {
  1694. case 2: /* direct color in RGB space */
  1695. if (*npar + 4 >= l) {
  1696. fprintf(stderr,
  1697. "erresc(38): Incorrect number of parameters (%d)\n",
  1698. *npar);
  1699. break;
  1700. }
  1701. r = attr[*npar + 2];
  1702. g = attr[*npar + 3];
  1703. b = attr[*npar + 4];
  1704. *npar += 4;
  1705. if (!BETWEEN(r, 0, 255) || !BETWEEN(g, 0, 255) || !BETWEEN(b, 0, 255))
  1706. fprintf(stderr, "erresc: bad rgb color (%u,%u,%u)\n",
  1707. r, g, b);
  1708. else
  1709. idx = TRUECOLOR(r, g, b);
  1710. break;
  1711. case 5: /* indexed color */
  1712. if (*npar + 2 >= l) {
  1713. fprintf(stderr,
  1714. "erresc(38): Incorrect number of parameters (%d)\n",
  1715. *npar);
  1716. break;
  1717. }
  1718. *npar += 2;
  1719. if (!BETWEEN(attr[*npar], 0, 255))
  1720. fprintf(stderr, "erresc: bad fgcolor %d\n", attr[*npar]);
  1721. else
  1722. idx = attr[*npar];
  1723. break;
  1724. case 0: /* implemented defined (only foreground) */
  1725. case 1: /* transparent */
  1726. case 3: /* direct color in CMY space */
  1727. case 4: /* direct color in CMYK space */
  1728. default:
  1729. fprintf(stderr,
  1730. "erresc(38): gfx attr %d unknown\n", attr[*npar]);
  1731. break;
  1732. }
  1733. return idx;
  1734. }
  1735. void
  1736. tsetattr(int *attr, int l)
  1737. {
  1738. int i;
  1739. int32_t idx;
  1740. for (i = 0; i < l; i++) {
  1741. switch (attr[i]) {
  1742. case 0:
  1743. term.c.attr.mode &= ~(
  1744. ATTR_BOLD |
  1745. ATTR_FAINT |
  1746. ATTR_ITALIC |
  1747. ATTR_UNDERLINE |
  1748. ATTR_BLINK |
  1749. ATTR_REVERSE |
  1750. ATTR_INVISIBLE |
  1751. ATTR_STRUCK );
  1752. term.c.attr.fg = defaultfg;
  1753. term.c.attr.bg = defaultbg;
  1754. break;
  1755. case 1:
  1756. term.c.attr.mode |= ATTR_BOLD;
  1757. break;
  1758. case 2:
  1759. term.c.attr.mode |= ATTR_FAINT;
  1760. break;
  1761. case 3:
  1762. term.c.attr.mode |= ATTR_ITALIC;
  1763. break;
  1764. case 4:
  1765. term.c.attr.mode |= ATTR_UNDERLINE;
  1766. break;
  1767. case 5: /* slow blink */
  1768. /* FALLTHROUGH */
  1769. case 6: /* rapid blink */
  1770. term.c.attr.mode |= ATTR_BLINK;
  1771. break;
  1772. case 7:
  1773. term.c.attr.mode |= ATTR_REVERSE;
  1774. break;
  1775. case 8:
  1776. term.c.attr.mode |= ATTR_INVISIBLE;
  1777. break;
  1778. case 9:
  1779. term.c.attr.mode |= ATTR_STRUCK;
  1780. break;
  1781. case 22:
  1782. term.c.attr.mode &= ~(ATTR_BOLD | ATTR_FAINT);
  1783. break;
  1784. case 23:
  1785. term.c.attr.mode &= ~ATTR_ITALIC;
  1786. break;
  1787. case 24:
  1788. term.c.attr.mode &= ~ATTR_UNDERLINE;
  1789. break;
  1790. case 25:
  1791. term.c.attr.mode &= ~ATTR_BLINK;
  1792. break;
  1793. case 27:
  1794. term.c.attr.mode &= ~ATTR_REVERSE;
  1795. break;
  1796. case 28:
  1797. term.c.attr.mode &= ~ATTR_INVISIBLE;
  1798. break;
  1799. case 29:
  1800. term.c.attr.mode &= ~ATTR_STRUCK;
  1801. break;
  1802. case 38:
  1803. if ((idx = tdefcolor(attr, &i, l)) >= 0)
  1804. term.c.attr.fg = idx;
  1805. break;
  1806. case 39:
  1807. term.c.attr.fg = defaultfg;
  1808. break;
  1809. case 48:
  1810. if ((idx = tdefcolor(attr, &i, l)) >= 0)
  1811. term.c.attr.bg = idx;
  1812. break;
  1813. case 49:
  1814. term.c.attr.bg = defaultbg;
  1815. break;
  1816. default:
  1817. if (BETWEEN(attr[i], 30, 37)) {
  1818. term.c.attr.fg = attr[i] - 30;
  1819. } else if (BETWEEN(attr[i], 40, 47)) {
  1820. term.c.attr.bg = attr[i] - 40;
  1821. } else if (BETWEEN(attr[i], 90, 97)) {
  1822. term.c.attr.fg = attr[i] - 90 + 8;
  1823. } else if (BETWEEN(attr[i], 100, 107)) {
  1824. term.c.attr.bg = attr[i] - 100 + 8;
  1825. } else {
  1826. fprintf(stderr,
  1827. "erresc(default): gfx attr %d unknown\n",
  1828. attr[i]), csidump();
  1829. }
  1830. break;
  1831. }
  1832. }
  1833. }
  1834. void
  1835. tsetscroll(int t, int b)
  1836. {
  1837. int temp;
  1838. LIMIT(t, 0, term.row-1);
  1839. LIMIT(b, 0, term.row-1);
  1840. if (t > b) {
  1841. temp = t;
  1842. t = b;
  1843. b = temp;
  1844. }
  1845. term.top = t;
  1846. term.bot = b;
  1847. }
  1848. void
  1849. tsetmode(int priv, int set, int *args, int narg)
  1850. {
  1851. int *lim, mode;
  1852. int alt;
  1853. for (lim = args + narg; args < lim; ++args) {
  1854. if (priv) {
  1855. switch (*args) {
  1856. case 1: /* DECCKM -- Cursor key */
  1857. MODBIT(term.mode, set, MODE_APPCURSOR);
  1858. break;
  1859. case 5: /* DECSCNM -- Reverse video */
  1860. mode = term.mode;
  1861. MODBIT(term.mode, set, MODE_REVERSE);
  1862. if (mode != term.mode)
  1863. redraw();
  1864. break;
  1865. case 6: /* DECOM -- Origin */
  1866. MODBIT(term.c.state, set, CURSOR_ORIGIN);
  1867. tmoveato(0, 0);
  1868. break;
  1869. case 7: /* DECAWM -- Auto wrap */
  1870. MODBIT(term.mode, set, MODE_WRAP);
  1871. break;
  1872. case 0: /* Error (IGNORED) */
  1873. case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
  1874. case 3: /* DECCOLM -- Column (IGNORED) */
  1875. case 4: /* DECSCLM -- Scroll (IGNORED) */
  1876. case 8: /* DECARM -- Auto repeat (IGNORED) */
  1877. case 18: /* DECPFF -- Printer feed (IGNORED) */
  1878. case 19: /* DECPEX -- Printer extent (IGNORED) */
  1879. case 42: /* DECNRCM -- National characters (IGNORED) */
  1880. case 12: /* att610 -- Start blinking cursor (IGNORED) */
  1881. break;
  1882. case 25: /* DECTCEM -- Text Cursor Enable Mode */
  1883. MODBIT(term.mode, !set, MODE_HIDE);
  1884. break;
  1885. case 9: /* X10 mouse compatibility mode */
  1886. xsetpointermotion(0);
  1887. MODBIT(term.mode, 0, MODE_MOUSE);
  1888. MODBIT(term.mode, set, MODE_MOUSEX10);
  1889. break;
  1890. case 1000: /* 1000: report button press */
  1891. xsetpointermotion(0);
  1892. MODBIT(term.mode, 0, MODE_MOUSE);
  1893. MODBIT(term.mode, set, MODE_MOUSEBTN);
  1894. break;
  1895. case 1002: /* 1002: report motion on button press */
  1896. xsetpointermotion(0);
  1897. MODBIT(term.mode, 0, MODE_MOUSE);
  1898. MODBIT(term.mode, set, MODE_MOUSEMOTION);
  1899. break;
  1900. case 1003: /* 1003: enable all mouse motions */
  1901. xsetpointermotion(set);
  1902. MODBIT(term.mode, 0, MODE_MOUSE);
  1903. MODBIT(term.mode, set, MODE_MOUSEMANY);
  1904. break;
  1905. case 1004: /* 1004: send focus events to tty */
  1906. MODBIT(term.mode, set, MODE_FOCUS);
  1907. break;
  1908. case 1006: /* 1006: extended reporting mode */
  1909. MODBIT(term.mode, set, MODE_MOUSESGR);
  1910. break;
  1911. case 1034:
  1912. MODBIT(term.mode, set, MODE_8BIT);
  1913. break;
  1914. case 1049: /* swap screen & set/restore cursor as xterm */
  1915. if (!allowaltscreen)
  1916. break;
  1917. tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
  1918. /* FALLTHROUGH */
  1919. case 47: /* swap screen */
  1920. case 1047:
  1921. if (!allowaltscreen)
  1922. break;
  1923. alt = IS_SET(MODE_ALTSCREEN);
  1924. if (alt) {
  1925. tclearregion(0, 0, term.col-1,
  1926. term.row-1);
  1927. }
  1928. if (set ^ alt) /* set is always 1 or 0 */
  1929. tswapscreen();
  1930. if (*args != 1049)
  1931. break;
  1932. /* FALLTHROUGH */
  1933. case 1048:
  1934. tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
  1935. break;
  1936. case 2004: /* 2004: bracketed paste mode */
  1937. MODBIT(term.mode, set, MODE_BRCKTPASTE);
  1938. break;
  1939. /* Not implemented mouse modes. See comments there. */
  1940. case 1001: /* mouse highlight mode; can hang the
  1941. terminal by design when implemented. */
  1942. case 1005: /* UTF-8 mouse mode; will confuse
  1943. applications not supporting UTF-8
  1944. and luit. */
  1945. case 1015: /* urxvt mangled mouse mode; incompatible
  1946. and can be mistaken for other control
  1947. codes. */
  1948. default:
  1949. fprintf(stderr,
  1950. "erresc: unknown private set/reset mode %d\n",
  1951. *args);
  1952. break;
  1953. }
  1954. } else {
  1955. switch (*args) {
  1956. case 0: /* Error (IGNORED) */
  1957. break;
  1958. case 2: /* KAM -- keyboard action */
  1959. MODBIT(term.mode, set, MODE_KBDLOCK);
  1960. break;
  1961. case 4: /* IRM -- Insertion-replacement */
  1962. MODBIT(term.mode, set, MODE_INSERT);
  1963. break;
  1964. case 12: /* SRM -- Send/Receive */
  1965. MODBIT(term.mode, !set, MODE_ECHO);
  1966. break;
  1967. case 20: /* LNM -- Linefeed/new line */
  1968. MODBIT(term.mode, set, MODE_CRLF);
  1969. break;
  1970. default:
  1971. fprintf(stderr,
  1972. "erresc: unknown set/reset mode %d\n",
  1973. *args);
  1974. break;
  1975. }
  1976. }
  1977. }
  1978. }
  1979. void
  1980. csihandle(void)
  1981. {
  1982. char buf[40];
  1983. int len;
  1984. switch (csiescseq.mode[0]) {
  1985. default:
  1986. unknown:
  1987. fprintf(stderr, "erresc: unknown csi ");
  1988. csidump();
  1989. /* die(""); */
  1990. break;
  1991. case '@': /* ICH -- Insert <n> blank char */
  1992. DEFAULT(csiescseq.arg[0], 1);
  1993. tinsertblank(csiescseq.arg[0]);
  1994. break;
  1995. case 'A': /* CUU -- Cursor <n> Up */
  1996. DEFAULT(csiescseq.arg[0], 1);
  1997. tmoveto(term.c.x, term.c.y-csiescseq.arg[0]);
  1998. break;
  1999. case 'B': /* CUD -- Cursor <n> Down */
  2000. case 'e': /* VPR --Cursor <n> Down */
  2001. DEFAULT(csiescseq.arg[0], 1);
  2002. tmoveto(term.c.x, term.c.y+csiescseq.arg[0]);
  2003. break;
  2004. case 'i': /* MC -- Media Copy */
  2005. switch (csiescseq.arg[0]) {
  2006. case 0:
  2007. tdump();
  2008. break;
  2009. case 1:
  2010. tdumpline(term.c.y);
  2011. break;
  2012. case 2:
  2013. tdumpsel();
  2014. break;
  2015. case 4:
  2016. term.mode &= ~MODE_PRINT;
  2017. break;
  2018. case 5:
  2019. term.mode |= MODE_PRINT;
  2020. break;
  2021. }
  2022. break;
  2023. case 'c': /* DA -- Device Attributes */
  2024. if (csiescseq.arg[0] == 0)
  2025. ttywrite(vtiden, sizeof(vtiden) - 1);
  2026. break;
  2027. case 'C': /* CUF -- Cursor <n> Forward */
  2028. case 'a': /* HPR -- Cursor <n> Forward */
  2029. DEFAULT(csiescseq.arg[0], 1);
  2030. tmoveto(term.c.x+csiescseq.arg[0], term.c.y);
  2031. break;
  2032. case 'D': /* CUB -- Cursor <n> Backward */
  2033. DEFAULT(csiescseq.arg[0], 1);
  2034. tmoveto(term.c.x-csiescseq.arg[0], term.c.y);
  2035. break;
  2036. case 'E': /* CNL -- Cursor <n> Down and first col */
  2037. DEFAULT(csiescseq.arg[0], 1);
  2038. tmoveto(0, term.c.y+csiescseq.arg[0]);
  2039. break;
  2040. case 'F': /* CPL -- Cursor <n> Up and first col */
  2041. DEFAULT(csiescseq.arg[0], 1);
  2042. tmoveto(0, term.c.y-csiescseq.arg[0]);
  2043. break;
  2044. case 'g': /* TBC -- Tabulation clear */
  2045. switch (csiescseq.arg[0]) {
  2046. case 0: /* clear current tab stop */
  2047. term.tabs[term.c.x] = 0;
  2048. break;
  2049. case 3: /* clear all the tabs */
  2050. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  2051. break;
  2052. default:
  2053. goto unknown;
  2054. }
  2055. break;
  2056. case 'G': /* CHA -- Move to <col> */
  2057. case '`': /* HPA */
  2058. DEFAULT(csiescseq.arg[0], 1);
  2059. tmoveto(csiescseq.arg[0]-1, term.c.y);
  2060. break;
  2061. case 'H': /* CUP -- Move to <row> <col> */
  2062. case 'f': /* HVP */
  2063. DEFAULT(csiescseq.arg[0], 1);
  2064. DEFAULT(csiescseq.arg[1], 1);
  2065. tmoveato(csiescseq.arg[1]-1, csiescseq.arg[0]-1);
  2066. break;
  2067. case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
  2068. DEFAULT(csiescseq.arg[0], 1);
  2069. tputtab(csiescseq.arg[0]);
  2070. break;
  2071. case 'J': /* ED -- Clear screen */
  2072. selclear(NULL);
  2073. switch (csiescseq.arg[0]) {
  2074. case 0: /* below */
  2075. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  2076. if (term.c.y < term.row-1) {
  2077. tclearregion(0, term.c.y+1, term.col-1,
  2078. term.row-1);
  2079. }
  2080. break;
  2081. case 1: /* above */
  2082. if (term.c.y > 1)
  2083. tclearregion(0, 0, term.col-1, term.c.y-1);
  2084. tclearregion(0, term.c.y, term.c.x, term.c.y);
  2085. break;
  2086. case 2: /* all */
  2087. tclearregion(0, 0, term.col-1, term.row-1);
  2088. break;
  2089. default:
  2090. goto unknown;
  2091. }
  2092. break;
  2093. case 'K': /* EL -- Clear line */
  2094. switch (csiescseq.arg[0]) {
  2095. case 0: /* right */
  2096. tclearregion(term.c.x, term.c.y, term.col-1,
  2097. term.c.y);
  2098. break;
  2099. case 1: /* left */
  2100. tclearregion(0, term.c.y, term.c.x, term.c.y);
  2101. break;
  2102. case 2: /* all */
  2103. tclearregion(0, term.c.y, term.col-1, term.c.y);
  2104. break;
  2105. }
  2106. break;
  2107. case 'S': /* SU -- Scroll <n> line up */
  2108. DEFAULT(csiescseq.arg[0], 1);
  2109. tscrollup(term.top, csiescseq.arg[0]);
  2110. break;
  2111. case 'T': /* SD -- Scroll <n> line down */
  2112. DEFAULT(csiescseq.arg[0], 1);
  2113. tscrolldown(term.top, csiescseq.arg[0]);
  2114. break;
  2115. case 'L': /* IL -- Insert <n> blank lines */
  2116. DEFAULT(csiescseq.arg[0], 1);
  2117. tinsertblankline(csiescseq.arg[0]);
  2118. break;
  2119. case 'l': /* RM -- Reset Mode */
  2120. tsetmode(csiescseq.priv, 0, csiescseq.arg, csiescseq.narg);
  2121. break;
  2122. case 'M': /* DL -- Delete <n> lines */
  2123. DEFAULT(csiescseq.arg[0], 1);
  2124. tdeleteline(csiescseq.arg[0]);
  2125. break;
  2126. case 'X': /* ECH -- Erase <n> char */
  2127. DEFAULT(csiescseq.arg[0], 1);
  2128. tclearregion(term.c.x, term.c.y,
  2129. term.c.x + csiescseq.arg[0] - 1, term.c.y);
  2130. break;
  2131. case 'P': /* DCH -- Delete <n> char */
  2132. DEFAULT(csiescseq.arg[0], 1);
  2133. tdeletechar(csiescseq.arg[0]);
  2134. break;
  2135. case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
  2136. DEFAULT(csiescseq.arg[0], 1);
  2137. tputtab(-csiescseq.arg[0]);
  2138. break;
  2139. case 'd': /* VPA -- Move to <row> */
  2140. DEFAULT(csiescseq.arg[0], 1);
  2141. tmoveato(term.c.x, csiescseq.arg[0]-1);
  2142. break;
  2143. case 'h': /* SM -- Set terminal mode */
  2144. tsetmode(csiescseq.priv, 1, csiescseq.arg, csiescseq.narg);
  2145. break;
  2146. case 'm': /* SGR -- Terminal attribute (color) */
  2147. tsetattr(csiescseq.arg, csiescseq.narg);
  2148. break;
  2149. case 'n': /* DSR – Device Status Report (cursor position) */
  2150. if (csiescseq.arg[0] == 6) {
  2151. len = snprintf(buf, sizeof(buf),"\033[%i;%iR",
  2152. term.c.y+1, term.c.x+1);
  2153. ttywrite(buf, len);
  2154. }
  2155. break;
  2156. case 'r': /* DECSTBM -- Set Scrolling Region */
  2157. if (csiescseq.priv) {
  2158. goto unknown;
  2159. } else {
  2160. DEFAULT(csiescseq.arg[0], 1);
  2161. DEFAULT(csiescseq.arg[1], term.row);
  2162. tsetscroll(csiescseq.arg[0]-1, csiescseq.arg[1]-1);
  2163. tmoveato(0, 0);
  2164. }
  2165. break;
  2166. case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
  2167. tcursor(CURSOR_SAVE);
  2168. break;
  2169. case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
  2170. tcursor(CURSOR_LOAD);
  2171. break;
  2172. case ' ':
  2173. switch (csiescseq.mode[1]) {
  2174. case 'q': /* DECSCUSR -- Set Cursor Style */
  2175. DEFAULT(csiescseq.arg[0], 1);
  2176. if (!BETWEEN(csiescseq.arg[0], 0, 6)) {
  2177. goto unknown;
  2178. }
  2179. xw.cursor = csiescseq.arg[0];
  2180. break;
  2181. default:
  2182. goto unknown;
  2183. }
  2184. break;
  2185. }
  2186. }
  2187. void
  2188. csidump(void)
  2189. {
  2190. int i;
  2191. uint c;
  2192. printf("ESC[");
  2193. for (i = 0; i < csiescseq.len; i++) {
  2194. c = csiescseq.buf[i] & 0xff;
  2195. if (isprint(c)) {
  2196. putchar(c);
  2197. } else if (c == '\n') {
  2198. printf("(\\n)");
  2199. } else if (c == '\r') {
  2200. printf("(\\r)");
  2201. } else if (c == 0x1b) {
  2202. printf("(\\e)");
  2203. } else {
  2204. printf("(%02x)", c);
  2205. }
  2206. }
  2207. putchar('\n');
  2208. }
  2209. void
  2210. csireset(void)
  2211. {
  2212. memset(&csiescseq, 0, sizeof(csiescseq));
  2213. }
  2214. void
  2215. strhandle(void)
  2216. {
  2217. char *p = NULL;
  2218. int j, narg, par;
  2219. term.esc &= ~(ESC_STR_END|ESC_STR);
  2220. strparse();
  2221. par = (narg = strescseq.narg) ? atoi(strescseq.args[0]) : 0;
  2222. switch (strescseq.type) {
  2223. case ']': /* OSC -- Operating System Command */
  2224. switch (par) {
  2225. case 0:
  2226. case 1:
  2227. case 2:
  2228. if (narg > 1)
  2229. xsettitle(strescseq.args[1]);
  2230. return;
  2231. case 4: /* color set */
  2232. if (narg < 3)
  2233. break;
  2234. p = strescseq.args[2];
  2235. /* FALLTHROUGH */
  2236. case 104: /* color reset, here p = NULL */
  2237. j = (narg > 1) ? atoi(strescseq.args[1]) : -1;
  2238. if (xsetcolorname(j, p)) {
  2239. fprintf(stderr, "erresc: invalid color %s\n", p);
  2240. } else {
  2241. /*
  2242. * TODO if defaultbg color is changed, borders
  2243. * are dirty
  2244. */
  2245. redraw();
  2246. }
  2247. return;
  2248. }
  2249. break;
  2250. case 'k': /* old title set compatibility */
  2251. xsettitle(strescseq.args[0]);
  2252. return;
  2253. case 'P': /* DCS -- Device Control String */
  2254. case '_': /* APC -- Application Program Command */
  2255. case '^': /* PM -- Privacy Message */
  2256. return;
  2257. }
  2258. fprintf(stderr, "erresc: unknown str ");
  2259. strdump();
  2260. }
  2261. void
  2262. strparse(void)
  2263. {
  2264. int c;
  2265. char *p = strescseq.buf;
  2266. strescseq.narg = 0;
  2267. strescseq.buf[strescseq.len] = '\0';
  2268. if (*p == '\0')
  2269. return;
  2270. while (strescseq.narg < STR_ARG_SIZ) {
  2271. strescseq.args[strescseq.narg++] = p;
  2272. while ((c = *p) != ';' && c != '\0')
  2273. ++p;
  2274. if (c == '\0')
  2275. return;
  2276. *p++ = '\0';
  2277. }
  2278. }
  2279. void
  2280. strdump(void)
  2281. {
  2282. int i;
  2283. uint c;
  2284. printf("ESC%c", strescseq.type);
  2285. for (i = 0; i < strescseq.len; i++) {
  2286. c = strescseq.buf[i] & 0xff;
  2287. if (c == '\0') {
  2288. return;
  2289. } else if (isprint(c)) {
  2290. putchar(c);
  2291. } else if (c == '\n') {
  2292. printf("(\\n)");
  2293. } else if (c == '\r') {
  2294. printf("(\\r)");
  2295. } else if (c == 0x1b) {
  2296. printf("(\\e)");
  2297. } else {
  2298. printf("(%02x)", c);
  2299. }
  2300. }
  2301. printf("ESC\\\n");
  2302. }
  2303. void
  2304. strreset(void)
  2305. {
  2306. memset(&strescseq, 0, sizeof(strescseq));
  2307. }
  2308. void
  2309. sendbreak(const Arg *arg)
  2310. {
  2311. if (tcsendbreak(cmdfd, 0))
  2312. perror("Error sending break");
  2313. }
  2314. void
  2315. tprinter(char *s, size_t len)
  2316. {
  2317. if (iofd != -1 && xwrite(iofd, s, len) < 0) {
  2318. fprintf(stderr, "Error writing in %s:%s\n",
  2319. opt_io, strerror(errno));
  2320. close(iofd);
  2321. iofd = -1;
  2322. }
  2323. }
  2324. void
  2325. toggleprinter(const Arg *arg)
  2326. {
  2327. term.mode ^= MODE_PRINT;
  2328. }
  2329. void
  2330. printscreen(const Arg *arg)
  2331. {
  2332. tdump();
  2333. }
  2334. void
  2335. printsel(const Arg *arg)
  2336. {
  2337. tdumpsel();
  2338. }
  2339. void
  2340. tdumpsel(void)
  2341. {
  2342. char *ptr;
  2343. if ((ptr = getsel())) {
  2344. tprinter(ptr, strlen(ptr));
  2345. free(ptr);
  2346. }
  2347. }
  2348. void
  2349. tdumpline(int n)
  2350. {
  2351. char buf[UTF_SIZ];
  2352. Glyph *bp, *end;
  2353. bp = &term.line[n][0];
  2354. end = &bp[MIN(tlinelen(n), term.col) - 1];
  2355. if (bp != end || bp->u != ' ') {
  2356. for ( ;bp <= end; ++bp)
  2357. tprinter(buf, utf8encode(bp->u, buf));
  2358. }
  2359. tprinter("\n", 1);
  2360. }
  2361. void
  2362. tdump(void)
  2363. {
  2364. int i;
  2365. for (i = 0; i < term.row; ++i)
  2366. tdumpline(i);
  2367. }
  2368. void
  2369. tputtab(int n)
  2370. {
  2371. uint x = term.c.x;
  2372. if (n > 0) {
  2373. while (x < term.col && n--)
  2374. for (++x; x < term.col && !term.tabs[x]; ++x)
  2375. /* nothing */ ;
  2376. } else if (n < 0) {
  2377. while (x > 0 && n++)
  2378. for (--x; x > 0 && !term.tabs[x]; --x)
  2379. /* nothing */ ;
  2380. }
  2381. term.c.x = LIMIT(x, 0, term.col-1);
  2382. }
  2383. void
  2384. techo(Rune u)
  2385. {
  2386. if (ISCONTROL(u)) { /* control code */
  2387. if (u & 0x80) {
  2388. u &= 0x7f;
  2389. tputc('^');
  2390. tputc('[');
  2391. } else if (u != '\n' && u != '\r' && u != '\t') {
  2392. u ^= 0x40;
  2393. tputc('^');
  2394. }
  2395. }
  2396. tputc(u);
  2397. }
  2398. void
  2399. tdeftran(char ascii)
  2400. {
  2401. static char cs[] = "0B";
  2402. static int vcs[] = {CS_GRAPHIC0, CS_USA};
  2403. char *p;
  2404. if ((p = strchr(cs, ascii)) == NULL) {
  2405. fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
  2406. } else {
  2407. term.trantbl[term.icharset] = vcs[p - cs];
  2408. }
  2409. }
  2410. void
  2411. tdectest(char c)
  2412. {
  2413. int x, y;
  2414. if (c == '8') { /* DEC screen alignment test. */
  2415. for (x = 0; x < term.col; ++x) {
  2416. for (y = 0; y < term.row; ++y)
  2417. tsetchar('E', &term.c.attr, x, y);
  2418. }
  2419. }
  2420. }
  2421. void
  2422. tstrsequence(uchar c)
  2423. {
  2424. switch (c) {
  2425. case 0x90: /* DCS -- Device Control String */
  2426. c = 'P';
  2427. break;
  2428. case 0x9f: /* APC -- Application Program Command */
  2429. c = '_';
  2430. break;
  2431. case 0x9e: /* PM -- Privacy Message */
  2432. c = '^';
  2433. break;
  2434. case 0x9d: /* OSC -- Operating System Command */
  2435. c = ']';
  2436. break;
  2437. }
  2438. strreset();
  2439. strescseq.type = c;
  2440. term.esc |= ESC_STR;
  2441. }
  2442. void
  2443. tcontrolcode(uchar ascii)
  2444. {
  2445. switch (ascii) {
  2446. case '\t': /* HT */
  2447. tputtab(1);
  2448. return;
  2449. case '\b': /* BS */
  2450. tmoveto(term.c.x-1, term.c.y);
  2451. return;
  2452. case '\r': /* CR */
  2453. tmoveto(0, term.c.y);
  2454. return;
  2455. case '\f': /* LF */
  2456. case '\v': /* VT */
  2457. case '\n': /* LF */
  2458. /* go to first col if the mode is set */
  2459. tnewline(IS_SET(MODE_CRLF));
  2460. return;
  2461. case '\a': /* BEL */
  2462. if (term.esc & ESC_STR_END) {
  2463. /* backwards compatibility to xterm */
  2464. strhandle();
  2465. } else {
  2466. if (!(xw.state & WIN_FOCUSED))
  2467. xseturgency(1);
  2468. if (bellvolume)
  2469. XkbBell(xw.dpy, xw.win, bellvolume, (Atom)NULL);
  2470. }
  2471. break;
  2472. case '\033': /* ESC */
  2473. csireset();
  2474. term.esc &= ~(ESC_CSI|ESC_ALTCHARSET|ESC_TEST);
  2475. term.esc |= ESC_START;
  2476. return;
  2477. case '\016': /* SO (LS1 -- Locking shift 1) */
  2478. case '\017': /* SI (LS0 -- Locking shift 0) */
  2479. term.charset = 1 - (ascii - '\016');
  2480. return;
  2481. case '\032': /* SUB */
  2482. tsetchar('?', &term.c.attr, term.c.x, term.c.y);
  2483. case '\030': /* CAN */
  2484. csireset();
  2485. break;
  2486. case '\005': /* ENQ (IGNORED) */
  2487. case '\000': /* NUL (IGNORED) */
  2488. case '\021': /* XON (IGNORED) */
  2489. case '\023': /* XOFF (IGNORED) */
  2490. case 0177: /* DEL (IGNORED) */
  2491. return;
  2492. case 0x80: /* TODO: PAD */
  2493. case 0x81: /* TODO: HOP */
  2494. case 0x82: /* TODO: BPH */
  2495. case 0x83: /* TODO: NBH */
  2496. case 0x84: /* TODO: IND */
  2497. break;
  2498. case 0x85: /* NEL -- Next line */
  2499. tnewline(1); /* always go to first col */
  2500. break;
  2501. case 0x86: /* TODO: SSA */
  2502. case 0x87: /* TODO: ESA */
  2503. break;
  2504. case 0x88: /* HTS -- Horizontal tab stop */
  2505. term.tabs[term.c.x] = 1;
  2506. break;
  2507. case 0x89: /* TODO: HTJ */
  2508. case 0x8a: /* TODO: VTS */
  2509. case 0x8b: /* TODO: PLD */
  2510. case 0x8c: /* TODO: PLU */
  2511. case 0x8d: /* TODO: RI */
  2512. case 0x8e: /* TODO: SS2 */
  2513. case 0x8f: /* TODO: SS3 */
  2514. case 0x91: /* TODO: PU1 */
  2515. case 0x92: /* TODO: PU2 */
  2516. case 0x93: /* TODO: STS */
  2517. case 0x94: /* TODO: CCH */
  2518. case 0x95: /* TODO: MW */
  2519. case 0x96: /* TODO: SPA */
  2520. case 0x97: /* TODO: EPA */
  2521. case 0x98: /* TODO: SOS */
  2522. case 0x99: /* TODO: SGCI */
  2523. break;
  2524. case 0x9a: /* DECID -- Identify Terminal */
  2525. ttywrite(vtiden, sizeof(vtiden) - 1);
  2526. break;
  2527. case 0x9b: /* TODO: CSI */
  2528. case 0x9c: /* TODO: ST */
  2529. break;
  2530. case 0x90: /* DCS -- Device Control String */
  2531. case 0x9d: /* OSC -- Operating System Command */
  2532. case 0x9e: /* PM -- Privacy Message */
  2533. case 0x9f: /* APC -- Application Program Command */
  2534. tstrsequence(ascii);
  2535. return;
  2536. }
  2537. /* only CAN, SUB, \a and C1 chars interrupt a sequence */
  2538. term.esc &= ~(ESC_STR_END|ESC_STR);
  2539. }
  2540. /*
  2541. * returns 1 when the sequence is finished and it hasn't to read
  2542. * more characters for this sequence, otherwise 0
  2543. */
  2544. int
  2545. eschandle(uchar ascii)
  2546. {
  2547. switch (ascii) {
  2548. case '[':
  2549. term.esc |= ESC_CSI;
  2550. return 0;
  2551. case '#':
  2552. term.esc |= ESC_TEST;
  2553. return 0;
  2554. case 'P': /* DCS -- Device Control String */
  2555. case '_': /* APC -- Application Program Command */
  2556. case '^': /* PM -- Privacy Message */
  2557. case ']': /* OSC -- Operating System Command */
  2558. case 'k': /* old title set compatibility */
  2559. tstrsequence(ascii);
  2560. return 0;
  2561. case 'n': /* LS2 -- Locking shift 2 */
  2562. case 'o': /* LS3 -- Locking shift 3 */
  2563. term.charset = 2 + (ascii - 'n');
  2564. break;
  2565. case '(': /* GZD4 -- set primary charset G0 */
  2566. case ')': /* G1D4 -- set secondary charset G1 */
  2567. case '*': /* G2D4 -- set tertiary charset G2 */
  2568. case '+': /* G3D4 -- set quaternary charset G3 */
  2569. term.icharset = ascii - '(';
  2570. term.esc |= ESC_ALTCHARSET;
  2571. return 0;
  2572. case 'D': /* IND -- Linefeed */
  2573. if (term.c.y == term.bot) {
  2574. tscrollup(term.top, 1);
  2575. } else {
  2576. tmoveto(term.c.x, term.c.y+1);
  2577. }
  2578. break;
  2579. case 'E': /* NEL -- Next line */
  2580. tnewline(1); /* always go to first col */
  2581. break;
  2582. case 'H': /* HTS -- Horizontal tab stop */
  2583. term.tabs[term.c.x] = 1;
  2584. break;
  2585. case 'M': /* RI -- Reverse index */
  2586. if (term.c.y == term.top) {
  2587. tscrolldown(term.top, 1);
  2588. } else {
  2589. tmoveto(term.c.x, term.c.y-1);
  2590. }
  2591. break;
  2592. case 'Z': /* DECID -- Identify Terminal */
  2593. ttywrite(vtiden, sizeof(vtiden) - 1);
  2594. break;
  2595. case 'c': /* RIS -- Reset to inital state */
  2596. treset();
  2597. xresettitle();
  2598. xloadcols();
  2599. break;
  2600. case '=': /* DECPAM -- Application keypad */
  2601. term.mode |= MODE_APPKEYPAD;
  2602. break;
  2603. case '>': /* DECPNM -- Normal keypad */
  2604. term.mode &= ~MODE_APPKEYPAD;
  2605. break;
  2606. case '7': /* DECSC -- Save Cursor */
  2607. tcursor(CURSOR_SAVE);
  2608. break;
  2609. case '8': /* DECRC -- Restore Cursor */
  2610. tcursor(CURSOR_LOAD);
  2611. break;
  2612. case '\\': /* ST -- String Terminator */
  2613. if (term.esc & ESC_STR_END)
  2614. strhandle();
  2615. break;
  2616. default:
  2617. fprintf(stderr, "erresc: unknown sequence ESC 0x%02X '%c'\n",
  2618. (uchar) ascii, isprint(ascii)? ascii:'.');
  2619. break;
  2620. }
  2621. return 1;
  2622. }
  2623. void
  2624. tputc(Rune u)
  2625. {
  2626. char c[UTF_SIZ];
  2627. int control;
  2628. int width, len;
  2629. Glyph *gp;
  2630. control = ISCONTROL(u);
  2631. len = utf8encode(u, c);
  2632. if (!control && (width = wcwidth(u)) == -1) {
  2633. memcpy(c, "\357\277\275", 4); /* UTF_INVALID */
  2634. width = 1;
  2635. }
  2636. if (IS_SET(MODE_PRINT))
  2637. tprinter(c, len);
  2638. /*
  2639. * STR sequence must be checked before anything else
  2640. * because it uses all following characters until it
  2641. * receives a ESC, a SUB, a ST or any other C1 control
  2642. * character.
  2643. */
  2644. if (term.esc & ESC_STR) {
  2645. if (u == '\a' || u == 030 || u == 032 || u == 033 ||
  2646. ISCONTROLC1(u)) {
  2647. term.esc &= ~(ESC_START|ESC_STR);
  2648. term.esc |= ESC_STR_END;
  2649. } else if (strescseq.len + len < sizeof(strescseq.buf) - 1) {
  2650. memmove(&strescseq.buf[strescseq.len], c, len);
  2651. strescseq.len += len;
  2652. return;
  2653. } else {
  2654. /*
  2655. * Here is a bug in terminals. If the user never sends
  2656. * some code to stop the str or esc command, then st
  2657. * will stop responding. But this is better than
  2658. * silently failing with unknown characters. At least
  2659. * then users will report back.
  2660. *
  2661. * In the case users ever get fixed, here is the code:
  2662. */
  2663. /*
  2664. * term.esc = 0;
  2665. * strhandle();
  2666. */
  2667. return;
  2668. }
  2669. }
  2670. /*
  2671. * Actions of control codes must be performed as soon they arrive
  2672. * because they can be embedded inside a control sequence, and
  2673. * they must not cause conflicts with sequences.
  2674. */
  2675. if (control) {
  2676. tcontrolcode(u);
  2677. /*
  2678. * control codes are not shown ever
  2679. */
  2680. return;
  2681. } else if (term.esc & ESC_START) {
  2682. if (term.esc & ESC_CSI) {
  2683. csiescseq.buf[csiescseq.len++] = u;
  2684. if (BETWEEN(u, 0x40, 0x7E)
  2685. || csiescseq.len >= \
  2686. sizeof(csiescseq.buf)-1) {
  2687. term.esc = 0;
  2688. csiparse();
  2689. csihandle();
  2690. }
  2691. return;
  2692. } else if (term.esc & ESC_ALTCHARSET) {
  2693. tdeftran(u);
  2694. } else if (term.esc & ESC_TEST) {
  2695. tdectest(u);
  2696. } else {
  2697. if (!eschandle(u))
  2698. return;
  2699. /* sequence already finished */
  2700. }
  2701. term.esc = 0;
  2702. /*
  2703. * All characters which form part of a sequence are not
  2704. * printed
  2705. */
  2706. return;
  2707. }
  2708. if (sel.ob.x != -1 && BETWEEN(term.c.y, sel.ob.y, sel.oe.y))
  2709. selclear(NULL);
  2710. gp = &term.line[term.c.y][term.c.x];
  2711. if (IS_SET(MODE_WRAP) && (term.c.state & CURSOR_WRAPNEXT)) {
  2712. gp->mode |= ATTR_WRAP;
  2713. tnewline(1);
  2714. gp = &term.line[term.c.y][term.c.x];
  2715. }
  2716. if (IS_SET(MODE_INSERT) && term.c.x+width < term.col)
  2717. memmove(gp+width, gp, (term.col - term.c.x - width) * sizeof(Glyph));
  2718. if (term.c.x+width > term.col) {
  2719. tnewline(1);
  2720. gp = &term.line[term.c.y][term.c.x];
  2721. }
  2722. tsetchar(u, &term.c.attr, term.c.x, term.c.y);
  2723. if (width == 2) {
  2724. gp->mode |= ATTR_WIDE;
  2725. if (term.c.x+1 < term.col) {
  2726. gp[1].u = '\0';
  2727. gp[1].mode = ATTR_WDUMMY;
  2728. }
  2729. }
  2730. if (term.c.x+width < term.col) {
  2731. tmoveto(term.c.x+width, term.c.y);
  2732. } else {
  2733. term.c.state |= CURSOR_WRAPNEXT;
  2734. }
  2735. }
  2736. void
  2737. tresize(int col, int row)
  2738. {
  2739. int i;
  2740. int minrow = MIN(row, term.row);
  2741. int mincol = MIN(col, term.col);
  2742. int *bp;
  2743. TCursor c;
  2744. if (col < 1 || row < 1) {
  2745. fprintf(stderr,
  2746. "tresize: error resizing to %dx%d\n", col, row);
  2747. return;
  2748. }
  2749. /*
  2750. * slide screen to keep cursor where we expect it -
  2751. * tscrollup would work here, but we can optimize to
  2752. * memmove because we're freeing the earlier lines
  2753. */
  2754. for (i = 0; i <= term.c.y - row; i++) {
  2755. free(term.line[i]);
  2756. free(term.alt[i]);
  2757. }
  2758. /* ensure that both src and dst are not NULL */
  2759. if (i > 0) {
  2760. memmove(term.line, term.line + i, row * sizeof(Line));
  2761. memmove(term.alt, term.alt + i, row * sizeof(Line));
  2762. }
  2763. for (i += row; i < term.row; i++) {
  2764. free(term.line[i]);
  2765. free(term.alt[i]);
  2766. }
  2767. /* resize to new width */
  2768. term.specbuf = xrealloc(term.specbuf, col * sizeof(XftGlyphFontSpec));
  2769. /* resize to new height */
  2770. term.line = xrealloc(term.line, row * sizeof(Line));
  2771. term.alt = xrealloc(term.alt, row * sizeof(Line));
  2772. term.dirty = xrealloc(term.dirty, row * sizeof(*term.dirty));
  2773. term.tabs = xrealloc(term.tabs, col * sizeof(*term.tabs));
  2774. /* resize each row to new width, zero-pad if needed */
  2775. for (i = 0; i < minrow; i++) {
  2776. term.line[i] = xrealloc(term.line[i], col * sizeof(Glyph));
  2777. term.alt[i] = xrealloc(term.alt[i], col * sizeof(Glyph));
  2778. }
  2779. /* allocate any new rows */
  2780. for (/* i == minrow */; i < row; i++) {
  2781. term.line[i] = xmalloc(col * sizeof(Glyph));
  2782. term.alt[i] = xmalloc(col * sizeof(Glyph));
  2783. }
  2784. if (col > term.col) {
  2785. bp = term.tabs + term.col;
  2786. memset(bp, 0, sizeof(*term.tabs) * (col - term.col));
  2787. while (--bp > term.tabs && !*bp)
  2788. /* nothing */ ;
  2789. for (bp += tabspaces; bp < term.tabs + col; bp += tabspaces)
  2790. *bp = 1;
  2791. }
  2792. /* update terminal size */
  2793. term.col = col;
  2794. term.row = row;
  2795. /* reset scrolling region */
  2796. tsetscroll(0, row-1);
  2797. /* make use of the LIMIT in tmoveto */
  2798. tmoveto(term.c.x, term.c.y);
  2799. /* Clearing both screens (it makes dirty all lines) */
  2800. c = term.c;
  2801. for (i = 0; i < 2; i++) {
  2802. if (mincol < col && 0 < minrow) {
  2803. tclearregion(mincol, 0, col - 1, minrow - 1);
  2804. }
  2805. if (0 < col && minrow < row) {
  2806. tclearregion(0, minrow, col - 1, row - 1);
  2807. }
  2808. tswapscreen();
  2809. tcursor(CURSOR_LOAD);
  2810. }
  2811. term.c = c;
  2812. }
  2813. void
  2814. xresize(int col, int row)
  2815. {
  2816. xw.tw = MAX(1, col * xw.cw);
  2817. xw.th = MAX(1, row * xw.ch);
  2818. XFreePixmap(xw.dpy, xw.buf);
  2819. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  2820. DefaultDepth(xw.dpy, xw.scr));
  2821. XftDrawChange(xw.draw, xw.buf);
  2822. xclear(0, 0, xw.w, xw.h);
  2823. }
  2824. ushort
  2825. sixd_to_16bit(int x)
  2826. {
  2827. return x == 0 ? 0 : 0x3737 + 0x2828 * x;
  2828. }
  2829. int
  2830. xloadcolor(int i, const char *name, Color *ncolor)
  2831. {
  2832. XRenderColor color = { .alpha = 0xffff };
  2833. if (!name) {
  2834. if (BETWEEN(i, 16, 255)) { /* 256 color */
  2835. if (i < 6*6*6+16) { /* same colors as xterm */
  2836. color.red = sixd_to_16bit( ((i-16)/36)%6 );
  2837. color.green = sixd_to_16bit( ((i-16)/6) %6 );
  2838. color.blue = sixd_to_16bit( ((i-16)/1) %6 );
  2839. } else { /* greyscale */
  2840. color.red = 0x0808 + 0x0a0a * (i - (6*6*6+16));
  2841. color.green = color.blue = color.red;
  2842. }
  2843. return XftColorAllocValue(xw.dpy, xw.vis,
  2844. xw.cmap, &color, ncolor);
  2845. } else
  2846. name = colorname[i];
  2847. }
  2848. return XftColorAllocName(xw.dpy, xw.vis, xw.cmap, name, ncolor);
  2849. }
  2850. void
  2851. xloadcols(void)
  2852. {
  2853. int i;
  2854. static int loaded;
  2855. Color *cp;
  2856. if (loaded) {
  2857. for (cp = dc.col; cp < &dc.col[LEN(dc.col)]; ++cp)
  2858. XftColorFree(xw.dpy, xw.vis, xw.cmap, cp);
  2859. }
  2860. for (i = 0; i < LEN(dc.col); i++)
  2861. if (!xloadcolor(i, NULL, &dc.col[i])) {
  2862. if (colorname[i])
  2863. die("Could not allocate color '%s'\n", colorname[i]);
  2864. else
  2865. die("Could not allocate color %d\n", i);
  2866. }
  2867. loaded = 1;
  2868. }
  2869. int
  2870. xsetcolorname(int x, const char *name)
  2871. {
  2872. Color ncolor;
  2873. if (!BETWEEN(x, 0, LEN(dc.col)))
  2874. return 1;
  2875. if (!xloadcolor(x, name, &ncolor))
  2876. return 1;
  2877. XftColorFree(xw.dpy, xw.vis, xw.cmap, &dc.col[x]);
  2878. dc.col[x] = ncolor;
  2879. return 0;
  2880. }
  2881. void
  2882. xtermclear(int col1, int row1, int col2, int row2)
  2883. {
  2884. XftDrawRect(xw.draw,
  2885. &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
  2886. borderpx + col1 * xw.cw,
  2887. borderpx + row1 * xw.ch,
  2888. (col2-col1+1) * xw.cw,
  2889. (row2-row1+1) * xw.ch);
  2890. }
  2891. /*
  2892. * Absolute coordinates.
  2893. */
  2894. void
  2895. xclear(int x1, int y1, int x2, int y2)
  2896. {
  2897. XftDrawRect(xw.draw,
  2898. &dc.col[IS_SET(MODE_REVERSE)? defaultfg : defaultbg],
  2899. x1, y1, x2-x1, y2-y1);
  2900. }
  2901. void
  2902. xhints(void)
  2903. {
  2904. XClassHint class = {opt_class ? opt_class : termname, termname};
  2905. XWMHints wm = {.flags = InputHint, .input = 1};
  2906. XSizeHints *sizeh = NULL;
  2907. sizeh = XAllocSizeHints();
  2908. sizeh->flags = PSize | PResizeInc | PBaseSize;
  2909. sizeh->height = xw.h;
  2910. sizeh->width = xw.w;
  2911. sizeh->height_inc = xw.ch;
  2912. sizeh->width_inc = xw.cw;
  2913. sizeh->base_height = 2 * borderpx;
  2914. sizeh->base_width = 2 * borderpx;
  2915. if (xw.isfixed) {
  2916. sizeh->flags |= PMaxSize | PMinSize;
  2917. sizeh->min_width = sizeh->max_width = xw.w;
  2918. sizeh->min_height = sizeh->max_height = xw.h;
  2919. }
  2920. if (xw.gm & (XValue|YValue)) {
  2921. sizeh->flags |= USPosition | PWinGravity;
  2922. sizeh->x = xw.l;
  2923. sizeh->y = xw.t;
  2924. sizeh->win_gravity = xgeommasktogravity(xw.gm);
  2925. }
  2926. XSetWMProperties(xw.dpy, xw.win, NULL, NULL, NULL, 0, sizeh, &wm,
  2927. &class);
  2928. XFree(sizeh);
  2929. }
  2930. int
  2931. xgeommasktogravity(int mask)
  2932. {
  2933. switch (mask & (XNegative|YNegative)) {
  2934. case 0:
  2935. return NorthWestGravity;
  2936. case XNegative:
  2937. return NorthEastGravity;
  2938. case YNegative:
  2939. return SouthWestGravity;
  2940. }
  2941. return SouthEastGravity;
  2942. }
  2943. int
  2944. xloadfont(Font *f, FcPattern *pattern)
  2945. {
  2946. FcPattern *match;
  2947. FcResult result;
  2948. match = FcFontMatch(NULL, pattern, &result);
  2949. if (!match)
  2950. return 1;
  2951. if (!(f->match = XftFontOpenPattern(xw.dpy, match))) {
  2952. FcPatternDestroy(match);
  2953. return 1;
  2954. }
  2955. f->set = NULL;
  2956. f->pattern = FcPatternDuplicate(pattern);
  2957. f->ascent = f->match->ascent;
  2958. f->descent = f->match->descent;
  2959. f->lbearing = 0;
  2960. f->rbearing = f->match->max_advance_width;
  2961. f->height = f->ascent + f->descent;
  2962. f->width = f->lbearing + f->rbearing;
  2963. return 0;
  2964. }
  2965. void
  2966. xloadfonts(char *fontstr, double fontsize)
  2967. {
  2968. FcPattern *pattern;
  2969. double fontval;
  2970. float ceilf(float);
  2971. if (fontstr[0] == '-') {
  2972. pattern = XftXlfdParse(fontstr, False, False);
  2973. } else {
  2974. pattern = FcNameParse((FcChar8 *)fontstr);
  2975. }
  2976. if (!pattern)
  2977. die("st: can't open font %s\n", fontstr);
  2978. if (fontsize > 1) {
  2979. FcPatternDel(pattern, FC_PIXEL_SIZE);
  2980. FcPatternDel(pattern, FC_SIZE);
  2981. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, (double)fontsize);
  2982. usedfontsize = fontsize;
  2983. } else {
  2984. if (FcPatternGetDouble(pattern, FC_PIXEL_SIZE, 0, &fontval) ==
  2985. FcResultMatch) {
  2986. usedfontsize = fontval;
  2987. } else if (FcPatternGetDouble(pattern, FC_SIZE, 0, &fontval) ==
  2988. FcResultMatch) {
  2989. usedfontsize = -1;
  2990. } else {
  2991. /*
  2992. * Default font size is 12, if none given. This is to
  2993. * have a known usedfontsize value.
  2994. */
  2995. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, 12);
  2996. usedfontsize = 12;
  2997. }
  2998. defaultfontsize = usedfontsize;
  2999. }
  3000. FcConfigSubstitute(0, pattern, FcMatchPattern);
  3001. FcDefaultSubstitute(pattern);
  3002. if (xloadfont(&dc.font, pattern))
  3003. die("st: can't open font %s\n", fontstr);
  3004. if (usedfontsize < 0) {
  3005. FcPatternGetDouble(dc.font.match->pattern,
  3006. FC_PIXEL_SIZE, 0, &fontval);
  3007. usedfontsize = fontval;
  3008. if (fontsize == 0)
  3009. defaultfontsize = fontval;
  3010. }
  3011. /* Setting character width and height. */
  3012. xw.cw = ceilf(dc.font.width * cwscale);
  3013. xw.ch = ceilf(dc.font.height * chscale);
  3014. FcPatternDel(pattern, FC_SLANT);
  3015. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC);
  3016. if (xloadfont(&dc.ifont, pattern))
  3017. die("st: can't open font %s\n", fontstr);
  3018. FcPatternDel(pattern, FC_WEIGHT);
  3019. FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_BOLD);
  3020. if (xloadfont(&dc.ibfont, pattern))
  3021. die("st: can't open font %s\n", fontstr);
  3022. FcPatternDel(pattern, FC_SLANT);
  3023. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN);
  3024. if (xloadfont(&dc.bfont, pattern))
  3025. die("st: can't open font %s\n", fontstr);
  3026. FcPatternDestroy(pattern);
  3027. }
  3028. void
  3029. xunloadfont(Font *f)
  3030. {
  3031. XftFontClose(xw.dpy, f->match);
  3032. FcPatternDestroy(f->pattern);
  3033. if (f->set)
  3034. FcFontSetDestroy(f->set);
  3035. }
  3036. void
  3037. xunloadfonts(void)
  3038. {
  3039. /* Free the loaded fonts in the font cache. */
  3040. while (frclen > 0)
  3041. XftFontClose(xw.dpy, frc[--frclen].font);
  3042. xunloadfont(&dc.font);
  3043. xunloadfont(&dc.bfont);
  3044. xunloadfont(&dc.ifont);
  3045. xunloadfont(&dc.ibfont);
  3046. }
  3047. void
  3048. xzoom(const Arg *arg)
  3049. {
  3050. Arg larg;
  3051. larg.f = usedfontsize + arg->f;
  3052. xzoomabs(&larg);
  3053. }
  3054. void
  3055. xzoomabs(const Arg *arg)
  3056. {
  3057. xunloadfonts();
  3058. xloadfonts(usedfont, arg->f);
  3059. cresize(0, 0);
  3060. redraw();
  3061. xhints();
  3062. }
  3063. void
  3064. xzoomreset(const Arg *arg)
  3065. {
  3066. Arg larg;
  3067. if (defaultfontsize > 0) {
  3068. larg.f = defaultfontsize;
  3069. xzoomabs(&larg);
  3070. }
  3071. }
  3072. void
  3073. xinit(void)
  3074. {
  3075. XGCValues gcvalues;
  3076. Cursor cursor;
  3077. Window parent;
  3078. pid_t thispid = getpid();
  3079. XColor xmousefg, xmousebg;
  3080. if (!(xw.dpy = XOpenDisplay(NULL)))
  3081. die("Can't open display\n");
  3082. xw.scr = XDefaultScreen(xw.dpy);
  3083. xw.vis = XDefaultVisual(xw.dpy, xw.scr);
  3084. /* font */
  3085. if (!FcInit())
  3086. die("Could not init fontconfig.\n");
  3087. usedfont = (opt_font == NULL)? font : opt_font;
  3088. xloadfonts(usedfont, 0);
  3089. /* colors */
  3090. xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
  3091. xloadcols();
  3092. /* adjust fixed window geometry */
  3093. xw.w = 2 * borderpx + term.col * xw.cw;
  3094. xw.h = 2 * borderpx + term.row * xw.ch;
  3095. if (xw.gm & XNegative)
  3096. xw.l += DisplayWidth(xw.dpy, xw.scr) - xw.w - 2;
  3097. if (xw.gm & YNegative)
  3098. xw.t += DisplayWidth(xw.dpy, xw.scr) - xw.h - 2;
  3099. /* Events */
  3100. xw.attrs.background_pixel = dc.col[defaultbg].pixel;
  3101. xw.attrs.border_pixel = dc.col[defaultbg].pixel;
  3102. xw.attrs.bit_gravity = NorthWestGravity;
  3103. xw.attrs.event_mask = FocusChangeMask | KeyPressMask
  3104. | ExposureMask | VisibilityChangeMask | StructureNotifyMask
  3105. | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
  3106. xw.attrs.colormap = xw.cmap;
  3107. if (!(opt_embed && (parent = strtol(opt_embed, NULL, 0))))
  3108. parent = XRootWindow(xw.dpy, xw.scr);
  3109. xw.win = XCreateWindow(xw.dpy, parent, xw.l, xw.t,
  3110. xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,
  3111. xw.vis, CWBackPixel | CWBorderPixel | CWBitGravity
  3112. | CWEventMask | CWColormap, &xw.attrs);
  3113. memset(&gcvalues, 0, sizeof(gcvalues));
  3114. gcvalues.graphics_exposures = False;
  3115. dc.gc = XCreateGC(xw.dpy, parent, GCGraphicsExposures,
  3116. &gcvalues);
  3117. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  3118. DefaultDepth(xw.dpy, xw.scr));
  3119. XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
  3120. XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
  3121. /* Xft rendering context */
  3122. xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
  3123. /* input methods */
  3124. if ((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  3125. XSetLocaleModifiers("@im=local");
  3126. if ((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  3127. XSetLocaleModifiers("@im=");
  3128. if ((xw.xim = XOpenIM(xw.dpy,
  3129. NULL, NULL, NULL)) == NULL) {
  3130. die("XOpenIM failed. Could not open input"
  3131. " device.\n");
  3132. }
  3133. }
  3134. }
  3135. xw.xic = XCreateIC(xw.xim, XNInputStyle, XIMPreeditNothing
  3136. | XIMStatusNothing, XNClientWindow, xw.win,
  3137. XNFocusWindow, xw.win, NULL);
  3138. if (xw.xic == NULL)
  3139. die("XCreateIC failed. Could not obtain input method.\n");
  3140. /* white cursor, black outline */
  3141. cursor = XCreateFontCursor(xw.dpy, mouseshape);
  3142. XDefineCursor(xw.dpy, xw.win, cursor);
  3143. if (XParseColor(xw.dpy, xw.cmap, colorname[mousefg], &xmousefg) == 0) {
  3144. xmousefg.red = 0xffff;
  3145. xmousefg.green = 0xffff;
  3146. xmousefg.blue = 0xffff;
  3147. }
  3148. if (XParseColor(xw.dpy, xw.cmap, colorname[mousebg], &xmousebg) == 0) {
  3149. xmousebg.red = 0x0000;
  3150. xmousebg.green = 0x0000;
  3151. xmousebg.blue = 0x0000;
  3152. }
  3153. XRecolorCursor(xw.dpy, cursor, &xmousefg, &xmousebg);
  3154. xw.xembed = XInternAtom(xw.dpy, "_XEMBED", False);
  3155. xw.wmdeletewin = XInternAtom(xw.dpy, "WM_DELETE_WINDOW", False);
  3156. xw.netwmname = XInternAtom(xw.dpy, "_NET_WM_NAME", False);
  3157. XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
  3158. xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
  3159. XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
  3160. PropModeReplace, (uchar *)&thispid, 1);
  3161. xresettitle();
  3162. XMapWindow(xw.dpy, xw.win);
  3163. xhints();
  3164. XSync(xw.dpy, False);
  3165. }
  3166. int
  3167. xmakeglyphfontspecs(XftGlyphFontSpec *specs, const Glyph *glyphs, int len, int x, int y)
  3168. {
  3169. float winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch, xp, yp;
  3170. ushort mode, prevmode = USHRT_MAX;
  3171. Font *font = &dc.font;
  3172. int frcflags = FRC_NORMAL;
  3173. float runewidth = xw.cw;
  3174. Rune rune;
  3175. FT_UInt glyphidx;
  3176. FcResult fcres;
  3177. FcPattern *fcpattern, *fontpattern;
  3178. FcFontSet *fcsets[] = { NULL };
  3179. FcCharSet *fccharset;
  3180. int i, f, numspecs = 0;
  3181. for (i = 0, xp = winx, yp = winy + font->ascent; i < len; ++i) {
  3182. /* Fetch rune and mode for current glyph. */
  3183. rune = glyphs[i].u;
  3184. mode = glyphs[i].mode;
  3185. /* Skip dummy wide-character spacing. */
  3186. if (mode == ATTR_WDUMMY)
  3187. continue;
  3188. /* Determine font for glyph if different from previous glyph. */
  3189. if (prevmode != mode) {
  3190. prevmode = mode;
  3191. font = &dc.font;
  3192. frcflags = FRC_NORMAL;
  3193. runewidth = xw.cw * ((mode & ATTR_WIDE) ? 2.0f : 1.0f);
  3194. if ((mode & ATTR_ITALIC) && (mode & ATTR_BOLD)) {
  3195. font = &dc.ibfont;
  3196. frcflags = FRC_ITALICBOLD;
  3197. } else if (mode & ATTR_ITALIC) {
  3198. font = &dc.ifont;
  3199. frcflags = FRC_ITALIC;
  3200. } else if (mode & ATTR_BOLD) {
  3201. font = &dc.bfont;
  3202. frcflags = FRC_BOLD;
  3203. }
  3204. yp = winy + font->ascent;
  3205. }
  3206. /* Lookup character index with default font. */
  3207. glyphidx = XftCharIndex(xw.dpy, font->match, rune);
  3208. if (glyphidx) {
  3209. specs[numspecs].font = font->match;
  3210. specs[numspecs].glyph = glyphidx;
  3211. specs[numspecs].x = (short)xp;
  3212. specs[numspecs].y = (short)yp;
  3213. xp += runewidth;
  3214. numspecs++;
  3215. continue;
  3216. }
  3217. /* Fallback on font cache, search the font cache for match. */
  3218. for (f = 0; f < frclen; f++) {
  3219. glyphidx = XftCharIndex(xw.dpy, frc[f].font, rune);
  3220. /* Everything correct. */
  3221. if (glyphidx && frc[f].flags == frcflags)
  3222. break;
  3223. /* We got a default font for a not found glyph. */
  3224. if (!glyphidx && frc[f].flags == frcflags
  3225. && frc[f].unicodep == rune) {
  3226. break;
  3227. }
  3228. }
  3229. /* Nothing was found. Use fontconfig to find matching font. */
  3230. if (f >= frclen) {
  3231. if (!font->set)
  3232. font->set = FcFontSort(0, font->pattern,
  3233. 1, 0, &fcres);
  3234. fcsets[0] = font->set;
  3235. /*
  3236. * Nothing was found in the cache. Now use
  3237. * some dozen of Fontconfig calls to get the
  3238. * font for one single character.
  3239. *
  3240. * Xft and fontconfig are design failures.
  3241. */
  3242. fcpattern = FcPatternDuplicate(font->pattern);
  3243. fccharset = FcCharSetCreate();
  3244. FcCharSetAddChar(fccharset, rune);
  3245. FcPatternAddCharSet(fcpattern, FC_CHARSET,
  3246. fccharset);
  3247. FcPatternAddBool(fcpattern, FC_SCALABLE, 1);
  3248. FcConfigSubstitute(0, fcpattern,
  3249. FcMatchPattern);
  3250. FcDefaultSubstitute(fcpattern);
  3251. fontpattern = FcFontSetMatch(0, fcsets, 1,
  3252. fcpattern, &fcres);
  3253. /*
  3254. * Overwrite or create the new cache entry.
  3255. */
  3256. if (frclen >= LEN(frc)) {
  3257. frclen = LEN(frc) - 1;
  3258. XftFontClose(xw.dpy, frc[frclen].font);
  3259. frc[frclen].unicodep = 0;
  3260. }
  3261. frc[frclen].font = XftFontOpenPattern(xw.dpy,
  3262. fontpattern);
  3263. frc[frclen].flags = frcflags;
  3264. frc[frclen].unicodep = rune;
  3265. glyphidx = XftCharIndex(xw.dpy, frc[frclen].font, rune);
  3266. f = frclen;
  3267. frclen++;
  3268. FcPatternDestroy(fcpattern);
  3269. FcCharSetDestroy(fccharset);
  3270. }
  3271. specs[numspecs].font = frc[f].font;
  3272. specs[numspecs].glyph = glyphidx;
  3273. specs[numspecs].x = (short)xp;
  3274. specs[numspecs].y = (short)(winy + frc[f].font->ascent);
  3275. xp += runewidth;
  3276. numspecs++;
  3277. }
  3278. return numspecs;
  3279. }
  3280. void
  3281. xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, int y)
  3282. {
  3283. int charlen = len * ((base.mode & ATTR_WIDE) ? 2 : 1);
  3284. int winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch,
  3285. width = charlen * xw.cw;
  3286. Color *fg, *bg, *temp, revfg, revbg, truefg, truebg;
  3287. XRenderColor colfg, colbg;
  3288. XRectangle r;
  3289. /* Determine foreground and background colors based on mode. */
  3290. if (base.fg == defaultfg) {
  3291. if (base.mode & ATTR_ITALIC)
  3292. base.fg = defaultitalic;
  3293. else if ((base.mode & ATTR_ITALIC) && (base.mode & ATTR_BOLD))
  3294. base.fg = defaultitalic;
  3295. else if (base.mode & ATTR_UNDERLINE)
  3296. base.fg = defaultunderline;
  3297. }
  3298. if (IS_TRUECOL(base.fg)) {
  3299. colfg.alpha = 0xffff;
  3300. colfg.red = TRUERED(base.fg);
  3301. colfg.green = TRUEGREEN(base.fg);
  3302. colfg.blue = TRUEBLUE(base.fg);
  3303. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &truefg);
  3304. fg = &truefg;
  3305. } else {
  3306. fg = &dc.col[base.fg];
  3307. }
  3308. if (IS_TRUECOL(base.bg)) {
  3309. colbg.alpha = 0xffff;
  3310. colbg.green = TRUEGREEN(base.bg);
  3311. colbg.red = TRUERED(base.bg);
  3312. colbg.blue = TRUEBLUE(base.bg);
  3313. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &truebg);
  3314. bg = &truebg;
  3315. } else {
  3316. bg = &dc.col[base.bg];
  3317. }
  3318. /* Change basic system colors [0-7] to bright system colors [8-15] */
  3319. if ((base.mode & ATTR_BOLD_FAINT) == ATTR_BOLD && BETWEEN(base.fg, 0, 7))
  3320. fg = &dc.col[base.fg + 8];
  3321. if (IS_SET(MODE_REVERSE)) {
  3322. if (fg == &dc.col[defaultfg]) {
  3323. fg = &dc.col[defaultbg];
  3324. } else {
  3325. colfg.red = ~fg->color.red;
  3326. colfg.green = ~fg->color.green;
  3327. colfg.blue = ~fg->color.blue;
  3328. colfg.alpha = fg->color.alpha;
  3329. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg,
  3330. &revfg);
  3331. fg = &revfg;
  3332. }
  3333. if (bg == &dc.col[defaultbg]) {
  3334. bg = &dc.col[defaultfg];
  3335. } else {
  3336. colbg.red = ~bg->color.red;
  3337. colbg.green = ~bg->color.green;
  3338. colbg.blue = ~bg->color.blue;
  3339. colbg.alpha = bg->color.alpha;
  3340. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg,
  3341. &revbg);
  3342. bg = &revbg;
  3343. }
  3344. }
  3345. if (base.mode & ATTR_REVERSE) {
  3346. temp = fg;
  3347. fg = bg;
  3348. bg = temp;
  3349. }
  3350. if ((base.mode & ATTR_BOLD_FAINT) == ATTR_FAINT) {
  3351. colfg.red = fg->color.red / 2;
  3352. colfg.green = fg->color.green / 2;
  3353. colfg.blue = fg->color.blue / 2;
  3354. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &revfg);
  3355. fg = &revfg;
  3356. }
  3357. if (base.mode & ATTR_BLINK && term.mode & MODE_BLINK)
  3358. fg = bg;
  3359. if (base.mode & ATTR_INVISIBLE)
  3360. fg = bg;
  3361. /* Intelligent cleaning up of the borders. */
  3362. if (x == 0) {
  3363. xclear(0, (y == 0)? 0 : winy, borderpx,
  3364. winy + xw.ch + ((y >= term.row-1)? xw.h : 0));
  3365. }
  3366. if (x + charlen >= term.col) {
  3367. xclear(winx + width, (y == 0)? 0 : winy, xw.w,
  3368. ((y >= term.row-1)? xw.h : (winy + xw.ch)));
  3369. }
  3370. if (y == 0)
  3371. xclear(winx, 0, winx + width, borderpx);
  3372. if (y == term.row-1)
  3373. xclear(winx, winy + xw.ch, winx + width, xw.h);
  3374. /* Clean up the region we want to draw to. */
  3375. XftDrawRect(xw.draw, bg, winx, winy, width, xw.ch);
  3376. /* Set the clip region because Xft is sometimes dirty. */
  3377. r.x = 0;
  3378. r.y = 0;
  3379. r.height = xw.ch;
  3380. r.width = width;
  3381. XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
  3382. /* Render the glyphs. */
  3383. XftDrawGlyphFontSpec(xw.draw, fg, specs, len);
  3384. /* Render underline and strikethrough. */
  3385. if (base.mode & ATTR_UNDERLINE) {
  3386. XftDrawRect(xw.draw, fg, winx, winy + dc.font.ascent + 1,
  3387. width, 1);
  3388. }
  3389. if (base.mode & ATTR_STRUCK) {
  3390. XftDrawRect(xw.draw, fg, winx, winy + 2 * dc.font.ascent / 3,
  3391. width, 1);
  3392. }
  3393. /* Reset clip to none. */
  3394. XftDrawSetClip(xw.draw, 0);
  3395. }
  3396. void
  3397. xdrawglyph(Glyph g, int x, int y)
  3398. {
  3399. int numspecs;
  3400. XftGlyphFontSpec spec;
  3401. numspecs = xmakeglyphfontspecs(&spec, &g, 1, x, y);
  3402. xdrawglyphfontspecs(&spec, g, numspecs, x, y);
  3403. }
  3404. void
  3405. xdrawcursor(void)
  3406. {
  3407. static int oldx = 0, oldy = 0;
  3408. int curx;
  3409. Glyph g = {' ', ATTR_NULL, defaultbg, defaultcs};
  3410. LIMIT(oldx, 0, term.col-1);
  3411. LIMIT(oldy, 0, term.row-1);
  3412. curx = term.c.x;
  3413. /* adjust position if in dummy */
  3414. if (term.line[oldy][oldx].mode & ATTR_WDUMMY)
  3415. oldx--;
  3416. if (term.line[term.c.y][curx].mode & ATTR_WDUMMY)
  3417. curx--;
  3418. g.u = term.line[term.c.y][term.c.x].u;
  3419. /* remove the old cursor */
  3420. xdrawglyph(term.line[oldy][oldx], oldx, oldy);
  3421. if (IS_SET(MODE_HIDE))
  3422. return;
  3423. /* draw the new one */
  3424. if (xw.state & WIN_FOCUSED) {
  3425. switch (xw.cursor) {
  3426. case 0: /* Blinking Block */
  3427. case 1: /* Blinking Block (Default) */
  3428. case 2: /* Steady Block */
  3429. if (IS_SET(MODE_REVERSE)) {
  3430. g.mode |= ATTR_REVERSE;
  3431. g.fg = defaultcs;
  3432. g.bg = defaultfg;
  3433. }
  3434. g.mode |= term.line[term.c.y][curx].mode & ATTR_WIDE;
  3435. xdrawglyph(g, term.c.x, term.c.y);
  3436. break;
  3437. case 3: /* Blinking Underline */
  3438. case 4: /* Steady Underline */
  3439. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3440. borderpx + curx * xw.cw,
  3441. borderpx + (term.c.y + 1) * xw.ch - cursorthickness,
  3442. xw.cw, cursorthickness);
  3443. break;
  3444. case 5: /* Blinking bar */
  3445. case 6: /* Steady bar */
  3446. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3447. borderpx + curx * xw.cw,
  3448. borderpx + term.c.y * xw.ch,
  3449. cursorthickness, xw.ch);
  3450. break;
  3451. }
  3452. } else {
  3453. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3454. borderpx + curx * xw.cw,
  3455. borderpx + term.c.y * xw.ch,
  3456. xw.cw - 1, 1);
  3457. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3458. borderpx + curx * xw.cw,
  3459. borderpx + term.c.y * xw.ch,
  3460. 1, xw.ch - 1);
  3461. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3462. borderpx + (curx + 1) * xw.cw - 1,
  3463. borderpx + term.c.y * xw.ch,
  3464. 1, xw.ch - 1);
  3465. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3466. borderpx + curx * xw.cw,
  3467. borderpx + (term.c.y + 1) * xw.ch - 1,
  3468. xw.cw, 1);
  3469. }
  3470. oldx = curx, oldy = term.c.y;
  3471. }
  3472. void
  3473. xsettitle(char *p)
  3474. {
  3475. XTextProperty prop;
  3476. Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
  3477. &prop);
  3478. XSetWMName(xw.dpy, xw.win, &prop);
  3479. XSetTextProperty(xw.dpy, xw.win, &prop, xw.netwmname);
  3480. XFree(prop.value);
  3481. }
  3482. void
  3483. xresettitle(void)
  3484. {
  3485. xsettitle(opt_title ? opt_title : "st");
  3486. }
  3487. void
  3488. redraw(void)
  3489. {
  3490. tfulldirt();
  3491. draw();
  3492. }
  3493. void
  3494. draw(void)
  3495. {
  3496. drawregion(0, 0, term.col, term.row);
  3497. XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.w,
  3498. xw.h, 0, 0);
  3499. XSetForeground(xw.dpy, dc.gc,
  3500. dc.col[IS_SET(MODE_REVERSE)?
  3501. defaultfg : defaultbg].pixel);
  3502. }
  3503. void
  3504. drawregion(int x1, int y1, int x2, int y2)
  3505. {
  3506. int i, x, y, ox, numspecs;
  3507. Glyph base, new;
  3508. XftGlyphFontSpec* specs;
  3509. int ena_sel = sel.ob.x != -1 && sel.alt == IS_SET(MODE_ALTSCREEN);
  3510. if (!(xw.state & WIN_VISIBLE))
  3511. return;
  3512. for (y = y1; y < y2; y++) {
  3513. if (!term.dirty[y])
  3514. continue;
  3515. xtermclear(0, y, term.col, y);
  3516. term.dirty[y] = 0;
  3517. specs = term.specbuf;
  3518. numspecs = xmakeglyphfontspecs(specs, &term.line[y][x1], x2 - x1, x1, y);
  3519. i = ox = 0;
  3520. for (x = x1; x < x2 && i < numspecs; x++) {
  3521. new = term.line[y][x];
  3522. if (new.mode == ATTR_WDUMMY)
  3523. continue;
  3524. if (ena_sel && selected(x, y))
  3525. new.mode ^= ATTR_REVERSE;
  3526. if (i > 0 && ATTRCMP(base, new)) {
  3527. xdrawglyphfontspecs(specs, base, i, ox, y);
  3528. specs += i;
  3529. numspecs -= i;
  3530. i = 0;
  3531. }
  3532. if (i == 0) {
  3533. ox = x;
  3534. base = new;
  3535. }
  3536. i++;
  3537. }
  3538. if (i > 0)
  3539. xdrawglyphfontspecs(specs, base, i, ox, y);
  3540. }
  3541. xdrawcursor();
  3542. }
  3543. void
  3544. expose(XEvent *ev)
  3545. {
  3546. redraw();
  3547. }
  3548. void
  3549. visibility(XEvent *ev)
  3550. {
  3551. XVisibilityEvent *e = &ev->xvisibility;
  3552. MODBIT(xw.state, e->state != VisibilityFullyObscured, WIN_VISIBLE);
  3553. }
  3554. void
  3555. unmap(XEvent *ev)
  3556. {
  3557. xw.state &= ~WIN_VISIBLE;
  3558. }
  3559. void
  3560. xsetpointermotion(int set)
  3561. {
  3562. MODBIT(xw.attrs.event_mask, set, PointerMotionMask);
  3563. XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask, &xw.attrs);
  3564. }
  3565. void
  3566. xseturgency(int add)
  3567. {
  3568. XWMHints *h = XGetWMHints(xw.dpy, xw.win);
  3569. MODBIT(h->flags, add, XUrgencyHint);
  3570. XSetWMHints(xw.dpy, xw.win, h);
  3571. XFree(h);
  3572. }
  3573. void
  3574. focus(XEvent *ev)
  3575. {
  3576. XFocusChangeEvent *e = &ev->xfocus;
  3577. if (e->mode == NotifyGrab)
  3578. return;
  3579. if (ev->type == FocusIn) {
  3580. XSetICFocus(xw.xic);
  3581. xw.state |= WIN_FOCUSED;
  3582. xseturgency(0);
  3583. if (IS_SET(MODE_FOCUS))
  3584. ttywrite("\033[I", 3);
  3585. } else {
  3586. XUnsetICFocus(xw.xic);
  3587. xw.state &= ~WIN_FOCUSED;
  3588. if (IS_SET(MODE_FOCUS))
  3589. ttywrite("\033[O", 3);
  3590. }
  3591. }
  3592. int
  3593. match(uint mask, uint state)
  3594. {
  3595. return mask == XK_ANY_MOD || mask == (state & ~ignoremod);
  3596. }
  3597. void
  3598. numlock(const Arg *dummy)
  3599. {
  3600. term.numlock ^= 1;
  3601. }
  3602. char*
  3603. kmap(KeySym k, uint state)
  3604. {
  3605. Key *kp;
  3606. int i;
  3607. /* Check for mapped keys out of X11 function keys. */
  3608. for (i = 0; i < LEN(mappedkeys); i++) {
  3609. if (mappedkeys[i] == k)
  3610. break;
  3611. }
  3612. if (i == LEN(mappedkeys)) {
  3613. if ((k & 0xFFFF) < 0xFD00)
  3614. return NULL;
  3615. }
  3616. for (kp = key; kp < key + LEN(key); kp++) {
  3617. if (kp->k != k)
  3618. continue;
  3619. if (!match(kp->mask, state))
  3620. continue;
  3621. if (IS_SET(MODE_APPKEYPAD) ? kp->appkey < 0 : kp->appkey > 0)
  3622. continue;
  3623. if (term.numlock && kp->appkey == 2)
  3624. continue;
  3625. if (IS_SET(MODE_APPCURSOR) ? kp->appcursor < 0 : kp->appcursor > 0)
  3626. continue;
  3627. if (IS_SET(MODE_CRLF) ? kp->crlf < 0 : kp->crlf > 0)
  3628. continue;
  3629. return kp->s;
  3630. }
  3631. return NULL;
  3632. }
  3633. void
  3634. kpress(XEvent *ev)
  3635. {
  3636. XKeyEvent *e = &ev->xkey;
  3637. KeySym ksym;
  3638. char buf[32], *customkey;
  3639. int len;
  3640. Rune c;
  3641. Status status;
  3642. Shortcut *bp;
  3643. if (IS_SET(MODE_KBDLOCK))
  3644. return;
  3645. len = XmbLookupString(xw.xic, e, buf, sizeof buf, &ksym, &status);
  3646. /* 1. shortcuts */
  3647. for (bp = shortcuts; bp < shortcuts + LEN(shortcuts); bp++) {
  3648. if (ksym == bp->keysym && match(bp->mod, e->state)) {
  3649. bp->func(&(bp->arg));
  3650. return;
  3651. }
  3652. }
  3653. /* 2. custom keys from config.h */
  3654. if ((customkey = kmap(ksym, e->state))) {
  3655. ttysend(customkey, strlen(customkey));
  3656. return;
  3657. }
  3658. /* 3. composed string from input method */
  3659. if (len == 0)
  3660. return;
  3661. if (len == 1 && e->state & Mod1Mask) {
  3662. if (IS_SET(MODE_8BIT)) {
  3663. if (*buf < 0177) {
  3664. c = *buf | 0x80;
  3665. len = utf8encode(c, buf);
  3666. }
  3667. } else {
  3668. buf[1] = buf[0];
  3669. buf[0] = '\033';
  3670. len = 2;
  3671. }
  3672. }
  3673. ttysend(buf, len);
  3674. }
  3675. void
  3676. cmessage(XEvent *e)
  3677. {
  3678. /*
  3679. * See xembed specs
  3680. * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
  3681. */
  3682. if (e->xclient.message_type == xw.xembed && e->xclient.format == 32) {
  3683. if (e->xclient.data.l[1] == XEMBED_FOCUS_IN) {
  3684. xw.state |= WIN_FOCUSED;
  3685. xseturgency(0);
  3686. } else if (e->xclient.data.l[1] == XEMBED_FOCUS_OUT) {
  3687. xw.state &= ~WIN_FOCUSED;
  3688. }
  3689. } else if (e->xclient.data.l[0] == xw.wmdeletewin) {
  3690. /* Send SIGHUP to shell */
  3691. kill(pid, SIGHUP);
  3692. exit(0);
  3693. }
  3694. }
  3695. void
  3696. cresize(int width, int height)
  3697. {
  3698. int col, row;
  3699. if (width != 0)
  3700. xw.w = width;
  3701. if (height != 0)
  3702. xw.h = height;
  3703. col = (xw.w - 2 * borderpx) / xw.cw;
  3704. row = (xw.h - 2 * borderpx) / xw.ch;
  3705. tresize(col, row);
  3706. xresize(col, row);
  3707. ttyresize();
  3708. }
  3709. void
  3710. resize(XEvent *e)
  3711. {
  3712. if (e->xconfigure.width == xw.w && e->xconfigure.height == xw.h)
  3713. return;
  3714. cresize(e->xconfigure.width, e->xconfigure.height);
  3715. }
  3716. void
  3717. run(void)
  3718. {
  3719. XEvent ev;
  3720. int w = xw.w, h = xw.h;
  3721. fd_set rfd;
  3722. int xfd = XConnectionNumber(xw.dpy), xev, blinkset = 0, dodraw = 0;
  3723. struct timespec drawtimeout, *tv = NULL, now, last, lastblink;
  3724. long deltatime;
  3725. /* Waiting for window mapping */
  3726. do {
  3727. XNextEvent(xw.dpy, &ev);
  3728. /*
  3729. * This XFilterEvent call is required because of XOpenIM. It
  3730. * does filter out the key event and some client message for
  3731. * the input method too.
  3732. */
  3733. if (XFilterEvent(&ev, None))
  3734. continue;
  3735. if (ev.type == ConfigureNotify) {
  3736. w = ev.xconfigure.width;
  3737. h = ev.xconfigure.height;
  3738. }
  3739. } while (ev.type != MapNotify);
  3740. ttynew();
  3741. cresize(w, h);
  3742. clock_gettime(CLOCK_MONOTONIC, &last);
  3743. lastblink = last;
  3744. for (xev = actionfps;;) {
  3745. FD_ZERO(&rfd);
  3746. FD_SET(cmdfd, &rfd);
  3747. FD_SET(xfd, &rfd);
  3748. if (pselect(MAX(xfd, cmdfd)+1, &rfd, NULL, NULL, tv, NULL) < 0) {
  3749. if (errno == EINTR)
  3750. continue;
  3751. die("select failed: %s\n", strerror(errno));
  3752. }
  3753. if (FD_ISSET(cmdfd, &rfd)) {
  3754. ttyread();
  3755. if (blinktimeout) {
  3756. blinkset = tattrset(ATTR_BLINK);
  3757. if (!blinkset)
  3758. MODBIT(term.mode, 0, MODE_BLINK);
  3759. }
  3760. }
  3761. if (FD_ISSET(xfd, &rfd))
  3762. xev = actionfps;
  3763. clock_gettime(CLOCK_MONOTONIC, &now);
  3764. drawtimeout.tv_sec = 0;
  3765. drawtimeout.tv_nsec = (1000 * 1E6)/ xfps;
  3766. tv = &drawtimeout;
  3767. dodraw = 0;
  3768. if (blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) {
  3769. tsetdirtattr(ATTR_BLINK);
  3770. term.mode ^= MODE_BLINK;
  3771. lastblink = now;
  3772. dodraw = 1;
  3773. }
  3774. deltatime = TIMEDIFF(now, last);
  3775. if (deltatime > 1000 / (xev ? xfps : actionfps)) {
  3776. dodraw = 1;
  3777. last = now;
  3778. }
  3779. if (dodraw) {
  3780. while (XPending(xw.dpy)) {
  3781. XNextEvent(xw.dpy, &ev);
  3782. if (XFilterEvent(&ev, None))
  3783. continue;
  3784. if (handler[ev.type])
  3785. (handler[ev.type])(&ev);
  3786. }
  3787. draw();
  3788. XFlush(xw.dpy);
  3789. if (xev && !FD_ISSET(xfd, &rfd))
  3790. xev--;
  3791. if (!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd)) {
  3792. if (blinkset) {
  3793. if (TIMEDIFF(now, lastblink) \
  3794. > blinktimeout) {
  3795. drawtimeout.tv_nsec = 1000;
  3796. } else {
  3797. drawtimeout.tv_nsec = (1E6 * \
  3798. (blinktimeout - \
  3799. TIMEDIFF(now,
  3800. lastblink)));
  3801. }
  3802. drawtimeout.tv_sec = \
  3803. drawtimeout.tv_nsec / 1E9;
  3804. drawtimeout.tv_nsec %= (long)1E9;
  3805. } else {
  3806. tv = NULL;
  3807. }
  3808. }
  3809. }
  3810. }
  3811. }
  3812. void
  3813. usage(void)
  3814. {
  3815. die("%s " VERSION " (c) 2010-2015 st engineers\n"
  3816. "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
  3817. " [-i] [-t title] [-T title] [-w windowid] [-e command ...]"
  3818. " [command ...]\n"
  3819. " st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
  3820. " [-i] [-t title] [-T title] [-w windowid] -l line"
  3821. " [stty_args ...]\n",
  3822. argv0);
  3823. }
  3824. int
  3825. main(int argc, char *argv[])
  3826. {
  3827. uint cols = 80, rows = 24;
  3828. xw.l = xw.t = 0;
  3829. xw.isfixed = False;
  3830. xw.cursor = cursorshape;
  3831. ARGBEGIN {
  3832. case 'a':
  3833. allowaltscreen = 0;
  3834. break;
  3835. case 'c':
  3836. opt_class = EARGF(usage());
  3837. break;
  3838. case 'e':
  3839. if (argc > 0)
  3840. --argc, ++argv;
  3841. goto run;
  3842. case 'f':
  3843. opt_font = EARGF(usage());
  3844. break;
  3845. case 'g':
  3846. xw.gm = XParseGeometry(EARGF(usage()),
  3847. &xw.l, &xw.t, &cols, &rows);
  3848. break;
  3849. case 'i':
  3850. xw.isfixed = 1;
  3851. break;
  3852. case 'o':
  3853. opt_io = EARGF(usage());
  3854. break;
  3855. case 'l':
  3856. opt_line = EARGF(usage());
  3857. break;
  3858. case 't':
  3859. case 'T':
  3860. opt_title = EARGF(usage());
  3861. break;
  3862. case 'w':
  3863. opt_embed = EARGF(usage());
  3864. break;
  3865. case 'v':
  3866. default:
  3867. usage();
  3868. } ARGEND;
  3869. run:
  3870. if (argc > 0) {
  3871. /* eat all remaining arguments */
  3872. opt_cmd = argv;
  3873. if (!opt_title && !opt_line)
  3874. opt_title = basename(xstrdup(argv[0]));
  3875. }
  3876. setlocale(LC_CTYPE, "");
  3877. XSetLocaleModifiers("");
  3878. tnew(MAX(cols, 1), MAX(rows, 1));
  3879. xinit();
  3880. selinit();
  3881. run();
  3882. return 0;
  3883. }