2010年11月30日火曜日

H2 DatabaseとsardineでBLOBをWebDAVサーバ上のファイルとしてアップロードする関数を作成する

H2 DatabaseとsardineでBLOBをWebDAVサーバ上のファイルとしてアップロードする関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_put_binary as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
int sardine_put_binary(String url,
String user, String password, Blob blob)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Sardine sardine = SardineFactory.begin(user, password);
InputStream bis = null;
try
{
bis = blob.getBinaryStream();
sardine.put(url, bis);
}
finally
{
if( bis != null )bis.close();
}

return 0;
}
$$

実行例
drop table if exists blobtest;
create table blobtest (c1 numeric(4), c2 blob);
insert into blobtest values (1,
sardine_get_binary(
'http://192.168.1.208:8080/repository/default/SF.JPG',
'user', 'password')
);
select sardine_put_binary(
'http://192.168.1.208:8080/repository/default/sf2.jpg',
'user', 'password', c2)
from blobtest
where c1 = 1;


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月29日月曜日

H2 DatabaseとsardineでCLOBをWebDAVサーバ上のファイルとしてアップロードする関数を作成する

H2 DatabaseとsardineでCLOBをWebDAVサーバ上のファイルとしてアップロードする関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_put_ascii as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
int sardine_put_ascii(String url,
String user, String password, Clob clob)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Sardine sardine = SardineFactory.begin(user, password);
InputStream ais = null;
try
{
ais = clob.getAsciiStream();
sardine.put(url, ais);
}
finally
{
if( ais != null )ais.close();
}

return 0;
}
$$


実行例
drop table if exists clobtest;
create table clobtest (c1 numeric(4), c2 clob);
insert into clobtest values (1,
sardine_get_ascii(
'http://192.168.1.208:8080/repository/default/test.txt',
'user', 'password')
);
select sardine_put_ascii(
'http://192.168.1.208:8080/repository/default/test2.txt',
'user', 'password', c2)
from clobtest
where c1 = 1;


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月28日日曜日

H2 DatabaseとsardineでWebDAVサーバ上のファイルをBLOBとして返す関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のファイルをBLOBとして返す関数を作成するには、以下の手順を実行します。

1.以下のソースファイルをantなどでコンパイルします。
SardineGetBinaryFunction.java
package com.serverarekore.h2;
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;

public class SardineGetBinaryFunction
{
static public InputStream sardine_get_binary(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Sardine sardine = SardineFactory.begin(user, password);
InputStream ris = null;

if( sardine.exists(url) == false ){
return null;
}

InputStream is = sardine.getInputStream(url);

final File tf = File.createTempFile("lobtmp", null);
FileOutputStream fos = new FileOutputStream(tf.getAbsolutePath());

byte buf[] = new byte[8192];
int rs = -1;
try
{
while( (rs = is.read(buf)) != -1 ){
fos.write(buf, 0, rs);
}
}
finally
{
if( fos != null )fos.close();
if( is != null )is.close();
}

ris = new InputStream(){
private final InputStream fis = new FileInputStream(tf);
private boolean deleted = false;
private final File fn = tf;
public int autoDelete(int sz) throws IOException
{
if(sz < 0 ){
close();
}
return sz;
}
public void close() throws IOException
{
if( !deleted ){
fis.close();
fn.delete();
deleted = true;
}
}
public int read(byte buf[], int off, int len) throws IOException
{
return deleted?-1:autoDelete(fis.read(buf, off, len));
}

public int read(byte buf[]) throws IOException
{
return deleted?-1:autoDelete(fis.read(buf));
}

public int read() throws IOException
{
return deleted?-1:autoDelete(fis.read());
}
};

return ris;
}
}


