This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Issue #35. Process exec streams not closed properly.
- Loading branch information
1 parent
d176694
commit 43381b7
Showing
3 changed files
with
106 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package com.pi4j.util; | ||
|
||
/* | ||
* #%L | ||
* ********************************************************************** | ||
* ORGANIZATION : Pi4J | ||
* PROJECT : Pi4J :: Java Library (Core) | ||
* FILENAME : ExecUtil.java | ||
* | ||
* This file is part of the Pi4J project. More information about | ||
* this project can be found here: http://www.pi4j.com/ | ||
* ********************************************************************** | ||
* %% | ||
* Copyright (C) 2012 - 2013 Pi4J | ||
* %% | ||
* 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. | ||
* #L% | ||
*/ | ||
|
||
|
||
import java.io.BufferedReader; | ||
import java.io.IOException; | ||
import java.io.InputStreamReader; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class ExecUtil | ||
{ | ||
public static String[] execute(String command) throws IOException, InterruptedException { | ||
return execute(command, null); | ||
} | ||
|
||
public static String[] execute(String command, String split) throws IOException, InterruptedException { | ||
List<String> result = new ArrayList<String>(); | ||
Process p = Runtime.getRuntime().exec(command); | ||
p.waitFor(); | ||
|
||
if(p.exitValue() != 0) | ||
return null; | ||
|
||
InputStreamReader isr = new InputStreamReader(p.getInputStream()); | ||
BufferedReader reader = new BufferedReader(isr); | ||
String line = reader.readLine(); | ||
while (line != null) { | ||
if (!line.isEmpty()) { | ||
if (split == null || split.isEmpty()) { | ||
result.add(line.trim()); | ||
} else { | ||
String[] parts = line.trim().split(split); | ||
for(String part : parts) { | ||
if (part != null && !part.isEmpty()) { | ||
result.add(part.trim()); | ||
} | ||
} | ||
} | ||
} | ||
line = reader.readLine(); | ||
} | ||
|
||
// close readers and stream | ||
reader.close(); | ||
isr.close(); | ||
p.getInputStream().close(); | ||
|
||
if (result.size() > 0) { | ||
return (String[])result.toArray(new String[0]); | ||
} else { | ||
return new String[0]; | ||
} | ||
} | ||
} |