4

我正在编写一个 Rhythmbox 插件来迭代 Rhythmbox 当前已知的所有播客文件(无论是否下载)并用它们做一些事情。

在 Rhythmbox 的 Python Shell 中进行一些研究和测试后,我成功获得了所有对象的列表。但是,当我将其编码到插件中时,出现错误:

(rhythmbox:7500): GLib-GObject-WARNING **: invalid cast from `RhythmDBTree' to `RhythmDBEntryType'

并且entries列表为空:

def run(self, action, shell):
    db = shell.get_property('db')
    entry_type = db.entry_type_get_by_name('podcast-post')
    print entry_type
    entries = []
    db.entry_foreach_by_type(entry_type, entries.append)
    print entries

但是,print entry_type返回:<rhythmdb.EntryType object at 0xa7ea34c (RhythmDBEntryType at 0xa106988)>,因此 db 对象显然是有效的。

我究竟做错了什么?

4

2 回答 2

1

首先尝试重新安装节奏盒。

看看这个输出什么,它在我的机器上运行良好,在你的机器上发布这个输出

from __future__ import print_function

def plugin_create(database):
    print(database)
    db.entry_foreach_by_type(db.entry_type_get_by_name('podcast-post'), print)
于 2010-09-29T01:19:28.500 回答
0

我尝试了以下方法:

def run(self, action, shell):
    db = shell.get_property('db')
    entry_type = db.entry_type_get_by_name('podcast-post')
    print entry_type
    entries = []
    db.entry_foreach(entries.append)
    print entries
    for entry in entries:
        if entry.get_type() == entry_type:
            # process entry...

它工作正常。好吧,这不是最漂亮的解决方案,但可以满足我的需求。

于 2013-02-26T08:49:53.520 回答