2017-02-10 19:35:54 +00:00
|
|
|
# (c) 2017, Brian Coca
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Make coding more python3-ish
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
try:
|
|
|
|
import cPickle as pickle
|
|
|
|
except ImportError:
|
|
|
|
import pickle
|
|
|
|
|
2017-03-23 05:26:10 +00:00
|
|
|
from ansible.plugins.cache import BaseFileCacheModule
|
2017-02-10 19:35:54 +00:00
|
|
|
|
|
|
|
class CacheModule(BaseFileCacheModule):
|
|
|
|
"""
|
|
|
|
A caching module backed by pickle files.
|
|
|
|
"""
|
|
|
|
|
2017-02-16 22:59:14 +00:00
|
|
|
def _load(self, filepath):
|
|
|
|
# Pickle is a binary format
|
|
|
|
with open(filepath, 'rb') as f:
|
|
|
|
return pickle.load(f)
|
2017-02-10 19:35:54 +00:00
|
|
|
|
2017-02-16 22:59:14 +00:00
|
|
|
def _dump(self, value, filepath):
|
|
|
|
with open(filepath, 'wb') as f:
|
|
|
|
# Use pickle protocol 2 which is compatible with Python 2.3+.
|
|
|
|
pickle.dump(value, f, protocol=2)
|