~ubuntu-branches/ubuntu/trusty/usb-modeswitch/trusty

« back to all changes in this revision

Viewing changes to dispatcher.c

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-12-05 15:00:29 UTC
  • mfrom: (17.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111205150029-814z3v95yed05hxe
Tags: 1.2.0+repack0-1ubuntu1
* Merge with Debian testing; remaining changes:
  - debian/control: Drop the dependency on tcl and Build-Depends on
    jimsh/libjim (another tcl implementation).
  - debian/control: add libudev-dev and libpipeline-dev to Build-Depends.
  - debian/patches/dispatcher-c-rewrite.patch: rewrite the dispatcher in C,
    to be able to drop the Tcl dependencies.
* debian/patches/dispatcher-c-rewrite.patch:
  - Adapt to follow the changes introduced in version 1.2.0.
  - Move bind_list, current_cfg and other state files to /run.
  - Fix handling parameters when the dispatcher is called manually instead
    of via udev. (LP: #829519)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2011 Josua Dietze, usb_modeswitch version 1.2.0
 
3
 * Contains code under
 
4
 * Copyright (c) 2010 Wojciech A. Koszek <wkoszek@FreeBSD.org>
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions
 
9
 * are met:
 
10
 * 1. Redistributions of source code must retain the above copyright
 
11
 *    notice, this list of conditions and the following disclaimer.
 
12
 * 2. Redistributions in binary form must reproduce the above copyright
 
13
 *    notice, this list of conditions and the following disclaimer in the
 
14
 *    documentation and/or other materials provided with the distribution.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 
17
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
18
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
19
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 
20
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
21
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
22
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
23
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
24
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
25
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
26
 * SUCH DAMAGE.
 
27
 *
 
28
 * $Id$
 
29
 */
 
30
#include <assert.h>
 
31
#include <stdio.h>
 
32
#include <string.h>
 
33
#include <stdlib.h>
 
34
 
 
35
#include <jim.h>
 
36
 
 
37
/* RAW is defined to the complete Tcl code in that file: */
 
38
#include "usb_modeswitch.string"
 
39
 
 
40
#define MAX_ARGSIZE 1024
 
41
 
 
42
int main(int argc, char **argv)
 
43
{
 
44
        int i, retval;
 
45
        char arg[MAX_ARGSIZE];
 
46
        char arglist[MAX_ARGSIZE]; 
 
47
 
 
48
        Jim_Interp *interp;
 
49
 
 
50
        interp = NULL;
 
51
        arglist[0] = '\0';
 
52
 
 
53
        for (i=1; i<argc; i++) {
 
54
                if (strlen(argv[i]) > MAX_ARGSIZE-4) {
 
55
                        printf("Argument #%d extends maximum size, skip it\n", i);
 
56
                        continue;
 
57
                }
 
58
                if ( (strlen(arglist) + strlen(argv[i])) > MAX_ARGSIZE-4) {
 
59
                        printf("Argument #%d would extend maximum list size, skip it\n", i);
 
60
                        continue;
 
61
                }
 
62
                sprintf(arg,"{%s} ",argv[i]);
 
63
                strncat(arglist,arg,MAX_ARGSIZE);
 
64
        }
 
65
 
 
66
    char code[sizeof(RAW) + sizeof(arglist)];
 
67
        sprintf(code, RAW, arglist, argc-1);
 
68
 
 
69
        /* Create Jim instance */
 
70
        interp = Jim_CreateInterp();
 
71
        assert(interp != NULL && "Could not create interpreter!");
 
72
 
 
73
        /* Register base commands, actually implementing Tcl */
 
74
        Jim_RegisterCoreCommands(interp);
 
75
 
 
76
        /* Initialize any static extensions */
 
77
        Jim_InitStaticExtensions(interp);
 
78
 
 
79
        /* Evaluate the script that's now in "code" */
 
80
        retval = Jim_Eval(interp, code);
 
81
        if (retval < 0)
 
82
                printf("Evaluation returned error %d\n", retval);
 
83
 
 
84
        /* Free the interpreter */
 
85
        Jim_FreeInterp(interp);
 
86
        return (EXIT_SUCCESS);
 
87
}