All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scouter.agent.trace.SqlParameter Maven / Gradle / Ivy

/*
 *  Copyright 2015 the original author or authors. 
 *  @https://github.com/scouter-project/scouter
 *
 *  Licensed under the Apache License, Version 2.0 (the "License"); 
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License. 
 */

package scouter.agent.trace;

import scouter.agent.Configure;

public class SqlParameter {
	private int MAX_SIZE = Configure.getInstance()._trace_sql_parameter_max_count;
	protected int count = 0;
	protected String[] entry = new String[MAX_SIZE];
	protected String sql;

	public SqlParameter() {
	}

	public SqlParameter(String sql) {
		setSql(sql);
	}

	public void setSql(String sql) {
		this.sql = sql;
	}

	public String getSql() {
		return sql;
	}

	public void put(int x, String value) {
		int inx = x - 1;
		if (MAX_SIZE <= inx || inx < 0)
			return;
		entry[inx] = value;
		if (inx >= count) {
			count = inx + 1;
		}
	}

	public String get(int x) {
		if (0 <= x && x < count)
			return entry[x];
		else
			return null;
	}

	public String toString() {
		StringBuffer buf = new StringBuffer();
		for (int i = 0; i < count; i++) {
			if (entry[i] != null) {
				if (buf.length() > 0) {
					buf.append(",");
				}
				buf.append(entry[i]);
			}
		}
		return buf.toString();
	}

	public String toString(String prev) {
		StringBuffer buf = new StringBuffer();
		if (prev != null) {
			buf.append(prev);
			for (int i = 0; i < count; i++) {
				if (entry[i] != null) {
					buf.append(",");
					buf.append(entry[i]);
				}
			}
		} else {
			for (int i = 0; i < count; i++) {
				if (entry[i] != null) {
					if (buf.length() > 0) {
						buf.append(",");
					}
					buf.append(entry[i]);
				}
			}
		}
		return buf.toString();
	}

	public synchronized void clear() {
		for (int i = 0; i < count; i++) {
			entry[i]=null;
		}
		count = 0;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy