From 681a6de3a7f4d1c9493d66157b11c948c59434ae Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 23 Apr 2014 14:43:34 +0100 Subject: [PATCH] filter factory accepts name argument. --- src/mkws-filter.js | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/src/mkws-filter.js b/src/mkws-filter.js index c62235e..232d0d5 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -1,5 +1,36 @@ +// Factory function for sets of filters. +function filterSet() { + var that = {}; + var m_list = []; + + that.list = function() { + return m_list; + }; + + that.add = function(filter) { + m_list.push(filter); + }; + + that.removeMatching = function(matchFn) { + var newList = []; + for (var i in m_list) { + var filter = m_list[i]; + if (matchFn(filter)) { + log("removeMatching() removing filter " + $.toJSON(filter)); + } else { + log("removeMatching() keeping filter " + $.toJSON(filter)); + newList.push(filter); + } + } + m_list = newList; + }; + + return that; +} + + // Factory function for filters. These can be of several types. -function filter(id, field, value) { +function filter(id, name, field, value) { var res; if (id) { -- 1.7.10.4