1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
|
#!/usr/bin/env python
# Uzbl tabbing wrapper using a fifo socket interface
# Copyright (c) 2009, Tom Adams <tom@holizz.com>
# Copyright (c) 2009, Chris van Dijk <cn.vandijk@hotmail.com>
# Copyright (c) 2009, Mason Larobina <mason.larobina@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Author(s):
# Tom Adams <tom@holizz.com>
# Wrote the original uzbl_tabbed.py as a proof of concept.
#
# Chris van Dijk (quigybo) <cn.vandijk@hotmail.com>
# Made signifigant headway on the old uzbl_tabbing.py script on the
# uzbl wiki <http://www.uzbl.org/wiki/uzbl_tabbed>
#
# Mason Larobina <mason.larobina@gmail.com>
# Rewrite of the uzbl_tabbing.py script to use a fifo socket interface
# and inherit configuration options from the user's uzbl config.
#
# Contributor(s):
# mxey <mxey@ghosthacking.net>
# uzbl_config path now honors XDG_CONFIG_HOME if it exists.
#
# Romain Bignon <romain@peerfuse.org>
# Fix for session restoration code.
#
# Jake Probst <jake.probst@gmail.com>
# Wrote a patch that overflows tabs in the tablist on to new lines when
# running of room.
#
# Devon Jones <devon.jones@gmail.com>
# Fifo command bring_to_front which brings the gtk window to focus.
#
# Simon Lipp (sloonz)
# Various
# Dependencies:
# pygtk - python bindings for gtk.
# pango - python bindings needed for text rendering & layout in gtk widgets.
# pygobject - GLib's GObject bindings for python.
#
# Note: I haven't included version numbers with this dependency list because
# I've only ever tested uzbl_tabbed.py on the latest stable versions of these
# packages in Gentoo's portage. Package names may vary on different systems.
# Configuration:
# Because this version of uzbl_tabbed is able to inherit options from your main
# uzbl configuration file you may wish to configure uzbl tabbed from there.
# Here is a list of configuration options that can be customised and some
# example values for each:
#
# General tabbing options:
# show_tablist = 1
# show_gtk_tabs = 0
# tablist_top = 1
# gtk_tab_pos = (top|left|bottom|right)
# gtk_refresh = 1000
# switch_to_new_tabs = 1
# capture_new_windows = 1
# multiline_tabs = 1
#
# Tab title options:
# tab_titles = 1
# tab_indexes = 1
# new_tab_title = Loading
# max_title_len = 50
# show_ellipsis = 1
#
# Session options:
# save_session = 1
# json_session = 0
# session_file = $HOME/.local/share/uzbl/session
#
# Inherited uzbl options:
# fifo_dir = /tmp
# socket_dir = /tmp
# icon_path = $HOME/.local/share/uzbl/uzbl.png
# status_background = #303030
#
# Misc options:
# window_size = 800,800
# verbose = 0
#
# And uzbl_tabbed.py takes care of the actual binding of the commands via each
# instances fifo socket.
#
# Custom tab styling:
# tab_colours = foreground = "#888" background = "#303030"
# tab_text_colours = foreground = "#bbb"
# selected_tab = foreground = "#fff"
# selected_tab_text = foreground = "green"
# tab_indicate_https = 1
# https_colours = foreground = "#888"
# https_text_colours = foreground = "#9c8e2d"
# selected_https = foreground = "#fff"
# selected_https_text = foreground = "gold"
#
# How these styling values are used are soley defined by the syling policy
# handler below (the function in the config section). So you can for example
# turn the tab text colour Firetruck-Red in the event "error" appears in the
# tab title or some other arbitrary event. You may wish to make a trusted
# hosts file and turn tab titles of tabs visiting trusted hosts purple.
# Issues:
# - new windows are not caught and opened in a new tab.
# - when uzbl_tabbed.py crashes it takes all the children with it.
# - when a new tab is opened when using gtk tabs the tab button itself
# grabs focus from its child for a few seconds.
# - when switch_to_new_tabs is not selected the notebook page is
# maintained but the new window grabs focus (try as I might to stop it).
# Todo:
# - add command line options to use a different session file, not use a
# session file and or open a uri on starup.
# - ellipsize individual tab titles when the tab-list becomes over-crowded
# - add "<" & ">" arrows to tablist to indicate that only a subset of the
# currently open tabs are being displayed on the tablist.
# - add the small tab-list display when both gtk tabs and text vim-like
# tablist are hidden (I.e. [ 1 2 3 4 5 ])
# - check spelling.
# - pass a uzbl socketid to uzbl_tabbed.py and have it assimilated into
# the collective. Resistance is futile!
import pygtk
import gtk
import subprocess
import os
import re
import time
import getopt
import pango
import select
import sys
import gobject
import socket
import random
import hashlib
import atexit
import types
from gobject import io_add_watch, source_remove, timeout_add, IO_IN, IO_HUP
from signal import signal, SIGTERM, SIGINT, SIGCHLD
from optparse import OptionParser, OptionGroup
from traceback import print_exc
pygtk.require('2.0')
_SCRIPTNAME = os.path.basename(sys.argv[0])
def error(msg):
sys.stderr.write("%s: error: %s\n" % (_SCRIPTNAME, msg))
# ============================================================================
# ::: Default configuration section ::::::::::::::::::::::::::::::::::::::::::
# ============================================================================
def xdghome(key, default):
'''Attempts to use the environ XDG_*_HOME paths if they exist otherwise
use $HOME and the default path.'''
xdgkey = "XDG_%s_HOME" % key
if xdgkey in os.environ.keys() and os.environ[xdgkey]:
return os.environ[xdgkey]
return os.path.join(os.environ['HOME'], default)
# Setup xdg paths.
DATA_DIR = os.path.join(xdghome('DATA', '.local/share/'), 'uzbl/')
# Ensure uzbl xdg paths exist
if not os.path.exists(DATA_DIR):
os.makedirs(DATA_DIR)
# All of these settings can be inherited from your uzbl config file.
config = {
# Tab options
'show_tablist': True, # Show text uzbl like statusbar tab-list
'show_gtk_tabs': False, # Show gtk notebook tabs
'tablist_top': True, # Display tab-list at top of window
'gtk_tab_pos': 'top', # Gtk tab position (top|left|bottom|right)
'gtk_refresh': 1000, # Tablist refresh millisecond interval
'switch_to_new_tabs': True, # Upon opening a new tab switch to it
'capture_new_windows': True, # Use uzbl_tabbed to catch new windows
'multiline_tabs': True, # Tabs overflow onto new tablist lines.
# Tab title options
'tab_titles': True, # Display tab titles (else only tab-nums)
'tab_indexes': True, # Display tab nums (else only tab titles)
'new_tab_title': 'Loading', # New tab title
'max_title_len': 50, # Truncate title at n characters
'show_ellipsis': True, # Show ellipsis when truncating titles
# Session options
'save_session': True, # Save session in file when quit
'saved_sessions_dir': os.path.join(DATA_DIR, 'sessions/'),
'session_file': os.path.join(DATA_DIR, 'session'),
# Inherited uzbl options
'fifo_dir': '/tmp', # Path to look for uzbl fifo.
'socket_dir': '/tmp', # Path to look for uzbl socket.
'icon_path': os.path.join(DATA_DIR, 'uzbl.png'),
'status_background': "#303030", # Default background for all panels.
# Misc options
'window_size': "800,800", # width,height in pixels.
'verbose': False, # Print verbose output.
# Add custom tab style definitions to be used by the tab colour policy
# handler here. Because these are added to the config dictionary like
# any other uzbl_tabbed configuration option remember that they can
# be superseeded from your main uzbl config file.
'tab_colours': 'foreground = "#888" background = "#303030"',
'tab_text_colours': 'foreground = "#bbb"',
'selected_tab': 'foreground = "#fff"',
'selected_tab_text': 'foreground = "green"',
'tab_indicate_https': True,
'https_colours': 'foreground = "#888"',
'https_text_colours': 'foreground = "#9c8e2d"',
'selected_https': 'foreground = "#fff"',
'selected_https_text': 'foreground = "gold"',
} # End of config dict.
UZBL_TABBED_VARS = config.keys()
# This is the tab style policy handler. Every time the tablist is updated
# this function is called to determine how to colourise that specific tab
# according the simple/complex rules as defined here. You may even wish to
# move this function into another python script and import it using:
# from mycustomtabbingconfig import colour_selector
# Remember to rename, delete or comment out this function if you do that.
def colour_selector(tabindex, currentpage, uzbl):
'''Tablist styling policy handler. This function must return a tuple of
the form (tab style, text style).'''
# Just as an example:
# if 'error' in uzbl.title:
# if tabindex == currentpage:
# return ('foreground="#fff"', 'foreground="red"')
# return ('foreground="#888"', 'foreground="red"')
# Style tabs to indicate connected via https.
if config['tab_indicate_https'] and uzbl.uri.startswith("https://"):
if tabindex == currentpage:
return (config['selected_https'], config['selected_https_text'])
return (config['https_colours'], config['https_text_colours'])
# Style to indicate selected.
if tabindex == currentpage:
return (config['selected_tab'], config['selected_tab_text'])
# Default tab style.
return (config['tab_colours'], config['tab_text_colours'])
# ============================================================================
# ::: End of configuration section :::::::::::::::::::::::::::::::::::::::::::
# ============================================================================
def echo(msg):
if config['verbose']:
sys.stderr.write("%s: %s\n" % (_SCRIPTNAME, msg))
def counter():
'''To infinity and beyond!'''
i = 0
while True:
i += 1
yield i
def escape(s):
'''Replaces html markup in tab titles that screw around with pango.'''
for (split, glue) in [('&','&'), ('<', '<'), ('>', '>')]:
s = s.replace(split, glue)
return s
class SocketClient:
'''Represents a Uzbl instance, which is not necessarly linked with a UzblInstance'''
# List of UzblInstance objects not already linked with a SocketClient
instances_queue = {}
def __init__(self, socket):
self._buffer = ""
self._socket = socket
self._watchers = [io_add_watch(socket, IO_IN, self._socket_recv),\
io_add_watch(socket, IO_HUP, self._socket_closed)]
self.uzbl = None
def _socket_recv(self, fd, condition):
'''Data available on socket, process it'''
self._feed(self._socket.recv(1024)) #TODO: is io_add_watch edge or level-triggered ?
return True
def _socket_closed(self, fd, condition):
'''Remote client exited'''
self.uzbl.close()
return False
def _feed(self, data):
'''An Uzbl instance sent some data, parse it'''
self._buffer += data
if self.uzbl:
if "\n" in self._buffer:
cmds = self._buffer.split("\n")
if cmds[-1]: # Last command has been received incomplete, don't process it
self._buffer, cmds = cmds[-1], cmds[:-1]
else:
self._buffer = ""
for cmd in cmds:
if cmd:
self.uzbl.parse_command(cmd)
else:
name = re.findall('^EVENT \[(\d+-\d+)\] INSTANCE_START \d+$', self._buffer, re.M)
uzbl = self.instances_queue.get(name[0])
if uzbl:
del self.instances_queue[name[0]]
self.uzbl = uzbl
self.uzbl.got_socket(self)
self._feed("")
def send(self, data):
'''Child socket send function.'''
self._socket.send(data + "\n")
def close(self):
'''Close the connection'''
if self._socket:
self._socket.close()
self._socket = None
map(source_remove, self._watchers)
self._watchers = []
class UzblInstance:
'''Uzbl instance meta-data/meta-action object.'''
def __init__(self, parent, tab, name, uri, title, switch):
self.parent = parent
self.tab = tab
self.name = name
self.title = title
self.tabtitle = ""
self.uri = uri
self._client = None
self._switch = switch # Switch to tab after loading ?
self.title_changed()
def got_socket(self, client):
'''Uzbl instance is now connected'''
self._client = client
self.parent.config_uzbl(self)
if self._switch:
tabid = self.parent.notebook.page_num(self.tab)
self.parent.goto_tab(tabid)
def title_changed(self, gtk_only = True): # GTK-only is for indexes
'''self.title has changed, update the tabs list'''
tab_titles = config['tab_titles']
tab_indexes = config['tab_indexes']
show_ellipsis = config['show_ellipsis']
max_title_len = config['max_title_len']
# Unicode heavy strings do not like being truncated/sliced so by
# re-encoding the string sliced of limbs are removed.
self.tabtitle = self.title[:max_title_len + int(show_ellipsis)]
if type(self.tabtitle) != types.UnicodeType:
self.tabtitle = unicode(self.tabtitle, 'utf-8', 'ignore')
self.tabtitle = self.tabtitle.encode('utf-8', 'ignore').strip()
if show_ellipsis and len(self.tabtitle) != len(self.title):
self.tabtitle += "\xe2\x80\xa6"
gtk_tab_format = "%d %s"
index = self.parent.notebook.page_num(self.tab)
if tab_titles and tab_indexes:
self.parent.notebook.set_tab_label_text(self.tab,
gtk_tab_format % (index, self.tabtitle))
elif tab_titles:
self.parent.notebook.set_tab_label_text(self.tab, self.tabtitle)
else:
self.parent.notebook.set_tab_label_text(self.tab, str(index))
# If instance is current tab, update window title
if index == self.parent.notebook.get_current_page():
title_format = "%s - Uzbl Browser"
self.parent.window.set_title(title_format % self.title)
# Non-GTK tabs
if not gtk_only:
self.parent.update_tablist()
def set(self, key, val):
''' Send the SET command to Uzbl '''
if self._client:
self._client.send('set %s = %s') #TODO: escape chars ?
def exit(self):
''' Ask the Uzbl instance to close '''
if self._client:
self._client.send('exit')
def parse_command(self, cmd):
''' Parse event givent by the Uzbl instance '''
type, _, args = cmd.split(" ", 2)
if type == "EVENT":
type, args = args.split(" ", 1)
if type == "TITLE_CHANGED":
self.title = args.strip()
self.title_changed()
elif type == "VARIABLE_SET":
var, _, val = args.split(" ", 2)
try:
val = int(val)
except:
pass
if var in UZBL_TABBED_VARS:
if config[var] != val:
config[var] = val
if var == "show_gtk_tabs":
self.parent.notebook.set_show_tabs(bool(val))
elif var == "show_tablist" or var == "tablist_top":
self.parent.update_tablist_display()
elif var == "gtk_tab_pos":
self.parent.update_gtk_tab_pos()
elif var == "status_background":
col = gtk.gdk.color_parse(config['status_background'])
self.parent.ebox.modify_bg(gtk.STATE_NORMAL, col)
elif var == "tab_titles" or var == "tab_indexes":
for tab in self.parent.notebook:
self.parent.tabs[tab].title_changed(True)
self.parent.update_tablist()
else:
config[var] = val
if var == "uri":
self.uri = val.strip()
self.parent.update_tablist()
elif type == "NEW_TAB":
self.parent.new_tab(args)
elif type == "NEW_BG_TAB":
self.parent.new_tab(args, '', 0)
elif type == "NEW_TAB_NEXT":
self.parent.new_tab(args, next=True)
elif type == "NEW_BG_TAB_NEXT":
self.parent.new_tab(args, '', 0, next=True)
elif type == "NEXT_TAB":
if args:
self.parent.next_tab(int(args))
else:
self.parent.next_tab()
elif type == "PREV_TAB":
if args:
self.parent.prev_tab(int(args))
else:
self.parent.prev_tab()
elif type == "GOTO_TAB":
self.parent.goto_tab(int(args))
elif type == "FIRST_TAB":
self.parent.goto_tab(0)
elif type == "LAST_TAB":
self.parent.goto_tab(-1)
elif type == "PRESET_TABS":
self.parent.parse_command(["preset"] + args.split())
elif type == "BRING_TO_FRONT":
self.parent.window.present()
elif type == "CLEAN_TABS":
self.parent.clean_slate()
elif type == "EXIT_ALL_TABS":
self.parent.quitrequest()
def close(self):
'''The remote instance exited'''
if self._client:
self._client.close()
self._client = None
class UzblTabbed:
'''A tabbed version of uzbl using gtk.Notebook'''
def __init__(self):
'''Create tablist, window and notebook.'''
self._timers = {}
self._buffer = ""
self._killed = False
self._processes = []
# A list of the recently closed tabs
self._closed = []
# Holds metadata on the uzbl childen open.
self.tabs = {}
# Uzbl sockets (socket => SocketClient)
self.clients = {}
# Generates a unique id for uzbl socket filenames.
self.next_pid = counter().next
# Create main window
self.window = gtk.Window()
try:
window_size = map(int, config['window_size'].split(','))
self.window.set_default_size(*window_size)
except:
print_exc()
error("Invalid value for default_size in config file.")
self.window.set_title("Uzbl Browser")
self.window.set_border_width(0)
# Set main window icon
icon_path = config['icon_path']
if os.path.exists(icon_path):
self.window.set_icon(gtk.gdk.pixbuf_new_from_file(icon_path))
else:
icon_path = '/usr/share/uzbl/examples/data/uzbl.png'
if os.path.exists(icon_path):
self.window.set_icon(gtk.gdk.pixbuf_new_from_file(icon_path))
# Attach main window event handlers
self.window.connect("delete-event", self.quitrequest)
# Create tab list
vbox = gtk.VBox()
self.vbox = vbox
self.window.add(vbox)
ebox = gtk.EventBox()
self.ebox = ebox
self.tablist = gtk.Label()
self.tablist.set_use_markup(True)
self.tablist.set_justify(gtk.JUSTIFY_LEFT)
self.tablist.set_line_wrap(False)
self.tablist.set_selectable(False)
self.tablist.set_padding(2,2)
self.tablist.set_alignment(0,0)
self.tablist.set_ellipsize(pango.ELLIPSIZE_END)
self.tablist.set_text(" ")
self.tablist.show()
ebox.add(self.tablist)
ebox.show()
bgcolor = gtk.gdk.color_parse(config['status_background'])
ebox.modify_bg(gtk.STATE_NORMAL, bgcolor)
# Create notebook
self.notebook = gtk.Notebook()
self.notebook.set_show_tabs(config['show_gtk_tabs'])
# Set tab position
self.update_gtk_tab_pos()
self.notebook.set_show_border(False)
self.notebook.set_scrollable(True)
self.notebook.set_border_width(0)
self.notebook.connect("page-removed", self.tab_closed)
self.notebook.connect("switch-page", self.tab_changed)
self.notebook.connect("page-added", self.tab_opened)
self.notebook.connect("page-reordered", self.tab_reordered)
self.notebook.show()
vbox.pack_start(self.notebook, True, True, 0)
vbox.reorder_child(self.notebook, 1)
self.update_tablist_display()
self.vbox.show()
self.window.show()
self.wid = self.notebook.window.xid
# Store information about the applications fifo and socket.
fifo_filename = 'uzbltabbed_%d.fifo' % os.getpid()
socket_filename = 'uzbltabbed_%d.socket' % os.getpid()
self._fifo = None
self._socket = None
self.fifo_path = os.path.join(config['fifo_dir'], fifo_filename)
self.socket_path = os.path.join(config['socket_dir'], socket_filename)
# Now initialise the fifo and the socket
self.init_fifo()
self.init_socket()
# If we are using sessions then load the last one if it exists.
if config['save_session']:
self.load_session()
def run(self):
'''UzblTabbed main function that calls the gtk loop.'''
if not self.clients and not SocketClient.instances_queue and not self.tabs:
self.new_tab()
gtk_refresh = int(config['gtk_refresh'])
if gtk_refresh < 100:
gtk_refresh = 100
# Make SIGTERM act orderly.
signal(SIGTERM, lambda signum, stack_frame: self.terminate(SIGTERM))
# Catch keyboard interrupts
signal(SIGINT, lambda signum, stack_frame: self.terminate(SIGINT))
# Catch SIGCHLD
signal(SIGCHLD, lambda signum, stack_frame: self.join_children())
try:
gtk.main()
except:
print_exc()
error("encounted error %r" % sys.exc_info()[1])
# Unlink fifo socket
self.unlink_fifo()
self.close_socket()
# Attempt to close all uzbl instances nicely.
self.quitrequest()
# Allow time for all the uzbl instances to quit.
time.sleep(1)
raise
def join_children(self):
'''Find and remove zombie children processes.'''
for p in self._processes:
if p.poll() is not None:
self._processes.remove(p)
def terminate(self, termsig=None):
'''Handle termination signals and exit safely and cleanly.'''
# Not required but at least it lets the user know what killed his
# browsing session.
if termsig == SIGTERM:
error("caught SIGTERM signal")
elif termsig == SIGINT:
error("caught keyboard interrupt")
else:
error("caught unknown signal")
error("commencing infanticide!")
# Sends the exit signal to all uzbl instances.
self.quitrequest()
def init_socket(self):
'''Create interprocess communication socket.'''
def accept(sock, condition):
'''A new uzbl instance was created'''
client, _ = sock.accept()
self.clients[client] = SocketClient(client)
return True
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
sock.bind(self.socket_path)
sock.listen(1)
# Add event handler for IO_IN event.
self._socket = (sock, io_add_watch(sock, IO_IN, accept))
echo("[socket] listening at %r" % self.socket_path)
# Add atexit register to destroy the socket on program termination.
atexit.register(self.close_socket)
def close_socket(self):
'''Close the socket when closing the application'''
if self._socket:
(fd, watcher) = self._socket
source_remove(watcher)
fd.close()
os.unlink(self.socket_path)
self._socket = None
def init_fifo(self):
'''Create interprocess communication fifo.'''
if os.path.exists(self.fifo_path):
if not os.access(self.fifo_path, os.F_OK | os.R_OK | os.W_OK):
os.mkfifo(self.fifo_path)
else:
basedir = os.path.dirname(self.fifo_path)
if not os.path.exists(basedir):
os.makedirs(basedir)
os.mkfifo(self.fifo_path)
# Add event handlers for IO_IN & IO_HUP events.
self.setup_fifo_watchers()
echo("[fifo] listening at %r" % self.fifo_path)
# Add atexit register to destroy the fifo on program termination.
atexit.register(self.unlink_fifo)
def unlink_fifo(self):
'''Unlink the fifo socket. Note: This function is called automatically
on exit by an atexit register.'''
# Make sure the fifo fd is closed.
self.close_fifo()
# And unlink if the real fifo exists.
if os.path.exists(self.fifo_path):
os.unlink(self.fifo_path)
echo("unlinked %r" % self.fifo_path)
def close_fifo(self):
'''Remove all event handlers watching the fifo and close the fd.'''
# Already closed
if self._fifo is None: return
(fd, watchers) = self._fifo
os.close(fd)
# Stop all gobject io watchers watching the fifo.
for gid in watchers:
source_remove(gid)
self._fifo = None
def setup_fifo_watchers(self):
'''Open fifo socket fd and setup gobject IO_IN & IO_HUP event
handlers.'''
# Close currently open fifo fd and kill all watchers
self.close_fifo()
fd = os.open(self.fifo_path, os.O_RDONLY | os.O_NONBLOCK)
# Add gobject io event handlers to the fifo socket.
watchers = [io_add_watch(fd, IO_IN, self.main_fifo_read),\
io_add_watch(fd, IO_HUP, self.main_fifo_hangup)]
self._fifo = (fd, watchers)
def main_fifo_hangup(self, fd, cb_condition):
'''Handle main fifo socket hangups.'''
# Close old fd, open new fifo socket and add io event handlers.
self.setup_fifo_watchers()
# Kill the gobject event handler calling this handler function.
return False
def main_fifo_read(self, fd, cb_condition):
'''Read from main fifo socket.'''
self._buffer = os.read(fd, 1024)
temp = self._buffer.split("\n")
self._buffer = temp.pop()
cmds = [s.strip().split() for s in temp if len(s.strip())]
for cmd in cmds:
try:
#print cmd
self.parse_command(cmd)
except:
print_exc()
error("parse_command: invalid command %s" % ' '.join(cmd))
raise
return True
def parse_command(self, cmd):
'''Parse instructions from uzbl child processes.'''
# Commands ( [] = optional, {} = required )
# new [uri]
# open new tab and head to optional uri.
# close [tab-num]
# close current tab or close via tab id.
# next [n-tabs]
# open next tab or n tabs down. Supports negative indexing.
# prev [n-tabs]
# open prev tab or n tabs down. Supports negative indexing.
# goto {tab-n}
# goto tab n.
# first
# goto first tab.
# last
# goto last tab.
# title {pid} {document-title}
# updates tablist title.
# uri {pid} {document-location}
# updates tablist uri
# bring_to_front
# brings the gtk window to focus.
# exit
# exits uzbl_tabbed.py
if cmd[0] == "new":
if len(cmd) == 2:
self.new_tab(cmd[1])
else:
self.new_tab()
elif cmd[0] == "newfromclip":
uri = subprocess.Popen(['xclip','-selection','clipboard','-o'],\
stdout=subprocess.PIPE).communicate()[0]
if uri:
self.new_tab(uri)
elif cmd[0] == "close":
if len(cmd) == 2:
self.close_tab(int(cmd[1]))
else:
self.close_tab()
elif cmd[0] == "next":
if len(cmd) == 2:
self.next_tab(int(cmd[1]))
else:
self.next_tab()
elif cmd[0] == "prev":
if len(cmd) == 2:
self.prev_tab(int(cmd[1]))
else:
self.prev_tab()
elif cmd[0] == "goto":
self.goto_tab(int(cmd[1]))
elif cmd[0] == "first":
self.goto_tab(0)
elif cmd[0] == "last":
self.goto_tab(-1)
elif cmd[0] in ["title", "uri"]:
if len(cmd) > 2:
uzbl = self.get_tab_by_name(int(cmd[1]))
if uzbl:
old = getattr(uzbl, cmd[0])
new = ' '.join(cmd[2:])
setattr(uzbl, cmd[0], new)
if old != new:
self.update_tablist()
else:
error("parse_command: no uzbl with name %r" % int(cmd[1]))
elif cmd[0] == "preset":
if len(cmd) < 3:
error("parse_command: invalid preset command")
elif cmd[1] == "save":
path = os.path.join(config['saved_sessions_dir'], cmd[2])
self.save_session(path)
elif cmd[1] == "load":
path = os.path.join(config['saved_sessions_dir'], cmd[2])
self.load_session(path)
elif cmd[1] == "del":
path = os.path.join(config['saved_sessions_dir'], cmd[2])
if os.path.isfile(path):
os.remove(path)
else:
error("parse_command: preset %r does not exist." % path)
elif cmd[1] == "list":
uzbl = self.get_tab_by_name(int(cmd[2]))
if uzbl:
if not os.path.isdir(config['saved_sessions_dir']):
js = "js alert('No saved presets.');"
uzbl._client.send(js)
else:
listdir = os.listdir(config['saved_sessions_dir'])
listdir = "\\n".join(listdir)
js = "js alert('Session presets:\\n\\n%s');" % listdir
uzbl._client.send(js)
else:
error("parse_command: unknown tab name.")
else:
error("parse_command: unknown parse command %r"\
% ' '.join(cmd))
elif cmd[0] == "bring_to_front":
self.window.present()
elif cmd[0] == "clean":
self.clean_slate()
elif cmd[0] == "exit":
self.quitrequest()
else:
error("parse_command: unknown command %r" % ' '.join(cmd))
def get_tab_by_name(self, name):
'''Return uzbl instance by name.'''
for (tab, uzbl) in self.tabs.items():
if uzbl.name == name:
return uzbl
return False
def new_tab(self, uri='', title='', switch=None, next=False):
'''Add a new tab to the notebook and start a new instance of uzbl.
Use the switch option to negate config['switch_to_new_tabs'] option
when you need to load multiple tabs at a time (I.e. like when
restoring a session from a file).'''
tab = gtk.Socket()
tab.show()
self.notebook.insert_page(tab, position=next and self.notebook.get_current_page() + 1 or -1)
self.notebook.set_tab_reorderable(tab, True)
sid = tab.get_id()
uri = uri.strip()
name = "%d-%d" % (os.getpid(), self.next_pid())
if switch is None:
switch = config['switch_to_new_tabs']
if not title:
title = config['new_tab_title']
cmd = ['uzbl-browser', '-n', name, '-s', str(sid),
'--connect-socket', self.socket_path, '--uri', uri]
self._processes += [subprocess.Popen(cmd)] # TODO: do i need close_fds=True ?
uzbl = UzblInstance(self, tab, name, uri, title, switch)
SocketClient.instances_queue[name] = uzbl
self.tabs[tab] = uzbl
def clean_slate(self):
'''Close all open tabs and open a fresh brand new one.'''
self.new_tab()
tabs = self.tabs.keys()
for tab in list(self.notebook)[:-1]:
if tab not in tabs: continue
uzbl = self.tabs[tab]
uzbl.exit()
def config_uzbl(self, uzbl):
'''Send bind commands for tab new/close/next/prev to a uzbl
instance.'''
# Set definitions here
# set(key, command back to fifo)
if config['capture_new_windows']:
uzbl.set("new_window", r'new $8')
def goto_tab(self, index):
'''Goto tab n (supports negative indexing).'''
title_format = "%s - Uzbl Browser"
tabs = list(self.notebook)
if 0 <= index < len(tabs):
self.notebook.set_current_page(index)
uzbl = self.tabs[self.notebook.get_nth_page(index)]
self.window.set_title(title_format % uzbl.title)
self.update_tablist()
return None
try:
tab = tabs[index]
# Update index because index might have previously been a
# negative index.
index = tabs.index(tab)
self.notebook.set_current_page(index)
uzbl = self.tabs[self.notebook.get_nth_page(index)]
self.window.set_title(title_format % uzbl.title)
self.update_tablist()
except IndexError:
pass
def next_tab(self, step=1):
'''Switch to next tab or n tabs right.'''
if step < 1:
error("next_tab: invalid step %r" % step)
return None
ntabs = self.notebook.get_n_pages()
tabn = (self.notebook.get_current_page() + step) % ntabs
self.goto_tab(tabn)
def prev_tab(self, step=1):
'''Switch to prev tab or n tabs left.'''
if step < 1:
error("prev_tab: invalid step %r" % step)
return None
ntabs = self.notebook.get_n_pages()
tabn = self.notebook.get_current_page() - step
while tabn < 0: tabn += ntabs
self.goto_tab(tabn)
def close_tab(self, tabn=None):
'''Closes current tab. Supports negative indexing.'''
if tabn is None:
tabn = self.notebook.get_current_page()
else:
try:
tab = list(self.notebook)[tabn]
except IndexError:
error("close_tab: invalid index %r" % tabn)
return None
self.notebook.remove_page(tabn)
def tab_opened(self, notebook, tab, index):
'''Called upon tab creation. Called by page-added signal.'''
if config['switch_to_new_tabs']:
self.notebook.set_focus_child(tab)
else:
oldindex = self.notebook.get_current_page()
oldtab = self.notebook.get_nth_page(oldindex)
self.notebook.set_focus_child(oldtab)
def tab_closed(self, notebook, tab, index):
'''Close the window if no tabs are left. Called by page-removed
signal.'''
if tab in self.tabs.keys():
uzbl = self.tabs[tab]
uzbl.close()
self._closed.append((uzbl.uri, uzbl.title))
self._closed = self._closed[-10:]
del self.tabs[tab]
if self.notebook.get_n_pages() == 0:
if not self._killed and config['save_session']:
if os.path.exists(config['session_file']):
os.remove(config['session_file'])
self.quit()
for tab in self.notebook:
self.tabs[tab].title_changed(True)
self.update_tablist()
return True
def tab_changed(self, notebook, page, index):
'''Refresh tab list. Called by switch-page signal.'''
tab = self.notebook.get_nth_page(index)
self.notebook.set_focus_child(tab)
self.update_tablist(index)
return True
def tab_reordered(self, notebook, page, index):
'''Refresh tab titles. Called by page-reordered signal.'''
for tab in self.notebook:
self.tabs[tab].title_changed(True)
return True
def update_tablist_display(self):
'''Called when show_tablist or tablist_top has changed'''
if self.ebox in self.vbox.get_children():
self.vbox.remove(self.ebox)
if config['show_tablist']:
self.vbox.pack_start(self.ebox, False, False, 0)
if config['tablist_top']:
self.vbox.reorder_child(self.ebox, 0)
else:
self.vbox.reorder_child(self.ebox, 2)
def update_gtk_tab_pos(self):
''' Called when gtk_tab_pos has changed '''
allposes = {'left': gtk.POS_LEFT, 'right':gtk.POS_RIGHT,
'top':gtk.POS_TOP, 'bottom':gtk.POS_BOTTOM}
if config['gtk_tab_pos'] in allposes.keys():
self.notebook.set_tab_pos(allposes[config['gtk_tab_pos']])
def update_tablist(self, curpage=None):
'''Upate tablist status bar.'''
if not config['show_tablist']:
return True
tab_titles = config['tab_titles']
tab_indexes = config['tab_indexes']
multiline_tabs = config['multiline_tabs']
if multiline_tabs:
multiline = []
tabs = self.tabs.keys()
if curpage is None:
curpage = self.notebook.get_current_page()
pango = ""
normal = (config['tab_colours'], config['tab_text_colours'])
selected = (config['selected_tab'], config['selected_tab_text'])
if tab_titles and tab_indexes:
tab_format = "<span %(tabc)s> [ %(index)d <span %(textc)s> %(title)s</span> ] </span>"
elif tab_titles:
tab_format = "<span %(tabc)s> [ <span %(textc)s>%(title)s</span> ] </span>"
else:
tab_format = "<span %(tabc)s> [ <span %(textc)s>%(index)d</span> ] </span>"
for index, tab in enumerate(self.notebook):
if tab not in tabs: continue
uzbl = self.tabs[tab]
title = escape(uzbl.tabtitle)
style = colour_selector(index, curpage, uzbl)
(tabc, textc) = style
if multiline_tabs:
opango = pango
pango += tab_format % locals()
self.tablist.set_markup(pango)
listwidth = self.tablist.get_layout().get_pixel_size()[0]
winwidth = self.window.get_size()[0]
if listwidth > (winwidth - 20):
multiline.append(opango)
pango = tab_format % locals()
else:
pango += tab_format % locals()
if multiline_tabs:
multiline.append(pango)
self.tablist.set_markup(' '.join(multiline))
else:
self.tablist.set_markup(pango)
return True
def save_session(self, session_file=None):
'''Save the current session to file for restoration on next load.'''
if session_file is None:
session_file = config['session_file']
tabs = self.tabs.keys()
lines = "curtab = %d\n" % self.notebook.get_current_page()
for tab in list(self.notebook):
if tab not in tabs:
continue
uzbl = self.tabs[tab]
if not uzbl.uri:
continue
lines += "%s %s\n" % (uzbl.uri, uzbl.title)
if not os.path.isfile(session_file):
dirname = os.path.dirname(session_file)
if not os.path.isdir(dirname):
os.makedirs(dirname)
fh = open(session_file, 'w')
fh.write(lines)
fh.close()
def load_session(self, session_file=None):
'''Load a saved session from file.'''
default_path = False
delete_loaded = False
if session_file is None:
default_path = True
delete_loaded = True
session_file = config['session_file']
if not os.path.isfile(session_file):
return False
fh = open(session_file, 'r')
raw = fh.read()
fh.close()
tabs = []
curtab = 0
lines = filter(None, map(str.strip, raw.split('\n')))
if len(lines) < 2:
error("Error: The session file %r looks invalid." % session_file)
if delete_loaded and os.path.exists(session_file):
os.remove(session_file)
return None
try:
for line in lines:
if line.startswith("curtab"):
curtab = int(line.split()[-1])
else:
uri, title = map(str.strip, line.split(" ", 1))
tabs += [(uri, title),]
except:
print_exc()
error("Warning: failed to load session file %r" % session_file)
return None
# Now populate notebook with the loaded session.
for (index, (uri, title)) in enumerate(tabs):
self.new_tab(uri=uri, title=title, switch=(curtab==index))
# A saved session has been loaded now delete it.
if delete_loaded and os.path.exists(session_file):
os.remove(session_file)
def quitrequest(self, *args):
'''Attempt to close all uzbl instances nicely and exit.'''
self._killed = True
if config['save_session']:
if len(list(self.notebook)) > 1:
self.save_session()
else:
# Notebook has one page open so delete the session file.
if os.path.isfile(config['session_file']):
os.remove(config['session_file'])
for (tab, uzbl) in self.tabs.items():
uzbl.exit()
# Add a gobject timer to make sure the application force-quits after a
# reasonable period. Calling quit when all the tabs haven't had time to
# close should be a last resort.
timer = "force-quit"
timerid = timeout_add(5000, self.quit, timer)
self._timers[timer] = timerid
def quit(self, *args):
'''Cleanup and quit. Called by delete-event signal.'''
# Close the fifo socket, remove any gobject io event handlers and
# delete socket.
self.unlink_fifo()
self.close_socket()
# Remove all gobject timers that are still ticking.
for (timerid, gid) in self._timers.items():
source_remove(gid)
del self._timers[timerid]
try:
gtk.main_quit()
except:
pass
if __name__ == "__main__":
# Build command line parser
usage = "usage: %prog [OPTIONS] {URIS}..."
parser = OptionParser(usage=usage)
parser.add_option('-n', '--no-session', dest='nosession',
action='store_true', help="ignore session saving a loading.")
parser.add_option('-v', '--verbose', dest='verbose',
action='store_true', help='print verbose output.')
# Parse command line options
(options, uris) = parser.parse_args()
if options.nosession:
config['save_session'] = False
if options.verbose:
config['verbose'] = True
if config['verbose']:
import pprint
sys.stderr.write("%s\n" % pprint.pformat(config))
uzbl = UzblTabbed()
# All extra arguments given to uzbl_tabbed.py are interpreted as
# web-locations to opened in new tabs.
lasturi = len(uris)-1
for (index,uri) in enumerate(uris):
uzbl.new_tab(uri, switch=(index==lasturi))
uzbl.run()
|