| --Copyright 2021 The casbin Authors. All Rights Reserved. |
| -- |
| --Licensed under the Apache License, Version 2.0 (the "License"); |
| --you may not use this file except in compliance with the License. |
| --You may obtain a copy of the License at |
| -- |
| -- http://www.apache.org/licenses/LICENSE-2.0 |
| -- |
| --Unless required by applicable law or agreed to in writing, software |
| --distributed under the License is distributed on an "AS IS" BASIS, |
| --WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| --See the License for the specific language governing permissions and |
| --limitations under the License. |
| |
| local Enforcer = require("src.main.Enforcer") |
| local DefaultCache=require("src.persist.cache.DefaultCache") |
| |
| -- CachedEnforcer wraps Enforcer and provides decision cache |
| local CachedEnforcer = {} |
| setmetatable(CachedEnforcer, Enforcer) |
| |
| -- Creates a cached enforcer via file or DB. |
| function CachedEnforcer:new(model, adapter) |
| local e = Enforcer:new(model, adapter) |
| self.__index = self |
| setmetatable(e, self) |
| e.cacheEnabled = true |
| e.m = DefaultCache:new() |
| return e |
| end |
| |
| -- enableCache determines whether to enable cache on Enforce(). When enableCache is enabled, cached result (true | false) will be returned for previous decisions. |
| function CachedEnforcer:enableCache(enabled) |
| if enabled then |
| self.cacheEnabled = true |
| else |
| self.cacheEnabled = false |
| end |
| end |
| |
| -- enforce decides whether a "subject" can access a "object" with the operation "action", input parameters are usually: (sub, obj, act). |
| -- if rvals is not string , ingore the cache |
| function CachedEnforcer:enforce(...) |
| if not self.cacheEnabled then |
| return Enforcer.enforce(self, ...) |
| end |
| |
| local rvals = {...} |
| local key = "" |
| for _, rval in pairs(rvals) do |
| if type(rval) == "string" then |
| key = key .. rval .. "$$" |
| else |
| return Enforcer.enforce(self, ...) |
| end |
| end |
| |
| local res, ok = self:getCachedResult(key) |
| if ok then |
| return res |
| end |
| |
| res = Enforcer.enforce(self, ...) |
| |
| self:setCachedResult(key, res) |
| return res |
| end |
| |
| function CachedEnforcer:getCachedResult(key) |
| return self.m:get(key) |
| end |
| |
| function CachedEnforcer:setCachedResult(key, res) |
| self.m:set(key, res) |
| end |
| |
| function CachedEnforcer:invalidateCache() |
| self.m:clear() |
| end |
| |
| return CachedEnforcer |