`

S3特性测试

 
阅读更多

 

package amazons3;

import java.io.File;
import java.io.IOException;
import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.util.Date;
import java.util.Map;
import java.util.TreeMap;

import org.apache.commons.lang.StringUtils;
import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.HttpHeaders;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpHead;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.entity.FileEntity;
import org.apache.http.entity.mime.MultipartEntity;
import org.apache.http.entity.mime.content.ContentBody;
import org.apache.http.entity.mime.content.FileBody;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.cookie.DateUtils;
import org.apache.http.util.EntityUtils;
import org.apache.log4j.Logger;

/**
 * S3 client with apache httpclient 4.x
 * 
 * @author zhangpu
 * 
 */
public class S3HttpClient {

	private static final Logger logger = Logger.getLogger(S3HttpClient.class);

	static String accessKey = "AKIAJC2MNN5XZWLRB4UQ";
	static String secretKey = "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";
	static String bucket = "zhangpu";

	public static void main(String[] args) throws Exception {
		File localFile = new File("D:/temp/s3testfile.txt");
		String objectName = localFile.getName() + "1";
		// postObject(bucket, objectName, localFile, null, false, null, null);
		Map<String, String> protocols = new TreeMap<String, String>();
		Map<String, String> metas = new TreeMap<String, String>();
		metas.put("x-amz-meta-name", "zhangpu");
		metas.put("x-amz-meta-type", "type");
		putObject(bucket, objectName, localFile, "text/plant", false, null, metas);
		getObject(bucket, objectName, null, null, null, null);
		protocols.clear();
		protocols.put(HttpHeaders.IF_NONE_MATCH, "3e89d34c93742d0a92d4dce69a857e2f");
		protocols.put(HttpHeaders.CONTENT_ENCODING, "gzip");
		getObject(bucket, objectName, null, protocols, null, null);
		headObject(bucket, objectName, null, null);
		deleteObject(bucket, objectName, null);
	}

	/**
	 * POST方式上传文件
	 * 
	 * @param bucket
	 * @param objectName
	 * @param localFile
	 * @param contentType
	 * @param checkDigest
	 * @param protocols
	 * @param metas
	 * @return
	 * @throws Exception
	 */
	public static Header[] postObject(String bucket, String objectName, File localFile, String contentType, boolean checkDigest, Map<String, String> protocols,
			Map<String, String> metas) throws Exception {

		HttpClient httpClient = new DefaultHttpClient();
		if (StringUtils.isBlank(objectName)) {
			objectName = localFile.getName();
		}
		String url = "http://" + bucket + ".s3.amazonaws.com/" + objectName;
		String resource = "/" + bucket + "/" + objectName;
		HttpPost request = new HttpPost(url);

		Charset charset = Charset.forName("UTF-8");
		MultipartEntity mpEntity = new MultipartEntity();
		mpEntity.addPart("key", new StringBody("/user/${filename}", charset));
		if (StringUtils.isNotBlank(contentType)) {
			mpEntity.addPart("Content-Type", new StringBody(contentType, charset));
		}

		if (metas != null && metas.size() > 0) {
			for (Map.Entry<String, String> entry : metas.entrySet()) {
				mpEntity.addPart(entry.getKey(), new StringBody(entry.getValue(), charset));
			}
		}
		mpEntity.addPart("AWSAccessKeyId", new StringBody(accessKey, charset));
		String Signature = SignUtils.hmac(accessKey, secretKey, "POST", "", contentType, "", resource, protocols, metas);
		mpEntity.addPart("Signature", new StringBody(Signature, charset));

		ContentBody fileBody = new FileBody(localFile);
		mpEntity.addPart("file", fileBody);

		request.setEntity(mpEntity);
		printRequest(request);

		HttpResponse response = httpClient.execute(request);
		printResponse(response);
		HttpEntity entity = response.getEntity();
		if (entity != null && entity.getContentLength() > 0) {
			logger.info("entity:\n" + EntityUtils.toString(response.getEntity()));
		}
		logger.info("");
		logger.info("");

		return null;
	}

	/**
	 * 上传文件
	 * 
	 * @param bucket
	 * @param objectName
	 * @param localFile
	 * @param contentType
	 * @param md5
	 * @param protocols
	 * @param metas
	 */
	public static void putObject(String bucket, String objectName, File localFile, String contentType, boolean checkDigest, Map<String, String> protocols,
			Map<String, String> metas) throws Exception {

		HttpClient httpClient = new DefaultHttpClient();
		if (StringUtils.isBlank(objectName)) {
			objectName = localFile.getName();
		}
		String url = "http://" + bucket + ".s3.amazonaws.com/" + objectName;
		String resource = "/" + bucket + "/" + objectName;
		HttpPut request = new HttpPut(url);
		String contentMD5 = "";
		if (checkDigest) {
			contentMD5 = SignUtils.md5file(localFile);
		}
		Date date = new Date();
		String dateString = DateUtils.formatDate(date, DateUtils.PATTERN_RFC1036);
		String authorization = SignUtils.sign(accessKey, secretKey, "PUT", contentMD5, contentType, dateString, resource, protocols, metas);
		request.addHeader("Date", dateString);
		request.addHeader("Authorization", authorization);
		if (StringUtils.isNotBlank(contentMD5)) {
			request.addHeader("Content-MD5", contentMD5);
		}
		if (StringUtils.isNotBlank(contentType)) {
			request.addHeader("Content-Type", contentType);
		}
		marshallProtocol(request, protocols);
		marshallProtocol(request, metas);
		printRequest(request);
		FileEntity fileEntity = new FileEntity(localFile, contentType);
		request.setEntity(fileEntity);
		HttpResponse response = httpClient.execute(request);
		printResponse(response);
		HttpEntity entity = response.getEntity();
		if (entity != null && entity.getContentLength() > 0) {
			logger.info("entity:\n" + EntityUtils.toString(response.getEntity()));
		}
		logger.info("");
		logger.info("");
	}

	/**
	 * 下载文件
	 * 
	 * @param bucket
	 * @param objectName
	 * @param versionId
	 * @param protocols
	 * @param metas
	 * @throws IOException
	 */
	public static void getObject(String bucket, String objectName, String versionId, Map<String, String> protocols, Map<String, String> metas,
			Map<String, String> queries) throws IOException {
		HttpClient httpClient = new DefaultHttpClient();

		String query = marshallQuery(queries);
		String url = "http://" + bucket + ".s3.amazonaws.com/" + objectName + query;
		HttpGet request = new HttpGet(url);
		Date date = new Date();
		String dateString = DateUtils.formatDate(date, DateUtils.PATTERN_RFC1036);
		String resource = "/" + bucket + "/" + objectName + query;
		String authorization = SignUtils.sign(accessKey, secretKey, "GET", "", "", dateString, resource, protocols, metas);
		request.addHeader("Date", dateString);
		request.addHeader("Authorization", authorization);
		marshallProtocol(request, protocols);
		marshallProtocol(request, metas);

		printRequest(request);
		HttpResponse response = httpClient.execute(request);
		printResponse(response);
		HttpEntity entity = response.getEntity();
		if (entity != null && entity.getContentLength() > 0) {
			logger.info("entity:\n" + EntityUtils.toString(response.getEntity()));
		}
		logger.info("");
	}

	public static void headObject(String bucket, String objectName, String versionId, Map<String, String> protocols) throws IOException {

		HttpClient httpClient = new DefaultHttpClient();
		String url = "http://" + bucket + ".s3.amazonaws.com/" + objectName;

		HttpHead request = new HttpHead(url);
		Date date = new Date();
		String dateString = DateUtils.formatDate(date, DateUtils.PATTERN_RFC1036);
		String authorization = SignUtils.sign(accessKey, secretKey, "HEAD", "", "", dateString, "/" + bucket + "/" + objectName, null, null);
		request.addHeader("Date", dateString);
		request.addHeader("Authorization", authorization);
		marshallProtocol(request, protocols);

		printRequest(request);
		HttpResponse response = httpClient.execute(request);
		printResponse(response);

		HttpEntity entity = response.getEntity();
		if (entity != null && entity.getContentLength() > 0) {
			logger.info("entity:" + EntityUtils.toString(response.getEntity()));
		}
	}

	/**
	 * 删除对象
	 * 
	 * @param bucket
	 * @param objectName
	 * @param versionId
	 * @throws Exception
	 */
	public static void deleteObject(String bucket, String objectName, String versionId) throws Exception {
		HttpClient httpClient = new DefaultHttpClient();
		String url = "http://" + bucket + ".s3.amazonaws.com/" + URLEncoder.encode(objectName, "UTF-8");
		String resource = "/" + bucket + "/" + objectName;
		if (StringUtils.isNotBlank(versionId)) {
			url += "?versionId=" + versionId;
			resource += "?versionId=" + versionId;
		}
		HttpDelete request = new HttpDelete(url);
		Date date = new Date();
		String dateString = DateUtils.formatDate(date, DateUtils.PATTERN_RFC1036);
		String authorization = SignUtils.sign(accessKey, secretKey, "DELETE", "", "", dateString, resource, null, null);
		request.addHeader("Date", dateString);
		request.addHeader("Authorization", authorization);

		printRequest(request);
		HttpResponse response = httpClient.execute(request);
		printResponse(response);

		HttpEntity entity = response.getEntity();
		if (entity != null && entity.getContentLength() > 0) {
			logger.info("entity:" + EntityUtils.toString(response.getEntity()));
		}
	}

	/**
	 * 打印请求头
	 * 
	 * @param request
	 */
	private static void printRequest(HttpRequest request) {
		logger.info(request.getRequestLine());
		printHeader(request.getAllHeaders());
		logger.info("");
	}

	/**
	 * 打印响应头
	 * 
	 * @param response
	 */
	private static void printResponse(HttpResponse response) {
		logger.info(response.getStatusLine());
		printHeader(response.getAllHeaders());
	}

	/**
	 * 答应HTTP头
	 * 
	 * @param headers
	 */
	private static void printHeader(Header[] headers) {
		for (Header header : headers) {
			logger.info(header);
		}
	}

	/**
	 * 装配query
	 * 
	 * @param queries
	 * @return
	 */
	private static String marshallQuery(Map<String, String> queries) {
		String query = "";
		if (queries != null) {
			boolean first = true;
			for (Map.Entry<String, String> entry : queries.entrySet()) {
				query += (first ? "?" : "&") + entry.getKey() + "=" + entry.getValue();
				first = false;
			}
		}
		return query;
	}

	/**
	 * 设置请求协议
	 * 
	 * @param request
	 * @param protocols
	 */
	private static void marshallProtocol(HttpRequest request, Map<String, String> protocols) {
		if (protocols != null) {
			for (Map.Entry<String, String> entry : protocols.entrySet()) {
				request.addHeader(entry.getKey(), entry.getValue());
			}
		}
	}

}

 

 

package amazons3;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Map;

import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;

import org.apache.commons.codec.binary.Base64;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang.StringUtils;

import sun.misc.BASE64Encoder;

public final class SignUtils {

	/**
	 * MD5文件
	 * 
	 * @param file
	 * @return
	 * @throws NoSuchAlgorithmException
	 * @throws IOException
	 */
	public static String md5file(File file) throws NoSuchAlgorithmException, IOException {
		MessageDigest messageDigest = MessageDigest.getInstance("MD5");
		BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));
		byte[] buf = new byte[1024 * 100];
		int p = 0;
		while ((p = in.read(buf)) != -1) {
			messageDigest.update(buf, 0, p);
		}
		in.close();
		byte[] digest = messageDigest.digest();

		BASE64Encoder encoder = new BASE64Encoder();
		return encoder.encode(digest);
	}

	public static String simpleMd5File(File file) throws IOException {
		return DigestUtils.md5Hex(FileUtils.readFileToByteArray(file));
	}

	/**
	 * 计算签名
	 * 
	 * @param httpVerb
	 * @param contentMD5
	 * @param contentType
	 * @param date
	 * @param resource
	 * @param metas
	 * @return
	 */
	public static String sign(String accessKey, String secretKey, String httpVerb, String contentMD5, String contentType, String date, String resource,
			Map<String, String> protocols, Map<String, String> metas) {
		return "AWS" + " " + accessKey + ":" + hmac(accessKey, secretKey, httpVerb, contentMD5, contentType, date, resource, protocols, metas);
	}

	public static String hmac(String accessKey, String secretKey, String httpVerb, String contentMD5, String contentType, String date, String resource,
			Map<String, String> protocols, Map<String, String> metas) {

		String stringToSign = httpVerb + "\n" + StringUtils.trimToEmpty(contentMD5) + "\n" + StringUtils.trimToEmpty(contentType) + "\n" + StringUtils.trimToEmpty(date) + "\n";
		if (metas != null) {
			for (Map.Entry<String, String> entity : metas.entrySet()) {
				stringToSign += StringUtils.trimToEmpty(entity.getKey()) + ":" + StringUtils.trimToEmpty(entity.getValue()) + "\n";
			}
		}
		if (protocols != null) {
			for (Map.Entry<String, String> entity : protocols.entrySet()) {
				if (entity.getKey().startsWith("x-amz-")) {
					stringToSign += StringUtils.trimToEmpty(entity.getKey()) + ":" + StringUtils.trimToEmpty(entity.getValue()) + "\n";
				}
			}
		}
		stringToSign += resource;
		try {
			Mac mac = Mac.getInstance("HmacSHA1");
			byte[] keyBytes = secretKey.getBytes("UTF8");
			SecretKeySpec signingKey = new SecretKeySpec(keyBytes, "HmacSHA1");
			mac.init(signingKey);
			byte[] signBytes = mac.doFinal(stringToSign.getBytes("UTF8"));
			String signature = encodeBase64(signBytes);
			return signature;
		} catch (Exception e) {
			throw new RuntimeException("MAC CALC FAILED.");
		}

	}

	public static String encodeBase64(byte[] data) {
		String base64 = new String(Base64.encodeBase64(data));
		if (base64.endsWith("\r\n"))
			base64 = base64.substring(0, base64.length() - 2);
		if (base64.endsWith("\n"))
			base64 = base64.substring(0, base64.length() - 1);

		return base64;
	}
}
 
分享到:
评论

相关推荐

    s3c2440裸机测试小程序

    通过对这些基本功能的熟练掌握,开发者可以更好地理解S3C2440的硬件特性,为后续的系统开发打下坚实基础。文件"code"中包含的源代码,正是实现这些功能的具体实现,通过阅读和分析,可以更直观地学习到S3C2440的驱动...

    s3c6410 外围功能测试程序

    1. **USB测试**:S3C6410支持USB主机和设备模式,USB测试会验证其能否正确识别并通信与不同类型的USB设备,如存储设备、打印机或外设控制器。这包括数据传输速度、设备枚举和异常处理等。 2. **ADC(模拟数字转换器...

    s3c6410开发板 linux下 摄像头测试代码

    在Linux系统下对S3C6410开发板进行摄像头测试涉及到了多个技术领域,包括硬件接口、设备驱动程序、Linux内核以及用户空间应用程序的交互。S3C6410是一款基于ARM11架构的微处理器,广泛应用于嵌入式系统,如开发板和...

    s3c2440硬件电路测试代码

    S3C2440是一款广泛应用在嵌入式系统中的ARM920T内核处理器,因其高性能、低功耗的特性,常被用于开发各种嵌入式设备,如PDA、数字媒体播放器、路由器等。 在硬件电路设计完成后,为了确保所有组件正常工作并满足...

    S3C2440的测试程序

    S3C2440特性** S3C2440集成了许多外围设备,如SD卡接口、NAND Flash控制器、Ethernet MAC、USB Host/Device、UART、I2C、SPI、GPIO等。这些功能使得S3C2440成为一款高度集成的SoC(系统级芯片),适用于多种嵌入式...

    三星公司的S3C2440的测试代码

    三星公司的S3C2440是一款广泛应用在嵌入式系统中的微处理器,它基于ARM920T内核,提供了高效能与低功耗的解决方案。...对于学习和理解S3C2440的硬件特性和控制机制,这些测试代码是极其宝贵的资源。

    S3C2440测试程序

    测试程序可能涵盖如何配置和控制这些特性。 6. **GPIO操作**:通用输入/输出是控制外设状态的基本手段。程序中会有示例展示如何设置GPIO引脚的模式、读写状态等。 7. **串口通信**:UART是调试和通信的重要工具。...

    S3C6410 的WINCE IIC可用驱动和测试程序

    在编写驱动时,开发者需要深入理解S3C6410处理器的硬件特性,例如IIC控制器的工作模式、时钟配置、数据传输速率等,并确保驱动能够正确地与硬件交互,实现稳定可靠的通信。 测试程序`IIC.cpp`则是为了验证IIC驱动...

    DMA_readmde_S3C2440DMA_press2gq_S3C2440DMA测试程序_dma开发版_

    在实际的DMA测试中,开发者需要了解S3C2440的DMA控制器特性,如通道数量、传输类型支持(如单向或双向传输)、传输大小控制、优先级设置等。同时,还需要熟悉如何通过编程接口设置DMA传输,例如选择源和目标地址、...

    S3C2440 ARM9 ads1.2 测试工程

    本测试工程是针对S3C2440处理器,采用ADS(ARM Development Suite)1.2版本进行编译和调试的实践项目,特别适合于初学者作为学习和理解ARM9体系结构及S3C2440特性的入门实例。 ADS是ARM公司提供的一个强大的开发环境...

    hf s3c44b0 开发板测试程序源代码

    在深入理解这个源代码之前,开发者需要熟悉S3C44B0的硬件特性,包括其寄存器配置、中断系统、时钟管理以及外设接口。此外,了解嵌入式系统的基本概念,如汇编语言和C语言编程,以及可能使用的开发环境和工具链(如...

    s3c2440 ADS环境下测试代码

    在进行这种无操作系统环境下的开发时,开发者需要深入理解S3C2440的硬件特性,以及如何利用ADS的工具链进行编译、调试。同时,因为缺乏操作系统的支持,调试过程可能会更加复杂,需要对底层硬件有深入的理解和丰富的...

    hf s3c44b0 开发板usb 测试程序源代码 .rar

    7. **硬件接口**:理解S3C44B0芯片的USB控制器硬件特性,如何配置寄存器来控制USB接口。 8. **编译和烧录**:将源代码编译为可执行文件,并将其烧录到开发板上运行。 9. **调试工具**:可能涉及到如USB协议分析仪...

    S3C2400PWM代码

    【S3C PWM】标签进一步强调了这个话题的重点是S3C系列处理器的PWM特性。S3C2400的PWM模块通常包括以下几个关键部分: 1. PWM通道:每个处理器可能包含多个独立的PWM通道,例如S3C2400可能有4个。 2. 预分频器:用于...

    uCOSII在S3C44B0x系统上的移植,已经测试通过

    《uCOSII操作系统在S3C44B0x处理器上的移植与测试详解》 uCOSII,全称为 μC/OS-II,是一款广泛应用的实时操作系统(RTOS),它以其小巧、高效、可移植性强的特点,深受嵌入式开发者的喜爱。在本文中,我们将深入...

    c# wince s3c2416应用测试软件

    在本文中,我们将深入探讨与"C# Windows CE (WinCE) S3C2416 应用测试软件"相关的技术细节。S3C2416是一款由Samsung公司开发的ARM9微处理器,常用于嵌入式系统,如工业设备、手持设备等。Windows CE是一种操作系统,...

    三星单片机S3F9488整个内部资源的测试程序(我老大写的哦)

    这个测试程序由你的“老大”编写,很可能包含了对这些功能的全面测试,以验证S3F9488的各项内部资源是否正常工作。测试程序可能包括初始化设置、功能测试、性能评估等多个部分,确保每一项功能都能正确响应并满足...

    micropython_esp32-s3_n16r8

    通过MicroPython的 REPL(Read-Eval-Print Loop)环境,开发者可以直接在ESP32-S3上交互式地测试和运行Python代码,提高了开发效率。此外,MicroPython库支持了许多常见的硬件操作,如读取传感器数据、控制GPIO状态...

    ESP32 - S3 - WIFI测试 STA模式【Arduino】.zip

    同时,ESP32-S3的高性能和低功耗特性,也使其成为移动设备和可穿戴设备的理想选择。 ESP32-S3的WIFI测试STA模式在Arduino环境下的应用,不仅能够检验ESP32-S3作为客户端连接和通信的能力,还能够通过Arduino平台的...

Global site tag (gtag.js) - Google Analytics