build.xmlのサンプル
<project name="H2Functions" default="compile" basedir=".">
<path id="lib.classpath">
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
<pathelement location="c:/Program Files/H2/bin/h2-1.3.146.jar"/>
</path>
<target name="compile">
<echo message="project: ${ant.project.name}"/>
<mkdir dir="build/" />
<javac srcdir="src/" destdir="build/"
deprecation="on" debug="on">
<classpath>
<path refid="lib.classpath"/>
</classpath>
</javac>
<jar destfile="c:/share/jars/SardineGetBinary.jar"
basedir="build"/>
</target>
<target name="clean">
<delete dir="build" />
</target>
</project>


2.システム環境変数CLASSPATHにコンパイルしてできたSardineGetBinary.jarを追加し、
H2 Databaseのサービスを再起動。

3.H2 Consoleから以下のコマンドを実行して、ファンクション作成。
create alias sardine_get_binary for 
"com.serverarekore.h2.SardineGetBinaryFunction.sardine_get_binary";

4.以下のようなコマンドでWebDAVサーバ上のファイルをBLOBに格納できます。
drop table if exists blobtest;
create table blobtest (c1 numeric(4), c2 blob);
insert into blobtest values (1,
sardine_get_binary(
'http://192.168.1.208:8080/repository/default/SF.JPG',
'user', 'password')
);

※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月27日土曜日

H2 DatabaseとsardineでWebDAVサーバ上のファイルをCLOBとして返す関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のファイルをCLOBとして返す関数を作成するには、以下の手順を実行します。

1.以下のソースファイルをantなどでコンパイルします。
SardineGetAsciiFunction.java
package com.serverarekore.h2;
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;

public class SardineGetAsciiFunction
{
static public Reader sardine_get_ascii(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Sardine sardine = SardineFactory.begin(user, password);
Reader reader = null;

if( sardine.exists(url) == false ){
return null;
}
InputStreamReader isr = new InputStreamReader(
sardine.getInputStream(url)
);

final File tf = File.createTempFile("lobtmp", null);
FileWriter fw = new FileWriter(tf.getAbsolutePath());

char buf[] = new char[8192];
int rs = -1;
try
{
while( (rs = isr.read(buf)) != -1 ){
fw.write(buf, 0, rs);
}
}
finally
{
fw.close();
isr.close();
}

reader = new Reader(){
private final Reader reader = new FileReader(tf);
private boolean deleted = false;
private final File fn = tf;
public int autoDelete(int sz) throws IOException
{
if(sz < 0 ){
close();
}
return sz;
}
public void close() throws IOException
{
if( !deleted ){
reader.close();
fn.delete();
deleted = true;
}
}
public int read(char buf[], int off, int len) throws IOException
{
return deleted?-1:autoDelete(reader.read(buf, off, len));
}

public int read(char buf[]) throws IOException
{
return deleted?-1:autoDelete(reader.read(buf));
}

public int read() throws IOException
{
return deleted?-1:autoDelete(reader.read());
}
public int read(java.nio.CharBuffer target) throws IOException
{
return deleted?-1:autoDelete(reader.read(target));
}
};

return reader;
}
}


build.xmlのサンプル
<project name="H2Functions" default="compile" basedir=".">
<path id="lib.classpath">
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
<pathelement location="c:/Program Files/H2/bin/h2-1.3.146.jar"/>
</path>
<target name="compile">
<echo message="project: ${ant.project.name}"/>
<mkdir dir="build/" />
<javac srcdir="src/" destdir="build/"
deprecation="on" debug="on">
<classpath>
<path refid="lib.classpath"/>
</classpath>
</javac>
<jar destfile="c:/share/jars/SardineGetAscii.jar"
basedir="build"/>
</target>
<target name="clean">
<delete dir="build" />
</target>
</project>


2.システム環境変数CLASSPATHにコンパイルしてできたSardineGetAscii.jarを追加し、
H2 Databaseのサービスを再起動。

3.H2 Consoleから以下のコマンドを実行して、ファンクション作成。
create alias sardine_get_ascii for 
"com.serverarekore.h2.SardineGetAsciiFunction.sardine_get_ascii";

