Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
4f903463
Kaydet (Commit)
4f903463
authored
Agu 21, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed environment, objc, sybase modules
üst
f00eb71d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
413 deletions
+0
-413
environment.c
Modules/environment.c
+0
-104
objc.c
Modules/objc.c
+0
-0
sybasemodule.c
Modules/sybasemodule.c
+0
-309
No files found.
Modules/environment.c
deleted
100644 → 0
Dosyayı görüntüle @
f00eb71d
/*
# Copyright 1995, InfoSeek Corporation
# All rights reserved.
# Written by Andy Bensky
#
# Permission to use, copy, modify, and distribute this Python software
# and its associated documentation for any purpose (subject to the
# restriction in the following sentence) without fee is hereby granted,
# provided that the above copyright notice appears in all copies, and
# that both that copyright notice and this permission notice appear in
# supporting documentation, and that the name of InfoSeek not be used in
# advertising or publicity pertaining to distribution of the software
# without specific, prior written permission. This permission is
# explicitly restricted to the copying and modification of the software
# to remain in Python, compiled Python, or other languages (such as C)
# wherein the modified or derived code is exclusively imported into a
# Python module.
#
# INFOSEEK CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
# SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS. IN NO EVENT SHALL INFOSEEK CORPORATION BE LIABLE FOR ANY
# DIRECT, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
# AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
# OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE,
# EVEN IF INFOSEEK SHALL HAVE BEEN MADE AWARE OF THE POSSIBILITY OF SUCH
# DAMAGES.
*/
/* Hooks to call the Unix putenv() to modify the environment
*/
#include "allobjects.h"
#include <stdlib.h>
#include <assert.h>
#include <string.h>
/* Error conditions that can be raised */
/* Headers for functions accessible from Python as module methods */
static
object
*
put_environ
(
object
*
self
,
object
*
args
);
static
struct
methodlist
environ_methods
[]
=
{
{
"putenv"
,
put_environ
},
{
NULL
,
NULL
}
};
/*
* Name: initenvironment
* Description:
* Initialzation function that Python will use to establish callbacks to
* the methods of this module.
*
* Returns:
* void -
*
* Notes:
*/
void
initenvironment
()
{
object
*
m
,
*
d
;
m
=
initmodule
(
"environment"
,
environ_methods
);
d
=
getmoduledict
(
m
);
}
/*
* Name: put_environ
* Description:
* accepts 2 string objects as arguments and forms a string of the
* form string1=string2 that can be passed to the putenv() system call.
*
* Returns:
* None object if successfull, otherwise raises a SystemError exception
*
*
* Notes:
*/
static
object
*
put_environ
(
object
*
self
,
object
*
args
)
{
char
*
string1
,
*
string2
;
char
*
set_str
;
object
*
return_object
=
None
;
if
(
args
&&
getargs
(
args
,
"(ss)"
,
&
string1
,
&
string2
))
{
set_str
=
malloc
(
strlen
(
string1
)
+
strlen
(
string2
)
+
2
);
assert
(
set_str
);
(
void
)
sprintf
(
set_str
,
"%s=%s"
,
string1
,
string2
);
if
(
putenv
(
set_str
)
)
{
err_setstr
(
SystemError
,
"Error in system putenv call."
);
return_object
=
0
;
}
}
else
{
err_setstr
(
TypeError
,
"Usage: putenv(string1, string2)"
);
return_object
=
0
;
}
return
(
return_object
);
}
Modules/objc.c
deleted
100644 → 0
Dosyayı görüntüle @
f00eb71d
This diff is collapsed.
Click to expand it.
Modules/sybasemodule.c
deleted
100644 → 0
Dosyayı görüntüle @
f00eb71d
/*
Subject: Re: Sybase module -- input sought
From: jredford@lehman.com
To: ags@uncompaghre.informatics.jax.org (Alexander G. Smith)
Cc: python-list@cwi.nl
Date: Tue, 10 May 94 11:53:13 -0400
input sought? how about a complete module? :)
This is a fairly incomplete work.. but I have done things dramatically
differently than sybperl would. Given the nature of the language I
find it is easier to simply get ALL results & then muck with the rows
later as parts of the data. This is a subset of the functionality of a
Modula-3 interface to Sybase that I wrote.. I could send you that if
you are interested in a more complete picture.
*/
#include <stdio.h>
#include <sybfront.h>
#include <sybdb.h>
#include "allobjects.h"
#include "modsupport.h"
static
object
*
SybaseError
;
/* exception sybase.error */
typedef
struct
{
OB_HEAD
LOGINREC
*
login
;
/* login record */
DBPROCESS
*
dbproc
;
/* login record */
}
sybdbobject
;
extern
typeobject
SybDbtype
;
/* Forward */
static
sybdbobject
*
newsybdbobject
(
char
*
user
,
char
*
passwd
,
char
*
server
)
{
sybdbobject
*
s
;
s
=
NEWOBJ
(
sybdbobject
,
&
SybDbtype
);
if
(
s
!=
NULL
)
{
s
->
login
=
dblogin
();
if
(
user
)
{
(
void
)
DBSETLUSER
(
s
->
login
,
user
);
}
if
(
passwd
)
{
(
void
)
DBSETLPWD
(
s
->
login
,
passwd
);
}
if
(
!
(
s
->
dbproc
=
dbopen
(
s
->
login
,
server
)))
{
dbloginfree
(
s
->
login
);
DEL
(
s
);
return
(
NULL
);
}
}
return
s
;
}
/* OBJECT FUNCTIONS: sybdb */
/* Common code for returning pending results */
static
object
*
getresults
(
DBPROCESS
*
dbp
)
{
object
*
results
;
object
*
list
;
object
*
tuple
;
object
*
o
;
int
retcode
;
int
cols
;
int
*
fmt
;
int
i
;
results
=
newlistobject
(
0
);
while
((
retcode
=
dbresults
(
dbp
))
!=
NO_MORE_RESULTS
)
{
if
(
retcode
==
SUCCEED
&&
DBROWS
(
dbp
)
==
SUCCEED
)
{
list
=
newlistobject
(
0
);
cols
=
dbnumcols
(
dbp
);
fmt
=
(
int
*
)
malloc
(
sizeof
(
int
)
*
cols
);
for
(
i
=
1
;
i
<=
cols
;
i
++
)
{
switch
(
dbcoltype
(
dbp
,
i
))
{
case
SYBCHAR
:
fmt
[
i
-
1
]
=
SYBCHAR
;
break
;
case
SYBINT1
:
fmt
[
i
-
1
]
=
SYBINT1
;
break
;
case
SYBINT2
:
fmt
[
i
-
1
]
=
SYBINT2
;
break
;
case
SYBINT4
:
fmt
[
i
-
1
]
=
SYBINT4
;
break
;
case
SYBFLT8
:
fmt
[
i
-
1
]
=
SYBFLT8
;
break
;
}
}
while
(
dbnextrow
(
dbp
)
!=
NO_MORE_ROWS
)
{
tuple
=
newtupleobject
(
cols
);
for
(
i
=
1
;
i
<=
cols
;
i
++
)
{
switch
(
fmt
[
i
-
1
])
{
case
SYBCHAR
:
o
=
newsizedstringobject
((
char
*
)
dbdata
(
dbp
,
i
),
dbdatlen
(
dbp
,
i
));
settupleitem
(
tuple
,
i
-
1
,
o
);
break
;
case
SYBINT1
:
o
=
newintobject
(
*
((
char
*
)
dbdata
(
dbp
,
i
)));
settupleitem
(
tuple
,
i
-
1
,
o
);
break
;
case
SYBINT2
:
o
=
newintobject
(
*
((
short
*
)
dbdata
(
dbp
,
i
)));
settupleitem
(
tuple
,
i
-
1
,
o
);
break
;
case
SYBINT4
:
o
=
newintobject
(
*
((
int
*
)
dbdata
(
dbp
,
i
)));
settupleitem
(
tuple
,
i
-
1
,
o
);
break
;
case
SYBFLT8
:
o
=
newfloatobject
(
*
((
double
*
)
dbdata
(
dbp
,
i
)));
settupleitem
(
tuple
,
i
-
1
,
o
);
break
;
}
}
addlistitem
(
list
,
tuple
);
}
free
(
fmt
);
addlistitem
(
results
,
list
);
}
}
return
(
results
);
}
static
object
*
sybdb_sql
(
self
,
args
)
object
*
self
;
object
*
args
;
{
char
*
sql
;
DBPROCESS
*
dbp
;
dbp
=
((
sybdbobject
*
)
self
)
->
dbproc
;
err_clear
();
if
(
!
getargs
(
args
,
"s"
,
&
sql
))
{
return
NULL
;
}
dbcancel
(
dbp
);
dbcmd
(
dbp
,
sql
);
dbsqlexec
(
dbp
);
return
getresults
(
dbp
);
}
static
object
*
sybdb_sp
(
self
,
args
)
object
*
self
;
object
*
args
;
{
char
*
sp
;
DBPROCESS
*
dbp
;
object
*
spargs
;
object
*
sparg
;
object
*
results
;
object
*
r
;
int
spargcnt
;
int
i
;
int
retstatus
;
dbp
=
((
sybdbobject
*
)
self
)
->
dbproc
;
err_clear
();
if
(
!
getargs
(
args
,
"(sO)"
,
&
sp
,
&
spargs
))
{
return
NULL
;
}
dbcancel
(
dbp
);
dbrpcinit
(
dbp
,
sp
,
0
);
if
(
is_tupleobject
(
spargs
))
{
spargcnt
=
gettuplesize
(
spargs
);
for
(
i
=
0
;
i
<
spargcnt
;
i
++
)
{
sparg
=
gettupleitem
(
spargs
,
i
);
if
(
is_intobject
(
sparg
))
{
int
i
;
i
=
getintvalue
(
sparg
);
dbrpcparam
(
dbp
,
NULL
,
0
,
SYBINT4
,
-
1
,
-
1
,
&
i
);
}
else
if
(
is_floatobject
(
sparg
))
{
double
i
;
i
=
getfloatvalue
(
sparg
);
dbrpcparam
(
dbp
,
NULL
,
0
,
SYBFLT8
,
-
1
,
-
1
,
&
i
);
}
else
if
(
is_stringobject
(
sparg
))
{
dbrpcparam
(
dbp
,
NULL
,
0
,
SYBCHAR
,
-
1
,
getstringsize
(
sparg
),
getstringvalue
(
sparg
));
}
else
{
err_setstr
(
SybaseError
,
"Could not handle paramaters to procedure."
);
return
NULL
;
}
}
}
else
if
(
spargs
!=
None
)
{
err_setstr
(
SybaseError
,
"Could not handle paramaters to procedure."
);
return
NULL
;
}
dbrpcsend
(
dbp
);
dbsqlok
(
dbp
);
results
=
getresults
(
dbp
);
retstatus
=
dbretstatus
(
dbp
);
r
=
mkvalue
(
"(iO)"
,
retstatus
,
results
);
DECREF
(
results
);
return
(
r
);
}
static
struct
methodlist
sybdb_methods
[]
=
{
{
"sql"
,
sybdb_sql
},
{
"sp"
,
sybdb_sp
},
{
NULL
,
NULL
}
/* sentinel */
};
static
void
sybdb_dealloc
(
s
)
sybdbobject
*
s
;
{
dbloginfree
(
s
->
login
);
dbclose
(
s
->
dbproc
);
DEL
(
s
);
}
static
object
*
sybdb_getattr
(
s
,
name
)
sybdbobject
*
s
;
char
*
name
;
{
return
findmethod
(
sybdb_methods
,
(
object
*
)
s
,
name
);
}
typeobject
SybDbtype
=
{
OB_HEAD_INIT
(
&
Typetype
)
0
,
"sybdb"
,
sizeof
(
sybdbobject
),
0
,
sybdb_dealloc
,
/*tp_dealloc*/
0
,
/*tp_print*/
sybdb_getattr
,
/*tp_getattr*/
0
,
/*tp_setattr*/
0
,
/*tp_compare*/
0
,
/*tp_repr*/
0
,
/*tp_as_number*/
0
,
/*tp_as_sequence*/
0
,
/*tp_as_mapping*/
};
/* MODULE FUNCTIONS: sybase */
static
object
*
sybase_new
(
self
,
args
)
object
*
self
;
/* Not used */
object
*
args
;
{
char
*
user
,
*
passwd
,
*
server
;
object
*
db
;
err_clear
();
if
(
!
getargs
(
args
,
"(zzz)"
,
&
user
,
&
passwd
,
&
server
))
{
return
NULL
;
}
db
=
(
object
*
)
newsybdbobject
(
user
,
passwd
,
server
);
if
(
!
db
)
{
/* XXX Should be setting some errstr stuff here based on sybase errors */
err_setstr
(
SybaseError
,
"Could not open connection to server."
);
return
NULL
;
}
return
db
;
}
/* List of module functions */
static
struct
methodlist
sybase_methods
[]
=
{
{
"new"
,
sybase_new
},
{
NULL
,
NULL
}
/* sentinel */
};
/* Module initialisation */
void
initsybase
()
{
object
*
m
,
*
d
;
/* Create the module and add the functions */
m
=
initmodule
(
"sybase"
,
sybase_methods
);
/* Add some symbolic constants to the module */
d
=
getmoduledict
(
m
);
SybaseError
=
newstringobject
(
"sybase.error"
);
if
(
SybaseError
==
NULL
||
dictinsert
(
d
,
"error"
,
SybaseError
)
!=
0
)
{
fatal
(
"can't define sybase.error"
);
}
/* Check for errors */
if
(
err_occurred
()){
fatal
(
"can't initialize module sybase"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment