diff options
author | 2013-01-22 11:37:57 +0200 | |
---|---|---|
committer | 2013-01-22 15:35:06 +0000 | |
commit | 5fc3fc343e5794764c4345f73b25b3f671a80a69 (patch) | |
tree | b8e4225341475c6cb9dda5a3eb4ee862b0e3a979 | |
parent | 1e50274f55cfea707c9640257d7dbfe3f429f7ec (diff) | |
download | poky-5fc3fc343e5794764c4345f73b25b3f671a80a69.tar.gz poky-5fc3fc343e5794764c4345f73b25b3f671a80a69.tar.bz2 poky-5fc3fc343e5794764c4345f73b25b3f671a80a69.zip |
bitbake: persist_data: add get_by_pattern method to API
- one can use get_by_pattern to get a list of values associated
with keys that match the specified pattern
(Bitbake rev: 6ee1f58698e2d782c54ce5aec271bcec26107eac)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/persist_data.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index c69758dd5b..994e61b0a6 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py @@ -125,6 +125,11 @@ class SQLTable(collections.MutableMapping): return len(self) < len(other) + def get_by_pattern(self, pattern): + data = self._execute("SELECT * FROM %s WHERE key LIKE ?;" % + self.table, [pattern]) + return [row[1] for row in data] + def values(self): return list(self.itervalues()) |