This file is indexed.

/usr/bin/autoradiod is in autoradio 2.8.6-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
#!/usr/bin/python
# GPL. (C) 2007-2012 Paolo Patruno.

# This program 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 2 of the License, or 
# (at your option) any later version. 
# 
# This program 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 this program; if not, write to the Free Software 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
# 

# ToDo:
# controllare altri conflitti in districa oltre ai jingles
# utilizzare mp3splt per spezzare i programmi per fare gli inserimenti pubblicitari
# alternare meglio i jingle tenendo in considerazione la priorita

import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'autoradio.settings'
from django.conf import settings

import autoradio.settings
import autoradio.autoradio_config
from autoradio import daemon
from autoradio import _version_

autoradiod = daemon.Daemon(
        stdin="/dev/null",
        stdout=autoradio.autoradio_config.logfile,
        stderr=autoradio.autoradio_config.errfile,
        pidfile=autoradio.autoradio_config.lockfile,
        user=autoradio.autoradio_config.user,
        group=autoradio.autoradio_config.group,
        env=autoradio.autoradio_config.env
)


def main():

    import logging,os,sys,errno,signal,logging.handlers
    import subprocess
    import thread
    import datetime
    import time as timesleep
    #from threading import *

    import django
    django.setup()

    import autoradio.autoradio_core

    formatter=logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s",datefmt="%Y-%m-%d %H:%M:%S")
    handler = logging.handlers.RotatingFileHandler(autoradio.autoradio_config.logfile, maxBytes=5000000, backupCount=10)
    handler.setFormatter(formatter)
    
    # Add the log message handler to the root logger
    logging.getLogger().addHandler(handler)
    logging.getLogger().setLevel(logging.INFO)


    logging.info('Starting up autoradiod version '+_version_)


    if (autoradio.autoradio_config.player == "amarok1") :
        import autoradio.manageamarok as manageplayer 

    elif (autoradio.autoradio_config.player == "xmms"):
        #    from managepytone import *
        import autoradio.managexmms as manageplayer
        import autoradio.xmmsweb as playerweb

    elif (autoradio.autoradio_config.player == "audacious" 
          or autoradio.autoradio_config.player == "amarok" 
          or autoradio.autoradio_config.player == "vlc"
          or autoradio.autoradio_config.player == "AutoPlayer"):

