【发布时间】:2014-03-29 03:01:34
【问题描述】:
我正在编写一个命令(通过manage.py importfiles 运行)以在我自己编写的 Django 文件存储中的真实文件系统上导入给定的目录结构。
def _handle_directory(self, directory_path, directory):
for root, subFolders, files in os.walk(directory_path):
for filename in files:
path = os.path.join(root, filename)
with open(path, 'r') as f:
file_wrapper = FileWrapper(f)
self.cnt_files += 1
new_file = File(directory=directory, filename=filename,
file=file_wrapper, uploader=self.uploader)
new_file.save()
full model can be found at GitHub。 full command is currently on gist.github.com available。
如果您不想检查模型:我的File 类的属性file 是FileField。
复制文件似乎可行,thanks to pajton。尽管如此,我还是收到了一个新异常,我认为,sqlite 编码存在问题。但我不知道如何解决它。 sys.getfilesystemencoding() 的值为mbcs。
Traceback (most recent call last):
File ".\manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "C:\Python27\lib\site-packages\django\core\management\__init__.py", line 399, in execute_from_command_line
utility.execute()
File "C:\Python27\lib\site-packages\django\core\management\__init__.py", line 392, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "C:\Python27\lib\site-packages\django\core\management\base.py", line 242, in run_from_argv
self.execute(*args, **options.__dict__)
File "C:\Python27\lib\site-packages\django\core\management\base.py", line 285, in execute
output = self.handle(*args, **options)
File "D:\Development\github\Palco\engine\filestorage\management\commands\importfiles.py", line 63, in handle
self._handle_directory(args[0], root)
File "D:\Development\github\Palco\engine\filestorage\management\commands\importfiles.py", line 75, in _handle_directory
new_file.save()
File "D:\Development\github\Palco\engine\filestorage\models.py", line 155, in save
super(File, self).save(*args, **kwargs)
File "C:\Python27\lib\site-packages\django\db\models\base.py", line 545, in save
force_update=force_update, update_fields=update_fields)
File "C:\Python27\lib\site-packages\django\db\models\base.py", line 573, in save_base
updated = self._save_table(raw, cls, force_insert, force_update, using, update_fields)
File "C:\Python27\lib\site-packages\django\db\models\base.py", line 635, in _save_table
forced_update)
File "C:\Python27\lib\site-packages\django\db\models\base.py", line 679, in _do_update
return filtered._update(values) > 0
File "C:\Python27\lib\site-packages\django\db\models\query.py", line 507, in _update
return query.get_compiler(self.db).execute_sql(None)
File "C:\Python27\lib\site-packages\django\db\models\sql\compiler.py", line 976, in execute_sql
cursor = super(SQLUpdateCompiler, self).execute_sql(result_type)
File "C:\Python27\lib\site-packages\django\db\models\sql\compiler.py", line 782, in execute_sql
cursor.execute(sql, params)
File "C:\Python27\lib\site-packages\django\db\backends\util.py", line 69, in execute
return super(CursorDebugWrapper, self).execute(sql, params)
File "C:\Python27\lib\site-packages\django\db\backends\util.py", line 53, in execute
return self.cursor.execute(sql, params)
File "C:\Python27\lib\site-packages\django\db\utils.py", line 99, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
File "C:\Python27\lib\site-packages\django\db\backends\util.py", line 53, in execute
return self.cursor.execute(sql, params)
File "C:\Python27\lib\site-packages\django\db\backends\sqlite3\base.py", line 450, in execute
return Database.Cursor.execute(self, query, params)
django.db.utils.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str
). It is highly recommended that you instead just switch your application to Unicode strings.
我在几个方面改变了filename;但这总是错误的。我也尝试了'foo' 或u'foo' 之类的值。 :( 还有.encode()、.decode() 和unidecode 的不同组合。
我很确定,这是filename 的问题。我打印了文件名的当前值,如果文件名包含非 ascii 字符,则会发生异常。
更新 1:我按照 pajton 的建议记录了 sql 查询。这是结果: (第一行是打印文件名的输出)。 D:\temp\prak-gdv-abgabe 是我对这个命令的论据。
Eigene L÷sung.pdf
(0.000) QUERY = u'BEGIN' - PARAMS = (); args=None
(0.000) QUERY = u'INSERT INTO "filestorage_file" ("directory_id", "filename", "file", "size", "content_type", "uploader_id", "datetime", "sha512") VALUES (%s, %
s, %s, %s, %s, %s, %s, %s)' - PARAMS = (164, u'Eigene L\xf6sung.pdf', u'filestorage/5/5b/5bf32077-5531-4de0-95a7-d2ea3e10a17d.pdf', None, None, 8, u'2014-02-26
23:21:17.735000', None); args=[164, 'Eigene L\xc3\xb6sung.pdf', u'filestorage/5/5b/5bf32077-5531-4de0-95a7-d2ea3e10a17d.pdf', None, None, 8, u'2014-02-26 23:21:
17.735000', None]
(0.000) QUERY = u'BEGIN' - PARAMS = (); args=None
(0.000) QUERY = u'UPDATE "filestorage_file" SET "directory_id" = %s, "filename" = %s, "file" = %s, "size" = NULL, "content_type" = %s, "uploader_id" = %s, "date
time" = %s, "sha512" = NULL WHERE "filestorage_file"."id" = %s ' - PARAMS = (164, u'D:\\Temp\\prak-gdv-abgabe\\Protokoll\\Eigene L\ufffdsung.pdf', u'filestorage
/5/5b/5bf32077-5531-4de0-95a7-d2ea3e10a17d.pdf', u'application/pdf', 8, u'2014-02-26 23:21:17.735000', 156); args=(164, 'D:\\Temp\\prak-gdv-abgabe\\Protokoll\\E
igene L\xf6sung.pdf', u'filestorage/5/5b/5bf32077-5531-4de0-95a7-d2ea3e10a17d.pdf', 'application/pdf', 8, u'2014-02-26 23:21:17.735000', 156)
更新 2:(2014-02-27 11:10 UTC)
我的 sqlite 数据库的编码是 UTF-8,由 PRAGMA encoding; 验证。
我检查了我的数据库的记录。
Id | filename | sha512 | size
1 | D:\Temp\prak-gdv-abgabe\Liesmich.html | ffeb8c3d5 | 5927
2 | D:\Temp\prak-gdv-abgabe\Liesmich.md | d206d241f | 407
3 | D:\Temp\prak-gdv-abgabe\Liesmich.txt | d206d241f | 407
4 | D:\Temp\prak-gdv-abgabe\Linux\GDV_Praktikum.bin | 5fc5749ee | 166925
5 | Eigene Lösung.pdf | |
非常有趣的是,失败的条目(id 5)具有预期的文件名,但没有设置 sha512 或大小值。其他条目具有 sha512 和大小的预期值,但不是预期的文件名。这很有趣。看来,custom save()-method of my File class 是我的问题的一部分……但我不明白为什么会发生这些奇怪的事情。
【问题讨论】:
-
你能发布失败的 SQL 吗?检查此问题(第二个答案)以查看如何记录 SQL:stackoverflow.com/questions/2314920/…
-
感谢您的建议。我添加了您要求的信息。此外,我在我的问题 (
mbcs) 中添加了文件系统编码。 -
我用更多信息更新了我的问题,这可能有助于理解这里发生的事情。
-
嗯,看起来很奇怪,因为第一个 INSERT 没问题。我看到您在 save() 中执行了 4 个查询。您可以先更新参数并在最后只调用 super.save() 吗?可以解决这个问题
-
好吧,没用。尽管如此,我认为它提高了性能。但我想知道自己,为什么第二次更新有完整的文件名和路径,而不仅仅是文件名。这真的很奇怪。
标签: python django sqlite encoding