~ubuntu-branches/ubuntu/vivid/neutron/vivid-updates

« back to all changes in this revision

Viewing changes to neutron/plugins/vmware/dbexts/vcns_db.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-03-30 11:17:19 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20150330111719-h0gx7233p4jkkgfh
Tags: 1:2015.1~b3-0ubuntu1
* New upstream milestone release:
  - d/control: Align version requirements with upstream.
  - d/control: Add new dependency on oslo-log.
  - d/p/*: Rebase.
  - d/control,d/neutron-plugin-hyperv*: Dropped, decomposed into
    separate project upstream.
  - d/control,d/neutron-plugin-openflow*: Dropped, decomposed into
    separate project upstream.
  - d/neutron-common.install: Add neutron-rootwrap-daemon and 
    neutron-keepalived-state-change binaries.
  - d/rules: Ignore neutron-hyperv-agent when installing; only for Windows.
  - d/neutron-plugin-cisco.install: Drop neutron-cisco-cfg-agent as
    decomposed into separate project upstream.
  - d/neutron-plugin-vmware.install: Drop neutron-check-nsx-config and
    neutron-nsx-manage as decomposed into separate project upstream.
  - d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent.
* d/pydist-overrides: Add overrides for oslo packages.
* d/control: Fixup type in package description (LP: #1263539).
* d/p/fixup-driver-test-execution.patch: Cherry pick fix from upstream VCS
  to support unit test exection in out-of-tree vendor drivers.
* d/neutron-common.postinst: Allow general access to /etc/neutron but limit
  access to root/neutron to /etc/neutron/neutron.conf to support execution
  of unit tests in decomposed vendor drivers.
* d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent
  package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2013 VMware, Inc.
2
 
#
3
 
# All Rights Reserved.
4
 
#
5
 
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
6
 
#    not use this file except in compliance with the License. You may obtain
7
 
#    a copy of the License at
8
 
#
9
 
#         http://www.apache.org/licenses/LICENSE-2.0
10
 
#
11
 
#    Unless required by applicable law or agreed to in writing, software
12
 
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
 
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
 
#    License for the specific language governing permissions and limitations
15
 
#    under the License.
16
 
 
17
 
from neutron.openstack.common import log as logging
18
 
from neutron.plugins.vmware.dbexts import vcns_models
19
 
 
20
 
LOG = logging.getLogger(__name__)
21
 
 
22
 
 
23
 
def add_vcns_router_binding(session, router_id, vse_id, lswitch_id, status):
24
 
    with session.begin(subtransactions=True):
25
 
        binding = vcns_models.VcnsRouterBinding(
26
 
            router_id=router_id,
27
 
            edge_id=vse_id,
28
 
            lswitch_id=lswitch_id,
29
 
            status=status)
30
 
        session.add(binding)
31
 
        return binding
32
 
 
33
 
 
34
 
def get_vcns_router_binding(session, router_id):
35
 
    with session.begin(subtransactions=True):
36
 
        return (session.query(vcns_models.VcnsRouterBinding).
37
 
                filter_by(router_id=router_id).first())
38
 
 
39
 
 
40
 
def update_vcns_router_binding(session, router_id, **kwargs):
41
 
    with session.begin(subtransactions=True):
42
 
        binding = (session.query(vcns_models.VcnsRouterBinding).
43
 
                   filter_by(router_id=router_id).one())
44
 
        for key, value in kwargs.iteritems():
45
 
            binding[key] = value
46
 
 
47
 
 
48
 
def delete_vcns_router_binding(session, router_id):
49
 
    with session.begin(subtransactions=True):
50
 
        binding = (session.query(vcns_models.VcnsRouterBinding).
51
 
                   filter_by(router_id=router_id).one())
52
 
        session.delete(binding)