规范maven项目结构并升级版本号(1.27-SNAPSHOT)

This commit is contained in:
veryben
2017-05-18 20:42:57 +08:00
parent 51914bf1ac
commit 69417006f4
41 changed files with 681 additions and 699 deletions

View File

@@ -1,131 +0,0 @@
Version 1.26 2017-04-17
* IniFileReader use getResourceAsStream first
* change charactor encoding to UTF-8
Version 1.25 2014-12-07
* support connection stats since FastDFS Server v5.04
Version 1.24 2012-12-01
* bug fixed: StorageClient.get_file_info support appender file and
slave file correctly
Version 1.23 2012-11-18
* query_file_info changed, you must
upgrade your FastDFS server to V4.03 or higher version
Version 1.22 2012-10-06
* group and storage stat both add 1 field, you must
upgrade your FastDFS server to V4.00 or higher version
Version 1.21 2012-06-25
* add exception class MyException
* class IniFileReader same as FastDHT java client
Version 1.20 2012-05-27
* appender file support truncate and modify operation
* storage stat add 6 fields, you must upgrade your
FastDFS server to V3.08 or higher version
Version 1.19 2011-05-29
* storage stat add field if_trunk_server, you must upgrade your
FastDFS server to V3.00 or higher version
* tracker or storage close no throw IOException (silence close)
Version 1.18 2011-01-29
* storage stat support total_upload_bytes, success_upload_bytes,
total_download_bytes and success_download_bytes etc. 18 fields
you must upgrade your FastDFS server to V2.08 or higher version
* StorageClient add functions: get_file_info and query_file_info,
StorageClient1 add functions: get_file_info1 and query_file_info1
Version 1.17 2011-01-09
* slave file's prefix name can be empty,
you must upgrade your FastDFS server to V2.07 or higher version
* support list group stats and storage stats
* support delete storage server
* add monitor class: org.csource.fastdfs.test.Monitor
Version 1.16 2010-10-17
* upload file can get available storage server list of the group,
you must upgrade your FastDFS server to V2.01 or higher version
Version 1.15 2010-08-07
* protocol reponse command changed. you must upgrade your FastDFS server
to V2.00 or higher version
* upload file protocol changed, you must upgrade your FastDFS server
to V2.00 or higher version
Version 1.14 2010-06-22
* bug fixed: delete the new created local file when download_file to
local file fail
* support connect timeout for connecting, the network timeout used to
read and write
Version 1.13 2010-05-30
* org.csource.fastdfs.ProtoCommon add method genSlaveFilename
* support ACTIVE_TEST command. you must upgrade your FastDFS server
to V1.28 or higher version
Version 1.12 2009-11-27
* support uploading slave file
* file ext name change from 5 to 6, you must upgrade your FastDFS server
to V1.23 or higher version
Version 1.11 2009-10-22
* correct interface / class name from beginning with Dowload to Download
* auto reconnect with reused connection when IOException ocurs
* test classes move to package org.csource.fastdfs.test
* add classes org.csource.fastdfs.UploadStream and
org.csource.fastdfs.DownloadStream for streaming writing or reading
Version 1.10 2009-10-04
* support multi-tracker server group, you can make multi
org.csource.fastdfs.TrackerClient instances for each tracker server group
Version 1.9 2009-10-01
* add load test class: org.csource.fastdfs.TestLoad
* network IO performance enhancement
* upload file support callback for sending file content
Version 1.8 2009-08-30
* TrackerClient, in function getConnection, add synchronized to avoid conflict
* support file URL with token
Version 1.7 2009-08-01
* support cmd TRACKER_PROTO_CMD_SERVICE_QUERY_FETCH_ALL: query all storage
servers, you must upgrade your FastDFS server to V1.19 or higher version
Version 1.6 2009-05-24
* download file support offset and download bytes, you must upgrade your
FastDFS server to V1.18 or higher version
Version 1.5 2009-02-14
* client can specify group name when upload file, you must upgrade your
FastDFS server to V1.16 or higher version
Version 1.4 2008-11-10
* upload file support ext name, you must upgrade your
FastDFS server to V1.12 or higher version
* upload protocol add field store_path_index (1 byte)
* add method TrackerClient.getUpdateStorage. to support getmeta, setmeta
and delete file
* TrackerClient.getFetchStorage bug fixed
Version 1.3 2008-10-16
* client download file support callback function(class)
* add class "StorageClient1" and function "TrackerClient.getFetchStorage1"
to combine 2 fields: group name and filename to 1 field: file id
* add anothor client test program: TestClient1.java to use file id
Version 1.2 2008-09-08
* communication protocol changed to support large file exceed 2GB:
all integer field is 8 bytes big-endian,
you must upgrade your FastDFS server to V1.8 or higher version
Version 1.1 2008-08-10
* upload file package remove the one pad byte field, you must upgrade your
FastDFS server to V1.4 or higher version
Version 1.0 2008-08-03
* first version

View File