4.以下のようなコマンドでWebDAVサーバ上のファイルをCLOBに格納できます。
drop table if exists clobtest;
create table clobtest (c1 numeric(4), c2 clob);
insert into clobtest values (1,
sardine_get_ascii(
'http://192.168.1.208:8080/repository/default/test.txt',
'user', 'password')
);
select * from clobtest;

※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

○動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月26日金曜日

H2 DatabaseとsardineでWebDAVサーバ上のリソースが存在するか調べる関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のリソースが存在するか調べる関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_exists as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
Boolean sardine_exists(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Sardine sardine = SardineFactory.begin(user, password);
return sardine.exists(url);
}
$$


実行例
select sardine_exists(
'http://192.168.1.208:8080/repository/default/test.txt',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月25日木曜日

H2 DatabaseとsardineでWebDAVサーバ上のファイルのサイズを取得する関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のファイルのサイズを取得する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_get_content_length as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
Long sardine_get_content_length(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Long result = null;

Sardine sardine = SardineFactory.begin(user, password);
List<DavResource> resources = sardine.getResources(url);
for(DavResource resource : resources){
result = resource.getContentLength();
break;
}
return result;
}
$$


実行例
select sardine_get_content_length(
'http://192.168.1.208:8080/repository/default/test.txt',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月24日水曜日

H2 DatabaseとsardineでWebDAVサーバ上のディレクトリを列挙する関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のディレクトリを列挙する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_list_directory as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
ResultSet sardine_list_directory(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

SimpleResultSet rs = new SimpleResultSet();
rs.addColumn("NAME", Types.VARCHAR, 512, 0);
rs.addColumn("URL", Types.VARCHAR, 2048, 0);

Sardine sardine = SardineFactory.begin(user, password);
List<DavResource> resources = sardine.getResources(url);
for(DavResource resource : resources){
if( resource.isDirectory() ){
rs.addRow(resource.getNameDecoded(), resource.getAbsoluteUrl());
}
}
return rs;
}
$$


実行例
call sardine_list_directory(
'http://192.168.1.208:8080/repository/default/',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月23日火曜日

H2 DatabaseとsardineでWebDAVサーバ上のファイルのコンテントタイプを取得する関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のファイルのコンテントタイプを取得する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_get_content_type as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
String sardine_get_content_type(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

String result = null;

Sardine sardine = SardineFactory.begin(user, password);
List<DavResource> resources = sardine.getResources(url);
for(DavResource resource : resources){
result = resource.getContentType();
break;
}
return result;
}
$$


実行例
select sardine_get_content_type(
'http://192.168.1.208:8080/repository/default/test.txt',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月22日月曜日

H2 DatabaseとsardineでWebDAVサーバのディレクトリ上のファイルのURLを列挙する関数を作成する

H2 DatabaseとsardineでWebDAVサーバのディレクトリ上のファイルのURLを列挙する関数を作成するには、以下のコードを実行します。

create alias if not exists sardine_list_url as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
ResultSet sardine_list_url(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

SimpleResultSet rs = new SimpleResultSet();
rs.addColumn("NAME", Types.VARCHAR, 512, 0);
rs.addColumn("URL", Types.VARCHAR, 2048, 0);

Sardine sardine = SardineFactory.begin(user, password);
List<DavResource> resources = sardine.getResources(url);
for(DavResource resource : resources){
rs.addRow(resource.getNameDecoded(), resource.getAbsoluteUrl());
}
return rs;
}
$$


実行例
call sardine_list_url(
'http://192.168.1.208:8080/repository/default/',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月21日日曜日

H2 DatabaseとsardineでWebDAVサーバ上のファイルの最終更新日時を取得する関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のファイルの最終更新日時を取得する関数を作成するには、以下のコードを実行します。

create alias if not exists sardine_get_modified as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
Timestamp sardine_get_modified(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Timestamp ts = null;

Sardine sardine = SardineFactory.begin(user, password);
List<DavResource> resources = sardine.getResources(url);
for(DavResource resource : resources){
ts = new Timestamp(resource.getModified().getTime());
break;
}
return ts;
}
$$


実行例
select sardine_get_modified(
'http://192.168.1.208:8080/repository/default/test.txt',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月20日土曜日

H2 DatabaseとsardineでWebDAVサーバ上のファイルの作成日時を取得する関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のファイルの作成日時を取得する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_get_creation as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
Timestamp sardine_get_creation(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

Timestamp ts = null;

Sardine sardine = SardineFactory.begin(user, password);
List<DavResource> resources = sardine.getResources(url);
for(DavResource resource : resources){
ts = new Timestamp(resource.getCreation().getTime());
break;
}
return ts;
}
$$


実行例
select sardine_get_creation(
'http://192.168.1.208:8080/repository/default/test.txt',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月19日金曜日

H2 DatabaseとsardineでWebDAVサーバ上のファイルを列挙する関数を作成する

H2 DatabaseとsardineでWebDAVサーバ上のファイルを列挙する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists sardine_list_files as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import com.googlecode.sardine.*;
@CODE
ResultSet sardine_list_files(String url,
String user, String password)
throws Exception
{
if( url == null ){
throw new Exception("url is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;

SimpleResultSet rs = new SimpleResultSet();
rs.addColumn("NAME", Types.VARCHAR, 512, 0);

Sardine sardine = SardineFactory.begin(user, password);
List<DavResource> resources = sardine.getResources(url);
for(DavResource resource : resources){
rs.addRow(resource.getNameDecoded());
}
return rs;
}
$$


実行例
call sardine_list_files(
'http://192.168.1.208:8080/repository/default/',
'user', 'password'
);


※システム環境変数CLASSPATHにtools.jarとSardine関連のjar
(sardine.jar, httpcore-4.0.1.jar, httpclient-4.0.1.jar,
commons-codec-1.4.jar, commons-logging-1.1.1.jar)を追加しておくこと。

動作環境
JDK6 Update 22, H2 Database 1.2.146 (2010-11-08), sardine-129

○関連情報
H2 Database上でsardineでWebDAVサーバと連携するユーザ定義関数のまとめ
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月18日木曜日

H2 DatabaseとJCIFSでWindows共有上のファイルの共有セキュリティを列挙する関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルの共有セキュリティを列挙する関数を作成するには、以下のスクリプトを実行します。

drop alias if exists jcifs_get_share_security;
create alias if not exists jcifs_get_share_security as $$
import java.io.*;
import java.sql.*;
import java.util.*;
import jcifs.smb.*;
import org.h2.tools.*;
@CODE
ResultSet jcifs_get_share_security(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SimpleResultSet rs = new SimpleResultSet();
rs.addColumn("NAME", Types.VARCHAR, 512, 0);
rs.addColumn("FILE_APPEND_DATA", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_DELETE", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_EXECUTE", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_READ_ATTRIBUTES", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_READ_DATA", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_READ_EA", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_WRITE_ATTRIBUTES", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_WRITE_DATA", Types.BOOLEAN, 1, 0);
rs.addColumn("FILE_WRITE_EA", Types.BOOLEAN, 1, 0);

SmbFile sfile = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename);
ACE ace[] = sfile.getShareSecurity(true);

for(int fi=0;fi<ace.length;fi++){
rs.addRow(ace[fi].getSID().toDisplayString(),
((ace[fi].getAccessMask() & ACE.FILE_APPEND_DATA) != 0),
((ace[fi].getAccessMask() & ACE.FILE_DELETE) != 0),
((ace[fi].getAccessMask() & ACE.FILE_EXECUTE) != 0),
((ace[fi].getAccessMask() & ACE.FILE_READ_ATTRIBUTES) != 0),
((ace[fi].getAccessMask() & ACE.FILE_READ_DATA) != 0),
((ace[fi].getAccessMask() & ACE.FILE_READ_EA) != 0),
((ace[fi].getAccessMask() & ACE.FILE_WRITE_ATTRIBUTES) != 0),
((ace[fi].getAccessMask() & ACE.FILE_WRITE_DATA) != 0),
((ace[fi].getAccessMask() & ACE.FILE_WRITE_EA) != 0)
);
}
return rs;
}
$$


実行例
call jcifs_get_share_security('LIFERAY1', 
'test1', 'test1', 'liferay1',
'share', 'acetest.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月17日水曜日

H2 DatabaseとJCIFSでWindows共有上のファイルの読み取り専用を外す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルの読み取り専用を外す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_set_readwrite as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_set_readwrite(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

file.setReadWrite();
return 0;
}
$$


実行例
call jcifs_set_readwrite(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月16日火曜日

H2 DatabaseとJCIFSでWindows共有上のファイルをリードオンリーに設定する関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルをリードオンリーに設定する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_set_readonly as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_set_readonly(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

file.setReadOnly();
return 0;
}
$$


実行例
call jcifs_set_readonly(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月15日月曜日

H2 DatabaseとJCIFSでWindows共有上のファイルがリードオンリーかどうかを返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルがリードオンリーかどうかを返す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_is_readonly as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
Boolean jcifs_is_readonly(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

return new Boolean(!file.canWrite());
}
$$


実行例
select jcifs_is_readonly(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'readonly.txt');
select jcifs_is_readonly(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月14日日曜日

H2 DatabaseとJCIFSでWindows共有上のファイルの最終更新日時を設定する関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルの最終更新日時を設定する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_set_last_modified as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_set_last_modified(String domain,
String user, String password, String server,
String path, String filename, Timestamp ts)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}
if( ts == null ){
throw new Exception("timestamp is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

file.setLastModified(ts.getTime());
return 0;
}
$$


実行例
select jcifs_set_last_modified(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt',
cast('2010-10-12 12:34:56' as timestamp));


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月13日土曜日

H2 DatabaseとJCIFSでWindows共有上のファイルの作成時間を設定する関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルの作成時間を設定する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_set_create_time as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_set_create_time(String domain,
String user, String password, String server,
String path, String filename, Timestamp ts)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}
if( ts == null ){
throw new Exception("timestamp is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

file.setCreateTime(ts.getTime());
return 0;
}
$$


実行例
select jcifs_set_create_time(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt',
cast('2010-10-12 12:34:56' as timestamp));


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月12日金曜日

H2 DatabaseとJCIFSでWindows共有上のファイルをリネームする関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルをリネームする関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_rename as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_rename(String domain,
String user, String password, String server,
String path, String filename, String filename2)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}
if( filename2 == null ){
throw new Exception("filename2 is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);
SmbFile file2 = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename2
);

file.renameTo(file2);
return 0;
}
$$


実行例
select jcifs_rename(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt', 'renamed_test.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月11日木曜日

H2 DatabaseとJCIFSでWindows共有上にディレクトリを作成する関数を作成する

H2 DatabaseとJCIFSでWindows共有上にディレクトリを作成する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_mkdirs as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_mkdirs(String domain,
String user, String password, String server,
String path)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path
);

file.mkdirs();
return 0;
}
$$


実行例
call jcifs_mkdirs(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share/test_directory');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月10日水曜日

H2 DatabaseとJCIFSでWindows共有上のパスが隠しファイルかどうかを返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のパスが隠しファイルかどうかを返す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_is_hidden as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
Boolean jcifs_is_hidden(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

return new Boolean(file.isHidden());
}
$$


実行例
select jcifs_is_hidden(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'hidden.txt');
select jcifs_is_hidden(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月9日火曜日

H2 DatabaseとJCIFSでWindows共有上のパスがファイルかどうかを返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のパスがファイルかどうかを返す関数を作成するには、以下のコードを実行します。

create alias if not exists jcifs_is_file as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
Boolean jcifs_is_file(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

return new Boolean(file.isFile());
}
$$


実行例
select jcifs_is_file(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'testdir');
select jcifs_is_file(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月8日月曜日

H2 DatabaseとJCIFSでWindows共有上のパスがディレクトリかどうかを返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のパスがディレクトリかどうかを返す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_is_directory as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
Boolean jcifs_is_directory(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

return new Boolean(file.isDirectory());
}
$$


実行例
select jcifs_is_directory(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'testdir');
select jcifs_is_directory(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'test.txt');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月7日日曜日

H2 DatabaseとJCIFSでWindows共有上のパスの親パスを返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のパスの親パスを返す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_get_parent as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
String jcifs_get_parent(String domain,
String user, String password, String server,
String path)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path
);

return file.getParent();
}
$$


実行例
select jcifs_get_parent(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share/H2');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月6日土曜日

H2 DatabaseとJCIFSでWindows共有上のファイルの最終更新日時を返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルの最終更新日時を返す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_get_last_modified as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
Timestamp jcifs_get_last_modified(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

return new Timestamp(file.getLastModified());
}
$$


実行例
select jcifs_get_last_modified(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'SF.JPG');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月5日金曜日

H2 DatabaseとJCIFSでWindows共有上の空きスペースを返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上の空きスペースを返す関数を作成するには、以下のコードを実行します。

create alias if not exists jcifs_get_freesize as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
long jcifs_get_freesize(String domain,
String user, String password, String server,
String path)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path
);

return file.getDiskFreeSpace();
}
$$


実行例
select jcifs_get_freesize(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月4日木曜日

H2 DatabaseとJCIFSでWindows共有上のファイルのサイズを返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルのサイズを返す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_get_filesize as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
long jcifs_get_filesize(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

return file.length();
}
$$


実行例
select jcifs_get_filesize(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'SF.JPG');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月3日水曜日

H2 DatabaseとJCIFSでWindows共有上のファイルを削除する関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルを削除する関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_delete_file as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_delete_file(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

file.delete();

return 0;
}
$$


実行例
call jcifs_delete_file(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'SF2.JPG');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月2日火曜日

H2 DatabaseとJCIFSでWindows共有上のファイルの作成日時を返す関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルの作成日時を返す関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_get_create_time as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
Timestamp jcifs_get_create_time(String domain,
String user, String password, String server,
String path, String filename)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}

SmbFile file = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);

return new Timestamp(file.createTime());
}
$$


実行例
select jcifs_get_create_time(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'SF.JPG');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。

2010年11月1日月曜日

H2 DatabaseとJCIFSでWindows共有上のファイルをコピーする関数を作成する

H2 DatabaseとJCIFSでWindows共有上のファイルをコピーする関数を作成するには、以下のスクリプトを実行します。

create alias if not exists jcifs_copy_file as $$ 
import java.io.*;
import java.sql.*;
import org.h2.tools.*;
import jcifs.smb.*;
@CODE
int jcifs_copy_file(String domain,
String user, String password, String server,
String path, String filename,
String path2, String filename2)
throws Exception
{
if( domain == null ){
throw new Exception("domain is not specified.");
}
user = (user == null)?"":user;
password = (password == null)?"":password;
if( server == null ){
throw new Exception("server is not specified.");
}
if( path == null ){
throw new Exception("path is not specified.");
}
if( filename == null ){
throw new Exception("filename is not specified.");
}
if( path2 == null ){
throw new Exception("path2 is not specified.");
}
if( filename2 == null ){
throw new Exception("filename2 is not specified.");
}

SmbFile src = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path + "/" + filename
);
SmbFile dst = new SmbFile(
"smb://" + domain + ";" + user + ":" + password +
"@" + server + "/" + path2 + "/" + filename2
);
src.copyTo(dst);

return 0;
}
$$


実行例
call jcifs_copy_file(
'LIFERAY1',
'test1', 'test1', 'liferay1',
'share', 'SF.JPG',
'share', 'SF2.JPG');


※システム環境変数CLASSPATHにtools.jarとJCIFSのjar
(jcifs-1.3.15.jar)を追加しておくこと。

動作環境
JDK6 Update 21, H2 Database 1.2.143 (2010-09-18), JCIFS 1.3.15
○関連情報
・H2 Databaseに関する他の記事はこちらを参照してください。