Changeset 37200 in vbox for trunk/src/VBox/Frontends/VBoxShell
- Timestamp:
- May 24, 2011 3:34:06 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71896
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxShell/vboxshell.py
r36628 r37200 818 818 def __init__(self, parent, mach): 819 819 XPathNodeHolder.__init__(self, parent, mach, 'nics', XPathNodeVM, 'nics') 820 self.maxNic = self.getCtx()['vb'].systemProperties. networkAdapterCount820 self.maxNic = self.getCtx()['vb'].systemProperties.getMaxNetworkAdapters(self.obj.chipsetType) 821 821 def enum(self): 822 822 children = [] … … 1485 1485 props = vb.systemProperties 1486 1486 print "Machines: %s" %(colPath(ctx,props.defaultMachineFolder)) 1487 print "HDDs: %s" %(colPath(ctx,props.defaultHardDiskFolder))1488 1487 1489 1488 #print "Global shared folders:" … … 2623 2622 msg += ', ' 2624 2623 if int(nat.aliasMode) & aliaskey: 2625 msg += ' {0}: {1}'.format(aliasmode, 'on')2624 msg += '%d: %s' % (aliasmode, 'on') 2626 2625 else: 2627 msg += ' {0}: {1}'.format(aliasmode, 'off')2626 msg += '%d: %s' % (aliasmode, 'off') 2628 2627 msg += ')' 2629 2628 return (0, [msg]) … … 2653 2652 if tcpsndwnd == 0: tcpsndwnd = 64 2654 2653 if tcprcvwnd == 0: tcprcvwnd = 64 2655 msg = 'mtu: {0} socket(snd:{1}, rcv:{2}) tcpwnd(snd:{3}, rcv:{4})'.format(mtu, socksndbuf, sockrcvbuf, tcpsndwnd, tcprcvwnd);2654 msg = 'mtu:%s socket(snd:%s, rcv:%s) tcpwnd(snd:%s, rcv:%s)' % (mtu, socksndbuf, sockrcvbuf, tcpsndwnd, tcprcvwnd); 2656 2655 return (0, [msg]) 2657 2656 else: 2658 2657 if args[1] < 16000: 2659 print 'invalid mtu value ( {0} no in range [65 - 16000])'.format(args[1])2658 print 'invalid mtu value (%s not in range [65 - 16000])' % (args[1]) 2660 2659 return (1, None) 2661 2660 for i in range(2, len(args)): 2662 2661 if not args[i].isdigit() or int(args[i]) < 8 or int(args[i]) > 1024: 2663 print 'invalid {0} parameter ({1} not in range [8-1024])'.format(i, args[i])2662 print 'invalid %s parameter (%i not in range [8-1024])' % (i, args[i]) 2664 2663 return (1, None) 2665 2664 a = [args[1]] … … 2682 2681 yesno = {0: 'off', 1: 'on'} 2683 2682 if len(args) == 1: 2684 msg = 'passdomain: {0}, proxy:{1}, usehostresolver:{2}'.format(yesno[int(nat.dnsPassDomain)], yesno[int(nat.dnsProxy)], yesno[int(nat.dnsUseHostResolver)])2683 msg = 'passdomain:%s, proxy:%s, usehostresolver:%s' % (yesno[int(nat.dnsPassDomain)], yesno[int(nat.dnsProxy)], yesno[int(nat.dnsUseHostResolver)]) 2685 2684 return (0, [msg]) 2686 2685 else: … … 2702 2701 server = nat.network 2703 2702 if server is None: 2704 server = '10.0. {0}/24'.format(int(nicnum) + 2)2703 server = '10.0.%d/24' % (int(nicnum) + 2) 2705 2704 (server,mask) = server.split('/') 2706 2705 while server.count('.') != 3: 2707 2706 server += '.0' 2708 2707 (a,b,c,d) = server.split('.') 2709 server = ' {0}.{1}.{2}.4'.format(a,b,c)2708 server = '%d.%d.%d.4' % (a,b,c) 2710 2709 prefix = nat.tftpPrefix 2711 2710 if prefix is None: 2712 prefix = ' {0}/TFTP/'.format(ctx['vb'].homeFolder)2711 prefix = '%s/TFTP/' % (ctx['vb'].homeFolder) 2713 2712 bootfile = nat.tftpBootFile 2714 2713 if bootfile is None: 2715 bootfile = ' {0}.pxe'.format(mach.name)2716 msg = 'server: {0}, prefix:{1}, bootfile:{2}'.format(server, prefix, bootfile)2714 bootfile = '%s.pxe' % (mach.name) 2715 msg = 'server:%s, prefix:%s, bootfile:%s' % (server, prefix, bootfile) 2717 2716 return (0, [msg]) 2718 2717 else: … … 2746 2745 for pf in pfs: 2747 2746 (pfnme, pfp, pfhip, pfhp, pfgip, pfgp) = str(pf).split(',') 2748 msg.append(' {0}: {1} {2}:{3} => {4}:{5}'.format(pfnme, proto[int(pfp)], pfhip, pfhp, pfgip, pfgp))2747 msg.append('%s: %s %s:%s => %s:%s' % (pfnme, proto[int(pfp)], pfhip, pfhp, pfgip, pfgp)) 2749 2748 return (0, msg) # msg is array 2750 2749 else: … … 2785 2784 msg = '\'%s\'' % (nat.network) 2786 2785 else: 2787 msg = '10.0. {0}.0/24'.format(int(nicnum) + 2)2786 msg = '10.0.%d.0/24' % (int(nicnum) + 2) 2788 2787 return (0, [msg]) 2789 2788 else: … … 2825 2824 print "please specify vm" 2826 2825 return 0 2827 if len(args) < 3 or not args[2].isdigit() or int(args[2]) not in range(0, ctx['vb'].systemProperties. networkAdapterCount):2828 print 'please specify adapter num {0} isn\'t in range [0-{1}]'.format(args[2], ctx['vb'].systemProperties.networkAdapterCount)2826 if len(args) < 3 or not args[2].isdigit() or int(args[2]) not in range(0, ctx['vb'].systemProperties.getMaxNetworkAdapters(mach.chipsetType)): 2827 print 'please specify adapter num %d isn\'t in range [0-%d]' % (args[2], ctx['vb'].systemProperties.getMaxNetworkAdapters(mach.chipsetType)) 2829 2828 return 0 2830 2829 nicnum = int(args[2]) … … 2852 2851 elif report is not None: 2853 2852 for r in report: 2854 msg =' {0} nic{1} {2}: {3}'.format(mach.name, nicnum, func, r)2853 msg ='%s nic%d %s: %s' % (mach.name, nicnum, func, r) 2855 2854 print msg 2856 2855 return 0 … … 2887 2886 else: 2888 2887 if not args[1].isdigit(): 2889 print '%s isn\'t a number' .format(args[1])2888 print '%s isn\'t a number' % (args[1]) 2890 2889 print (1, None) 2891 2890 adapter.lineSpeed = int(args[1]) … … 2924 2923 def nicAttachmentSubCmd(ctx, vm, nicnum, adapter, args): 2925 2924 ''' 2926 usage: nic <vm> <nicnum> attachment [Null|NAT|Bridged <interface>|Internal <name>|HostOnly <interface> ]2925 usage: nic <vm> <nicnum> attachment [Null|NAT|Bridged <interface>|Internal <name>|HostOnly <interface> 2927 2926 ''' 2928 2927 if len(args) == 1: … … 2930 2929 ctx['global'].constants.NetworkAttachmentType_Null: ('Null', ''), 2931 2930 ctx['global'].constants.NetworkAttachmentType_NAT: ('NAT', ''), 2932 ctx['global'].constants.NetworkAttachmentType_Bridged: ('Bridged', adapter. hostInterface),2931 ctx['global'].constants.NetworkAttachmentType_Bridged: ('Bridged', adapter.bridgedInterface), 2933 2932 ctx['global'].constants.NetworkAttachmentType_Internal: ('Internal', adapter.internalNetwork), 2934 ctx['global'].constants.NetworkAttachmentType_HostOnly: ('HostOnly', adapter.hostInterface), 2935 #ctx['global'].constants.NetworkAttachmentType_VDE: ('VDE', adapter.VDENetwork) 2933 ctx['global'].constants.NetworkAttachmentType_HostOnly: ('HostOnly', adapter.hostOnlyInterface), 2934 # @todo show details of the generic network attachment type 2935 ctx['global'].constants.NetworkAttachmentType_Generic: ('Generic', ''), 2936 2936 } 2937 2937 import types … … 2941 2941 t = adapter.attachmentType 2942 2942 (r, p) = nicAttachmentType[t] 2943 return (0, 'attachment: {0}, name:{1}'.format(r, p))2943 return (0, 'attachment:%s, name:%s' % (r, p)) 2944 2944 else: 2945 2945 nicAttachmentType = { … … 2947 2947 'v': lambda: len(args) == 2, 2948 2948 'p': lambda: 'do nothing', 2949 'f': lambda: adapter.detach()},2949 'f': lambda: ctx['global'].constants.NetworkAttachmentType_Null}, 2950 2950 'NAT': { 2951 2951 'v': lambda: len(args) == 2, 2952 2952 'p': lambda: 'do nothing', 2953 'f': lambda: adapter.attachToNAT()},2953 'f': lambda: ctx['global'].constants.NetworkAttachmentType_NAT}, 2954 2954 'Bridged': { 2955 2955 'v': lambda: len(args) == 3, 2956 'p': lambda: adapter.__setattr__(' hostInterface', args[2]),2957 'f': lambda: adapter.attachToBridgedInterface()},2956 'p': lambda: adapter.__setattr__('bridgedInterface', args[2]), 2957 'f': lambda: ctx['global'].constants.NetworkAttachmentType_Bridged}, 2958 2958 'Internal': { 2959 2959 'v': lambda: len(args) == 3, 2960 2960 'p': lambda: adapter.__setattr__('internalNetwork', args[2]), 2961 'f': lambda: adapter.attachToInternalNetwork()},2961 'f': lambda: ctx['global'].constants.NetworkAttachmentType_Internal}, 2962 2962 'HostOnly': { 2963 2963 'v': lambda: len(args) == 2, 2964 'p': lambda: adapter.__setattr__('hostInterface', args[2]), 2965 'f': lambda: adapter.attachToHostOnlyInterface()}, 2966 'VDE': { 2964 'p': lambda: adapter.__setattr__('hostOnlyInterface', args[2]), 2965 'f': lambda: ctx['global'].constants.NetworkAttachmentType_HostOnly}, 2966 # @todo implement setting the properties of a generic attachment 2967 'Generic': { 2967 2968 'v': lambda: len(args) == 3, 2968 'p': lambda: adapter.__setattr__('VDENetwork', args[2]),2969 'f': lambda: adapter.attachToVDE()}2969 'p': lambda: 'do nothing', 2970 'f': lambda: ctx['global'].constants.NetworkAttachmentType_Generic} 2970 2971 } 2971 2972 if args[1] not in nicAttachmentType.keys(): 2972 print ' {0} not in acceptable values ({1})'.format(args[1], nicAttachmentType.keys())2973 print '%s not in acceptable values (%s)' % (args[1], nicAttachmentType.keys()) 2973 2974 return (1, None) 2974 2975 if not nicAttachmentType[args[1]]['v'](): … … 2976 2977 return (1, None) 2977 2978 nicAttachmentType[args[1]]['p']() 2978 nicAttachmentType[args[1]]['f']()2979 adapter.attachmentType = nicAttachmentType[args[1]]['f']() 2979 2980 return (0, None) 2980 2981 … … 3010 3011 3011 3012 if len(args) < 3 \ 3012 or int(args[2]) not in range(0, ctx['vb'].systemProperties. networkAdapterCount):3013 print 'please specify adapter num %d isn\'t in range [0-%d]'%(args[2], ctx['vb'].systemProperties. networkAdapterCount)3013 or int(args[2]) not in range(0, ctx['vb'].systemProperties.getMaxNetworkAdapters(vm.chipsetType)): 3014 print 'please specify adapter num %d isn\'t in range [0-%d]'%(args[2], ctx['vb'].systemProperties.getMaxNetworkAdapters(vm.chipsetType)) 3014 3015 return 0 3015 3016 nicnum = int(args[2])
Note:
See TracChangeset
for help on using the changeset viewer.