VirtualBox

Ignore:
Timestamp:
May 24, 2011 3:34:06 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
71896
Message:

API+Frontends: Generic network attachment driver support which obsoletes the special case for VDE. Big API cleanup in the same area. Adapt all frontends to these changes (full implementation in VBoxManage, minimum implementation in GUI).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxShell/vboxshell.py

    r36628 r37200  
    818818    def __init__(self, parent, mach):
    819819        XPathNodeHolder.__init__(self, parent, mach, 'nics', XPathNodeVM, 'nics')
    820         self.maxNic = self.getCtx()['vb'].systemProperties.networkAdapterCount
     820        self.maxNic = self.getCtx()['vb'].systemProperties.getMaxNetworkAdapters(self.obj.chipsetType)
    821821    def enum(self):
    822822        children = []
     
    14851485   props = vb.systemProperties
    14861486   print "Machines: %s" %(colPath(ctx,props.defaultMachineFolder))
    1487    print "HDDs:     %s" %(colPath(ctx,props.defaultHardDiskFolder))
    14881487
    14891488   #print "Global shared folders:"
     
    26232622                msg += ', '
    26242623            if int(nat.aliasMode) & aliaskey:
    2625                 msg += '{0}: {1}'.format(aliasmode, 'on')
     2624                msg += '%d: %s' % (aliasmode, 'on')
    26262625            else:
    2627                 msg += '{0}: {1}'.format(aliasmode, 'off')
     2626                msg += '%d: %s' % (aliasmode, 'off')
    26282627        msg += ')'
    26292628        return (0, [msg])
     
    26532652        if tcpsndwnd == 0: tcpsndwnd = 64
    26542653        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);
    26562655        return (0, [msg])
    26572656    else:
    26582657        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])
    26602659            return (1, None)
    26612660        for i in range(2, len(args)):
    26622661            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])
    26642663                return (1, None)
    26652664        a = [args[1]]
     
    26822681    yesno = {0: 'off', 1: 'on'}
    26832682    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)])
    26852684        return (0, [msg])
    26862685    else:
     
    27022701            server = nat.network
    27032702            if server is None:
    2704                 server = '10.0.{0}/24'.format(int(nicnum) + 2)
     2703                server = '10.0.%d/24' % (int(nicnum) + 2)
    27052704            (server,mask) = server.split('/')
    27062705            while server.count('.') != 3:
    27072706                server += '.0'
    27082707            (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)
    27102709        prefix = nat.tftpPrefix
    27112710        if prefix is None:
    2712             prefix = '{0}/TFTP/'.format(ctx['vb'].homeFolder)
     2711            prefix = '%s/TFTP/' % (ctx['vb'].homeFolder)
    27132712        bootfile = nat.tftpBootFile
    27142713        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)
    27172716        return (0, [msg])
    27182717    else:
     
    27462745        for pf in pfs:
    27472746            (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))
    27492748        return (0, msg) # msg is array
    27502749    else:
     
    27852784            msg = '\'%s\'' % (nat.network)
    27862785        else:
    2787             msg = '10.0.{0}.0/24'.format(int(nicnum) + 2)
     2786            msg = '10.0.%d.0/24' % (int(nicnum) + 2)
    27882787        return (0, [msg])
    27892788    else:
     
    28252824        print "please specify vm"
    28262825        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))
    28292828        return 0
    28302829    nicnum = int(args[2])
     
    28522851    elif report is not None:
    28532852        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)
    28552854            print msg
    28562855    return 0
     
    28872886    else:
    28882887        if not args[1].isdigit():
    2889             print '%s isn\'t a number'.format(args[1])
     2888            print '%s isn\'t a number' % (args[1])
    28902889            print (1, None)
    28912890        adapter.lineSpeed = int(args[1])
     
    29242923def nicAttachmentSubCmd(ctx, vm, nicnum, adapter, args):
    29252924    '''
    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>
    29272926    '''
    29282927    if len(args) == 1:
     
    29302929            ctx['global'].constants.NetworkAttachmentType_Null: ('Null', ''),
    29312930            ctx['global'].constants.NetworkAttachmentType_NAT: ('NAT', ''),
    2932             ctx['global'].constants.NetworkAttachmentType_Bridged: ('Bridged', adapter.hostInterface),
     2931            ctx['global'].constants.NetworkAttachmentType_Bridged: ('Bridged', adapter.bridgedInterface),
    29332932            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', ''),
    29362936        }
    29372937        import types
     
    29412941            t = adapter.attachmentType
    29422942        (r, p) = nicAttachmentType[t]
    2943         return (0, 'attachment:{0}, name:{1}'.format(r, p))
     2943        return (0, 'attachment:%s, name:%s' % (r, p))
    29442944    else:
    29452945        nicAttachmentType = {
     
    29472947                'v': lambda: len(args) == 2,
    29482948                'p': lambda: 'do nothing',
    2949                 'f': lambda: adapter.detach()},
     2949                'f': lambda: ctx['global'].constants.NetworkAttachmentType_Null},
    29502950            'NAT': {
    29512951                'v': lambda: len(args) == 2,
    29522952                'p': lambda: 'do nothing',
    2953                 'f': lambda: adapter.attachToNAT()},
     2953                'f': lambda: ctx['global'].constants.NetworkAttachmentType_NAT},
    29542954            'Bridged': {
    29552955                '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},
    29582958            'Internal': {
    29592959                'v': lambda: len(args) == 3,
    29602960                'p': lambda: adapter.__setattr__('internalNetwork', args[2]),
    2961                 'f': lambda: adapter.attachToInternalNetwork()},
     2961                'f': lambda: ctx['global'].constants.NetworkAttachmentType_Internal},
    29622962            'HostOnly': {
    29632963                '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': {
    29672968                '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}
    29702971        }
    29712972        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())
    29732974            return (1, None)
    29742975        if not nicAttachmentType[args[1]]['v']():
     
    29762977            return (1, None)
    29772978        nicAttachmentType[args[1]]['p']()
    2978         nicAttachmentType[args[1]]['f']()
     2979        adapter.attachmentType = nicAttachmentType[args[1]]['f']()
    29792980    return (0, None)
    29802981
     
    30103011
    30113012    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))
    30143015            return 0
    30153016    nicnum = int(args[2])
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette