You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

573 lines
14 KiB

abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
7 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
7 years ago
7 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
7 years ago
7 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
libs/pubsub: relax tx querying (#4070) Some linting/cleanup missed from the initial events refactor Don't panic; instead, return false, error when matching breaks unexpectedly Strip non-numeric chars from values when attempting to match against query values Have the server log during send upon error * cleanup/lint Query#Conditions and do not panic * cleanup/lint Query#Matches and do not panic * cleanup/lint matchValue and do not panic * rever to panic in Query#Conditions * linting * strip alpha chars when attempting to match * add pending log entries * Update libs/pubsub/query/query.go Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * build: update variable names * update matchValue to return an error * update Query#Matches to return an error * update TestMatches * log error in send * Fix tests * Fix TestEmptyQueryMatchesAnything * fix linting * Update libs/pubsub/query/query.go Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * Update libs/pubsub/query/query.go Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * Update libs/pubsub/query/query.go Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * Update libs/pubsub/query/query.go Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * Update libs/pubsub/query/query.go Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * Update libs/pubsub/pubsub.go Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * add missing errors pkg import * update Query#Conditions to return an error * update query pkg unit tests * update TxIndex#Search * update pending changelog
5 years ago
lint: Enable Golint (#4212) * Fix many golint errors * Fix golint errors in the 'lite' package * Don't export Pool.store * Fix typo * Revert unwanted changes * Fix errors in counter package * Fix linter errors in kvstore package * Fix linter error in example package * Fix error in tests package * Fix linter errors in v2 package * Fix linter errors in consensus package * Fix linter errors in evidence package * Fix linter error in fail package * Fix linter errors in query package * Fix linter errors in core package * Fix linter errors in node package * Fix linter errors in mempool package * Fix linter error in conn package * Fix linter errors in pex package * Rename PEXReactor export to Reactor * Fix linter errors in trust package * Fix linter errors in upnp package * Fix linter errors in p2p package * Fix linter errors in proxy package * Fix linter errors in mock_test package * Fix linter error in client_test package * Fix linter errors in coretypes package * Fix linter errors in coregrpc package * Fix linter errors in rpcserver package * Fix linter errors in rpctypes package * Fix linter errors in rpctest package * Fix linter error in json2wal script * Fix linter error in wal2json script * Fix linter errors in kv package * Fix linter error in state package * Fix linter error in grpc_client * Fix linter errors in types package * Fix linter error in version package * Fix remaining errors * Address review comments * Fix broken tests * Reconcile package coregrpc * Fix golangci bot error * Fix new golint errors * Fix broken reference * Enable golint linter * minor changes to bring golint into line * fix failing test * fix pex reactor naming * address PR comments
5 years ago
lint: Enable Golint (#4212) * Fix many golint errors * Fix golint errors in the 'lite' package * Don't export Pool.store * Fix typo * Revert unwanted changes * Fix errors in counter package * Fix linter errors in kvstore package * Fix linter error in example package * Fix error in tests package * Fix linter errors in v2 package * Fix linter errors in consensus package * Fix linter errors in evidence package * Fix linter error in fail package * Fix linter errors in query package * Fix linter errors in core package * Fix linter errors in node package * Fix linter errors in mempool package * Fix linter error in conn package * Fix linter errors in pex package * Rename PEXReactor export to Reactor * Fix linter errors in trust package * Fix linter errors in upnp package * Fix linter errors in p2p package * Fix linter errors in proxy package * Fix linter errors in mock_test package * Fix linter error in client_test package * Fix linter errors in coretypes package * Fix linter errors in coregrpc package * Fix linter errors in rpcserver package * Fix linter errors in rpctypes package * Fix linter errors in rpctest package * Fix linter error in json2wal script * Fix linter error in wal2json script * Fix linter errors in kv package * Fix linter error in state package * Fix linter error in grpc_client * Fix linter errors in types package * Fix linter error in version package * Fix remaining errors * Address review comments * Fix broken tests * Reconcile package coregrpc * Fix golangci bot error * Fix new golint errors * Fix broken reference * Enable golint linter * minor changes to bring golint into line * fix failing test * fix pex reactor naming * address PR comments
5 years ago
lint: Enable Golint (#4212) * Fix many golint errors * Fix golint errors in the 'lite' package * Don't export Pool.store * Fix typo * Revert unwanted changes * Fix errors in counter package * Fix linter errors in kvstore package * Fix linter error in example package * Fix error in tests package * Fix linter errors in v2 package * Fix linter errors in consensus package * Fix linter errors in evidence package * Fix linter error in fail package * Fix linter errors in query package * Fix linter errors in core package * Fix linter errors in node package * Fix linter errors in mempool package * Fix linter error in conn package * Fix linter errors in pex package * Rename PEXReactor export to Reactor * Fix linter errors in trust package * Fix linter errors in upnp package * Fix linter errors in p2p package * Fix linter errors in proxy package * Fix linter errors in mock_test package * Fix linter error in client_test package * Fix linter errors in coretypes package * Fix linter errors in coregrpc package * Fix linter errors in rpcserver package * Fix linter errors in rpctypes package * Fix linter errors in rpctest package * Fix linter error in json2wal script * Fix linter error in wal2json script * Fix linter errors in kv package * Fix linter error in state package * Fix linter error in grpc_client * Fix linter errors in types package * Fix linter error in version package * Fix remaining errors * Address review comments * Fix broken tests * Reconcile package coregrpc * Fix golangci bot error * Fix new golint errors * Fix broken reference * Enable golint linter * minor changes to bring golint into line * fix failing test * fix pex reactor naming * address PR comments
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
abci: Refactor tagging events using list of lists (#3643) ## PR This PR introduces a fundamental breaking change to the structure of ABCI response and tx tags and the way they're processed. Namely, the SDK can support more complex and aggregated events for distribution and slashing. In addition, block responses can include duplicate keys in events. Implement new Event type. An event has a type and a list of KV pairs (ie. list-of-lists). Typical events may look like: "rewards": [{"amount": "5000uatom", "validator": "...", "recipient": "..."}] "sender": [{"address": "...", "balance": "100uatom"}] The events are indexed by {even.type}.{even.attribute[i].key}/.... In this case a client would subscribe or query for rewards.recipient='...' ABCI response types and related types now include Events []Event instead of Tags []cmn.KVPair. PubSub logic now publishes/matches against map[string][]string instead of map[string]string to support duplicate keys in response events (from #1385). A match is successful if the value is found in the slice of strings. closes: #1859 closes: #2905 ## Commits: * Implement Event ABCI type and updates responses to use events * Update messages_test.go * Update kvstore.go * Update event_bus.go * Update subscription.go * Update pubsub.go * Update kvstore.go * Update query logic to handle slice of strings in events * Update Empty#Matches and unit tests * Update pubsub logic * Update EventBus#Publish * Update kv tx indexer * Update godocs * Update ResultEvent to use slice of strings; update RPC * Update more tests * Update abci.md * Check for key in validateAndStringifyEvents * Fix KV indexer to skip empty keys * Fix linting errors * Update CHANGELOG_PENDING.md * Update docs/spec/abci/abci.md Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * Update abci/types/types.proto Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update docs/spec/abci/abci.md Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update libs/pubsub/query/query.go Co-Authored-By: Ethan Buchman <ethan@coinculture.info> * Update match function to match if ANY value matches * Implement TestSubscribeDuplicateKeys * Update TestMatches to include multi-key test cases * Update events.go * Update Query interface godoc * Update match godoc * Add godoc for matchValue * DRY-up tx indexing * Return error from PublishWithEvents in EventBus#Publish * Update PublishEventNewBlockHeader to return an error * Fix build * Update events doc in ABCI * Update ABCI events godoc * Implement TestEventBusPublishEventTxDuplicateKeys * Update TestSubscribeDuplicateKeys to be table-driven * Remove mod file * Remove markdown from events godoc * Implement TestTxSearchDeprecatedIndexing test
5 years ago
  1. package kv
  2. import (
  3. "bytes"
  4. "encoding/hex"
  5. "fmt"
  6. "strconv"
  7. "strings"
  8. "time"
  9. "github.com/pkg/errors"
  10. dbm "github.com/tendermint/tm-db"
  11. "github.com/tendermint/tendermint/libs/pubsub/query"
  12. tmstring "github.com/tendermint/tendermint/libs/strings"
  13. "github.com/tendermint/tendermint/state/txindex"
  14. "github.com/tendermint/tendermint/types"
  15. )
  16. const (
  17. tagKeySeparator = "/"
  18. )
  19. var _ txindex.TxIndexer = (*TxIndex)(nil)
  20. // TxIndex is the simplest possible indexer, backed by key-value storage (levelDB).
  21. type TxIndex struct {
  22. store dbm.DB
  23. compositeKeysToIndex []string
  24. indexAllEvents bool
  25. }
  26. // NewTxIndex creates new KV indexer.
  27. func NewTxIndex(store dbm.DB, options ...func(*TxIndex)) *TxIndex {
  28. txi := &TxIndex{store: store, compositeKeysToIndex: make([]string, 0), indexAllEvents: false}
  29. for _, o := range options {
  30. o(txi)
  31. }
  32. return txi
  33. }
  34. // IndexEvents is an option for setting which composite keys to index.
  35. func IndexEvents(compositeKeys []string) func(*TxIndex) {
  36. return func(txi *TxIndex) {
  37. txi.compositeKeysToIndex = compositeKeys
  38. }
  39. }
  40. // IndexAllEvents is an option for indexing all events.
  41. func IndexAllEvents() func(*TxIndex) {
  42. return func(txi *TxIndex) {
  43. txi.indexAllEvents = true
  44. }
  45. }
  46. // Get gets transaction from the TxIndex storage and returns it or nil if the
  47. // transaction is not found.
  48. func (txi *TxIndex) Get(hash []byte) (*types.TxResult, error) {
  49. if len(hash) == 0 {
  50. return nil, txindex.ErrorEmptyHash
  51. }
  52. rawBytes, err := txi.store.Get(hash)
  53. if err != nil {
  54. panic(err)
  55. }
  56. if rawBytes == nil {
  57. return nil, nil
  58. }
  59. txResult := new(types.TxResult)
  60. err = cdc.UnmarshalBinaryBare(rawBytes, &txResult)
  61. if err != nil {
  62. return nil, fmt.Errorf("error reading TxResult: %v", err)
  63. }
  64. return txResult, nil
  65. }
  66. // AddBatch indexes a batch of transactions using the given list of events. Each
  67. // key that indexed from the tx's events is a composite of the event type and
  68. // the respective attribute's key delimited by a "." (eg. "account.number").
  69. // Any event with an empty type is not indexed.
  70. func (txi *TxIndex) AddBatch(b *txindex.Batch) error {
  71. storeBatch := txi.store.NewBatch()
  72. defer storeBatch.Close()
  73. for _, result := range b.Ops {
  74. hash := result.Tx.Hash()
  75. // index tx by events
  76. txi.indexEvents(result, hash, storeBatch)
  77. // index tx by height
  78. if txi.indexAllEvents || tmstring.StringInSlice(types.TxHeightKey, txi.compositeKeysToIndex) {
  79. storeBatch.Set(keyForHeight(result), hash)
  80. }
  81. // index tx by hash
  82. rawBytes, err := cdc.MarshalBinaryBare(result)
  83. if err != nil {
  84. return err
  85. }
  86. storeBatch.Set(hash, rawBytes)
  87. }
  88. storeBatch.WriteSync()
  89. return nil
  90. }
  91. // Index indexes a single transaction using the given list of events. Each key
  92. // that indexed from the tx's events is a composite of the event type and the
  93. // respective attribute's key delimited by a "." (eg. "account.number").
  94. // Any event with an empty type is not indexed.
  95. func (txi *TxIndex) Index(result *types.TxResult) error {
  96. b := txi.store.NewBatch()
  97. defer b.Close()
  98. hash := result.Tx.Hash()
  99. // index tx by events
  100. txi.indexEvents(result, hash, b)
  101. // index tx by height
  102. if txi.indexAllEvents || tmstring.StringInSlice(types.TxHeightKey, txi.compositeKeysToIndex) {
  103. b.Set(keyForHeight(result), hash)
  104. }
  105. // index tx by hash
  106. rawBytes, err := cdc.MarshalBinaryBare(result)
  107. if err != nil {
  108. return err
  109. }
  110. b.Set(hash, rawBytes)
  111. b.WriteSync()
  112. return nil
  113. }
  114. func (txi *TxIndex) indexEvents(result *types.TxResult, hash []byte, store dbm.SetDeleter) {
  115. for _, event := range result.Result.Events {
  116. // only index events with a non-empty type
  117. if len(event.Type) == 0 {
  118. continue
  119. }
  120. for _, attr := range event.Attributes {
  121. if len(attr.Key) == 0 {
  122. continue
  123. }
  124. compositeTag := fmt.Sprintf("%s.%s", event.Type, string(attr.Key))
  125. if txi.indexAllEvents || tmstring.StringInSlice(compositeTag, txi.compositeKeysToIndex) {
  126. store.Set(keyForEvent(compositeTag, attr.Value, result), hash)
  127. }
  128. }
  129. }
  130. }
  131. // Search performs a search using the given query.
  132. //
  133. // It breaks the query into conditions (like "tx.height > 5"). For each
  134. // condition, it queries the DB index. One special use cases here: (1) if
  135. // "tx.hash" is found, it returns tx result for it (2) for range queries it is
  136. // better for the client to provide both lower and upper bounds, so we are not
  137. // performing a full scan. Results from querying indexes are then intersected
  138. // and returned to the caller, in no particular order.
  139. func (txi *TxIndex) Search(q *query.Query) ([]*types.TxResult, error) {
  140. var hashesInitialized bool
  141. filteredHashes := make(map[string][]byte)
  142. // get a list of conditions (like "tx.height > 5")
  143. conditions, err := q.Conditions()
  144. if err != nil {
  145. return nil, errors.Wrap(err, "error during parsing conditions from query")
  146. }
  147. // if there is a hash condition, return the result immediately
  148. hash, ok, err := lookForHash(conditions)
  149. if err != nil {
  150. return nil, errors.Wrap(err, "error during searching for a hash in the query")
  151. } else if ok {
  152. res, err := txi.Get(hash)
  153. switch {
  154. case err != nil:
  155. return []*types.TxResult{}, errors.Wrap(err, "error while retrieving the result")
  156. case res == nil:
  157. return []*types.TxResult{}, nil
  158. default:
  159. return []*types.TxResult{res}, nil
  160. }
  161. }
  162. // conditions to skip because they're handled before "everything else"
  163. skipIndexes := make([]int, 0)
  164. // extract ranges
  165. // if both upper and lower bounds exist, it's better to get them in order not
  166. // no iterate over kvs that are not within range.
  167. ranges, rangeIndexes := lookForRanges(conditions)
  168. if len(ranges) > 0 {
  169. skipIndexes = append(skipIndexes, rangeIndexes...)
  170. for _, r := range ranges {
  171. if !hashesInitialized {
  172. filteredHashes = txi.matchRange(r, startKey(r.key), filteredHashes, true)
  173. hashesInitialized = true
  174. // Ignore any remaining conditions if the first condition resulted
  175. // in no matches (assuming implicit AND operand).
  176. if len(filteredHashes) == 0 {
  177. break
  178. }
  179. } else {
  180. filteredHashes = txi.matchRange(r, startKey(r.key), filteredHashes, false)
  181. }
  182. }
  183. }
  184. // if there is a height condition ("tx.height=3"), extract it
  185. height := lookForHeight(conditions)
  186. // for all other conditions
  187. for i, c := range conditions {
  188. if intInSlice(i, skipIndexes) {
  189. continue
  190. }
  191. if !hashesInitialized {
  192. filteredHashes = txi.match(c, startKeyForCondition(c, height), filteredHashes, true)
  193. hashesInitialized = true
  194. // Ignore any remaining conditions if the first condition resulted
  195. // in no matches (assuming implicit AND operand).
  196. if len(filteredHashes) == 0 {
  197. break
  198. }
  199. } else {
  200. filteredHashes = txi.match(c, startKeyForCondition(c, height), filteredHashes, false)
  201. }
  202. }
  203. results := make([]*types.TxResult, 0, len(filteredHashes))
  204. for _, h := range filteredHashes {
  205. res, err := txi.Get(h)
  206. if err != nil {
  207. return nil, errors.Wrapf(err, "failed to get Tx{%X}", h)
  208. }
  209. results = append(results, res)
  210. }
  211. return results, nil
  212. }
  213. func lookForHash(conditions []query.Condition) (hash []byte, ok bool, err error) {
  214. for _, c := range conditions {
  215. if c.CompositeKey == types.TxHashKey {
  216. decoded, err := hex.DecodeString(c.Operand.(string))
  217. return decoded, true, err
  218. }
  219. }
  220. return
  221. }
  222. // lookForHeight returns a height if there is an "height=X" condition.
  223. func lookForHeight(conditions []query.Condition) (height int64) {
  224. for _, c := range conditions {
  225. if c.CompositeKey == types.TxHeightKey && c.Op == query.OpEqual {
  226. return c.Operand.(int64)
  227. }
  228. }
  229. return 0
  230. }
  231. // special map to hold range conditions
  232. // Example: account.number => queryRange{lowerBound: 1, upperBound: 5}
  233. type queryRanges map[string]queryRange
  234. type queryRange struct {
  235. lowerBound interface{} // int || time.Time
  236. upperBound interface{} // int || time.Time
  237. key string
  238. includeLowerBound bool
  239. includeUpperBound bool
  240. }
  241. func (r queryRange) lowerBoundValue() interface{} {
  242. if r.lowerBound == nil {
  243. return nil
  244. }
  245. if r.includeLowerBound {
  246. return r.lowerBound
  247. }
  248. switch t := r.lowerBound.(type) {
  249. case int64:
  250. return t + 1
  251. case time.Time:
  252. return t.Unix() + 1
  253. default:
  254. panic("not implemented")
  255. }
  256. }
  257. func (r queryRange) AnyBound() interface{} {
  258. if r.lowerBound != nil {
  259. return r.lowerBound
  260. }
  261. return r.upperBound
  262. }
  263. func (r queryRange) upperBoundValue() interface{} {
  264. if r.upperBound == nil {
  265. return nil
  266. }
  267. if r.includeUpperBound {
  268. return r.upperBound
  269. }
  270. switch t := r.upperBound.(type) {
  271. case int64:
  272. return t - 1
  273. case time.Time:
  274. return t.Unix() - 1
  275. default:
  276. panic("not implemented")
  277. }
  278. }
  279. func lookForRanges(conditions []query.Condition) (ranges queryRanges, indexes []int) {
  280. ranges = make(queryRanges)
  281. for i, c := range conditions {
  282. if isRangeOperation(c.Op) {
  283. r, ok := ranges[c.CompositeKey]
  284. if !ok {
  285. r = queryRange{key: c.CompositeKey}
  286. }
  287. switch c.Op {
  288. case query.OpGreater:
  289. r.lowerBound = c.Operand
  290. case query.OpGreaterEqual:
  291. r.includeLowerBound = true
  292. r.lowerBound = c.Operand
  293. case query.OpLess:
  294. r.upperBound = c.Operand
  295. case query.OpLessEqual:
  296. r.includeUpperBound = true
  297. r.upperBound = c.Operand
  298. }
  299. ranges[c.CompositeKey] = r
  300. indexes = append(indexes, i)
  301. }
  302. }
  303. return ranges, indexes
  304. }
  305. func isRangeOperation(op query.Operator) bool {
  306. switch op {
  307. case query.OpGreater, query.OpGreaterEqual, query.OpLess, query.OpLessEqual:
  308. return true
  309. default:
  310. return false
  311. }
  312. }
  313. // match returns all matching txs by hash that meet a given condition and start
  314. // key. An already filtered result (filteredHashes) is provided such that any
  315. // non-intersecting matches are removed.
  316. //
  317. // NOTE: filteredHashes may be empty if no previous condition has matched.
  318. func (txi *TxIndex) match(
  319. c query.Condition,
  320. startKeyBz []byte,
  321. filteredHashes map[string][]byte,
  322. firstRun bool,
  323. ) map[string][]byte {
  324. // A previous match was attempted but resulted in no matches, so we return
  325. // no matches (assuming AND operand).
  326. if !firstRun && len(filteredHashes) == 0 {
  327. return filteredHashes
  328. }
  329. tmpHashes := make(map[string][]byte)
  330. switch {
  331. case c.Op == query.OpEqual:
  332. it, err := dbm.IteratePrefix(txi.store, startKeyBz)
  333. if err != nil {
  334. panic(err)
  335. }
  336. defer it.Close()
  337. for ; it.Valid(); it.Next() {
  338. tmpHashes[string(it.Value())] = it.Value()
  339. }
  340. case c.Op == query.OpContains:
  341. // XXX: startKey does not apply here.
  342. // For example, if startKey = "account.owner/an/" and search query = "account.owner CONTAINS an"
  343. // we can't iterate with prefix "account.owner/an/" because we might miss keys like "account.owner/Ulan/"
  344. it, err := dbm.IteratePrefix(txi.store, startKey(c.CompositeKey))
  345. if err != nil {
  346. panic(err)
  347. }
  348. defer it.Close()
  349. for ; it.Valid(); it.Next() {
  350. if !isTagKey(it.Key()) {
  351. continue
  352. }
  353. if strings.Contains(extractValueFromKey(it.Key()), c.Operand.(string)) {
  354. tmpHashes[string(it.Value())] = it.Value()
  355. }
  356. }
  357. default:
  358. panic("other operators should be handled already")
  359. }
  360. if len(tmpHashes) == 0 || firstRun {
  361. // Either:
  362. //
  363. // 1. Regardless if a previous match was attempted, which may have had
  364. // results, but no match was found for the current condition, then we
  365. // return no matches (assuming AND operand).
  366. //
  367. // 2. A previous match was not attempted, so we return all results.
  368. return tmpHashes
  369. }
  370. // Remove/reduce matches in filteredHashes that were not found in this
  371. // match (tmpHashes).
  372. for k := range filteredHashes {
  373. if tmpHashes[k] == nil {
  374. delete(filteredHashes, k)
  375. }
  376. }
  377. return filteredHashes
  378. }
  379. // matchRange returns all matching txs by hash that meet a given queryRange and
  380. // start key. An already filtered result (filteredHashes) is provided such that
  381. // any non-intersecting matches are removed.
  382. //
  383. // NOTE: filteredHashes may be empty if no previous condition has matched.
  384. func (txi *TxIndex) matchRange(
  385. r queryRange,
  386. startKey []byte,
  387. filteredHashes map[string][]byte,
  388. firstRun bool,
  389. ) map[string][]byte {
  390. // A previous match was attempted but resulted in no matches, so we return
  391. // no matches (assuming AND operand).
  392. if !firstRun && len(filteredHashes) == 0 {
  393. return filteredHashes
  394. }
  395. tmpHashes := make(map[string][]byte)
  396. lowerBound := r.lowerBoundValue()
  397. upperBound := r.upperBoundValue()
  398. it, err := dbm.IteratePrefix(txi.store, startKey)
  399. if err != nil {
  400. panic(err)
  401. }
  402. defer it.Close()
  403. LOOP:
  404. for ; it.Valid(); it.Next() {
  405. if !isTagKey(it.Key()) {
  406. continue
  407. }
  408. if _, ok := r.AnyBound().(int64); ok {
  409. v, err := strconv.ParseInt(extractValueFromKey(it.Key()), 10, 64)
  410. if err != nil {
  411. continue LOOP
  412. }
  413. include := true
  414. if lowerBound != nil && v < lowerBound.(int64) {
  415. include = false
  416. }
  417. if upperBound != nil && v > upperBound.(int64) {
  418. include = false
  419. }
  420. if include {
  421. tmpHashes[string(it.Value())] = it.Value()
  422. }
  423. // XXX: passing time in a ABCI Events is not yet implemented
  424. // case time.Time:
  425. // v := strconv.ParseInt(extractValueFromKey(it.Key()), 10, 64)
  426. // if v == r.upperBound {
  427. // break
  428. // }
  429. }
  430. }
  431. if len(tmpHashes) == 0 || firstRun {
  432. // Either:
  433. //
  434. // 1. Regardless if a previous match was attempted, which may have had
  435. // results, but no match was found for the current condition, then we
  436. // return no matches (assuming AND operand).
  437. //
  438. // 2. A previous match was not attempted, so we return all results.
  439. return tmpHashes
  440. }
  441. // Remove/reduce matches in filteredHashes that were not found in this
  442. // match (tmpHashes).
  443. for k := range filteredHashes {
  444. if tmpHashes[k] == nil {
  445. delete(filteredHashes, k)
  446. }
  447. }
  448. return filteredHashes
  449. }
  450. ///////////////////////////////////////////////////////////////////////////////
  451. // Keys
  452. func isTagKey(key []byte) bool {
  453. return strings.Count(string(key), tagKeySeparator) == 3
  454. }
  455. func extractValueFromKey(key []byte) string {
  456. parts := strings.SplitN(string(key), tagKeySeparator, 3)
  457. return parts[1]
  458. }
  459. func keyForEvent(key string, value []byte, result *types.TxResult) []byte {
  460. return []byte(fmt.Sprintf("%s/%s/%d/%d",
  461. key,
  462. value,
  463. result.Height,
  464. result.Index,
  465. ))
  466. }
  467. func keyForHeight(result *types.TxResult) []byte {
  468. return []byte(fmt.Sprintf("%s/%d/%d/%d",
  469. types.TxHeightKey,
  470. result.Height,
  471. result.Height,
  472. result.Index,
  473. ))
  474. }
  475. func startKeyForCondition(c query.Condition, height int64) []byte {
  476. if height > 0 {
  477. return startKey(c.CompositeKey, c.Operand, height)
  478. }
  479. return startKey(c.CompositeKey, c.Operand)
  480. }
  481. func startKey(fields ...interface{}) []byte {
  482. var b bytes.Buffer
  483. for _, f := range fields {
  484. b.Write([]byte(fmt.Sprintf("%v", f) + tagKeySeparator))
  485. }
  486. return b.Bytes()
  487. }