Skip to content

Commit

Permalink
Adding basic Mutation class for mutating data.
Browse files Browse the repository at this point in the history
For now, supporting Mutation.SetCell operation, and
will be adding support for DeleteFromColumn,
DeleteFromFamily and DeleteFromRow shortly.
  • Loading branch information
dhermes committed Jul 30, 2015
1 parent 38f9ff7 commit a461e69
Show file tree
Hide file tree
Showing 2 changed files with 164 additions and 0 deletions.
74 changes: 74 additions & 0 deletions gcloud_bigtable/mutation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Copyright 2015 Google Inc. All rights reserved.
#
# 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.

"""User friendly container for Google Cloud Bigtable Mutation."""


import datetime
import pytz
import six

from gcloud_bigtable._generated import bigtable_data_pb2 as data_pb2


_EPOCH = datetime.datetime.utcfromtimestamp(0).replace(tzinfo=pytz.utc)


class Mutation(object):
"""Accumulator class for Bigtable cell mutations.
Expected to be used in ``MutateRow`` and ``CheckAndMutateRow`` requests.
"""

def __init__(self):
self._pb_mutations = []

def set(self, column_family_id, column_name, value, timestamp=None):
"""Sets a value in this mutation.
:type column_family_id: string
:param column_family_id: The column family that the value is being
added to.
:type column_name: bytes (or string)
:param column_name: The column within the column family that the value
is being added to.
:type value: bytes
:param value: The value to set in the cell.
:type timestamp: :class:`datetime.datetime`
:param timestamp: (Optional) The timestamp of the operation.
:raises: :class:`TypeError` if the ``value`` is not bytes.
"""
if isinstance(column_name, six.text_type):
column_name = column_name.encode('utf-8')
if not isinstance(value, bytes):
raise TypeError('Value for a cell must be bytes.')
if timestamp is None:
# Use -1 for current Bigtable server time.
timestamp_micros = -1
else:
timestamp_seconds = (timestamp - _EPOCH).total_seconds()
timestamp_micros = int(10**6 * timestamp_seconds)

mutation_val = data_pb2.Mutation.SetCell(
family_name=column_family_id,
column_qualifier=column_name,
timestamp_micros=timestamp_micros,
value=value,
)
mutation_pb = data_pb2.Mutation(set_cell=mutation_val)
self._pb_mutations.append(mutation_pb)
90 changes: 90 additions & 0 deletions gcloud_bigtable/test_mutation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Copyright 2015 Google Inc. All rights reserved.
#
# 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.


import unittest2


class TestMutation(unittest2.TestCase):

def _getTargetClass(self):
from gcloud_bigtable.mutation import Mutation
return Mutation

def _makeOne(self, *args, **kwargs):
return self._getTargetClass()(*args, **kwargs)

def test_constructor(self):
mutation = self._makeOne()
self.assertEqual(mutation._pb_mutations, [])

def _set_method_helper(self, column_name=b'column_name',
column_name_bytes=None, timestamp=None,
timestamp_micros=-1):
from gcloud_bigtable._generated import bigtable_data_pb2 as data_pb2

mutation = self._makeOne()
column_family_id = u'column_family_id'
value = b'foobar'
mutation.set(column_family_id, column_name,
value, timestamp=timestamp)

expected_pb = data_pb2.Mutation(
set_cell=data_pb2.Mutation.SetCell(
family_name=column_family_id,
column_qualifier=column_name_bytes or column_name,
timestamp_micros=timestamp_micros,
value=value,
),
)
self.assertEqual(mutation._pb_mutations, [expected_pb])

def test_set(self):
column_name = b'column_name'
self._set_method_helper(column_name=column_name)

def test_set_with_string_column_name(self):
column_name = u'column_name'
column_name_bytes = b'column_name'
self._set_method_helper(column_name=column_name,
column_name_bytes=column_name_bytes)

def test_set_with_non_bytes_value(self):
mutation = self._makeOne()
value = object() # Not bytes
with self.assertRaises(TypeError):
mutation.set(None, None, value)

def test_set_with_non_null_timestamp(self):
import datetime
from gcloud_bigtable import mutation as MUT

microseconds = 898294371
timestamp = MUT._EPOCH + datetime.timedelta(microseconds=microseconds)
self._set_method_helper(timestamp=timestamp,
timestamp_micros=microseconds)

def test_set_with_non_utc_timestamp(self):
import datetime

microseconds = 0
epoch_no_tz = datetime.datetime.utcfromtimestamp(0)
with self.assertRaises(TypeError):
self._set_method_helper(timestamp=epoch_no_tz,
timestamp_micros=microseconds)

def test_set_with_non_datetime_timestamp(self):
timestamp = object() # Not a datetime object.
with self.assertRaises(TypeError):
self._set_method_helper(timestamp=timestamp)

0 comments on commit a461e69

Please sign in to comment.