| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 const char* message = "os.chdir(): String conversion of argument failed."; | 531 const char* message = "os.chdir(): String conversion of argument failed."; |
| 532 return ThrowException(String::New(message)); | 532 return ThrowException(String::New(message)); |
| 533 } | 533 } |
| 534 if (chdir(*directory) != 0) { | 534 if (chdir(*directory) != 0) { |
| 535 return ThrowException(String::New(strerror(errno))); | 535 return ThrowException(String::New(strerror(errno))); |
| 536 } | 536 } |
| 537 return v8::Undefined(); | 537 return v8::Undefined(); |
| 538 } | 538 } |
| 539 | 539 |
| 540 | 540 |
| 541 Handle<Value> Shell::SetEnvironment(const Arguments& args) { |
| 542 if (args.Length() != 2) { |
| 543 const char* message = "setenv() takes two arguments"; |
| 544 return ThrowException(String::New(message)); |
| 545 } |
| 546 String::Utf8Value var(args[0]); |
| 547 String::Utf8Value value(args[1]); |
| 548 if (*var == NULL) { |
| 549 const char* message = |
| 550 "os.setenv(): String conversion of variable name failed."; |
| 551 return ThrowException(String::New(message)); |
| 552 } |
| 553 if (*value == NULL) { |
| 554 const char* message = |
| 555 "os.setenv(): String conversion of variable contents failed."; |
| 556 return ThrowException(String::New(message)); |
| 557 } |
| 558 setenv(*var, *value, 1); |
| 559 return v8::Undefined(); |
| 560 } |
| 561 |
| 562 |
| 541 } // namespace v8 | 563 } // namespace v8 |
| OLD | NEW |