/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/importcontacts/ImportContacts.java

  • Committer: Tim Marston
  • Date: 2016-03-28 18:18:11 UTC
  • Revision ID: tim@ed.am-20160328181811-as61lllmvnv8e5os
handle vcards with missing vesion lines (treat as v2.1)

Show diffs side-by-side

added added

removed removed

1
 
/*
2
 
 * ImportContacts.java
3
 
 *
4
 
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
 
 *
6
 
 * This file is part of the Import Contacts program (hereafter referred
7
 
 * to as "this program"). For more information, see
8
 
 * http://www.waxworlds.org/edam/software/android/import-contacts
9
 
 *
10
 
 * This program is free software: you can redistribute it and/or modify
11
 
 * it under the terms of the GNU General Public License as published by
12
 
 * the Free Software Foundation, either version 3 of the License, or
13
 
 * (at your option) any later version.
14
 
 *
15
 
 * This program is distributed in the hope that it will be useful,
16
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
 * GNU General Public License for more details.
19
 
 *
20
 
 * You should have received a copy of the GNU General Public License
21
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 
 */
23
 
 
24
 
package org.waxworlds.importcontacts;
25
 
 
26
 
import java.util.Stack;
27
 
 
28
 
import android.app.Activity;
29
 
import android.content.Intent;
30
 
import android.os.Bundle;
31
 
 
32
 
public class ImportContacts extends Activity
33
 
{
34
 
        public static final int STATE_NONE = 0;
35
 
        public static final int STATE_INTRO = 1;
36
 
        public static final int STATE_IMPORT_VCF = 3;
37
 
        public static final int STATE_MERGE = 4;
38
 
        public static final int STATE_DOIT = 5;
39
 
 
40
 
        private Stack< Integer > _stateStack;
41
 
 
42
 
        /** Called when the activity is first created. */
43
 
        @Override
44
 
    public void onCreate(Bundle savedInstanceState)
45
 
    {
46
 
                super.onCreate(savedInstanceState);
47
 
 
48
 
                _stateStack = new Stack< Integer >();
49
 
 
50
 
                startState( STATE_INTRO );
51
 
    }
52
 
 
53
 
        @Override
54
 
        protected void onActivityResult(int requestCode, int resultCode, Intent data)
55
 
        {
56
 
                super.onActivityResult(requestCode, resultCode, data);
57
 
 
58
 
                // quit?
59
 
                if( resultCode == RESULT_CANCELED ) {
60
 
                        finish();
61
 
                }
62
 
                else {
63
 
                        int newState = STATE_NONE;
64
 
                        if( data != null ) {
65
 
                                Bundle extras = data.getExtras();
66
 
                                if( extras != null ) {
67
 
                                        Integer tmp = extras.getInt( "nextstate" );
68
 
                                        if( tmp != null ) {
69
 
                                                newState = tmp.intValue();
70
 
                                        }
71
 
                                }
72
 
                        }
73
 
                        startState( newState );
74
 
                }
75
 
        }
76
 
 
77
 
        private void startState( int newState )
78
 
        {
79
 
                if( newState == STATE_NONE )
80
 
                {
81
 
                        // we're going back, so pop top state off stack
82
 
                        _stateStack.pop();
83
 
                        newState = ( (Integer)_stateStack.peek() ).intValue();
84
 
                }
85
 
                else
86
 
                {
87
 
                        // push new state on state
88
 
                        _stateStack.push( new Integer( newState ) );
89
 
                }
90
 
 
91
 
                // figure out the class
92
 
                Class cls = null;
93
 
                switch( newState ) {
94
 
                case STATE_INTRO: cls = Intro.class; break;
95
 
                case STATE_IMPORT_VCF: cls = ImportVCF.class; break;
96
 
                case STATE_MERGE: cls = Merge.class; break;
97
 
                case STATE_DOIT: cls = Doit.class; break;
98
 
                }
99
 
 
100
 
                // start activity
101
 
                Intent i = new Intent( this, cls );
102
 
                if( _stateStack.size() > 1 ) i.putExtra( "backstate", true );
103
 
                startActivityForResult( i, 0 );
104
 
        }
105
 
}
 
 
'\\ No newline at end of file'