Exemplo n.º 1
0
#
# 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.

import unicodedata
import data_storage
import json

from cloudferrylib.utils import log

LOG = log.getLogger(__name__)


TRANSFER = "transfer"
MIGRATE = "migrate"
CONDENSE = "condense"


def normalize(string):
    """
        This function encodes unicode to string
    """
    return unicodedata.normalize("NFKD", string).encode("ascii", "ignore")


def get_key(iteration, name):
Exemplo n.º 2
0
# 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.

from cloudferrylib.base.action import transporter
from cloudferrylib.os.actions import get_info_images
from cloudferrylib.utils import log
from cloudferrylib.utils import utils as utl

LOG = log.getLogger(__name__)


class CopyFromGlanceToGlance(transporter.Transporter):
    def __init__(self, init):
        super(CopyFromGlanceToGlance, self).__init__(init)

    def run(self, images_info=None, **kwargs):
        dst_image = self.dst_cloud.resources[utl.IMAGE_RESOURCE]

        if not images_info:
            action_get_im = get_info_images.GetInfoImages(self.init,
                                                          cloud='src_cloud')
            images_info = action_get_im.run()

        new_info = dst_image.deploy(images_info)