#        import autoradio.manageaudacious as manageplayer
#        import autoradio.audaciousweb as playerweb
        import autoradio.managempris as manageplayer
        import autoradio.mprisweb as playerweb

    else:
        logging.error('wrong player %s' % autoradio.autoradio_config.player)
        raise Exception()

    #def signalhandler(signum, frame):
    #    logging.info( 'Signal handler called with signal %d', signum)

    #signal.signal(signal.SIGALRM, signalhandler)

    f = open(autoradio.autoradio_config.timestampfile, "w")
    f.write(str(datetime.datetime.now()))
    f.close()

    #we want to run a single process

    try:

      # now we can start to do our work
      # time constant

      # this is the first and last time that I set now with the current time
      now=datetime.datetime.now()

      first = True

      if (autoradio.autoradio_config.player == "amarok1") :
          kapp=KdeInit()
          function=manageplayer.ManageAmarok
          ok=amarok_watchdog(kapp)

      else:
  #        function=ManagePytone
          session=0

          # parte un thread pe monitorare via web il player
          #t = Timer(5.0, xmmsweb.start_http_server)
          #t.start()

          #os.system("python xmmsweb.py&")
          #p = subprocess.Popen("xmmsweb.py")


          if (autoradio.autoradio_config.player == "amarok1"):
              ok=manageplayer.amarok_watchdog(kapp)
          elif (autoradio.autoradio_config.player == "xmms"):
              t = thread.start_new_thread(playerweb.start_http_server,())
              ok=manageplayeer.xmms_watchdog(session)
          elif (autoradio.autoradio_config.player == "audacious" 
                or autoradio.autoradio_config.player == "amarok" 
                or autoradio.autoradio_config.player == "vlc"):
              t = thread.start_new_thread(playerweb.start_http_server,())
              ok=manageplayer.player_watchdog(autoradio.autoradio_config.player,session)
          elif (autoradio.autoradio_config.player == "AutoPlayer"):
              ok=manageplayer.player_watchdog(autoradio.autoradio_config.player,session)

      while ( True):

          scheds=autoradio.autoradio_core.schedules([])
          for schedule in scheds.get_all_refine(now):

              scheduledatetime=schedule.scheduledatetime
              filename=schedule.filename
              type=schedule.type
              emission_done=schedule.emission_done

              if ( emission_done <> None ):
                  if ( type == "program" ):
                      #la trasmissione ha una schedula con un'unica emissione prevista
                      logging.debug( " %s %s %s schedula already done; ignore it !",type,scheduledatetime,emission_done)
                      continue

                  if ( type == "spot" ):
                      # considero una emissione effettuata se e' avvenuta nell'intorno delle 3 ore
                      if ( abs(emission_done - scheduledatetime) < datetime.timedelta(minutes=180)): 
                          logging.debug(" %s %s %s schedula already done; ignore it !", type,scheduledatetime,emission_done)
                          continue

                  if ( type == "playlist" ):
                      # I assume the emission is done if it happen around 3 hours
                      if ( abs(emission_done - scheduledatetime) < datetime.timedelta(minutes=180)): 
                          logging.debug (" %s %s %s schedula already done; ignore it !",type,scheduledatetime,emission_done)
                          continue


              delta=( scheduledatetime - now)
              sec=manageplayer.secondi(delta)
              #schedule for the nest minsched minutes starting from minsched minuti forward
              #if it is the first time I start from minsched minuti in the past
              if (first and ( type == "program" or type == "spot" or type == "playlist")): 
                  #recovery programmi, playlist e pubblicita' not emitted in a ragionable past time range
                  startschedsec=-60 * autoradio.autoradio_config.minsched
              elif (first and ( type == "jingle")):
                  startschedsec=0
              else:
                  startschedsec=60*autoradio.autoradio_config.minsched


              endschedsec = 60*autoradio.autoradio_config.minsched*2
              if ( startschedsec < sec and sec <= endschedsec ):

                  #print "ora schedulata", scheduledatetime
                  #print "ora attuale", datetime.now()

                  if (autoradio.autoradio_config.player == "amarok1") :
                      threadschedule=manageplayer.ScheduleProgram(kapp,function,operation,filename,scheduledatetime,obj)
                  else:
                      #threadschedule=ScheduleProgram(session,function,operation,filename,scheduledatetime,obj,shuffle,length)
                      threadschedule=manageplayer.ScheduleProgram(autoradio.autoradio_config.player,session,schedule)

                  logging.debug (" %s %s programmed for %s seconds forward", type,filename,threadschedule.deltasec)
                  threadschedule.start()

          first = False
          sleepsec=autoradio.autoradio_config.minsched/5.*60.

          #now I advance minsched and wait the right time to proced
          now=now+datetime.timedelta(0,60*autoradio.autoradio_config.minsched)
          while ( datetime.datetime.now() < now):
              if (autoradio.autoradio_config.player == "amarok1"):
                  ok=manageplayer.save_status(kapp)

              else:
                  ok=manageplayer.save_status(session)

              if ( ok ) :

                  f = open(autoradio.autoradio_config.timestampfile, "w")
                  f.write(str(datetime.datetime.now()))
                  f.close()

              logging.debug ( "sleeping for %s seconds:%s  %d",sleepsec,__name__,os.getpid())

              #signal.alarm(0)
              timesleep.sleep(sleepsec)

              #os.system("sleep 60")
              #target = time.time()
              #while True:
              #   now = time.time()
              #   if now >= target+60: break
              #   os.sleep(target-now)

              #logging.debug ( "wake up: %s  %d",__name__,os.getpid() )

          #sometime adjust playlist (will be deleted)
          if (autoradio.autoradio_config.player == "amarok1"):
              ok=manageplayer.amarok_watchdog(kapp)
          elif (autoradio.autoradio_config.player == "xmms"):
              ok=manageplayer.xmms_watchdog(session)
          elif (autoradio.autoradio_config.player == "audacious" 
                or autoradio.autoradio_config.player == "amarok" 
                or autoradio.autoradio_config.player == "vlc"
                or autoradio.autoradio_config.player == "AutoPlayer"):

              ok=manageplayer.player_watchdog(autoradio.autoradio_config.player,session)


    except KeyboardInterrupt :

      logging.info('All threads terminated for keyboard interrupt' )
      return 1

    except SystemExit:

      logging.info('Stopped OK')
      return 0

    except:
      import traceback
      msg = traceback.format_exc()
      logging.error(msg)
      logging.info('Stopping')

      return 2

    else:
      msg = "error without traceback; what happens ?!?!"
      logging.error(msg)
      logging.info('Stopping')

      return 3

    
if __name__ == '__main__':

    import sys, os

    # this is a triky for ubuntu and debian that remove /var/run every boot
    # ATTENTION, this should be a security problem
    path=os.path.dirname(autoradio.autoradio_config.lockfile)
    if (not os.path.lexists(path) and path == "/var/run/autoradio" ):
        os.mkdir(path)
        if (os.getuid() == 0):

            user=autoradio.autoradio_config.user
            group=autoradio.autoradio_config.group
            if user is not None and group is not None:
                from pwd import getpwnam
                from grp import getgrnam
                uid = getpwnam(user)[2]
                gid = getgrnam(group)[2]
                os.chown(path,uid,gid)

    if autoradiod.service():

        sys.stdout.write("Autoradiod version "+_version_+"\n")
        sys.stdout.write("Daemon started with pid %d\n" % os.getpid())
        sys.stdout.write("Daemon stdout output\n")
        sys.stderr.write("Daemon stderr output\n")

        sys.exit(main())  # (this code was run as script)