@@ -1,27 +0,0 @@
Copyright (C) 2008 Happy Fish / YuQing
FastDFS Java Client API may be copied only under the terms of
the BSD license.
Please visit the FastDFS Home Page for more detail.
English language: http://english.csource.org/
Chinese language: http://www.csource.org/
The jar file is compiled by JDK1.5, you can download the last version
from google code: http://code.google.com/p/fastdfs/downloads/list
run the FastDFS Java Client test:
java -cp <fastdfs_client_jar_filename> org.csource.fastdfs.test.TestClient <config_filename> <upload_filename>
eg.:
java -cp fastdfs_client_v1.25.jar org.csource.fastdfs.test.TestClient fdfs_client.conf c:\windows\system32\notepad.exe
or:
java -cp fastdfs_client_v1.25.jar org.csource.fastdfs.test.TestClient fdfs_client.conf /usr/include/stdlib.h
run the FastDFS monitor:
java -cp <fastdfs_client_jar_filename> org.csource.fastdfs.test.Monitor <config_filename>
eg.:
java -cp fastdfs_client_v1.25.jar org.csource.fastdfs.test.Monitor fdfs_client.conf

View File

@@ -1,55 +0,0 @@
<?xml version="1.0"?>
<!-- obfuscate -->
<project name="fastdfs_client" default="jar" basedir=".">
<target name="init">
<!-- The root directory of the workspace -->
<property name="fastdfs_client.home" value="."/>
<!-- The destination directory for the build -->
<property name="fastdfs_client.build" value="${fastdfs_client.home}/build"/>
<!-- The source directory for the build -->
<property name="fastdfs_client.src" value="${fastdfs_client.home}"/>
<!-- The destination directory for all the compiled classes. -->
<property name="fastdfs_client.bin_dir" value="${fastdfs_client.build}/classes"/>
<!-- The classpath used for building the workspace. -->
<property name="jar" value="${fastdfs_client.build}/fastdfs_client.jar"/>
</target>
<target name="compile" depends="init">
<mkdir dir="${fastdfs_client.bin_dir}"/>
<javac srcdir="${fastdfs_client.src}"
destdir="${fastdfs_client.bin_dir}"
includes="org/**/*.java"
debug="on"
encoding="UTF-8"
failonerror="true"/>
</target>
<target name="components" depends="init">
</target>
<!-- create .jar -->
<target name="jar" depends="compile">
<jar jarfile="${jar}"
basedir="${fastdfs_client.bin_dir}"
includes="org/csource/**">
<fileset dir="${fastdfs_client.src}">
<include name="*.conf"/>
</fileset>
</jar>
</target>
<target name="clean" depends="init">
<delete dir="${fastdfs_client.build}"/>
</target>
<!--<target name="core" depends="compile, components"/>-->
<target name="core" depends="compile"/>
</project>

View File

@@ -1,50 +1,50 @@
package org.csource.fastdfs;
import java.io.IOException;
import java.io.OutputStream;
import org.csource.fastdfs.DownloadCallback;
/**
* Download file by stream (download callback class)
* @author zhouzezhong & Happy Fish / YuQing
* @version Version 1.11
*/
public class DownloadStream implements DownloadCallback
{
private OutputStream out;
private long currentBytes = 0;
public DownloadStream(OutputStream out)
{
super();
this.out = out;
}
/**
* recv file content callback function, may be called more than once when the file downloaded
* @param fileSize file size
* @param data data buff
* @param bytes data bytes
* @return 0 success, return none zero(errno) if fail
*/
public int recv(long fileSize, byte[] data, int bytes)
{
try
{
out.write(data, 0, bytes);
}
catch(IOException ex)
{
ex.printStackTrace();
return -1;
}
currentBytes += bytes;
if (this.currentBytes == fileSize)
{
this.currentBytes = 0;
}
return 0;
}
}
package org.csource.fastdfs;
import java.io.IOException;
import java.io.OutputStream;
import org.csource.fastdfs.DownloadCallback;
/**
* Download file by stream (download callback class)
* @author zhouzezhong & Happy Fish / YuQing
* @version Version 1.11
*/
public class DownloadStream implements DownloadCallback
{
private OutputStream out;
private long currentBytes = 0;
public DownloadStream(OutputStream out)
{
super();
this.out = out;
}
/**
* recv file content callback function, may be called more than once when the file downloaded
* @param fileSize file size
* @param data data buff
* @param bytes data bytes
* @return 0 success, return none zero(errno) if fail
*/
public int recv(long fileSize, byte[] data, int bytes)
{
try
{
out.write(data, 0, bytes);
}
catch(IOException ex)
{
ex.printStackTrace();
return -1;
}
currentBytes += bytes;
if (this.currentBytes == fileSize)
{
this.currentBytes = 0;
}
return 0;
}
}

View File

@@ -1,6 +1,4 @@
package org.csource.fastdfs.test;
import org.csource.common.IniFileReader;
package org.csource.common;
/**
* Created by James on 2017/5/16.
@@ -18,7 +16,7 @@ public class IniFileReaderTests {
System.out.println("http.anti_steal_token: " + iniFileReader.getBoolValue("http.anti_steal_token", false));
System.out.println("http.secret_key: " + iniFileReader.getStrValue("http.secret_key"));
String[] tracker_servers = iniFileReader.getValues("tracker_server");
if(tracker_servers != null) {
if (tracker_servers != null) {
System.out.println("tracker_servers.length: " + tracker_servers.length);
for (int i = 0; i < tracker_servers.length; i++) {
System.out.println(String.format("tracker_servers[%s]: %s", i, tracker_servers[i]));

View File

@@ -0,0 +1,9 @@
connect_timeout = 2
network_timeout = 30
charset = UTF-8
http.tracker_http_port = 8080
http.anti_steal_token = no
http.secret_key = FastDFS1234567890
tracker_server = 10.0.11.245:22122
tracker_server = 10.0.11.246:22122