Files
deb-gnocchi/gnocchi/indexer/sqlalchemy_extension.py
gordon chung bc81f1c699 Revert "Retire project"
not ready yet.

This reverts commit 35c7613e65.

Change-Id: I381323562fe8233c088c04128742b3c237c3dca1
2017-06-05 13:24:27 +00:00

57 lines
1.7 KiB
Python

# -*- encoding: utf-8 -*-
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import absolute_import
import sqlalchemy
import sqlalchemy_utils
from gnocchi import resource_type
class SchemaMixin(object):
def for_filling(self, dialect):
# NOTE(sileht): This must be used only for patching resource type
# to fill all row with a default value and then switch back the
# server_default to None
if self.fill is None:
return None
# NOTE(sileht): server_default must be converted in sql element
return sqlalchemy.literal(self.fill)
class StringSchema(resource_type.StringSchema, SchemaMixin):
@property
def satype(self):
return sqlalchemy.String(self.max_length)
class UUIDSchema(resource_type.UUIDSchema, SchemaMixin):
satype = sqlalchemy_utils.UUIDType()
def for_filling(self, dialect):
if self.fill is None:
return False # Don't set any server_default
return sqlalchemy.literal(
self.satype.process_bind_param(self.fill, dialect))
class NumberSchema(resource_type.NumberSchema, SchemaMixin):
satype = sqlalchemy.Float(53)
class BoolSchema(resource_type.BoolSchema, SchemaMixin):
satype = sqlalchemy.Boolean