123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- # -*- coding:utf-8 -*-
- # Copyright 2017 Xiaomi, Inc.
- #
- # 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.
- __author__ = 'Ulric Qin'
- from rrd.store import db
- class Bean(object):
- _tbl = ''
- _id = 'id'
- _cols = ''
- _db = db
- @classmethod
- def insert(cls, data=None):
- if not data:
- raise ValueError('argument data is invalid')
- size = len(data)
- keys = data.keys()
- safe_keys = ['`%s`' % k for k in keys]
- sql = 'INSERT INTO `%s`(%s) VALUES(%s)' % (cls._tbl, ','.join(safe_keys), '%s' + ',%s' * (size - 1))
- last_id = cls._db.insert(sql, [data[key] for key in keys])
- return last_id
- @classmethod
- def delete(cls, where=None, params=None):
- sql = 'DELETE FROM `%s`' % cls._tbl
- if not where:
- return cls._db.update(sql)
- sql += ' WHERE ' + where
- return cls._db.update(sql, params)
- @classmethod
- def delete_one(cls, pk=None):
- sql = 'DELETE FROM `%s` WHERE %s = %%s' % (cls._tbl, cls._id)
- return cls._db.update(sql, [pk])
- @classmethod
- def update(cls, clause=None, params=None):
- sql = 'UPDATE `%s` SET %s' % (cls._tbl, clause)
- return cls._db.update(sql, params)
- @classmethod
- def update_dict(cls, data=None, where='', params=None):
- if not data:
- raise ValueError('argument data is invalid')
- size = len(data)
- keys = data.keys()
- safe_keys = ['`%s`' % k for k in keys]
- values = [data[key] for key in keys]
- arr = ['%s=%%s' % key for key in safe_keys]
- if not where:
- return cls.update(','.join(arr), values)
- else:
- values.extend(params)
- return cls.update(', '.join(arr) + ' WHERE ' + where, values)
- @classmethod
- def select(cls, cols=None, where=None, params=None, order=None, limit=None, page=None, offset=None):
- if cols is None:
- cols = cls._cols
- if params is None:
- params = []
- sql = 'SELECT %s FROM `%s`' % (cols, cls._tbl)
- if where:
- sql = '%s WHERE %s' % (sql, where)
- if order:
- sql = '%s ORDER BY %s' % (sql, order)
- if limit is not None:
- sql = '%s LIMIT %s' % (sql, limit)
- if offset is not None:
- sql = '%s OFFSET %s' % (sql, offset)
- if page is not None:
- offset = (int(page) - 1) * int(limit)
- if offset < 0:
- offset = 0
- sql = '%s OFFSET %s' % (sql, offset)
- return cls._db.query_all(sql, params)
- @classmethod
- def select_vs(cls, where=None, params=None, order=None, limit=None, page=None, offset=None):
- rows = cls.select(where=where, params=params, order=order, limit=limit, page=page, offset=offset)
- return [cls(*row) for row in rows]
- @classmethod
- def read(cls, where=None, params=None):
- vs = cls.select_vs(where=where, params=params)
- if vs:
- return vs[0]
- else:
- return None
- @classmethod
- def get(cls, id_val):
- if not id_val:
- return None
- return cls.read('%s = %%s' % cls._id, [id_val])
- @classmethod
- def column(cls, col=None, where=None, params=None, order=None, limit=None, page=None, offset=None):
- rows = cls.select(col, where, params, order, limit, page, offset)
- return [row[0] for row in rows]
- @classmethod
- def total(cls, where=None, params=None):
- sql = 'SELECT COUNT(1) FROM `%s`' % cls._tbl
- if not where:
- ret = cls._db.query_column(sql)
- return ret[0]
- sql += ' WHERE ' + where
- ret = cls._db.query_column(sql, params)
- return ret[0]
- @classmethod
- def exists(cls, where=None, params=None):
- return cls.total(where, params) > 0
|