1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
|
# upload_sync_controller
#
# Copyright (C) 2012-2017 Intel Corporation. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU Lesser General Public License,
# version 2.1, as published by the Free Software Foundation.
#
# This program is distributed in the hope it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
#
# Regis Merlino <regis.merlino@intel.com>
#
import configparser
import os
import dbus
from gi.repository import GLib, Gio
from .mediaconsole import UPNP, MediaObject, Container, Device
class _UscUpnp(UPNP):
def __init__(self):
UPNP.__init__(self)
def get_servers(self):
return self._manager.GetServers()
class _UscDevice(Device):
def __init__(self, path):
Device.__init__(self, path)
def create_container_in_any(self, name, type, child_types):
return self._deviceIF.CreateContainerInAnyContainer(name, type,
child_types)
class _UscContainer(Container):
def __init__(self, path):
Container.__init__(self, path)
def create_container(self, name, type, child_types):
return self._containerIF.CreateContainer(name, type, child_types)
def upload(self, name, file_path):
return self._containerIF.Upload(name, file_path)
class UscError(Exception):
"""An Upload Sync Controller error."""
def __init__(self, message):
"""
message: description of the error
"""
Exception.__init__(self, message)
self.message = message
def __str__(self):
return 'UscError: ' + self.message
class _UscStore(object):
REMOTE_ID_OPTION = 'remote_id'
TYPE_OPTION = 'type'
def __init__(self, root_path, server_id):
if not os.path.exists(root_path):
os.makedirs(root_path)
self.__config_path = os.path.join(root_path, server_id + '.conf')
self.__config = configparser.ConfigParser()
def initialize(self):
self.__config.read(self.__config_path)
def __write_config(self):
with open(self.__config_path, 'w') as configfile:
self.__config.write(configfile)
def remove(self):
if os.path.exists(self.__config_path):
os.remove(self.__config_path)
def __parent_deleted(self, path, deleted_containers):
for del_path in deleted_containers:
if path.startswith(del_path):
return True
return False
def remove_file(self, path):
id = self.__config.get(path, self.REMOTE_ID_OPTION)
print('\tDeleting server object {0}'.format(id))
try:
obj = MediaObject(id)
obj.delete()
except:
pass
print('\tDeleting local cache {0}'.format(path))
self.__config.remove_section(path)
def sync_deleted_files(self, path):
deleted_containers = []
sections = self.__config.sections()
if not sections:
return
for path in sections:
if self.__parent_deleted(path, deleted_containers):
print('\tDeleting local cache {0}'.format(path))
self.__config.remove_section(path)
elif not os.path.exists(path):
if self.__config.get(path, self.TYPE_OPTION) == 'container':
deleted_containers.append(path + os.sep)
self.remove_file(path)
self.__write_config()
def add_file(self, container, name, parent):
new_path = os.path.join(parent, name)
if os.path.isdir(new_path):
if self.__config.has_section(new_path):
id = self.__config.get(new_path, self.REMOTE_ID_OPTION)
else:
print('\tCreating server container for {0}'.format(new_path))
id = container.create_container(name, 'container', ['*'])
print('\tStoring cached data for {0}'.format(id))
self.__config.add_section(new_path)
self.__config.set(new_path, self.REMOTE_ID_OPTION, id)
self.__config.set(new_path, self.TYPE_OPTION, 'container')
new_container = _UscContainer(id)
self.sync_added_files(new_container, new_path)
elif not self.__config.has_section(new_path):
print('\tUploading file {0}'.format(new_path))
try:
(up, id) = container.upload(name, new_path)
print('\tStoring cached data for {0}'.format(id))
self.__config.add_section(new_path)
self.__config.set(new_path, self.REMOTE_ID_OPTION, id)
self.__config.set(new_path, self.TYPE_OPTION, 'item')
except dbus.exceptions.DBusException as e:
print(f'\tFailed to upload {new_path}: {e.get_dbus_message()}')
def sync_added_files(self, container, path):
children = os.listdir(path)
for child in children:
self.add_file(container, child, path)
self.__write_config()
def set_root(self, path, id):
self.__config.add_section(path)
self.__config.set(path, self.REMOTE_ID_OPTION, id)
self.__config.set(path, self.TYPE_OPTION, 'container')
self.__write_config()
def object_id_from_path(self, path):
return self.__config.get(path, self.REMOTE_ID_OPTION)
def rename_file(self, path1, path2):
self.__config.add_section(path2)
id = self.__config.get(path1, self.REMOTE_ID_OPTION)
self.__config.set(path2, self.REMOTE_ID_OPTION, id)
type = self.__config.get(path1, self.TYPE_OPTION)
self.__config.set(path2, self.TYPE_OPTION, type)
self.__config.remove_section(path1)
self.__write_config()
class UscController(object):
"""An Upload Sync Controller sample app.
The Upload Sync Controller propagates changes in a local folder to media
servers (DMS/M-DMS) to be added to their list of available content.
Media servers must expose the 'content-synchronization' capability to
be managed by this controller.
The four main methods are servers(), track(), add_server() and start_sync().
* servers() lists the media servers available on the network
* track() is used to set the local folder that is to be synchronized
* add_server() is used to add a media server to the list of servers that
are to be synchronized
* start_sync() launches the servers synchronisation from the local storage
Sample usage:
>>> controller.servers()
>>> controller.track('/home/user/local_folder')
>>> controller.add_server('/com/intel/dLeynaServer/server/0')
>>> controller.start_sync()
"""
CONFIG_PATH = os.path.join(os.environ['HOME'],
'.config/upload-sync-controller.conf')
ROOT_CONTAINER_ID_OPTION = 'root_container_id'
DATA_PATH_SECTION = '__paths__'
DATA_PATH_OPTION = 'data_path'
TRACK_PATH_OPTION = 'track_path'
def __init__(self, rel_path=None):
"""
rel_path: if provided, contains the relative local database path,
from the user's HOME directory.
If not provided, the local database path will be
'$HOME/upload-sync-controller'
"""
self.__store_list = []
self.__upnp = _UscUpnp()
self.__config = configparser.ConfigParser()
self.__config.read(UscController.CONFIG_PATH)
if rel_path:
self.__set_data_path(rel_path)
elif not self.__config.has_section(UscController.DATA_PATH_SECTION):
self.__set_data_path('upload-sync-controller')
self.__store_path = self.__config.get(UscController.DATA_PATH_SECTION,
UscController.DATA_PATH_OPTION)
try:
self.__track_path = self.__config.get(
UscController.DATA_PATH_SECTION,
UscController.TRACK_PATH_OPTION)
except:
self.__track_path = None
def __write_config(self):
with open(UscController.CONFIG_PATH, 'w') as configfile:
self.__config.write(configfile)
def __set_data_path(self, rel_path):
data_path = os.environ['HOME'] + os.sep + rel_path
if not self.__config.has_section(UscController.DATA_PATH_SECTION):
self.__config.add_section(UscController.DATA_PATH_SECTION)
self.__config.set(UscController.DATA_PATH_SECTION,
UscController.DATA_PATH_OPTION, data_path)
self.__write_config()
def __check_trackable(self, server):
try:
try:
srt = server.get_prop('ServiceResetToken')
except:
raise UscError("'ServiceResetToken' variable not supported")
try:
dlna_caps = server.get_prop('DLNACaps')
if not 'content-synchronization' in dlna_caps:
raise
except:
raise UscError("'content-synchronization' cap not supported")
try:
search_caps = server.get_prop('SearchCaps')
if not [x for x in search_caps if 'ObjectUpdateID' in x]:
raise
if not [x for x in search_caps if 'ContainerUpdateID' in x]:
raise
except:
raise UscError("'objectUpdateID' search cap not supported")
return srt
except UscError as err:
print(err)
return None
def __need_sync(self, servers):
for item in servers:
device = _UscDevice(item)
uuid = device.get_prop('UDN')
if self.__config.has_section(uuid):
yield device, uuid, self.__config.has_option(uuid,
UscController.ROOT_CONTAINER_ID_OPTION)
def __remove_monitor(self, path):
for item in list(self.__monitor_list.keys()):
if item.startswith(path):
print('\tStop monitoring {0}'.format(path))
del self.__monitor_list[item]
def __add_monitor(self, path):
print('\tStart monitoring {0}'.format(path))
gfile = Gio.File.new_for_path(path)
monitor = gfile.monitor_directory(Gio.FileMonitorFlags.SEND_MOVED, None)
monitor.connect("changed", self.__directory_changed)
self.__monitor_list[path] = monitor
def __monitor_directory(self, path):
self.__add_monitor(path)
children = os.listdir(path)
for child in children:
new_path = os.path.join(path, child)
if os.path.isdir(new_path):
self.__monitor_directory(new_path)
def __start_monitoring(self):
self.__monitor_list = {}
self.__monitor_directory(self.__track_path)
print('Type ctrl-c to stop.')
try:
main_loop = GLib.MainLoop()
main_loop.run()
except:
print('Monitoring stopped.')
def __directory_changed(self, monitor, file1, file2, evt_type):
print()
if evt_type == Gio.FileMonitorEvent.CREATED:
(parent, name) = os.path.split(file1.get_path())
for store in self.__store_list:
parent_id = store.object_id_from_path(parent)
container = _UscContainer(parent_id)
store.add_file(container, name, parent)
if os.path.isdir(file1.get_path()):
self.__monitor_directory(file1.get_path())
elif evt_type == Gio.FileMonitorEvent.MOVED:
(parent1, name1) = os.path.split(file1.get_path())
(parent2, name2) = os.path.split(file2.get_path())
renamed = (parent1 == parent2)
if file1.get_path() in self.__monitor_list:
self.__remove_monitor(file1.get_path())
for store in self.__store_list:
object_id = store.object_id_from_path(file1.get_path())
obj = MediaObject(object_id)
dlna_managed = obj.get_prop('DLNAManaged')
if renamed and dlna_managed['ChangeMeta']:
print('\tRenaming {0} to {1}'.format(name1, name2))
props = {'DisplayName': name2}
obj.update(props, [])
store.rename_file(file1.get_path(), file2.get_path())
else:
store.remove_file(file1.get_path())
parent_id = store.object_id_from_path(parent2)
container = _UscContainer(parent_id)
store.add_file(container, name2, parent2)
if os.path.isdir(file2.get_path()):
self.__monitor_directory(file2.get_path())
elif evt_type == Gio.FileMonitorEvent.DELETED:
if file1.get_path() in self.__monitor_list:
self.__remove_monitor(file1.get_path())
for store in self.__store_list:
store.remove_file(file1.get_path())
else:
return
print('Type ctrl-c to stop.')
def track(self, track_path):
"""Sets the local folder that is to be synchronized."""
self.__track_path = track_path
self.__config.set(UscController.DATA_PATH_SECTION,
UscController.TRACK_PATH_OPTION, track_path)
self.__write_config()
def start_sync(self):
"""Performs a synchronization for all the media servers.
Displays some progress information during the process.
"""
if not self.__track_path:
print('Error: track path is not set')
return
print('Syncing...')
for device, uuid, init in self.__need_sync(self.__upnp.get_servers()):
store = _UscStore(self.__store_path, uuid)
store.initialize()
self.__store_list.append(store)
if not init:
print('Performing initial sync for server {0}:'.format(uuid))
root = device.create_container_in_any('usc_root', 'container',
['image'])
self.__config.set(uuid, UscController.ROOT_CONTAINER_ID_OPTION,
root)
self.__write_config()
store.set_root(self.__track_path, root)
else:
print('Performing normal sync for server {0}:'.format(uuid))
root = self.__config.get(uuid,
UscController.ROOT_CONTAINER_ID_OPTION)
print('\tRoot container is {0}'.format(root))
root_container = _UscContainer(root)
store.sync_deleted_files(self.__track_path)
store.sync_added_files(root_container, self.__track_path)
print('Done.')
if len(self.__store_list) == 0:
print('Nothing to do, stopping.')
return
print('Now monitoring local changes...')
self.__start_monitoring()
def servers(self):
"""Displays media servers available on the network.
Displays media servers information as well as the synchronized status.
"""
print('Running servers:')
for item in self.__upnp.get_servers():
try:
server = Container(item)
try:
folder_name = server.get_prop('FriendlyName')
except Exception:
folder_name = server.get_prop('DisplayName')
device = Device(item)
dev_uuid = device.get_prop('UDN')
dev_path = device.get_prop('Path')
print('{0:<25} Synchronized({2}) {3} {1}'.format(
folder_name,
dev_path,
self.__config.has_section(dev_uuid),
dev_uuid))
except dbus.exceptions.DBusException as err:
print('Cannot retrieve properties for ' + item)
print(str(err).strip()[:-1])
def synchronized(self):
"""Displays the list of servers currently synchronized."""
print('Synchronized servers:')
for name in self.__config.sections():
if name != UscController.DATA_PATH_SECTION:
print('{0:<30}'.format(name))
def add_server(self, server_path):
"""Adds a media server to the controller's list.
server_path: d-bus path for the media server
"""
server = Device(server_path)
server_uuid = server.get_prop('UDN')
if not self.__config.has_section(server_uuid):
srt = self.__check_trackable(server)
if srt is not None:
self.__config.add_section(server_uuid)
self.__write_config()
else:
print("Sorry, the server {0} has no such capability and " \
"will not be synchronized.".format(server_path))
def __remove_server(self, server_uuid):
try:
root = self.__config.get(server_uuid,
UscController.ROOT_CONTAINER_ID_OPTION)
MediaObject(root).delete()
except:
pass
self.__config.remove_section(server_uuid)
store = _UscStore(self.__store_path, server_uuid)
store.remove()
def remove_server(self, server_path):
"""Removes a media server from the controller's list.
Also removes the server side synchronized file and folders.
server_path: d-bus path for the media server
"""
server = Device(server_path)
server_uuid = server.get_prop('UDN')
if self.__config.has_section(server_uuid):
self.__remove_server(server_uuid)
self.__write_config()
def reset(self):
"""Removes all media servers from the controller's list
Also removes the server side synchronized file and folders.
"""
for name in self.__config.sections():
if name != UscController.DATA_PATH_SECTION:
self.__remove_server(name)
self.__write_config()
if __name__ == '__main__':
print('An Upload Sync Controller sample app.')
print()
controller = UscController()
controller.servers()
print()
print('"controller" instance is ready for use.')
print('Type "help(UscController)" for more details and usage samples.')
|