#!python
# -*- coding: utf-8 -*-
#
# bitdust_worker.py
#
# Copyright (C) 2008 Veselin Penev, https://bitdust.io
#
# This file (bitdust.py) is part of BitDust Software.
#
# BitDust is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# BitDust Software 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with BitDust Software.  If not, see <http://www.gnu.org/licenses/>.
#
# Please contact us if you have any questions at bitdust.io@gmail.com
#

import os
import re
import sys

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])

    import six
    import platform
    ostype = platform.uname()[0]
    if ostype == 'Windows':
        if six.PY3:
            sys.stdout = sys.stdout.buffer
        else:
            try:
                import msvcrt
                msvcrt.setmode(1, os.O_BINARY)  # @UndefinedVariable
                msvcrt.setmode(2, os.O_BINARY)  # @UndefinedVariable
            except:
                pass
    else:
        if six.PY3:
            sys.stdout = sys.stdout.buffer

    try:
        sys.path.append(os.path.abspath(os.path.join('.', 'parallelp', 'pp')))
        from parallelp.pp.ppworker import _WorkerProcess
        wp = _WorkerProcess()
        wp.run()
    except Exception as exc:
        pass
        # import traceback
        # open('/tmp/raid.log', 'a').write(traceback.format_exc())
