summaryrefslogtreecommitdiff
path: root/android/sdremote/src/org/libreoffice/impressremote/communication/Receiver.java
blob: 5a6316ed237eb531c74ac61c2ff7561781c1ad50 (plain)
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
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.libreoffice.impressremote.communication;

import java.util.ArrayList;

import android.content.Context;
import android.content.Intent;
import android.support.v4.content.LocalBroadcastManager;
import android.util.Base64;

public class Receiver {

    public Receiver(Context aContext) {
        mContext = aContext;
        mSlideShow = new SlideShow(mContext);
    }

    private Context mContext;

    private SlideShow mSlideShow;

    public SlideShow getSlideShow() {
        return mSlideShow;
    }

    public boolean isSlideShowRunning() {
        return (mSlideShow.getSize() > 0);
    }

    public void parseCommand(ArrayList<String> aCommand) {
        if (aCommand.size() == 0)
            return; // E.g. if empty line received for whatever reason.
        String aInstruction = aCommand.get(0);
        if (aInstruction.equals("slideshow_started")) {
            int aSlideShowlength = Integer.parseInt(aCommand.get(1));
            int aCurrentSlide = Integer.parseInt(aCommand.get(2));
            mSlideShow.setLength(aSlideShowlength);
            mSlideShow.setCurrentSlide(aCurrentSlide);
            //            Intent aIntent = new Intent(mContext.getApplicationContext(),
            //                            PresentationActivity.class);
            //            aIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            //            aIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
            //            mContext.getApplicationContext().startActivity(aIntent);
            Intent aIntent = new Intent(
                            CommunicationService.STATUS_CONNECTED_SLIDESHOW_RUNNING);
            LocalBroadcastManager.getInstance(mContext).sendBroadcast(aIntent);
            aIntent = new Intent(
                     CommunicationService.MSG_SLIDE_CHANGED);
            aIntent.putExtra("slide_number", aCurrentSlide);
            LocalBroadcastManager.getInstance(mContext).sendBroadcast(aIntent);
        } else if (aInstruction.equals("slideshow_finished")) {
            mSlideShow = new SlideShow(mContext);
            //            Intent aIntent = new Intent(mContext.getApplicationContext(),
            //                            StartPresentationActivity.class);
            //            aIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            //            aIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
            //            mContext.getApplicationContext().startActivity(aIntent);
            Intent aIntent = new Intent(
                            CommunicationService.STATUS_CONNECTED_NOSLIDESHOW);
            LocalBroadcastManager.getInstance(mContext).sendBroadcast(aIntent);
        } else {
            if (mSlideShow == null)
                return;

            if (aInstruction.equals("slide_updated")) {

                int aSlideNumber = Integer.parseInt(aCommand.get(1));

                mSlideShow.setCurrentSlide(aSlideNumber);

                Intent aIntent = new Intent(
                                CommunicationService.MSG_SLIDE_CHANGED);
                aIntent.putExtra("slide_number", aSlideNumber);
                LocalBroadcastManager.getInstance(mContext).sendBroadcast(
                                aIntent);
            } else if (aInstruction.equals("slide_preview")) {
                int aSlideNumber = Integer.parseInt(aCommand.get(1));
                String aImageString = aCommand.get(2);
                try {
                    byte[] aImage = Base64.decode(aImageString, Base64.DEFAULT);

                    // Store image internally
                    mSlideShow.putImage(aSlideNumber, aImage);

                    Intent aIntent = new Intent(
                        CommunicationService.MSG_SLIDE_PREVIEW);
                    aIntent.putExtra("slide_number", aSlideNumber);
                    LocalBroadcastManager.getInstance(mContext).sendBroadcast(
                        aIntent);
                } catch (IllegalArgumentException e) {
                    // Bad data - tough luck
                }
            } else if (aInstruction.equals("slide_notes")) {
                int aSlideNumber = Integer.parseInt(aCommand.get(1));
                String aNotes = new String();
                for (int i = 2; i < aCommand.size(); i++) {
                    aNotes += aCommand.get(i);
                }

                // Store image internally
                mSlideShow.putNotes(aSlideNumber, aNotes);

                Intent aIntent = new Intent(
                                CommunicationService.MSG_SLIDE_NOTES);
                aIntent.putExtra("slide_number", aSlideNumber);
                LocalBroadcastManager.getInstance(mContext).sendBroadcast(
                                aIntent);
            }

        }

    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */