]> git.vomp.tv Git - vompserver.git/blob - mvpclient.c
Bug fix with config load
[vompserver.git] / mvpclient.c
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "mvpclient.h"
22
23 MVPClient::MVPClient(int tsocket)
24  : tcp(tsocket)
25 {
26   cm = NULL;
27   rp = NULL;
28   recordingManager = NULL;
29
30   // Get IP address of client for config module
31
32   char ipa[20];
33   struct sockaddr_in peer;
34   socklen_t salen = sizeof(struct sockaddr);
35   if(getpeername(tsocket, (struct sockaddr*)&peer, &salen) == 0)
36   {
37     strcpy(ipa, inet_ntoa(peer.sin_addr));
38   }
39   else
40   {
41     ipa[0] = '\0';
42     printf("Cannot get peer name!\n");
43   }
44
45   const char* configDir = cPlugin::ConfigDirectory();
46   if (!configDir)
47   {
48     printf("No config dir!\n");
49     return;
50   }
51
52   char configFileName[PATH_MAX];
53   snprintf(configFileName, PATH_MAX - strlen(configDir) - strlen(ipa) - 20, "%s/vomp-%s.conf", configDir, ipa);
54   config.init(configFileName);
55
56   printf("Config file name: %s\n", configFileName);
57
58 //  processGetChannelSchedule(NULL, 0);
59
60 //  printf("here\n");
61 //test();
62
63 }
64
65 MVPClient::~MVPClient()
66 {
67   printf("MVP client destructor\n");
68   if (cm)
69   {
70     cm->Stop();
71     delete cm;
72     cm = NULL;
73   }
74   else if (rp)
75   {
76     writeResumeData();
77
78     delete rp;
79     delete recordingManager;
80     rp = NULL;
81     recordingManager = NULL;
82   }
83
84   cleanConfig();
85 }
86
87 cChannel* MVPClient::channelFromNumber(unsigned long channelNumber)
88 {
89   cChannel* channel = NULL;
90
91   for (channel = Channels.First(); channel; channel = Channels.Next(channel))
92   {
93     if (!channel->GroupSep())
94     {
95       printf("Looking for channel %lu::: number: %i name: '%s'\n", channelNumber, channel->Number(), channel->Name());
96
97       if (channel->Number() == (int)channelNumber)
98       {
99         int vpid = channel->Vpid();
100 #if VDRVERSNUM < 10300
101         int apid1 = channel->Apid1();
102 #else
103         int apid1 = channel->Apid(0);
104 #endif
105         printf("Found channel number %lu, vpid = %i, apid1 = %i\n", channelNumber, vpid, apid1);
106         return channel;
107       }
108     }
109   }
110
111   if (!channel)
112   {
113     printf("Channel not found\n");
114   }
115
116   return channel;
117 }
118
119
120 void MVPClient::writeResumeData()
121 {
122   config.setValueLongLong("ResumeData", (char*)rp->getCurrentRecording()->FileName(), rp->getLastPosition());
123 }
124
125 void MVPClient::sendULONG(ULONG ul)
126 {
127   unsigned char sendBuffer[8];
128   *(unsigned long*)&sendBuffer[0] = htonl(4);
129   *(unsigned long*)&sendBuffer[4] = htonl(ul);
130
131   tcp.sendPacket(sendBuffer, 8);
132   printf("written ULONG %lu\n", ul);
133 }
134
135 void MVPClientStartThread(void* arg)
136 {
137   MVPClient* m = (MVPClient*)arg;
138   m->run2();
139   // Nothing external to this class has a reference to it
140   // This is the end of the thread.. so delete m
141   delete m;
142   pthread_exit(NULL);
143 }
144
145 int MVPClient::run()
146 {
147   if (pthread_create(&runThread, NULL, (void*(*)(void*))MVPClientStartThread, (void *)this) == -1) return 0;
148   printf("MVPClient run success\n");
149   return 1;
150 }
151
152 void MVPClient::run2()
153 {
154   // Thread stuff
155   sigset_t sigset;
156   sigfillset(&sigset);
157   pthread_sigmask(SIG_BLOCK, &sigset, NULL);
158   pthread_detach(runThread);  // Detach
159
160   tcp.disableReadTimeout();
161
162   tcp.setSoKeepTime(3);
163   tcp.setNonBlocking();
164
165   unsigned char* buffer;
166   unsigned char* data;
167   int packetLength;
168   unsigned long opcode;
169
170   while(1)
171   {
172     printf("starting wait\n");
173     buffer = (unsigned char*)tcp.receivePacket();
174     printf("back from wait\n");
175     if (buffer == NULL)
176     {
177       printf("Detected connection closed\n");
178       break;
179     }
180
181     packetLength = tcp.getDataLength() - 4;
182     opcode = ntohl(*(unsigned long*)buffer);
183     data = buffer + 4;
184
185
186     switch(opcode)
187     {
188       case 1:
189         processLogin(data, packetLength);
190         break;
191       case 2:
192         processGetRecordingsList(data, packetLength);
193         break;
194       case 3:
195         processDeleteRecording(data, packetLength);
196         break;
197       case 4:
198         processGetSummary(data, packetLength);
199         break;
200       case 5:
201         processGetChannelsList(data, packetLength);
202         break;
203       case 6:
204         processStartStreamingChannel(data, packetLength);
205         break;
206       case 7:
207         processGetBlock(data, packetLength);
208         break;
209       case 8:
210         processStopStreaming(data, packetLength);
211         break;
212       case 9:
213         processStartStreamingRecording(data, packetLength);
214         break;
215       case 10:
216         processGetChannelSchedule(data, packetLength);
217         break;
218       case 11:
219         processConfigSave(data, packetLength);
220         break;
221       case 12:
222         processConfigLoad(data, packetLength);
223         break;
224     }
225
226     free(buffer);
227   }
228 }
229
230 void MVPClient::processLogin(unsigned char* buffer, int length)
231 {
232   time_t timeNow = time(NULL);
233   struct tm* timeStruct = localtime(&timeNow);
234   int timeOffset = timeStruct->tm_gmtoff;
235
236   unsigned char sendBuffer[12];
237   *(unsigned long*)&sendBuffer[0] = htonl(8);
238   *(unsigned long*)&sendBuffer[4] = htonl(timeNow);
239   *(signed int*)&sendBuffer[8] = htonl(timeOffset);
240
241   tcp.sendPacket(sendBuffer, 12);
242   printf("written login reply\n");
243 }
244
245 void MVPClient::processGetRecordingsList(unsigned char* data, int length)
246 {
247   unsigned char* sendBuffer = new unsigned char[50000]; // hope this is enough
248   int count = 4; // leave space for the packet length
249   char* point;
250
251
252   int FreeMB;
253   int Percent = VideoDiskSpace(&FreeMB);
254   int Total = (FreeMB / (100 - Percent)) * 100;
255
256   *(unsigned long*)&sendBuffer[count] = htonl(Total);
257   count += sizeof(unsigned long);
258   *(unsigned long*)&sendBuffer[count] = htonl(FreeMB);
259   count += sizeof(unsigned long);
260   *(unsigned long*)&sendBuffer[count] = htonl(Percent);
261   count += sizeof(unsigned long);
262
263
264   cRecordings Recordings;
265   Recordings.Load();
266
267   for (cRecording *recording = Recordings.First(); recording; recording = Recordings.Next(recording))
268   {
269     if (count > 49000) break; // just how big is that hard disk?!
270     *(unsigned long*)&sendBuffer[count] = htonl(recording->start);// + timeOffset);
271     count += 4;
272
273     point = (char*)recording->Name();
274     strcpy((char*)&sendBuffer[count], point);
275     count += strlen(point) + 1;
276
277     point = (char*)recording->FileName();
278     strcpy((char*)&sendBuffer[count], point);
279     count += strlen(point) + 1;
280   }
281
282   *(unsigned long*)&sendBuffer[0] = htonl(count - 4); // -4 :  take off the size field
283
284   printf("recorded size as %u\n", ntohl(*(unsigned long*)&sendBuffer[0]));
285
286   tcp.sendPacket(sendBuffer, count);
287   delete[] sendBuffer;
288   printf("Written list\n");
289 }
290
291 void MVPClient::processDeleteRecording(unsigned char* data, int length)
292 {
293   // data is a pointer to the fileName string
294
295   cRecordings Recordings;
296   Recordings.Load(); // probably have to do this
297
298   cRecording* recording = Recordings.GetByName((char*)data);
299
300   printf("recording pointer %p\n", recording);
301
302   if (recording)
303   {
304     printf("deleting recording: %s\n", recording->Name());
305     recording->Delete();
306     sendULONG(1);
307   }
308   else
309   {
310     sendULONG(0);
311   }
312 }
313
314 void MVPClient::processGetSummary(unsigned char* data, int length)
315 {
316   // data is a pointer to the fileName string
317
318   cRecordings Recordings;
319   Recordings.Load(); // probably have to do this
320
321   cRecording *recording = Recordings.GetByName((char*)data);
322
323   printf("recording pointer %p\n", recording);
324
325   if (recording)
326   {
327     unsigned char* sendBuffer = new unsigned char[50000]; // hope this is enough
328     int count = 4; // leave space for the packet length
329
330     char* point;
331 #if VDRVERSNUM < 10300
332     point = (char*)recording->Summary();
333 #else
334     point = (char*)recording->Info()->ShortText();
335 #endif
336     strcpy((char*)&sendBuffer[count], point);
337     count += strlen(point) + 1;
338     *(unsigned long*)&sendBuffer[0] = htonl(count - 4); // -4 :  take off the size field
339
340     printf("recorded size as %u\n", ntohl(*(unsigned long*)&sendBuffer[0]));
341
342     tcp.sendPacket(sendBuffer, count);
343     delete[] sendBuffer;
344     printf("Written summary\n");
345
346
347   }
348   else
349   {
350     sendULONG(0);
351   }
352 }
353
354 void MVPClient::processGetChannelsList(unsigned char* data, int length)
355 {
356   unsigned char* sendBuffer = new unsigned char[50000]; // FIXME hope this is enough
357   int count = 4; // leave space for the packet length
358   char* point;
359   unsigned long type;
360
361   for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel))
362   {
363     if (!channel->GroupSep())
364     {
365       printf("name: '%s'\n", channel->Name());
366
367       if (count > 49000) break;
368       *(unsigned long*)&sendBuffer[count] = htonl(channel->Number());
369       count += 4;
370
371       if (channel->Vpid()) type = 1;
372       else type = 2;
373
374       *(unsigned long*)&sendBuffer[count] = htonl(type);
375       count += 4;
376
377       point = (char*)channel->Name();
378       strcpy((char*)&sendBuffer[count], point);
379       count += strlen(point) + 1;
380     }
381   }
382
383   *(unsigned long*)&sendBuffer[0] = htonl(count - 4); // -4 :  take off the size field
384
385   printf("recorded size as %u\n", ntohl(*(unsigned long*)&sendBuffer[0]));
386
387   tcp.sendPacket(sendBuffer, count);
388   delete[] sendBuffer;
389   printf("Written channels list\n");
390 }
391
392 void MVPClient::processStartStreamingChannel(unsigned char* data, int length)
393 {
394   printf("length = %i\n", length);
395   unsigned long channelNumber = ntohl(*(unsigned long*)data);
396
397   cChannel* channel = channelFromNumber(channelNumber);
398   if (!channel)
399   {
400     sendULONG(0);
401     return;
402   }
403
404 //  MVPReceiver* m = new MVPReceiver(channel->Vpid(), channel->Apid1());
405   cm = new cMediamvpTransceiver(channel, 0, 0, cDevice::ActualDevice());
406   cDevice::ActualDevice()->AttachReceiver(cm);
407   //cDevice::ActualDevice()->SwitchChannel(channel, false);
408
409   sendULONG(1);
410 }
411
412 void MVPClient::processStopStreaming(unsigned char* data, int length)
413 {
414   printf("STOP STREAMING RECEIVED\n");
415   if (cm)
416   {
417     delete cm;
418     cm = NULL;
419   }
420   else if (rp)
421   {
422     writeResumeData();
423
424     delete rp;
425     delete recordingManager;
426     rp = NULL;
427     recordingManager = NULL;
428   }
429
430   sendULONG(1);
431 }
432
433 void MVPClient::processGetBlock(unsigned char* data, int length)
434 {
435   if (!cm && !rp)
436   {
437     printf("Get block called when no streaming happening!\n");
438     return;
439   }
440
441   ULLONG position = ntohll(*(ULLONG*)data);
442   printf("getblock called for position = %llu\n", position);
443
444   data += sizeof(ULLONG);
445
446   unsigned long amount = ntohl(*(unsigned long*)data);
447   printf("getblock called for length = %lu\n", amount);
448
449   unsigned char sendBuffer[amount + 4];
450   unsigned long amountReceived = 0; // compiler moan.
451   if (cm)
452   {
453     printf("getting from live\n");
454     amountReceived = cm->getBlock(&sendBuffer[4], amount);
455   }
456   else if (rp)
457   {
458     printf("getting from recording\n");
459     amountReceived = rp->getBlock(&sendBuffer[4], position, amount);
460   }
461
462   *(unsigned long*)&sendBuffer[0] = htonl(amountReceived);
463   printf("sendpacket go\n");
464   tcp.sendPacket(sendBuffer, amountReceived + 4);
465   printf("written ok %lu\n", amountReceived);
466 }
467
468 void MVPClient::processStartStreamingRecording(unsigned char* data, int length)
469 {
470   // data is a pointer to the fileName string
471
472   recordingManager = new cRecordings;
473   recordingManager->Load();
474
475   cRecording* recording = recordingManager->GetByName((char*)data);
476
477   printf("recording pointer %p\n", recording);
478
479   if (recording)
480   {
481     rp = new RecPlayer(recording);
482
483     unsigned char sendBuffer[12];
484     *(unsigned long*)&sendBuffer[0] = htonl(8);
485     *(ULLONG*)&sendBuffer[4] = htonll(rp->getTotalLength());
486
487     tcp.sendPacket(sendBuffer, 12);
488     printf("written totalLength\n");
489   }
490   else
491   {
492     delete recordingManager;
493     recordingManager = NULL;
494   }
495 }
496
497 void MVPClient::processGetChannelSchedule(unsigned char* data, int length)
498 {
499   ULONG channelNumber = ntohl(*(ULLONG*)data);
500   printf("get schedule called for channel %lu\n", channelNumber);
501
502   cChannel* channel = channelFromNumber(channelNumber);
503   if (!channel)
504   {
505     unsigned char sendBuffer[4];
506     *(unsigned long*)&sendBuffer[0] = htonl(0);
507     tcp.sendPacket(sendBuffer, 4);
508     printf("written null\n");
509     return;
510   }
511
512 #if VDRVERSNUM < 10300
513   cMutexLock MutexLock;
514   const cSchedules *Schedules = cSIProcessor::Schedules(MutexLock);
515 #else
516   cSchedulesLock MutexLock;
517   const cSchedules *Schedules = cSchedules::Schedules(MutexLock);
518 #endif
519   if (!Schedules)
520   {
521     unsigned char sendBuffer[8];
522     *(unsigned long*)&sendBuffer[0] = htonl(4);
523     *(unsigned long*)&sendBuffer[4] = htonl(0);
524     tcp.sendPacket(sendBuffer, 8);
525     printf("written 0\n");
526     return;
527   }
528
529   unsigned char sendBuffer[8];
530   *(unsigned long*)&sendBuffer[0] = htonl(4);
531   *(unsigned long*)&sendBuffer[4] = htonl(1);
532   tcp.sendPacket(sendBuffer, 8);
533   printf("written 1\n");
534
535
536 }
537
538 void MVPClient::testChannelSchedule(unsigned char* data, int length)
539 {
540   FILE* f = fopen("/tmp/s.txt", "w");
541
542 #if VDRVERSNUM < 10300
543   cMutexLock MutexLock;
544   const cSchedules *Schedules = cSIProcessor::Schedules(MutexLock);
545 #else
546   cSchedulesLock MutexLock;
547   const cSchedules *Schedules = cSchedules::Schedules(MutexLock);
548 #endif
549   if (!Schedules)
550   {
551     fprintf(f, "Schedules = NULL\n");
552     fclose(f);
553     return;
554   }
555
556   fprintf(f, "Schedules dump:\n");
557   Schedules->Dump(f);
558
559
560   const cSchedule *Schedule;
561   int scheduleNumber = 0;
562
563   tChannelID tchid;
564   cChannel *thisChannel;
565
566 #if VDRVERSNUM < 10300
567   const cEventInfo *event;
568   int eventNumber = 0;
569 #else
570   const cEvent *event;
571 #endif
572
573 //    Schedule = Schedules->GetSchedule(channel->GetChannelID());
574 //    Schedule = Schedules->GetSchedule();
575   Schedule = Schedules->First();
576   if (!Schedule)
577   {
578     fprintf(f, "First Schedule = NULL\n");
579     fclose(f);
580     return;
581   }
582
583   while (Schedule)
584   {
585     fprintf(f, "Schedule #%i\n", scheduleNumber);
586     fprintf(f, "-------------\n\n");
587
588 #if VDRVERSNUM < 10300
589     tchid = Schedule->GetChannelID();
590 #else
591     tchid = Schedule->ChannelID();
592 #endif
593 #if VDRVERSNUM < 10300
594     fprintf(f, "ChannelID.ToString() = %s\n", tchid.ToString());
595     fprintf(f, "NumEvents() = %i\n", Schedule->NumEvents());
596 #else
597 //  put the count at the end.
598 #endif
599     thisChannel = Channels.GetByChannelID(tchid, true);
600     if (thisChannel)
601     {
602       fprintf(f, "Channel Number: %p %i\n", thisChannel, thisChannel->Number());
603     }
604     else
605     {
606       fprintf(f, "thisChannel = NULL for tchid\n");
607     }
608
609 #if VDRVERSNUM < 10300
610     for (eventNumber = 0; eventNumber < Schedule->NumEvents(); eventNumber++)
611     {
612       event = Schedule->GetEventNumber(eventNumber);
613       fprintf(f, "Event %i tableid = %i timestring = %s endtimestring = %s\n", eventNumber, event->GetTableID(), event->GetTimeString(), event->GetEndTimeString());
614       fprintf(f, "Event %i date = %s isfollowing = %i ispresent = %i\n", eventNumber, event->GetDate(), event->IsFollowing(), event->IsPresent());
615       fprintf(f, "Event %i extendeddescription = %s\n", eventNumber, event->GetExtendedDescription());
616       fprintf(f, "Event %i subtitle = %s title = %s\n", eventNumber, event->GetSubtitle(), event->GetTitle());
617       fprintf(f, "Event %i eventid = %u duration = %li time = %lu channelnumber = %i\n", eventNumber, event->GetEventID(), event->GetDuration(), event->GetTime(), event->GetChannelNumber());
618       fprintf(f, "Event %u dump:\n", eventNumber);
619       event->Dump(f);
620       fprintf(f, "\n\n");
621     }
622 #else
623 //  This whole section needs rewriting to walk the list.
624     event = Schedule->Events()->First();
625     while (event) {
626       event = Schedule->Events()->Next(event);
627     }
628 #endif
629
630
631     fprintf(f, "\nDump from object:\n");
632     Schedule->Dump(f);
633     fprintf(f, "\nEND\n");
634
635
636
637
638 /*
639   const cEventInfo *GetPresentEvent(void) const;
640   const cEventInfo *GetFollowingEvent(void) const;
641   const cEventInfo *GetEvent(unsigned short uEventID, time_t tTime = 0) const;
642   const cEventInfo *GetEventAround(time_t tTime) const;
643   const cEventInfo *GetEventNumber(int n) const { return Events.Get(n); }
644
645
646   const unsigned char GetTableID(void) const;
647   const char *GetTimeString(void) const;
648   const char *GetEndTimeString(void) const;
649   const char *GetDate(void) const;
650   bool IsFollowing(void) const;
651   bool IsPresent(void) const;
652   const char *GetExtendedDescription(void) const;
653   const char *GetSubtitle(void) const;
654   const char *GetTitle(void) const;
655   unsigned short GetEventID(void) const;
656   long GetDuration(void) const;
657   time_t GetTime(void) const;
658   tChannelID GetChannelID(void) const;
659   int GetChannelNumber(void) const { return nChannelNumber; }
660   void SetChannelNumber(int ChannelNumber) const { ((cEventInfo *)this)->nChannelNumber = ChannelNumber; } // doesn't modify the EIT data, so it's ok to make it 'const'
661   void Dump(FILE *f, const char *Prefix = "") const;
662
663 */
664
665
666
667
668
669     fprintf(f, "End of current Schedule\n\n\n");
670
671     Schedule = (const cSchedule *)Schedules->Next(Schedule);
672     scheduleNumber++;
673   }
674
675   fclose(f);
676 }
677
678 void MVPClient::processConfigSave(unsigned char* buffer, int length)
679 {
680   char* section = (char*)buffer;
681   char* key = NULL;
682   char* value = NULL;
683
684   for (int k = 0; k < length; k++)
685   {
686     if (buffer[k] == '\0')
687     {
688       if (!key)
689       {
690         key = (char*)&buffer[k+1];
691       }
692       else
693       {
694         value = (char*)&buffer[k+1];
695         break;
696       }
697     }
698   }
699
700   // if the last string (value) doesnt have null terminator, give up
701   if (buffer[length - 1] != '\0') return;
702
703   printf("Config save:\n%s\n%s\n%s\n", section, key, value);
704   if (config.setValueString(section, key, value))
705   {
706     sendULONG(1);
707   }
708   else
709   {
710     sendULONG(0);
711   }
712 }
713
714 void MVPClient::processConfigLoad(unsigned char* buffer, int length)
715 {
716   char* section = (char*)buffer;
717   char* key = NULL;
718
719   for (int k = 0; k < length; k++)
720   {
721     if (buffer[k] == '\0')
722     {
723       key = (char*)&buffer[k+1];
724       break;
725     }
726   }
727
728   char* value = config.getValueString(section, key);
729
730   if (value)
731   {
732     unsigned char sendBuffer[4 + strlen(value) + 1];
733     *(unsigned long*)&sendBuffer[0] = htonl(strlen(value) + 1);
734     strcpy((char*)&sendBuffer[4], value);
735     tcp.sendPacket(sendBuffer, 4 + strlen(value) + 1);
736
737     printf("Written config load packet\n");
738     delete[] value;
739   }
740   else
741   {
742     unsigned char sendBuffer[8];
743     *(unsigned long*)&sendBuffer[0] = htonl(4);
744     *(unsigned long*)&sendBuffer[4] = htonl(0);
745     tcp.sendPacket(sendBuffer, 8);
746
747     printf("Written config load failed packet\n");
748   }
749 }
750
751 void MVPClient::cleanConfig()
752 {
753   printf("Clean config\n");
754
755   cRecordings Recordings;
756   Recordings.Load();
757
758   int numReturns;
759   int length;
760   char* resumes = config.getSectionKeyNames("ResumeData", numReturns, length);
761   char* position = resumes;
762   for(int k = 0; k < numReturns; k++)
763   {
764     printf("EXAMINING: %i %i %p %s\n", k, numReturns, position, position);
765
766     cRecording* recording = Recordings.GetByName(position);
767     if (!recording)
768     {
769       // doesn't exist anymore
770       printf("Found a recording that doesn't exist anymore\n");
771       config.deleteValue("ResumeData", position);
772     }
773     else
774     {
775       printf("This recording still exists\n");
776     }
777
778     position += strlen(position) + 1;
779   }
780
781   delete[] resumes;
782 }
783
784