jack.c 4.74 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* -*- tab-width: 8; c-basic-offset: 4 -*- */
/*
 * Wine Driver for jack Sound Server
 *   http://jackit.sourceforge.net
 *
 * Copyright 2002 Chris Morgan
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include "config.h"
#include "wine/port.h"
25

26
#include <stdarg.h>
27
#include <stdio.h>
28 29 30 31 32 33 34

#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "mmddk.h"
#include "jack.h"
35 36 37 38
#include "wine/library.h"
#include "wine/debug.h"

WINE_DEFAULT_DEBUG_CHANNEL(jack);
39 40 41 42 43 44

#ifdef HAVE_JACK_JACK_H
static int jack = 0;

/* set this to zero or one to enable or disable tracing in here */

45 46
#ifndef SONAME_LIBJACK
#define SONAME_LIBJACK "libjack.so"
47 48 49 50 51 52 53 54 55
#endif

void *jackhandle = NULL;

/**************************************************************************
 * 				JACK_drvLoad			[internal]	
 */
static DWORD JACK_drvLoad(void)
{
56
  TRACE("JACK_drvLoad()\n");
57 58 59 60

  /* dynamically load the jack library if not already loaded */
  if(!jackhandle)
  {
61 62
    jackhandle = wine_dlopen(SONAME_LIBJACK, RTLD_NOW, NULL, 0);
    TRACE("JACK_drvLoad: SONAME_LIBJACK == %s\n", SONAME_LIBJACK);
63
    TRACE("JACK_drvLoad: jackhandle == %p\n", jackhandle);
64 65
    if(!jackhandle)
    {
66
      FIXME("JACK_drvLoad: error loading the jack library %s, please install this library to use jack\n", SONAME_LIBJACK);
67 68 69 70 71 72 73 74 75 76 77 78 79 80
      jackhandle = (void*)-1;
      return 0;
    }
  }

  return 1;
}

/**************************************************************************
 * 				JACK_drvFree			[internal]	
 */
/* unload the jack library on driver free */
static DWORD JACK_drvFree(void)
{
81
  TRACE("JACK_drvFree()\n");
82 83 84

  if(jackhandle && (jackhandle != (void*)-1))
  {
85
    TRACE("JACK_drvFree: calling wine_dlclose() on jackhandle\n");
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
    wine_dlclose(jackhandle, NULL, 0);
    jackhandle = NULL;
  }

  return 1;
}

/**************************************************************************
 * 				JACK_drvOpen			[internal]	
 */
static	DWORD	JACK_drvOpen(LPSTR str)
{
  /* if we were unable to load the jack library then fail the */
  /* driver open */
  if(!jackhandle)
  {
102
    FIXME("JACK_drvOpen: unable to open the jack library, returning 0\n");
103 104 105 106 107
    return 0;
  }

  if (jack)
  {
108
    FIXME("JACK_drvOpen: jack != 0 (already open), returning 0\n");
109 110 111 112
    return 0;
  }
    
  /* I know, this is ugly, but who cares... */
113
  TRACE("JACK_drvOpen: opened jack(set jack = 1), returning 1\n");
114 115 116 117 118 119 120 121 122 123 124
  jack = 1;
  return 1;
}

/**************************************************************************
 * 				JACK_drvClose			[internal]	
 */
static	DWORD	JACK_drvClose(DWORD dwDevID)
{
  if (jack)
  {
125
    TRACE("JACK_drvClose: jack is nonzero, setting jack to 0 and returning 1\n");
126 127 128 129
    jack = 0;
    return 1;
  }

130
  TRACE("JACK_drvClose: jack is zero(closed), returning 0\n");
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
  return 0;
}
#endif /* #ifdef HAVE_JACK_JACK_H */


/**************************************************************************
 * 				DriverProc (WINEJACK.1)
 */
LONG CALLBACK	JACK_DriverProc(DWORD dwDevID, HDRVR hDriv, DWORD wMsg, 
			       DWORD dwParam1, DWORD dwParam2)
{
/* EPP     TRACE("(%08lX, %04X, %08lX, %08lX, %08lX)\n",  */
/* EPP 	  dwDevID, hDriv, wMsg, dwParam1, dwParam2); */
    
    switch(wMsg) {
#ifdef HAVE_JACK_JACK_H
    case DRV_LOAD:
148
        TRACE("JACK_DriverProc: DRV_LOAD\n");
149 150
	return JACK_drvLoad();
    case DRV_FREE:
151
        TRACE("JACK_DriverProc: DRV_FREE\n");
152 153
	return JACK_drvFree();
    case DRV_OPEN:
154
        TRACE("JACK_DriverProc: DRV_OPEN\n");
155 156
	return JACK_drvOpen((LPSTR)dwParam1);
    case DRV_CLOSE:
157
        TRACE("JACK_DriverProc: DRV_CLOSE\n");
158 159
	return JACK_drvClose(dwDevID);
    case DRV_ENABLE:
160
        TRACE("JACK_DriverProc: DRV_ENABLE\n");
161 162
	return 1;
    case DRV_DISABLE:
163
        TRACE("JACK_DriverProc: DRV_DISABLE\n");
164 165 166 167
	return 1;
    case DRV_QUERYCONFIGURE:	return 1;
    case DRV_CONFIGURE:		MessageBoxA(0, "jack audio driver!", "jack driver", MB_OK);	return 1;
    case DRV_INSTALL:		
168
      TRACE("JACK_DriverProc: DRV_INSTALL\n");
169 170
      return DRVCNF_RESTART;
    case DRV_REMOVE:
171
      TRACE("JACK_DriverProc: DRV_REMOVE\n");
172 173 174 175 176 177
      return DRVCNF_RESTART;
#endif
    default:
	return DefDriverProc(dwDevID, hDriv, wMsg, dwParam1, dwParam2);
    }
}