mirror of
https://github.com/yweber/lodel2.git
synced 2025-10-30 19:19:03 +01:00
DataHandlers documentation
This commit is contained in:
parent
aa2db00ccf
commit
6c3a1391d9
1 changed files with 60 additions and 28 deletions
|
|
@ -3,14 +3,16 @@ import warnings
|
|||
import datetime
|
||||
import time
|
||||
import os
|
||||
|
||||
from lodel.context import LodelContext
|
||||
|
||||
|
||||
LodelContext.expose_modules(globals(), {
|
||||
'lodel.leapi.datahandlers.base_classes': ['DataField'],
|
||||
'lodel.exceptions': ['LodelException', 'LodelExceptions',
|
||||
'LodelFatalError', 'DataNoneValid', 'FieldValidationError']})
|
||||
|
||||
|
||||
##
|
||||
## @brief Data field designed to handle boolean values
|
||||
class Boolean(DataField):
|
||||
|
||||
|
|
@ -19,13 +21,17 @@ class Boolean(DataField):
|
|||
|
||||
## @brief A boolean field
|
||||
def __init__(self, **kwargs):
|
||||
##
|
||||
# @remarks Commented out code left in the code base. Consider deletion.
|
||||
#if 'check_data_value' not in kwargs:
|
||||
# kwargs['check_data_value'] = self._check_data_value
|
||||
super().__init__(ftype='bool', **kwargs)
|
||||
|
||||
## @brief Check and cast value in appropriate type
|
||||
# @param value *
|
||||
# @throw FieldValidationError if value is unappropriate or can not be cast
|
||||
##
|
||||
# @brief Checks value.
|
||||
#
|
||||
# @param value mixed:
|
||||
# @throw FieldValidationError: if value is not valid
|
||||
# @return value
|
||||
def _check_data_value(self, value):
|
||||
value = super()._check_data_value(value)
|
||||
|
|
@ -34,7 +40,8 @@ class Boolean(DataField):
|
|||
return value
|
||||
|
||||
|
||||
## @brief Data field designed to handle integer values
|
||||
##
|
||||
# @brief Data field designed to handle integer values.
|
||||
class Integer(DataField):
|
||||
|
||||
help = 'Basic integer field'
|
||||
|
|
@ -44,10 +51,12 @@ class Integer(DataField):
|
|||
def __init__(self, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
|
||||
## @brief Check and cast value in appropriate type
|
||||
# @param value *
|
||||
# @param strict bool : tells if the value must be an integer or a value that can be converted into an integer
|
||||
# @throw FieldValidationError if value is unappropriate or can not be cast
|
||||
##
|
||||
# @brief Checks and casts value in appropriate type
|
||||
#
|
||||
# @param value *:
|
||||
# @param strict bool: Whether the value type should be treated strictly or cast.
|
||||
# @throw FieldValidationError: if value is inappropriate or can not be cast
|
||||
# @return value
|
||||
def _check_data_value(self, value, strict=False):
|
||||
value = super()._check_data_value(value)
|
||||
|
|
@ -59,23 +68,28 @@ class Integer(DataField):
|
|||
else:
|
||||
value = int(float(value))
|
||||
except(ValueError, TypeError):
|
||||
raise FieldValidationError("The value '%s' is not, and will never, be an integer" % value)
|
||||
raise FieldValidationError("The value '%s' is not an integer nor could be cast to." % value)
|
||||
return value
|
||||
|
||||
|
||||
## @brief Data field designed to handle string
|
||||
##
|
||||
# @brief Data field designed to handle string
|
||||
class Varchar(DataField):
|
||||
|
||||
help = 'Basic string (varchar) field. Default size is 64 characters'
|
||||
base_type = 'char'
|
||||
|
||||
## @brief A string field
|
||||
##
|
||||
# @brief A string field
|
||||
#
|
||||
# @brief max_length int: The maximum length of this field
|
||||
def __init__(self, max_length=64, **kwargs):
|
||||
self.max_length = int(max_length)
|
||||
super().__init__(**kwargs)
|
||||
|
||||
## @brief checks if this class can override the given data handler
|
||||
##
|
||||
# @brief checks if this class can override the given data handler
|
||||
#
|
||||
# @param data_handler DataHandler
|
||||
# @return bool
|
||||
def can_override(self, data_handler):
|
||||
|
|
@ -84,10 +98,12 @@ class Varchar(DataField):
|
|||
if data_handler.max_length != self.max_length:
|
||||
return False
|
||||
return True
|
||||
|
||||
## @brief Check and cast value in appropriate type
|
||||
# @param value *
|
||||
# @throw FieldValidationError if value is unappropriate or can not be cast
|
||||
|
||||
##
|
||||
# @brief Check and cast value in appropriate type
|
||||
#
|
||||
# @param value *:
|
||||
# @throw FieldValidationError if value is inappropriate or can not be cast
|
||||
# @return value
|
||||
def _check_data_value(self, value):
|
||||
value = super()._check_data_value(value)
|
||||
|
|
@ -98,25 +114,33 @@ class Varchar(DataField):
|
|||
return value
|
||||
|
||||
|
||||
## @brief Data field designed to handle date & time
|
||||
##
|
||||
# @brief Data field designed to handle date & time
|
||||
class DateTime(DataField):
|
||||
|
||||
help = 'A datetime field. Take two boolean options now_on_update and now_on_create'
|
||||
base_type = 'datetime'
|
||||
|
||||
## @brief A datetime field
|
||||
##
|
||||
# @brief A datetime field
|
||||
#
|
||||
# @param now_on_update bool : If true, the date is set to NOW on update
|
||||
# @param now_on_create bool : If true, the date is set to NEW on creation
|
||||
# @param **kwargs
|
||||
#
|
||||
# @remarks Is it intended that DateTime objects can not be instantiated with
|
||||
# a provided arbitrary string value or something else?
|
||||
def __init__(self, now_on_update=False, now_on_create=False, **kwargs):
|
||||
self.now_on_update = now_on_update
|
||||
self.now_on_create = now_on_create
|
||||
self.datetime_format = '%Y-%m-%d' if 'format' not in kwargs else kwargs['format']
|
||||
super().__init__(**kwargs)
|
||||
|
||||
## @brief Check and cast value in appropriate type
|
||||
# @param value *
|
||||
# @throw FieldValidationError if value is unappropriate or can not be cast
|
||||
##
|
||||
# @brief Check and cast value in appropriate type
|
||||
#
|
||||
# @param value mixed:
|
||||
# @throw FieldValidationError: if value is inappropriate or can not be cast
|
||||
# @return value
|
||||
def _check_data_value(self, value):
|
||||
value = super()._check_data_value(value)
|
||||
|
|
@ -135,15 +159,19 @@ class DateTime(DataField):
|
|||
return cur_value
|
||||
|
||||
|
||||
## @brief Data field designed to handle long string
|
||||
##
|
||||
# @brief Data field designed to handle long string
|
||||
class Text(DataField):
|
||||
|
||||
help = 'A text field (big string)'
|
||||
base_type = 'text'
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
super(self.__class__, self).__init__(ftype='text', **kwargs)
|
||||
|
||||
## @brief Check and cast value in appropriate type
|
||||
|
||||
##
|
||||
# @brief Check and cast value in appropriate type
|
||||
#
|
||||
# @param value *
|
||||
# @throw FieldValidationError if value is unappropriate or can not be cast
|
||||
# @return value
|
||||
|
|
@ -154,18 +182,22 @@ class Text(DataField):
|
|||
return value
|
||||
|
||||
|
||||
## @brief Data field designed to handle Files
|
||||
##
|
||||
# @brief Data field designed to handle Files
|
||||
class File(DataField):
|
||||
|
||||
base_type = 'file'
|
||||
|
||||
## @brief a file field
|
||||
##
|
||||
# @brief a file field
|
||||
#
|
||||
# @param upload_path str : None by default
|
||||
# @param **kwargs
|
||||
def __init__(self, upload_path=None, **kwargs):
|
||||
self.upload_path = upload_path
|
||||
super().__init__(**kwargs)
|
||||
|
||||
# @todo Add here a check for the validity of the given value (should have a correct path syntax)
|
||||
##
|
||||
# @todo Add a check for the validity of the given value (should have a correct path syntax)
|
||||
def _check_data_value(self, value):
|
||||
return super()._check_data_value(value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue