Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/test-datastore2.py
blob: e8747587c68c129f217ce8fe75f532a7d71df834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# Copyright (C) 2006, One Laptop Per Child
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
from sugar.datastore import datastore
from sugar.datastore.datastore import Text

# Write a text object
metadata = { 'date'    : 1000900000,
             'title'   : 'Thai history',
             'preview' : 'The subject of thai history...',
             'icon-color' : '#C2B00C,#785C78',
           }
text = Text(metadata)
f = open("/tmp/hello.txt", 'w')
try:
    f.write('The subject of thai history blah blah blah, blah blah blah and blah.')
finally:
    f.close()
text.set_file_path(f.name)
handle = datastore.write(text)

# Read back that object
thing = datastore.read(handle)
metadata = thing.get_metadata()
print metadata

file_path = thing.get_file_path()
f = open(file_path)
try:
    print f.read()
finally:
    f.close()

# Retrieve all the objects
objects = datastore.find('')
for obj in objects:
    print obj.get_metadata()['title']